/* -----------------------------------------------------
   GLOBAL BASE
----------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #F5F7FA;
    color: #0A1A2F;
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 88%;
    max-width: 1280px;
    margin: auto;
}


/* -----------------------------------------------------
   HERO SECTION – LEFT TEXT + RIGHT IMAGE
----------------------------------------------------- */
.hero {
    background: linear-gradient(135deg, #002C5F 0%, #007BFF 100%);
    padding: 170px 0 130px;
    color: white;
    position: relative;
    overflow: hidden;
}

/* FLEX LAYOUT */
.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* LEFT CONTENT */
.hero-content {
    flex: 1;
    text-align: left;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.25;
    max-width: 620px;
    text-shadow: 0px 6px 14px rgba(0,0,0,0.25);
}

.hero-content p {
    font-size: 19px;
    margin-top: 18px;
    opacity: 0.95;
    max-width: 540px;
}

/* RIGHT IMAGE */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 540px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 35px 80px rgba(0,0,0,0.35);
}

/* -----------------------------------------------------
   MOBILE FIX
----------------------------------------------------- */
@media (max-width: 900px) {
    .hero {
        padding: 140px 0 100px;
    }

    .hero-flex {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1,
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        justify-content: center;
        margin-top: 40px;
    }
}

/* -----------------------------------------------------
   SECTION TITLE + DESCRIPTION
----------------------------------------------------- */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #002C5F;
}

.section-desc {
    text-align: center;
    max-width: 900px;
    margin: auto;
    margin-top: 12px;
    font-size: 18px;
    color: #4A5568;
    margin-bottom: 40px;
}


/* -----------------------------------------------------
   UNIVERSAL FLOATING CARD STYLE (Glass + Glow)
----------------------------------------------------- */
.card-grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 40px;
}

.card {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.05),
        0 6px 16px rgba(0, 0, 0, 0.06);
    transition: 0.25s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 28px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.1);
}


/* -----------------------------------------------------
   WHAT WE DELIVER – Premium Boxes
----------------------------------------------------- */
.deliver-grid {
    display: grid;
    gap: 32px;
    margin-top: 40px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.deliver-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 20px;
    position: relative;
    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.06),
        0 10px 20px rgba(0, 0, 0, 0.04);
    transition: 0.25s ease;
}

/* Optional Gradient Top Ribbon */
.deliver-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 5px;
    width: 100%;
    border-radius: 20px 20px 0 0;
    background: linear-gradient(90deg, #006CFF, #00A2FF);
}

.deliver-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 12px 24px rgba(0, 0, 0, 0.1);
}

.deliver-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #002C5F;
}

.deliver-card ul li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
}


/* -----------------------------------------------------
   FRAMEWORK – Light Blue Stage Timeline
----------------------------------------------------- */
.framework {
    padding: 90px 0;
    background: linear-gradient(135deg, #EBF3FF, #F7FAFF);
    text-align: center;
}

.framework-flow {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: #002C5F;
}

.framework-flow span {
    background: #ffffff;
    padding: 12px 26px;
    border-radius: 14px;
    display: inline-block;
    box-shadow:
        0 12px 28px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.06);
    margin: 0 6px;
}


/* -----------------------------------------------------
   OUTCOMES – Floating Modern Cards
----------------------------------------------------- */
.outcomes-grid .outcome-card {
    text-align: center;
    padding: 20px 22px;
    border-radius: 20px;
    background: #ffffff;
    font-weight: 600;
    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.06),
        0 6px 16px rgba(0, 0, 0, 0.08);
    transition: 0.25s ease;
}

.outcome-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 26px 52px rgba(0,0,0,0.12),
        0 10px 20px rgba(0,0,0,0.1);
}


/* -----------------------------------------------------
   CTA – Gradient + Clean Button
----------------------------------------------------- */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #003C80, #0080FF);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    font-weight: 800;
}

.cta p {
    font-size: 18px;
    margin-top: 10px;
    opacity: 0.95;
}

.cta-btn {
    margin-top: 24px;
    display: inline-block;
    padding: 15px 38px;
    border-radius: 14px;
    background: white;
    color: #003C80;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
    transition: 0.25s ease;
}

.cta-btn:hover {
    transform: translateY(-6px);
    background: #DCE8FF;
}

/* ============================================================================
   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;
    }
}
