* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

body {
    color: #0f172a;
    line-height: 1.6;
    background-color: #ffffff;
}

/* ================= UTILITIES ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.light-bg {
    background-color: #f8fafc;
}

h1, h2, h3 {
    font-weight: 600;
}

.section-desc {
    max-width: 700px;
    margin: 20px auto 50px;
    color: #475569;
    text-align: center;
}
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", sans-serif;
}

body {
    color: #0f172a;
    line-height: 1.6;
    background-color: #ffffff;
}

/* ================= UTILITIES ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 80px 0;
}

.light-bg {
    background-color: #f8fafc;
}

h1, h2, h3 {
    font-weight: 600;
}

.section-desc {
    max-width: 700px;
    margin: 20px auto 50px;
    color: #475569;
    text-align: center;
}

/* ============================================================================
   HEADER – Clean, Compact, Responsive
============================================================================ */
.header {
    width: 100%;
    padding: 10px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 55px;
}

/* ============================================================================
   NAVIGATION MENU
============================================================================ */
.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #002D62;
    padding: 8px 0;
    transition: 0.25s;
}

.navbar ul li a:hover {
    color: #0096FF;
}

/* ============================================================================
   STABLE DROPDOWN (DESKTOP)
============================================================================ */
.dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 55px;
    left: 0;
    width: 250px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
}

.dropdown:hover .mega-menu,
.dropdown.hover-active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    height: 25px;
}

.mega-col h4 {
    font-size: 15px;
    font-weight: 700;
    color: #002D62;
    margin-bottom: 10px;
}

.mega-menu a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #002D62;
    text-decoration: none;
    transition: 0.2s ease;
}

.mega-menu a:hover {
    color: #0096FF;
    padding-left: 5px;
}

/* ============================================================================
   MOBILE MENU ICON
============================================================================ */
.mobile-menu-icon {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* ============================================================================
   MOBILE RESPONSIVE
============================================================================ */
@media (max-width: 900px) {

    .mobile-menu-icon {
        display: block;
    }

    .navbar .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px 0;

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: all 0.35s ease;
    }

    .nav-links.nav-active {
        max-height: 700px;
        opacity: 1;
        pointer-events: auto;
        border-bottom: 1px solid #eee;
    }

    .dropdown:hover .mega-menu {
        display: none;
    }

    .dropdown.open .mega-menu {
        display: block !important;
        position: static;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto;
        padding: 12px 20px;
        background: #f4f8ff;
        border-radius: 10px;
        box-shadow: none;
    }
}


/* ================= HERO CONSULTATION ================= */
.hero-consultation {
    background: linear-gradient(135deg, #0a1d4d, #0b3cc1);
    padding: 140px 0 90px;
    color: #ffffff;
}

.hero-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

/* LEFT CONTENT */
.hero-left {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 18px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    opacity: 0.92;
    margin-bottom: 32px;
}

/* CTA */
.hero-actions .btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #0b3cc1;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.25s ease;
}

.hero-actions .btn-primary:hover {
    background: #e6ecff;
}

/* RIGHT IMAGE */
.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-right {
        justify-content: center;
        margin-top: 40px;
    }

    .hero-left h1 {
        font-size: 36px;
    }

    .hero-left p {
        font-size: 16px;
    }
}

/* ================= GRID ================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.card h3 {
    margin-bottom: 10px;
    color: #0b3cc1;
}

/* ================= BENEFITS ================= */
.benefits {
    max-width: 700px;
    margin: auto;
    list-style: none;
}

.benefits li {
    padding: 12px 0;
    font-size: 16px;
}

/* ================= FORM ================= */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-info p {
    margin: 15px 0;
    color: #475569;
}

.info-box {
    margin-top: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.consultation-form .form-group {
    margin-bottom: 16px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.consultation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    width: 100%;
    background: #0b3cc1;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #082f9c;
}

/* ================= CTA ================= */
.cta {
    background: #0a1d4d;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #0a1d4d;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }
}


/* ================= HERO ================= */
.hero {
    background: linear-gradient(135deg, #0a1d4d, #0b3cc1);
    color: #ffffff;
    padding: 110px 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

.hero h1 {
    font-size: 46px;
    margin: 20px 0;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

/* ================= GRID ================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.card h3 {
    margin-bottom: 10px;
    color: #0b3cc1;
}

/* ================= BENEFITS ================= */
.benefits {
    max-width: 700px;
    margin: auto;
    list-style: none;
}

.benefits li {
    padding: 12px 0;
    font-size: 16px;
}

/* ================= FORM ================= */
.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.form-info p {
    margin: 15px 0;
    color: #475569;
}

.info-box {
    margin-top: 20px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.consultation-form .form-group {
    margin-bottom: 16px;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    font-size: 15px;
}

.consultation-form textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-primary {
    width: 100%;
    background: #0b3cc1;
    color: #ffffff;
    border: none;
    padding: 14px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #082f9c;
}

/* ================= CTA ================= */
.cta {
    background: #0a1d4d;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #0a1d4d;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }
}

/* ================= GLOBAL CTA STYLES ================= */

/* Primary CTA */
.btn-primary,
a.btn-primary,
button.btn-primary {
    background: #0b3cc1 !important;
    color: #ffffff !important;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

/* Primary CTA Hover */
.btn-primary:hover,
a.btn-primary:hover,
button.btn-primary:hover {
    background: #082f9c !important;
    color: #ffffff !important;
}

/* Secondary CTA (MAKE IT BLUE TOO) */
.btn-secondary,
a.btn-secondary {
    background: #0b3cc1 !important;
    color: #ffffff !important;
    border-radius: 8px;
    padding: 12px 26px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.btn-secondary:hover,
a.btn-secondary:hover {
    background: #082f9c !important;
    color: #ffffff !important;
}

/* ================= HERO CTA FIX ================= */
.hero-actions {
    margin-top: 30px;
}

.hero-actions .btn-primary {
    display: inline-flex;        /* prevents full-width box */
    align-items: center;
    justify-content: center;
    width: auto;                 /* IMPORTANT */
    min-width: 260px;            /* clean, premium size */
    padding: 14px 32px;
    border-radius: 12px;
}

