/* ===========================
   GLOBAL ABOUT PAGE RESET
=========================== */
body {
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
    background: #f5f7fa;
    color: #0d1b2a;
}

/* ============================================================================
   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;
    }
}

/* ===========================
   ABOUT HERO BANNER
=========================== */
.about-hero {
    background: #002D62;
    color: white;
    text-align: center;
    padding: 140px 10% 120px;
}

.about-hero h1 {
    font-size: 46px;
    font-weight: 900;
    margin: 0;
}

.about-hero p {
    margin-top: 16px;
    font-size: 20px;
    opacity: 0.9;
}

/* ===========================
   SECTION WRAPPER
=========================== */
.about-section {
    padding: 80px 10%;
    text-align: center;
}

.about-section h2 {
    font-size: 34px;
    margin-bottom: 40px;
    font-weight: 800;
    color: #002D62;
}

/* ===========================
   STORY SECTION
=========================== */
.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-flex .text {
    flex: 1;
    font-size: 19px;
    line-height: 1.55;
    color: #0f1c2e;
}

.about-flex .image {
    width: 420px;
    border-radius: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* ===========================
   LEADERSHIP SECTION
=========================== */
.leader-card {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

.leader-img {
    width: 280px;
    border-radius: 14px;
}

.leader-content {
    max-width: 600px;
    text-align: left;
}

.leader-content h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #002D62;
}

.leader-content p {
    font-size: 18px;
    margin-bottom: 12px;
    color: #0d1b2a;
}

.leader-content ul {
    margin-top: 10px;
    padding-left: 20px;
    line-height: 1.65;
    font-size: 17px;
}

/* ===========================
   GRID BOXES (Experts, Presence, Why Nexora)
=========================== */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.box {
    background: white;
    padding: 20px 18px;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    text-align: center;
    font-weight: 600;
    font-size: 17px;
}

/* ===========================
   CAREER SECTION
=========================== */
.career-section {
    background: #002D62;
    padding: 100px 10%;
    color: white;
}

.career-section h2 {
    font-size: 36px;
    font-weight: 900;
}

.career-section p {
    font-size: 18px;
    margin-top: 12px;
    opacity: 0.9;
}

.primary-btn {
    display: inline-block;
    margin-top: 28px;
    padding: 15px 34px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.25s ease;
}

.primary-btn:hover {
    background: #005fcc;
}

/* ===========================
   RESPONSIVE MOBILE FIXES
=========================== */
@media (max-width: 950px) {

    .about-flex,
    .leader-card {
        flex-direction: column;
        text-align: center;
    }

    .about-flex .image,
    .leader-img {
        width: 92%;
        max-width: 360px;
    }

    .leader-content {
        text-align: center;
    }
}

@media (max-width: 600px) {

    .about-hero {
        padding: 110px 8% 90px;
    }

    .about-hero h1 {
        font-size: 34px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-section {
        padding: 60px 6%;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .box {
        font-size: 16px;
        padding: 16px;
    }
}
  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;
    }
}
/* ===========================================
 