﻿/* Container */

.page-title {
    text-align: center;
    margin-bottom: 40px;
}

    .page-title h1 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        color: #1e3a5f;
        font-weight: 700;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }

    .page-title p {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        color: #5a6c7d;
    }

/* Grid */
.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
}


.contact-form-container {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(30,58,95,0.1);
    border: 1px solid rgba(30,58,95,0.08);
}

.card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(30,58,95,0.1);
    border: 1px solid rgba(30,58,95,0.08);
}

    .card h2 {
        font-size: 1.4rem;
        color: #1e3a5f;
        font-weight: 600;
        margin-bottom: 24px;
        padding-bottom: 12px;
        border-bottom: 2px solid #e8f0f7;
    }

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-top: 15px;
}

.req,
.error-message {
    color: red;
    font-size: 15px;
}


.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    background: #ffffff;
    transition: all .2s;
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: #1e3a5f;
        box-shadow: 0 0 0 3px rgba(30,58,95,0.1);
    }

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    background: linear-gradient(135deg,#1e3a5f 0%,#2d5a87 100%);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    width: auto;
    justify-self: start;
}

.btn-wrapper {
    display: flex;
    justify-content: center;
}

.objectives-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

    .objectives-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: .95rem;
        line-height: 1.6;
        color: #4a5d6e;
        margin-bottom: 16px;
        position: relative;
    }

/* bullet circle */
.bullet {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2d5a87, #1e3a5f);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}


.footer-cta {
    background: linear-gradient(90deg,#1e3a5f 0%,#2d5a87 50%,#1e3a5f 100%);
    padding: 24px;
    margin-top: 40px;
    color: #fff;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 25px;
}

/* Contact Button Style */
.contact-btn {
    display: inline-block;
    background-color: #ffffff;
    color: #1e3a5f;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

    .contact-btn:hover {
        background-color: #e4e4e4;
    }

:root {
    --bg1: #020617;
    --bg2: #0f172a;
    --product: #ff7a00;
    --technique: #22c55e;
    --enduser: #06b6d4;
    --application: #3b82f6;
    --region: #8b5cf6;
    --navy-dark: hsl(213, 90%, 10%);
    --navy: hsl(213, 80%, 20%);
    --navy-light: hsl(213, 70%, 35%);
    --hero-gradient-start: hsl(213, 85%, 18%);
    --hero-gradient-end: hsl(213, 75%, 28%);
    --gold: hsl(45, 100%, 50%);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--hero-gradient-start), var(--hero-gradient-end));
    color: #ffffff;
    padding: 0px 24px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 0px;
    opacity: 0.9;
    margin-top: 10px;
}

    .breadcrumb a {
        color: #ffffff;
        text-decoration: none;
    }

        .breadcrumb a:hover {
            text-decoration: none;
        }

.separator {
    margin: 0 8px;
    opacity: 0.7;
}

.hero-title {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    margin-top: 10px;
}

.hero-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    opacity: 0.95;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 20px;
    font-size: 14px;
}

.meta-item strong {
    color: #ffca28;
    margin-right: 4px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
