/* ============================================================================
   GLOBAL PAGE SETTINGS 
============================================================================ */
body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f7f9fc;
}

.section {
    padding: 80px 12%;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #002D62;
    margin-bottom: 20px;
}

/* ============================================================================
   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 SECTION – SPLIT SCREEN 
============================================================================ */
.hero-split {
    margin-top: 70px;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 8%;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: #002D62;
    margin-bottom: 18px;
}

.hero-title span {
    color: #0096FF;
}

.hero-subtext {
    font-size: 20px;
    margin-bottom: 14px;
    color: #002d62;
    font-weight: 700;                   /* Make bold */
    line-height: 1.5;
}

.hero-support {
    font-size: 18px;
    margin-bottom: 28px;
    color: #003A78;
    font-weight: 600;                   /* Semi-bold for hierarchy */
    line-height: 1.55;
}


.hero-btn {
    background: #007BFF;
    color: white !important;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s ease;
    border: none;
}

.hero-btn:hover {
    background: #005fcc;
    transform: translateY(-2px);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.hero-right img {
    width: 100%;
    max-width: 580px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0,0,0,0.12);
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 6%;
    }

    .hero-right img {
        max-width: 100%;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtext,
    .hero-support {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }
}

/* ============================================================================
   GLOBAL SECTION 
============================================================================ */
.global-section {
    padding: 80px 12%;
    background: #f7f9fc;
}

.global-container {
    max-width: 1100px;
    margin: auto;
}

.global-title {
    font-size: 32px;
    font-weight: 800;
    color: #002D62;
    margin-bottom: 40px;
}

.global-title-sub {
    font-size: 28px;
    font-weight: 800;
    color: #003A78;
    margin-top: 50px;
    margin-bottom: 18px;
}

.global-bullets {
    list-style: disc;
    margin-left: 25px;
    font-size: 18px;
    line-height: 1.7;
}

.global-text {
    font-size: 18px;
    line-height: 1.7;
    max-width: 900px;
}

/* ============================================================================
   LEADERSHIP SECTION 
============================================================================ */
.leadership-section {
    padding: 80px 12%;
}

.leadership-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.leader-image img {
    width: 360px;
    border-radius: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.12);
}

.leader-content {
    max-width: 650px;
}

.leadership-title {
    font-size: 34px;
    font-weight: 800;
    color: #002D62;
    margin-bottom: 25px;
}

.leader-content p {
    font-size: 18px;
    line-height: 1.75;
}

/* ============================================================================
   WHAT WE DO 
============================================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.service-card {
    padding: 25px;
    background: white;
    border-left: 6px solid #57D0FF;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0px 6px 14px rgba(0,0,0,0.07);
}

/* ============================================================================
   DIFFERENTIATORS 
============================================================================ */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.diff-card {
    padding: 22px;
    background: white;
    border-top: 5px solid #0096FF;
    border-radius: 10px;
    font-weight: 700;
    color: #002D62;
}

/* ============================================================================
   INDUSTRIES 
============================================================================ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.industries-grid div {
    padding: 22px;
    background: white;
    border-left: 6px solid #57D0FF;
    border-radius: 10px;
    font-weight: 600;
}

/* ============================================================================
   ENGAGEMENT MODELS 
============================================================================ */
.engagement-list {
    list-style: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
}

/* ============================================================================
   IMPACT METRICS 
============================================================================ */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.impact-card {
    padding: 25px;
    background: white;
    border-left: 6px solid #0096FF;
    border-radius: 8px;
    font-weight: 700;
    color: #002D62;
}

/* ============================================================================
   CLIENT JOURNEY 
============================================================================ */
.journey-flow {
    font-size: 26px;
    font-weight: 700;
}

/* ============================================================================
  /* HERO SECTION BASE */
/* ===============================
 /* HERO SECTION WRAPPER */
.hero-custom {
    width: 100%;
    height: 600px;
    background-image: url('bottom-banner2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    justify-content: flex-start;     /* Top of hero */
    align-items: center;
    flex-direction: column;

    padding-top: 400px;              /* ⭐ Move entire block DOWN */
    position: relative;
}

/* ARROW */
.hero-arrow {
    font-size: 42px;
    color: white;
    margin-top: 40px;                 /* ⭐ Extra spacing BELOW heading */
    margin-bottom: 25px;              /* Space above CTA */
    animation: bounce 1.3s infinite;
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

/* CTA BUTTON */
.hero-cta-button {
    background: #007bff;
    color: #fff;
    padding: 18px 55px;
    border-radius: 14px;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: 0.25s ease;
}

.hero-cta-button:hover {
    background: #005fcc;
    transform: translateY(-3px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-custom {
        padding-top: 240px;        /* Lower for mobile */
        height: 500px;
    }
    .hero-arrow {
        font-size: 32px;
        margin-top: 25px;
    }
    .hero-cta-button {
        font-size: 20px;
        padding: 14px 32px;
    }
}

/* ============================================================================
   FORM SECTION 
============================================================================ */
/* ================================
   DOWNLOAD FORM SECTION
================================ */

#download-form {
    padding: 60px 12%;
    text-align: center;
}

/* Form Box */
.form-box {
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-box input {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #c7d7e8;
    font-size: 16px;
}

.form-box button {
    background: #0096FF;
    color: white;
    padding: 14px;
    border-radius: 8px;
    border: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease-in-out;
}

.form-box button:hover {
    background: #0077cc;
}

/* CTA Buttons Under Form */
.cta-buttons-extra {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-buttons-extra .btn-secondary {
    background: #0096FF;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
    white-space: nowrap;
}

.cta-buttons-extra .btn-secondary:hover {
    background: #0077cc;
}

/* Mobile Responsive Fix */
@media (max-width: 600px) {
    .cta-buttons-extra {
        flex-direction: column;
        gap: 10px;
    }

    .cta-buttons-extra .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ============================================================================
   FOOTER 
============================================================================ */
.footer {
    background: #002D62;
    color: white;
    padding: 60px 12%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
    gap: 40px;
    margin-top: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
}

.footer-social a {
    font-size: 20px;
    margin-right: 12px;
}

.footer-bottom {
    margin-top: 40px;
    opacity: 0.7;
    text-align: center;
}

/* ============================================================================
   RESPONSIVE FIXES 
============================================================================ */
@media (max-width: 900px) {
    .leadership-flex {
        flex-direction: column;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-top: 25px;
}

.hero-buttons a {
    display: inline-block;
    padding: 14px 24px;
    background: #007BFF;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    min-width: 260px;
}

.hero-buttons a:nth-child(2) {
    background: #0066e6;
}

@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 380px;
        margin: auto;
    }

    .hero-buttons a {
        width: 100%;
        min-width: unset;
        padding: 16px 20px;
        border-radius: 12px;
    }
}
/* ===========================================
 