:root {
    --navy: #0A1F44;
    --navy-mid: #1A3A6C;
    --navy-light: #2E5FA3;
    --sky: #DFF6FF;
    --sky-soft: #EBF9FF;
    --sky-mid: #BFEFFF;
    --yellow: #F5C518;
    --yellow-bright: #FFD740;
    --yellow-pale: #FFF8DC;
    --pink: #E91E8C;
    --teal: #00BCD4;
    --white: #FFFFFF;
    --text-dark: #061128;
    --text-mid: #1A3A6C;
    --text-muted: #4A7AAF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Baloo 2', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ===== NAVBAR ===== */
.navbar {
    background: var(--white);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 72px;
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 16px rgba(10,31,68,0.08);
}
.nav-item {
    text-decoration: none;
}

.logo-img {
    height: 58px;
    width: 58px;
    object-fit: contain;
}

.nav-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.nav-logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.5px;
}

.nav-logo-sub {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    background: var(--sky-soft);
    border-radius: 50px;
    padding: 4px;
    border: 1.5px solid var(--sky-mid);
}

.nav-item {
    padding: 8px 16px;
    color: var(--navy);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

    .nav-item:hover {
        background: var(--sky);
    }

    .nav-item.active {
        background: var(--yellow);
        color: var(--navy);
        font-weight: 700;
    }

    .nav-item .dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--navy);
        border-radius: 0 0 12px 12px;
        min-width: 190px;
        z-index: 999;
        padding: 12px 8px 8px;
        border: 1px solid rgba(245,197,24,0.3);
        border-top: none;
        box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    }

    .nav-item:hover .dropdown {
        display: block;
    }

    .nav-item .dropdown::before {
        content: '';
        position: absolute;
        top: -12px;
        left: 0;
        right: 0;
        height: 12px;
    }

.dropdown a {
    display: block;
    padding: 9px 14px;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
}

    .dropdown a:hover {
        background: rgba(245,197,24,0.15);
        color: var(--yellow);
    }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: var(--sky);
    border-radius: 8px;
    border: 1px solid var(--sky-mid);
}

    .hamburger span {
        display: block;
        width: 22px;
        height: 2.5px;
        background: var(--navy);
        border-radius: 3px;
        transition: all 0.3s;
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }

.mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--navy);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    border-top: 2px solid var(--yellow);
    box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

    .mobile-nav.open {
        display: flex;
    }

.mobile-nav-item {
    padding: 14px 24px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}

    .mobile-nav-item.active {
        color: var(--yellow);
    }

.mobile-sub {
    display: none;
    background: rgba(0,0,0,0.25);
}

    .mobile-sub.open {
        display: block;
    }

    .mobile-sub a {
        display: block;
        padding: 11px 40px;
        color: rgba(255,255,255,0.75);
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        text-decoration: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

/* ===== HERO ===== */
.hero {
    background: var(--navy);
    min-height: 580px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.blob-1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.9;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blob-1-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 1;
}

.blob-2 {
    position: absolute;
    right: 80px;
    bottom: 20px;
    width: 200px;
    height: 200px;
    background: var(--yellow-bright);
    border-radius: 50%;
    opacity: 0.55;
}

.blob-pink {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.18;
}

.blob-teal {
    position: absolute;
    left: 40%;
    top: -30px;
    width: 120px;
    height: 120px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.12;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--sky-soft);
    border-radius: 60% 60% 0 0 / 100% 100% 0 0;
}

.doodle-paren {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    font-size: 64px;
    color: var(--yellow);
    font-weight: 900;
    opacity: 0.75;
}

.doodle-squig {
    position: absolute;
    top: 90px;
    left: 44%;
    font-size: 28px;
    color: var(--yellow);
    opacity: 0.6;
}

.doodle-plus {
    position: absolute;
    bottom: 140px;
    left: 50%;
    font-size: 32px;
    color: var(--yellow);
    font-weight: 900;
    opacity: 0.5;
}

.hero-rings {
    position: absolute;
    right: 190px;
    top: 50px;
    width: 130px;
    height: 130px;
}

    .hero-rings::before, .hero-rings::after, .hero-rings span {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 1.5px solid rgba(245,197,24,0.35);
    }

    .hero-rings::before {
        inset: 0;
    }

    .hero-rings::after {
        inset: 18px;
        border-color: rgba(245,197,24,0.25);
    }

    .hero-rings span {
        inset: 36px;
        border-color: rgba(245,197,24,0.15);
        display: block;
    }

.hero-content {
    position: relative;
    z-index: 5;
    padding: 60px 60px 130px 70px;
    max-width: 580px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(223,246,255,0.15);
    border: 1px solid rgba(223,246,255,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 20px;
}

.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--sky-mid);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.hero-tag span {
    font-size: 12px;
    font-weight: 700;
    color: var(--sky-mid);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(1.3)
    }
}

.hero-content h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

    .hero-content h1 .nowrap {
        white-space: nowrap;
    }

    .hero-content h1 .highlight {
        color: var(--yellow);
    }

.hero-content .admission-text {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.admission-text::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--yellow);
    flex-shrink: 0;
}

.enroll-btn {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 6px 20px rgba(245,197,24,0.4);
}

    .enroll-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(245,197,24,0.5);
    }

    .enroll-btn .arrow {
        font-size: 18px;
        transition: transform 0.2s;
    }

    .enroll-btn:hover .arrow {
        transform: translateX(4px);
    }

.hero-img-circle {
    position: absolute;
    right: 190px;
    bottom: 75px;
    z-index: 4;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--yellow);
    background: var(--navy-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

    .hero-img-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.hero-badge {
    position: absolute;
    right: 140px;
    bottom: 85px;
    z-index: 6;
    background: var(--pink);
    color: white;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 16px rgba(233,30,140,0.4);
    white-space: nowrap;
}

/* ===== FLOAT BAR ===== */
.float-bar {
    background: var(--white);
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    padding: 5px;
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    box-shadow: 0 8px 32px rgba(10,31,68,0.2);
    border: 1.5px solid var(--sky-mid);
    white-space: nowrap;
    gap: 4px;
}

.float-btn {
    background: var(--sky-soft);
    border: none;
    border-radius: 100px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s;
}

    .float-btn:hover {
        background: var(--sky);
    }

    .float-btn .icon {
        font-size: 16px;
    }

.float-bar-divider {
    width: 1px;
    height: 28px;
    background: var(--sky-mid);
}

.social-row {
    position: fixed;
    bottom: 110px;
    left: 18px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.soc-ico {
    width: 38px;
    height: 38px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    color: var(--navy);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid var(--sky-mid);
}

    .soc-ico:hover {
        background: var(--yellow);
        border-color: var(--yellow);
    }

/* ===== REACH & IMPACT ===== */
.reach-impact-section {
    background: var(--sky-soft);
    padding: 70px 60px;
    position: relative;
    overflow: hidden;
}

.ri-decor-circle {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    border: 2px solid rgba(10,31,68,0.08);
    pointer-events: none;
}

.ri-decor-circle2 {
    position: absolute;
    right: -60px;
    top: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 2px solid rgba(10,31,68,0.06);
    pointer-events: none;
}

.ri-decor-dot {
    position: absolute;
    left: 60px;
    bottom: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(245,197,24,0.15);
    pointer-events: none;
}

.ri-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ri-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--sky-mid);
    overflow: hidden;
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(10,31,68,0.07);
}

    .ri-card:hover {
        transform: translateY(-4px);
        border-color: var(--yellow);
        box-shadow: 0 12px 36px rgba(10,31,68,0.14);
    }

.ri-card-header {
    background: var(--navy);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ri-header-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
}

.ri-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.ri-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ri-stat-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--sky-mid);
}

    .ri-stat-row:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }

.ri-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    min-width: 110px;
}

.ri-stat-label {
    font-size: 13px;
    color: #555;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

/* ===== ABOUT ===== */
.about-section {
    background: var(--sky-soft);
    padding: 90px 70px;
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    overflow: hidden;
}

.about-bg-circle {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    background: var(--sky);
    border-radius: 50%;
}

.about-bg-circle2 {
    position: absolute;
    left: -40px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    background: rgba(245,197,24,0.1);
    border-radius: 50%;
}

.about-img-wrap {
    flex-shrink: 0;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--sky);
    border: 6px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 16px 16px 0 var(--yellow);
}

    .about-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.about-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sky), #a0d8ef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
}

.about-text {
    position: relative;
    z-index: 2;
}

.about-chip {
    display: inline-block;
    background: var(--navy);
    color: var(--yellow);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.2;
}

.about-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 18px;
}

.about-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.85;
    margin-bottom: 28px;
    max-width: 520px;
}

.about-highlights {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ah-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--sky-mid);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
}

    .ah-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--yellow);
        flex-shrink: 0;
    }

/* ===== SHARED ===== */
.section-eyebrow {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    text-align: center;
    margin-bottom: 6px;
}

.section-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

    .section-line span {
        width: 40px;
        height: 3px;
        background: var(--yellow);
        border-radius: 3px;
    }

    .section-line .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--pink);
    }

/* ===== TESTIMONIALS ===== */
.testi-main-section {
    background: var(--sky-soft);
    padding: 80px 50px 100px;
    position: relative;
    overflow: hidden;
}

.testi-blob-left {
    position: absolute;
    left: -80px;
    top: 0;
    bottom: 0;
    width: 180px;
    background: var(--navy);
    border-radius: 0 100% 100% 0;
    opacity: 0.07;
    pointer-events: none;
}

.testi-blob-right {
    position: absolute;
    right: -80px;
    top: 0;
    bottom: 0;
    width: 180px;
    background: var(--navy);
    border-radius: 100% 0 0 100%;
    opacity: 0.07;
    pointer-events: none;
}

.testi-decor-circle {
    position: absolute;
    top: -60px;
    right: 80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px dashed rgba(10,31,68,0.12);
    pointer-events: none;
}

.testi-sub {
    text-align: center;
    font-size: 15px;
    color: #666;
    max-width: 620px;
    margin: -30px auto 50px;
    line-height: 1.8;
}

.testi-category-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto 60px;
}

.testi-cat-card {
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(10,31,68,0.12);
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    border: 3px solid transparent;
}

    .testi-cat-card:hover, .testi-cat-card.active {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(10,31,68,0.22);
        border-color: var(--yellow);
    }

.testi-cat-img-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.testi-cat-card:nth-child(1) .testi-cat-img-placeholder {
    background: linear-gradient(135deg,#DFF6FF,#BFEFFF);
}

.testi-cat-card:nth-child(2) .testi-cat-img-placeholder {
    background: linear-gradient(135deg,#e8f5e9,#c8e6c9);
}

.testi-cat-card:nth-child(3) .testi-cat-img-placeholder {
    background: linear-gradient(135deg,#fff3e0,#ffe0b2);
}

.testi-cat-label {
    background: var(--navy);
    color: var(--yellow);
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: center;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

    .testi-cat-label .cat-icon {
        font-size: 18px;
    }

.testi-slider-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.testi-slider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.testi-slider-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.testi-nav-btns {
    display: flex;
    gap: 10px;
}

.testi-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-weight: 700;
}

    .testi-nav-btn:hover {
        background: var(--navy);
        color: var(--yellow);
    }

.testi-cards-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testi-quote-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px;
    border: 1.5px solid var(--sky-mid);
    box-shadow: 0 4px 20px rgba(10,31,68,0.07);
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .testi-quote-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(10,31,68,0.14);
    }

.testi-quote-mark {
    font-size: 64px;
    line-height: 0.7;
    color: var(--yellow);
    font-family: Georgia, serif;
    font-weight: 900;
    display: block;
    margin-bottom: 14px;
}

.testi-quote-text {
    font-size: 14px;
    color: #555;
    line-height: 1.85;
    font-style: italic;
    margin-bottom: 20px;
}

.testi-quote-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--sky-mid);
    padding-top: 16px;
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 2px solid var(--yellow);
}

.testi-author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.testi-author-role {
    font-size: 12px;
    color: var(--text-muted);
}

.testi-stars-row {
    display: flex;
    gap: 3px;
    margin-left: auto;
}

.tstar {
    width: 14px;
    height: 14px;
    background: var(--yellow);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.testi-cat-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--sky);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 10px;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.testi-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky-mid);
    cursor: pointer;
    transition: all 0.2s;
}

    .testi-dot.active {
        background: var(--navy);
        width: 24px;
        border-radius: 4px;
    }

/* ===== GALLERY SECTION ===== */
.gallery-section {
    background: var(--navy);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.gallery-header {
    background: var(--navy);
    padding: 60px 60px 40px;
    text-align: center;
    position: relative;
}

    .gallery-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 15% 50%, rgba(245,197,24,0.08) 0%, transparent 50%), radial-gradient(circle at 85% 20%, rgba(233,30,140,0.07) 0%, transparent 40%);
        pointer-events: none;
    }

.gallery-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(223,246,255,0.7);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.gallery-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

    .gallery-title span {
        color: var(--yellow);
    }

.gallery-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.gallery-section .section-line span {
    background: var(--yellow);
}

.gallery-section .section-line .dot {
    background: var(--pink);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
}

.gal-filter-btn {
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(223,246,255,0.25);
    border-radius: 50px;
    padding: 10px 26px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.75);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: all 0.22s;
    letter-spacing: 0.5px;
}

    .gal-filter-btn:hover {
        background: rgba(223,246,255,0.12);
        border-color: rgba(223,246,255,0.5);
        color: var(--sky-mid);
    }

    .gal-filter-btn.active {
        background: var(--yellow);
        border-color: var(--yellow);
        color: var(--navy);
    }

.gallery-grid-wrap {
    background: var(--sky-soft);
    padding: 50px 48px 70px;
    position: relative;
}

    .gallery-grid-wrap::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: var(--navy);
        border-radius: 0 0 50% 50% / 0 0 40px 40px;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gal-item {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 18px rgba(10,31,68,0.12);
    background: var(--sky);
    display: none;
}

    .gal-item.show {
        display: block;
        animation: fadeInUp 0.4s ease forwards;
    }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gal-item:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: var(--yellow);
    box-shadow: 0 16px 40px rgba(10,31,68,0.22);
}

.gal-item:nth-child(2) {
    grid-row: span 2;
}

.gal-item:nth-child(5) {
    grid-column: span 2;
}

.gal-img-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    position: relative;
}

    .gal-img-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gal-item:nth-child(2) .gal-img-placeholder {
    height: 100%;
    min-height: 416px;
}

.gal-item:nth-child(5) .gal-img-placeholder {
    height: 200px;
}

.gal-item:nth-child(1) .gal-img-placeholder {
    background: linear-gradient(135deg,#DFF6FF,#BFEFFF);
}

.gal-item:nth-child(2) .gal-img-placeholder {
    background: linear-gradient(135deg,#EBF9FF,#9FE1FF);
}

.gal-item:nth-child(3) .gal-img-placeholder {
    background: linear-gradient(135deg,#e8f5e9,#a5d6a7);
}

.gal-item:nth-child(4) .gal-img-placeholder {
    background: linear-gradient(135deg,#fff3e0,#ffcc80);
}

.gal-item:nth-child(5) .gal-img-placeholder {
    background: linear-gradient(135deg,#fce4ec,#f48fb1);
}

.gal-item:nth-child(6) .gal-img-placeholder {
    background: linear-gradient(135deg,#e0f7fa,#80deea);
}

.gal-item:nth-child(7) .gal-img-placeholder {
    background: linear-gradient(135deg,#DFF6FF,#BFEFFF);
}

.gal-item:nth-child(8) .gal-img-placeholder {
    background: linear-gradient(135deg,#e8f5e9,#c8e6c9);
}

.gal-item:nth-child(9) .gal-img-placeholder {
    background: linear-gradient(135deg,#fff8e1,#ffe082);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,31,68,0.85) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.gal-item:hover .gal-overlay {
    opacity: 1;
}

.gal-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 6px;
    width: fit-content;
}

.gal-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.gal-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(10,31,68,0.75);
    color: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 10px;
    border: 1px solid rgba(245,197,24,0.3);
    backdrop-filter: blur(4px);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.gal-load-btn {
    background: var(--navy);
    color: var(--yellow);
    border: 2.5px solid var(--navy);
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.22s;
    box-shadow: 0 6px 20px rgba(10,31,68,0.18);
}

    .gal-load-btn:hover {
        background: var(--yellow);
        border-color: var(--yellow);
        color: var(--navy);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(245,197,24,0.35);
    }

/* ===== UNIFIED LIGHTBOX ===== */
.gal-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,17,40,0.93);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

    .gal-lightbox.open {
        display: flex;
    }

.gal-lb-inner {
    max-width: 820px;
    width: 100%;
    background: var(--navy);
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid var(--yellow);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
}

.gal-lb-img-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

    .gal-lb-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #04122a;
        display: block;
    }

    .gal-lb-img-wrap .gal-lb-emoji-fallback {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 100px;
        background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    }

.gal-lb-footer {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.gal-lb-info .gal-tag {
    margin-bottom: 4px;
}

.gal-lb-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.gal-lb-close {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(245,197,24,0.4);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

    .gal-lb-close:hover {
        background: rgba(245,197,24,0.2);
    }

.gal-lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(245,197,24,0.85);
    border: none;
    border-radius: 50%;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

    .gal-lb-nav:hover {
        background: var(--yellow);
        transform: translateY(-50%) scale(1.1);
    }

.gal-lb-prev {
    left: 12px;
}

.gal-lb-next {
    right: 12px;
}

/* ===== KEY HIGHLIGHTS ===== */
.highlights-section {
    background: var(--sky-soft);
    padding: 80px 40px 100px;
    position: relative;
    overflow: hidden;
}

.hl-purple-corner {
    position: absolute;
    left: 0;
    top: 0;
    width: 220px;
    height: 180px;
    background: var(--navy);
    border-radius: 0 0 80% 0;
    pointer-events: none;
}

.hl-apple {
    position: absolute;
    left: 36px;
    top: 36px;
    font-size: 30px;
    z-index: 2;
}

.hl-decor-circle-br {
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px dashed rgba(10,31,68,0.1);
    pointer-events: none;
}

.hl-decor-dot {
    position: absolute;
    right: 80px;
    top: 80px;
    width: 18px;
    height: 18px;
    background: rgba(245,197,24,0.35);
    border-radius: 50%;
}

.hl-orbit-wrap {
    position: relative;
    z-index: 5;
    max-width: 960px;
    margin: 40px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.hl-orbit-ring {
    position: relative;
    width: 580px;
    height: 580px;
    flex-shrink: 0;
}

    .hl-orbit-ring::before {
        content: '';
        position: absolute;
        inset: 30px;
        border-radius: 50%;
        border: 2px dashed rgba(10,31,68,0.18);
    }

.hl-center-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 190px;
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--sky-mid);
    box-shadow: 0 8px 32px rgba(10,31,68,0.12);
    padding: 24px 16px 20px;
    text-align: center;
    z-index: 10;
    transition: box-shadow 0.25s, border-color 0.25s;
}

    .hl-center-card:hover {
        box-shadow: 0 16px 48px rgba(10,31,68,0.18);
        border-color: var(--yellow);
    }

    .hl-center-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 15px;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 8px;
        line-height: 1.3;
    }

    .hl-center-card p {
        font-size: 11px;
        color: #888;
        line-height: 1.6;
    }

.hl-center-icon {
    width: 56px;
    height: 56px;
    background: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 12px;
    border: 2px solid var(--yellow);
}

.hl-node {
    position: absolute;
    width: 108px;
    height: 108px;
    background: var(--white);
    border-radius: 50%;
    border: 2.5px solid var(--sky-mid);
    box-shadow: 0 4px 20px rgba(10,31,68,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s, box-shadow 0.22s;
    z-index: 8;
}

    .hl-node:hover, .hl-node.active {
        transform: scale(1.15);
        border-color: var(--yellow);
        box-shadow: 0 8px 28px rgba(10,31,68,0.2);
        background: var(--yellow-pale);
    }

.hl-node-icon {
    width: 58px;
    height: 58px;
    background: var(--sky-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1.5px solid var(--sky-mid);
    transition: background 0.22s;
}

.hl-node:hover .hl-node-icon, .hl-node.active .hl-node-icon {
    background: var(--yellow);
}

.hl-node-label {
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.2;
    padding: 0 6px;
}

.hl-node-1 {
    top: calc(50% - 290px - 54px);
    left: calc(50% - 54px);
}

.hl-node-2 {
    top: calc(50% - 90px - 54px);
    left: calc(50% + 222px - 54px);
}

.hl-node-3 {
    top: calc(50% + 174px - 54px);
    left: calc(50% + 137px - 54px);
}

.hl-node-4 {
    top: calc(50% + 174px - 54px);
    left: calc(50% - 137px - 54px);
}

.hl-node-5 {
    top: calc(50% - 90px - 54px);
    left: calc(50% - 222px - 54px);
}

.hl-svg-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.hl-detail-panel {
    width: 270px;
    flex-shrink: 0;
}

.hl-detail-card {
    background: var(--white);
    border-radius: 20px;
    border: 1.5px solid var(--sky-mid);
    box-shadow: 0 6px 24px rgba(10,31,68,0.1);
    padding: 28px 24px;
    display: none;
}

    .hl-detail-card.active {
        display: block;
        animation: fadeInUp 0.3s ease;
    }

.hl-detail-chip {
    display: inline-block;
    background: var(--navy);
    color: var(--yellow);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 14px;
}

.hl-detail-icon {
    font-size: 48px;
    margin-bottom: 12px;
    display: block;
}

.hl-detail-title {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.hl-detail-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.75;
}

.hl-detail-bullets {
    list-style: none;
    padding: 0;
    margin-top: 14px;
}

    .hl-detail-bullets li {
        font-size: 12px;
        color: #555;
        padding: 6px 0;
        border-bottom: 1px solid var(--sky-mid);
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .hl-detail-bullets li:last-child {
            border-bottom: none;
        }

        .hl-detail-bullets li::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--yellow);
            border-radius: 50%;
            flex-shrink: 0;
        }

.hl-nodes-mobile {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 480px;
    margin: 32px auto 0;
}

.hl-mobile-card {
    background: var(--white);
    border-radius: 16px;
    border: 1.5px solid var(--sky-mid);
    box-shadow: 0 4px 16px rgba(10,31,68,0.08);
    padding: 18px 14px;
    text-align: center;
}

.hl-mobile-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.hl-mobile-title {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.hl-mobile-desc {
    font-size: 11px;
    color: #888;
    line-height: 1.5;
}

/* ===== PHOTO GALLERY NEW SECTION ===== */
.photo-gallery-section {
    background: var(--white);
    padding: 80px 40px 100px;
    position: relative;
    overflow: hidden;
}

.pg-corner-tl {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 160px;
    background: var(--navy);
    border-radius: 0 0 80% 0;
    pointer-events: none;
    z-index: 0;
}

.pg-corner-icon {
    position: absolute;
    left: 30px;
    top: 28px;
    font-size: 32px;
    z-index: 2;
}

.pg-circle-br {
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 2px dashed rgba(10,31,68,0.1);
    pointer-events: none;
}

.pg-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 40px;
}

    .pg-header .section-eyebrow {
        color: var(--pink);
    }

    .pg-header .section-title {
        color: var(--navy);
    }

.pg-slider-outer {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pg-slider-track-wrap {
    overflow: hidden;
    border-radius: 20px;
}

.pg-slider-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pg-slide {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.28s cubic-bezier(0.34,1.56,0.64,1), border-color 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 18px rgba(10,31,68,0.1);
}

    .pg-slide:hover {
        transform: translateY(-6px) scale(1.02);
        border-color: var(--yellow);
        box-shadow: 0 16px 40px rgba(10,31,68,0.2);
    }

.pg-slide-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.pg-slide:hover .pg-slide-img {
    transform: scale(1.06);
}

.pg-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,31,68,0.88) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
}

.pg-slide:hover .pg-slide-overlay {
    opacity: 1;
}

.pg-slide-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 3px 10px;
    margin-bottom: 5px;
    width: fit-content;
}

.pg-slide-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
}

.pg-slide-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(10,31,68,0.72);
    color: rgba(255,255,255,0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 3px 9px;
    border: 1px solid rgba(245,197,24,0.3);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.pg-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.pg-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.22s;
    font-weight: 700;
}

    .pg-nav-btn:hover {
        background: var(--navy);
        color: var(--yellow);
        transform: scale(1.08);
    }

.pg-nav-dots {
    display: flex;
    gap: 8px;
}

.pg-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--sky-mid);
    border: none;
    cursor: pointer;
    transition: all 0.22s;
}

    .pg-nav-dot.active {
        background: var(--navy);
        width: 24px;
        border-radius: 4px;
    }

/* ===== FRANCHISE ===== */
.franchise-section {
    background: var(--yellow);
    position: relative;
    overflow: hidden;
    min-height: 440px;
    display: flex;
    align-items: flex-end;
}

.fr-purple-dome {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 62%;
    height: 270px;
    background: var(--navy);
    border-radius: 0 0 50% 50%;
    pointer-events: none;
}

.fr-purple-right {
    position: absolute;
    top: 0;
    right: -90px;
    width: 260px;
    height: 260px;
    background: var(--navy);
    border-radius: 50%;
    opacity: 0.6;
    pointer-events: none;
}

.fr-pink-dot {
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 50px;
    height: 50px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.4;
}

.franchise-inner {
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 44px;
}

.abc-text {
    font-family: 'Poppins', sans-serif;
    font-size: 110px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    background: linear-gradient(135deg, #ef4444, var(--yellow-bright), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 5;
    letter-spacing: -4px;
}

.franchise-body {
    background: var(--yellow);
    width: 100%;
    padding: 32px 40px;
    text-align: center;
    position: relative;
    z-index: 6;
}

    .franchise-body h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 6px;
    }

        .franchise-body h2 .fr1 {
            color: var(--navy);
        }

        .franchise-body h2 .fr2 {
            color: var(--white);
        }

.fr-sub {
    font-size: 15px;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 10px;
}

.fr-stats {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.fr-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(10,31,68,0.18);
    padding-top: 18px;
    gap: 0;
}

.fr-feat {
    padding: 6px 20px;
    font-size: 13px;
    color: var(--navy);
    font-weight: 600;
    border-right: 1px solid rgba(10,31,68,0.18);
    font-family: 'Poppins', sans-serif;
}

    .fr-feat:last-child {
        border-right: none;
    }

/* ===== FEATURED TESTIMONIAL ===== */
.testi-section {
    background: var(--navy);
    padding: 60px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testi-bg-quote {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    line-height: 1;
    color: rgba(245,197,24,0.06);
    font-family: Georgia, serif;
    pointer-events: none;
}

.testi-stars {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.testi-star {
    width: 20px;
    height: 20px;
    background: var(--yellow);
    clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.testi-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testi-body {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 2;
    max-width: 820px;
    margin: 0 auto;
    font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy);
    padding: 60px 60px 24px;
    border-top: 3px solid var(--yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr 1fr;
    gap: 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-logo-wrap {
    margin-bottom: 16px;
}

.footer-logo {
    height: 56px;
    width: 56px;
    object-fit: contain;
    mix-blend-mode: screen;
}

.footer-logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--yellow);
    letter-spacing: 1px;
    margin-top: 8px;
}

.footer-company {
    color: var(--white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-addr {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.7;
}

.footer-col h4 {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--yellow);
    }

.footer-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: rgba(0,0,0,0.35);
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1.5px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s;
}

    .footer-video:hover {
        border-color: var(--yellow);
    }

.play-circle {
    width: 44px;
    height: 44px;
    background: red;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

.footer-vid-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-contact h4 {
    color: rgba(255,255,255,0.5);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.contact-icon {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-text {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 22px;
    text-align: center;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    font-family: 'Poppins', sans-serif;
}

/* ===== UNIFIED IMAGE LIGHTBOX (used by both gallery & photo gallery) ===== */
.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6,17,40,0.93);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
}

    .img-lightbox.open {
        display: flex;
    }

.img-lb-inner {
    max-width: 820px;
    width: 100%;
    background: var(--navy);
    border-radius: 22px;
    overflow: hidden;
    border: 3px solid var(--yellow);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
}

.img-lb-img-wrap {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

    .img-lb-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #04122a;
        display: block;
    }

.img-lb-emoji-wrap {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
}

.img-lb-footer {
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.img-lb-tag {
    display: inline-block;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 6px;
    width: fit-content;
}

.img-lb-caption {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.img-lb-counter {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10,31,68,0.7);
    color: rgba(255,255,255,0.85);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    padding: 4px 14px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(245,197,24,0.3);
}

.img-lb-close {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(245,197,24,0.4);
    border-radius: 50%;
    color: var(--yellow);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

    .img-lb-close:hover {
        background: rgba(245,197,24,0.2);
    }

.img-lb-prev, .img-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(245,197,24,0.85);
    border: none;
    border-radius: 50%;
    color: var(--navy);
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

    .img-lb-prev:hover, .img-lb-next:hover {
        background: var(--yellow);
        transform: translateY(-50%) scale(1.1);
    }

.img-lb-prev {
    left: 12px;
}

.img-lb-next {
    right: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-item {
        padding: 8px 10px;
        font-size: 11.5px;
    }

    .hero-content {
        padding: 50px 30px 130px;
    }

        .hero-content h1 {
            font-size: 36px;
        }

    .hero-img-circle {
        width: 400px;
        height: 400px;
        right: 100px;
        bottom: 90px;
    }

    .hero-badge {
        right: 60px;
    }

    .about-section {
        padding: 60px 30px;
        gap: 40px;
    }

    .about-img-wrap {
        width: 280px;
        height: 280px;
    }

    .hl-orbit-wrap {
        flex-direction: column;
        gap: 24px;
    }

    .hl-detail-panel {
        width: 100%;
        max-width: 500px;
    }

    .hl-orbit-ring {
        width: 460px;
        height: 460px;
    }

    .hl-node-1 {
        top: calc(50% - 228px - 54px);
        left: calc(50% - 54px);
    }

    .hl-node-2 {
        top: calc(50% - 70px - 54px);
        left: calc(50% + 174px - 54px);
    }

    .hl-node-3 {
        top: calc(50% + 138px - 54px);
        left: calc(50% + 108px - 54px);
    }

    .hl-node-4 {
        top: calc(50% + 138px - 54px);
        left: calc(50% - 108px - 54px);
    }

    .hl-node-5 {
        top: calc(50% - 70px - 54px);
        left: calc(50% - 174px - 54px);
    }

    .pg-slide {
        flex: 0 0 calc(33.33% - 11px);
        min-width: calc(33.33% - 11px);
    }

    .gallery-header {
        padding: 50px 30px 32px;
    }

    .gallery-title {
        font-size: 34px;
    }

    .gallery-grid-wrap {
        padding: 40px 28px 50px;
    }

    .gal-item:nth-child(2) {
        grid-row: span 1;
    }

        .gal-item:nth-child(2) .gal-img-placeholder {
            min-height: 200px;
            height: 200px;
        }

    .gal-item:nth-child(5) {
        grid-column: span 1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer {
        padding: 40px 28px 20px;
    }

    .reach-impact-section {
        padding: 50px 28px;
    }

    .testi-main-section {
        padding: 60px 30px 80px;
    }

    .testi-cards-track {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .navbar {
        padding: 0 16px;
        position: relative;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-logo-sub {
        display: none;
    }

    .nav-logo-name {
        font-size: 13px;
    }

    .hero {
        flex-direction: column;
        min-height: auto;
        padding-bottom: 40px;
    }

    .hero-content {
        padding: 30px 20px 20px;
        max-width: 100%;
        width: 100%;
    }

        .hero-content h1 {
            font-size: 26px;
        }

    .hero-img-circle {
        position: relative;
        right: auto;
        bottom: auto;
        top: auto;
        width: 200px;
        height: 200px;
        margin: 24px auto 0;
    }

    .hero-badge {
        display: none;
    }

    .hero-rings {
        display: none;
    }

    .blob-1 {
        width: 200px;
        height: 200px;
        right: -30px;
        top: -20px;
    }

    .blob-2 {
        width: 100px;
        height: 100px;
        right: 10px;
        bottom: 10px;
    }

    .hero-wave {
        height: 50px;
    }

    .reach-impact-section {
        padding: 44px 16px;
    }

    .ri-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .ri-stat-num {
        font-size: 30px;
        min-width: 90px;
    }

    .about-section {
        flex-direction: column;
        padding: 40px 20px;
        gap: 28px;
        text-align: center;
    }

    .about-img-wrap {
        width: 220px;
        height: 220px;
        margin: 0 auto;
        box-shadow: 8px 8px 0 var(--yellow);
    }

    .about-highlights {
        justify-content: center;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .testi-main-section {
        padding: 44px 16px 80px;
    }

    .testi-category-row {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto 40px;
    }

    .testi-cat-img-placeholder {
        height: 160px;
        font-size: 60px;
    }

    .testi-slider-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .testi-cards-track {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 26px;
    }

    .photo-gallery-section {
        padding: 44px 16px 60px;
    }

    .pg-slide {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .pg-slide-img {
        height: 160px;
    }

    .highlights-section {
        padding: 44px 16px 60px;
    }

    .hl-orbit-wrap {
        display: none;
    }

    .hl-nodes-mobile {
        display: grid;
    }

    .gallery-header {
        padding: 44px 20px 28px;
    }

    .gallery-title {
        font-size: 28px;
    }

    .gallery-subtitle {
        font-size: 13px;
    }

    .gallery-filters {
        gap: 8px;
    }

    .gal-filter-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .gallery-grid-wrap {
        padding: 32px 16px 48px;
    }

    .gal-item:nth-child(5) {
        grid-column: span 2;
    }

        .gal-item:nth-child(5) .gal-img-placeholder {
            height: 160px;
        }

    .gal-img-placeholder {
        height: 140px;
        font-size: 36px;
    }

    .img-lb-img-wrap {
        height: 260px;
    }

    .abc-text {
        font-size: 64px;
    }

    .franchise-body {
        padding: 20px 16px;
    }

        .franchise-body h2 {
            font-size: 22px;
        }

    .fr-feat {
        border-right: none;
        border-bottom: 1px solid rgba(10,31,68,0.15);
        width: 100%;
        text-align: center;
        font-size: 12px;
    }

    .testi-section {
        padding: 44px 20px;
    }

    .testi-body {
        font-size: 14px;
    }

    .footer {
        padding: 36px 16px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .float-bar {
        left: 8px;
        right: 8px;
        transform: none;
        width: calc(100% - 16px);
        justify-content: center;
        bottom: 12px;
    }

    .float-btn {
        padding: 10px 14px;
        font-size: 12px;
    }

    .social-row {
        bottom: 80px;
        left: 8px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 21px;
    }

    .float-btn .btn-label {
        display: none;
    }

    .pg-slide {
        flex: 0 0 calc(100% - 0px);
        min-width: calc(100%);
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gal-item:nth-child(5) {
        grid-column: span 1;
    }

    .gal-img-placeholder {
        width: 100%;
        height: 220px;
        overflow: hidden;
        border-radius: 15px;
    }

        .gal-img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

    .about-img-wrap img, .hero-img-circle img {
        filter: brightness(1.05) contrast(1.1);
    }
}

/* =============================================================
   ABOUT US PAGE STYLES
   ============================================================= */

/* ===== PAGE HERO BANNER ===== */
.page-hero {
    background: var(--navy);
    min-height: 260px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

    .page-hero .blob-1 {
        right: -60px;
        top: -60px;
        width: 280px;
        height: 280px;
        opacity: 0.7;
    }

    .page-hero .blob-2 {
        right: 60px;
        bottom: 10px;
        width: 140px;
        height: 140px;
        opacity: 0.4;
    }

    .page-hero .blob-pink {
        left: -40px;
        bottom: -40px;
        width: 160px;
        height: 160px;
        opacity: 0.15;
    }

    .page-hero .blob-teal {
        left: 38%;
        top: -20px;
        width: 100px;
        height: 100px;
    }

.page-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--sky-soft);
    border-radius: 60% 60% 0 0 / 100% 100% 0 0;
}

.page-hero-content {
    position: relative;
    z-index: 5;
    padding: 48px 24px 90px;
}

.page-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(223,246,255,0.15);
    border: 1px solid rgba(223,246,255,0.4);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 16px;
}

.page-hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--sky-mid);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

.page-hero-eyebrow span {
    font-size: 11px;
    font-weight: 700;
    color: var(--sky-mid);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.page-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

    .page-hero h1 .highlight {
        color: var(--yellow);
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 14px;
}

    .breadcrumb a,
    .breadcrumb span {
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        color: rgba(255,255,255,0.65);
        text-decoration: none;
    }

        .breadcrumb a:hover {
            color: var(--yellow);
        }

    .breadcrumb .sep {
        color: rgba(255,255,255,0.35);
    }

    .breadcrumb .current {
        color: var(--yellow);
        font-weight: 700;
    }

/* ===== STATS STRIP ===== */
.stats-strip {
    background: var(--yellow);
    padding: 44px 60px;
}

.stats-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat-item {
    padding: 10px;
}

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    opacity: 0.75;
}

/* ===== ABOUT BLOCKS ===== */
.about-block {
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

    .about-block.alt {
        background: var(--sky-soft);
    }

.about-block-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-block.reverse .about-block-inner {
    flex-direction: row-reverse;
}

.about-block-text {
    flex: 1;
}

.about-block-img {
    flex: 0 0 380px;
}

    .about-block-img img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        border-radius: 24px;
        display: block;
    }

    .about-block-img .img-placeholder {
        width: 100%;
        height: 320px;
        background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 80px;
    }

.about-block-eyebrow {
    display: inline-block;
    background: var(--yellow-pale);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1.5px solid var(--yellow);
}

.about-block-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.22;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

    .about-block-text h2 span {
        color: var(--pink);
    }

.about-block-text p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 14px;
}

    .about-block-text p:last-child {
        margin-bottom: 0;
    }

.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.about-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: var(--white);
    border: 2px solid var(--sky-mid);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    transition: border-color 0.2s, background 0.2s;
}

    .about-pill:hover {
        border-color: var(--yellow);
        background: var(--yellow-pale);
    }

    .about-pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--yellow);
        flex-shrink: 0;
    }

/* Decorative elements */
.deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(10,31,68,0.07);
    pointer-events: none;
}

.deco-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Image box with yellow border accent */
.about-img-box {
    position: relative;
}

    .about-img-box::after {
        content: '';
        position: absolute;
        bottom: -12px;
        right: -12px;
        width: 80%;
        height: 80%;
        border: 3px solid var(--yellow);
        border-radius: 24px;
        z-index: -1;
        pointer-events: none;
    }

    .about-img-box .tag-badge {
        position: absolute;
        bottom: 16px;
        left: 16px;
        background: var(--pink);
        color: white;
        font-family: 'Poppins', sans-serif;
        font-size: 11px;
        font-weight: 700;
        padding: 6px 14px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 14px rgba(233,30,140,0.35);
    }

/* ===== VISION MISSION VALUES ===== */
.vmv-section {
    background: var(--sky-soft);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.vmv-decor-1 {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.08;
    pointer-events: none;
}

.vmv-decor-2 {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.1;
    pointer-events: none;
}

.vmv-inner {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.vmv-header {
    text-align: center;
    margin-bottom: 56px;
}

    .vmv-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 34px;
        font-weight: 900;
        color: var(--navy);
        margin-top: 8px;
    }

        .vmv-header h2 span {
            color: var(--yellow);
        }

.vmv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vmv-card {
    background: #DFF6FF;
    border: 1.5px solid var(--sky-mid);
    border-radius: 20px;
    padding: 36px 28px;
    transition: transform 0.25s, border-color 0.25s, background 0.25s;
    box-shadow: 0 4px 24px rgba(10,31,68,0.08);
}

    .vmv-card:hover {
        transform: translateY(-6px);
        border-color: var(--yellow);
        background: var(--yellow-pale);
    }

.vmv-icon {
    width: 56px;
    height: 56px;
    background: var(--yellow);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.vmv-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.vmv-card p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
}

/* ===== PRIORITY CARDS ===== */
.priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.priority-card {
    background: var(--white);
    border-radius: 20px;
    padding: 28px 24px;
    border: 2px solid var(--sky-mid);
    text-align: center;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(10,31,68,0.06);
}

    .priority-card:hover {
        border-color: var(--yellow);
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(10,31,68,0.13);
    }

.priority-card-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.priority-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.priority-card-desc {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ===== ABOUT PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
    .about-block {
        padding: 60px 30px;
    }

    .about-block-img {
        flex: 0 0 300px;
    }

    .vmv-section {
        padding: 60px 30px;
    }

    .stats-strip {
        padding: 36px 30px;
    }
}

@media (max-width: 860px) {
    .about-block-inner {
        flex-direction: column !important;
        gap: 36px;
    }

    .about-block-img {
        flex: none;
        width: 100%;
    }

        .about-block-img img,
        .about-block-img .img-placeholder {
            height: 260px;
        }

    .vmv-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-strip-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .vmv-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .page-hero h1 {
        font-size: 26px;
    }

    .page-hero-content {
        padding: 36px 20px 80px;
    }

    .about-block {
        padding: 44px 20px;
    }

    .about-block-text h2 {
        font-size: 22px;
    }

    .about-block-text p {
        font-size: 14px;
    }

    .vmv-section {
        padding: 44px 20px;
    }

    .vmv-header h2 {
        font-size: 22px;
    }

    .stats-strip {
        padding: 36px 20px;
    }

    .stat-num {
        font-size: 28px;
    }

    .about-img-box::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 22px;
    }

    .stats-strip-inner {
        grid-template-columns: 1fr 1fr;
    }

    .priority-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== OUR PRIORITY PAGE ===== */

/* --- Intro Strip --- */
.priority-intro {
    background: var(--sky-soft);
    padding: 64px 60px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.priority-intro-inner {
    max-width: 760px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.priority-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    margin-top: 8px;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
}

    .priority-intro h2 span {
        color: var(--pink);
    }

.priority-intro p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 20px;
}

.priority-intro-deco1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.07;
    pointer-events: none;
}

.priority-intro-deco2 {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.07;
    pointer-events: none;
}

/* --- Priority Feature Blocks --- */
.priority-block {
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    background: var(--white);
}

    .priority-block.alt {
        background: var(--sky-soft);
    }

.priority-block-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 64px;
}

.priority-block.reverse .priority-block-inner {
    flex-direction: row-reverse;
}

.priority-block-img {
    flex: 0 0 400px;
    position: relative;
}

.priority-img-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--yellow);
    box-shadow: 0 16px 48px rgba(10,31,68,0.14);
    margin: 0 auto;
    position: relative;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

    .priority-img-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .priority-img-circle .fallback-icon {
        font-size: 100px;
    }

.priority-img-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 2px dashed rgba(245,197,24,0.35);
    pointer-events: none;
}

.priority-num-badge {
    position: absolute;
    bottom: 10px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: var(--pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 6px 20px rgba(233,30,140,0.4);
    z-index: 2;
}

.priority-block-text {
    flex: 1;
}

.priority-block-eyebrow {
    display: inline-block;
    background: var(--yellow-pale);
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    border: 1.5px solid var(--yellow);
}

.priority-block-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

    .priority-block-text h2 span {
        color: var(--pink);
    }

.priority-block-text p {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.priority-points {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.priority-point {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border: 1.5px solid var(--sky-mid);
    border-radius: 14px;
    padding: 12px 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.priority-block.alt .priority-point {
    background: var(--white);
}

.priority-point:hover {
    border-color: var(--yellow);
    box-shadow: 0 4px 16px rgba(10,31,68,0.08);
}

.priority-point-icon {
    width: 36px;
    height: 36px;
    background: var(--yellow);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.priority-point-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    line-height: 1.55;
}

    .priority-point-text span {
        display: block;
        font-size: 12px;
        font-weight: 500;
        color: var(--text-muted);
        margin-top: 2px;
        font-family: 'Baloo 2', sans-serif;
    }

/* --- Quote Band --- */
.quote-band {
    background: var(--navy);
    padding: 60px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-band-deco1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.07;
    pointer-events: none;
}

.quote-band-deco2 {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.1;
    pointer-events: none;
}

.quote-band-inner {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.quote-mark {
    font-size: 80px;
    color: var(--yellow);
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    line-height: 0.6;
    opacity: 0.6;
    margin-bottom: 16px;
}

.quote-band blockquote {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 24px;
}

    .quote-band blockquote span {
        color: var(--yellow);
    }

.quote-source {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* --- Summary Cards --- */
.priority-summary {
    background: var(--sky-soft);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.priority-summary-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.priority-summary-header {
    text-align: center;
    margin-bottom: 52px;
}

    .priority-summary-header h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        font-weight: 900;
        color: var(--navy);
        margin-top: 8px;
    }

        .priority-summary-header h2 span {
            color: var(--pink);
        }

.priority-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.p-sum-card {
    background: var(--white);
    border-radius: 24px;
    padding: 36px 28px;
    border: 2px solid var(--sky-mid);
    text-align: center;
    transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 4px 20px rgba(10,31,68,0.06);
}

    .p-sum-card:hover {
        border-color: var(--yellow);
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(10,31,68,0.12);
    }

.p-sum-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-bright));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(245,197,24,0.35);
}

.p-sum-title {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.p-sum-desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    line-height: 1.7;
}

.p-sum-tag {
    display: inline-block;
    margin-top: 16px;
    background: var(--yellow-pale);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1.5px solid var(--yellow);
}

/* ===== PRIORITY PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
    .priority-block {
        padding: 60px 32px;
    }

    .priority-intro {
        padding: 48px 32px 40px;
    }

    .quote-band {
        padding: 48px 32px;
    }

    .priority-summary {
        padding: 60px 32px;
    }

    .priority-block-img {
        flex: 0 0 320px;
    }

    .priority-img-circle {
        width: 280px;
        height: 280px;
    }

    .priority-img-ring {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 860px) {
    .priority-block-inner {
        flex-direction: column !important;
        gap: 36px;
    }

    .priority-block-img {
        flex: none;
        width: 100%;
    }

    .priority-img-circle {
        width: 260px;
        height: 260px;
        margin: 0 auto;
    }

    .priority-img-ring {
        width: 300px;
        height: 300px;
    }

    .priority-cards-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .priority-intro h2 {
        font-size: 26px;
    }

    .priority-block-text h2 {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .priority-block {
        padding: 44px 20px;
    }

    .priority-intro {
        padding: 44px 20px 36px;
    }

        .priority-intro h2 {
            font-size: 22px;
        }

        .priority-intro p {
            font-size: 14px;
        }

    .priority-block-text h2 {
        font-size: 22px;
    }

    .priority-block-text p {
        font-size: 14px;
    }

    .quote-band {
        padding: 44px 20px;
    }

        .quote-band blockquote {
            font-size: 17px;
        }

    .priority-summary {
        padding: 44px 20px;
    }

    .priority-summary-header h2 {
        font-size: 22px;
    }

    .priority-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .priority-img-circle {
        width: 220px;
        height: 220px;
    }

    .priority-img-ring {
        width: 260px;
        height: 260px;
    }

    .quote-band blockquote {
        font-size: 15px;
    }
}


/* ==========================================================
   WHAT WE OFFER PAGE STYLES
   ========================================================== */

/* ===== OFFER INTRO STRIP ===== */
.offer-intro {
    background: var(--sky-soft);
    padding: 64px 60px 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.offer-intro h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--navy);
    margin-top: 8px;
    margin-bottom: 18px;
    letter-spacing: -0.4px;
    line-height: 1.25;
}

    .offer-intro h2 span {
        color: var(--pink);
    }

.offer-intro p {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.8;
    margin-top: 20px;
}

/* ===== OFFER GRID SECTION ===== */
.offer-grid-section {
    background: var(--white);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.offer-grid-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* ===== OFFER CARD ===== */
.offer-card {
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--sky-mid);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(10,31,68,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    opacity: 0;
    transform: translateY(28px);
}

    .offer-card.visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    }

    .offer-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 48px rgba(10,31,68,0.14);
        border-color: var(--yellow);
    }

.offer-card-icon-wrap {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 24px;
    position: relative;
}

    .offer-card-icon-wrap::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 20px;
        background: var(--white);
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }

.offer-card-icon {
    font-size: 36px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}

.offer-card-body {
    padding: 20px 24px 20px;
    flex: 1;
}

    .offer-card-body h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 16px;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .offer-card-body p {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text-mid);
        line-height: 1.75;
        margin-bottom: 14px;
    }

.offer-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .offer-card-list li {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--navy);
        font-family: 'Poppins', sans-serif;
        padding-left: 18px;
        position: relative;
    }

        .offer-card-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--pink);
            font-weight: 700;
        }

.offer-card-tag {
    display: inline-block;
    margin: 0 24px 20px;
    background: var(--yellow-pale);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1.5px solid var(--yellow);
}

/* ===== OFFER HIGHLIGHT BAND ===== */
.offer-highlight-band {
    background: var(--navy);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.offer-highlight-deco1 {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.06;
    pointer-events: none;
}

.offer-highlight-deco2 {
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.08;
    pointer-events: none;
}

.offer-highlight-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.offer-highlight-text {
    flex: 1;
}

    .offer-highlight-text h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 34px;
        font-weight: 900;
        color: var(--white);
        line-height: 1.25;
        margin-top: 8px;
        margin-bottom: 18px;
        letter-spacing: -0.3px;
    }

        .offer-highlight-text h2 span {
            color: var(--yellow);
        }

    .offer-highlight-text p {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        line-height: 1.8;
        margin-bottom: 36px;
    }

.offer-stats-row {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.offer-stat {
    text-align: center;
}

.offer-stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--yellow);
    line-height: 1;
}

.offer-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Visual side of highlight band */
.offer-highlight-visual {
    flex: 0 0 340px;
    position: relative;
    height: 340px;
}

.offer-highlight-circle {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(245,197,24,0.15), rgba(233,30,140,0.1));
    border: 2px dashed rgba(245,197,24,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px auto 0;
    position: relative;
}

    .offer-highlight-circle::before {
        content: '';
        position: absolute;
        inset: -20px;
        border-radius: 50%;
        border: 1.5px dashed rgba(245,197,24,0.15);
    }

.offer-highlight-circle-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.offer-highlight-emoji {
    font-size: 52px;
}

.offer-highlight-label {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--yellow);
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.offer-float-badge {
    position: absolute;
    background: var(--white);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.badge-1 {
    top: 20px;
    left: 0;
}

.badge-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.badge-3 {
    bottom: 20px;
    left: 20px;
}

/* ===== CTA SECTION ===== */
.offer-cta-section {
    background: var(--sky-soft);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.offer-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

    .offer-cta-inner h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 34px;
        font-weight: 900;
        color: var(--navy);
        margin-top: 8px;
        margin-bottom: 0;
        letter-spacing: -0.4px;
    }

        .offer-cta-inner h2 span {
            color: var(--pink);
        }

    .offer-cta-inner p {
        font-size: 15px;
        font-weight: 500;
        color: var(--text-mid);
        line-height: 1.8;
        margin-top: 20px;
        margin-bottom: 32px;
    }

.offer-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.offer-btn-primary {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 6px 20px rgba(10,31,68,0.2);
    letter-spacing: 0.3px;
}

    .offer-btn-primary:hover {
        background: var(--yellow);
        color: var(--navy);
        transform: translateY(-3px);
        box-shadow: 0 12px 32px rgba(245,197,24,0.35);
    }

.offer-btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 13px 36px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--navy);
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

    .offer-btn-secondary:hover {
        background: var(--navy);
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(10,31,68,0.15);
    }

/* ===== OFFER PAGE RESPONSIVE ===== */
@media (max-width: 1100px) {
    .offer-grid-section {
        padding: 60px 32px;
    }

    .offer-highlight-band {
        padding: 60px 32px;
    }

    .offer-cta-section {
        padding: 60px 32px;
    }

    .offer-intro {
        padding: 48px 32px 40px;
    }

    .offer-grid-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .offer-highlight-inner {
        gap: 48px;
    }

    .offer-highlight-visual {
        flex: 0 0 280px;
        height: 280px;
    }

    .offer-highlight-circle {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 860px) {
    .offer-grid-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .offer-highlight-inner {
        flex-direction: column;
        gap: 40px;
    }

    .offer-highlight-visual {
        flex: none;
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }

    .offer-highlight-text h2 {
        font-size: 26px;
    }

    .offer-highlight-text {
        text-align: center;
    }

    .offer-stats-row {
        justify-content: center;
    }

    .offer-intro h2 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .offer-grid-section {
        padding: 44px 16px;
    }

    .offer-grid-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .offer-intro {
        padding: 44px 20px 36px;
    }

        .offer-intro h2 {
            font-size: 22px;
        }

        .offer-intro p {
            font-size: 14px;
        }

    .offer-highlight-band {
        padding: 44px 20px;
    }

    .offer-highlight-text h2 {
        font-size: 22px;
    }

    .offer-cta-section {
        padding: 44px 20px;
    }

    .offer-cta-inner h2 {
        font-size: 22px;
    }

    .offer-stats-row {
        gap: 20px;
    }

    .offer-stat-num {
        font-size: 26px;
    }

    .offer-float-badge {
        font-size: 11px;
        padding: 6px 10px;
    }

    .badge-1 {
        top: 0;
        left: 10px;
    }

    .badge-2 {
        top: auto;
        bottom: 60px;
        right: 0;
        transform: none;
    }

    .badge-3 {
        bottom: 0;
        left: 10px;
    }
}

@media (max-width: 480px) {
    .offer-card-body h3 {
        font-size: 15px;
    }

    .offer-btn-primary, .offer-btn-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }
}


/* ==========================================================
   NEWS & UPDATES PAGE STYLES
   ========================================================== */

/* ===== NU HERO BANNER ===== */
.nu-hero {
    background: linear-gradient(160deg, #f5faff 0%, #edfff7 50%, #fffbe8 100%);
    min-height: 220px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 48px 24px 80px;
}

.nu-hero-blob1 {
    position: absolute;
    left: -60px;
    top: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.13;
    pointer-events: none;
}

.nu-hero-blob2 {
    position: absolute;
    right: -80px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.10;
    pointer-events: none;
}

.nu-hero-blob3 {
    position: absolute;
    left: 40%;
    top: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.10;
    pointer-events: none;
}

.nu-hero-deco-ring {
    position: absolute;
    right: 220px;
    top: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px dashed rgba(10,31,68,0.12);
    pointer-events: none;
}

.nu-hero-deco-plus {
    position: absolute;
    left: 38%;
    bottom: 90px;
    font-size: 28px;
    font-weight: 900;
    color: var(--yellow);
    opacity: 0.5;
    pointer-events: none;
}

.nu-hero-deco-squig {
    position: absolute;
    top: 30px;
    left: 30%;
    font-size: 22px;
    color: var(--pink);
    opacity: 0.4;
    pointer-events: none;
}

.nu-hero-left-img {
    position: absolute;
    left: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 56px;
    line-height: 1;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    user-select: none;
}

.nu-hero-bubble1, .nu-hero-bubble2 {
    position: absolute;
    background: linear-gradient(135deg,#E91E8C,#FF6EC7);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(233,30,140,0.3);
}

.nu-hero-bubble1 {
    top: -14px;
    left: 40px;
}

.nu-hero-bubble2 {
    bottom: -8px;
    right: -4px;
    font-size: 11px;
    width: 24px;
    height: 24px;
}

.nu-hero-right-img {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 60px;
    line-height: 1;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
    user-select: none;
}

.nu-hero-center {
    text-align: center;
    position: relative;
    z-index: 2;
}

    .nu-hero-center h1 {
        font-family: 'Poppins', sans-serif;
        font-size: 40px;
        font-weight: 900;
        color: var(--pink);
        letter-spacing: 1px;
        text-transform: uppercase;
        line-height: 1.1;
        margin-bottom: 12px;
        text-shadow: 0 2px 12px rgba(233,30,140,0.12);
    }

.nu-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

    .nu-breadcrumb a {
        color: var(--navy);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nu-breadcrumb a:hover {
            color: var(--pink);
        }

.nu-breadcrumb-dot {
    color: var(--pink);
    font-size: 8px;
}

.nu-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-radius: 60% 60% 0 0 / 100% 100% 0 0;
}

/* ===== FILTER TABS ===== */
.nu-filter-section {
    padding: 32px 24px 8px;
    background: var(--white);
}

.nu-filter-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.nu-filter-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    border-radius: 50px;
    border: 2px solid var(--sky-mid);
    background: var(--sky-soft);
    color: var(--navy);
    cursor: pointer;
    transition: all 0.22s;
}

    .nu-filter-btn:hover {
        border-color: var(--pink);
        color: var(--pink);
        background: #fff0fa;
    }

    .nu-filter-btn.active {
        background: var(--yellow);
        border-color: var(--yellow);
        color: var(--navy);
        box-shadow: 0 4px 14px rgba(245,197,24,0.35);
    }

/* ===== SECTION INNER WRAPPER ===== */
.nu-section-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== FEATURED SECTION ===== */
.nu-featured-section {
    background: var(--sky-soft);
    padding: 64px 24px 72px;
    position: relative;
    overflow: hidden;
}

    .nu-featured-section::before {
        content: '';
        position: absolute;
        right: -80px;
        top: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: var(--yellow);
        opacity: 0.06;
        pointer-events: none;
    }

.nu-featured-card {
    display: flex;
    gap: 48px;
    align-items: stretch;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid var(--sky-mid);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(10,31,68,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

    .nu-featured-card.nu-visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
    }

    .nu-featured-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 60px rgba(10,31,68,0.12);
    }

.nu-featured-img-wrap {
    flex: 0 0 420px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0A1F44, #2E5FA3);
    min-height: 320px;
}

    .nu-featured-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.nu-featured-card:hover .nu-featured-img-wrap img {
    transform: scale(1.04);
}

.nu-featured-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(245,197,24,0.4);
}

.nu-featured-content {
    flex: 1;
    padding: 40px 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nu-featured-date {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.nu-featured-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.nu-featured-content p {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 20px;
}

.nu-featured-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
}

.nu-pill {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--yellow-pale);
    color: var(--navy);
    border: 1.5px solid var(--yellow);
    letter-spacing: 0.3px;
}

.nu-read-more-btn {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    align-self: flex-start;
    box-shadow: 0 4px 16px rgba(10,31,68,0.18);
}

    .nu-read-more-btn:hover {
        background: var(--pink);
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(233,30,140,0.3);
    }

/* ===== NEWS GRID ===== */
.nu-grid-section {
    background: var(--white);
    padding: 72px 24px 80px;
}

.nu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ===== NEWS CARD ===== */
.nu-card {
    background: var(--white);
    border-radius: 20px;
    border: 2px solid var(--sky-mid);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(10,31,68,0.06);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s, opacity 0.3s;
    opacity: 0;
    transform: translateY(28px);
}

    .nu-card.nu-visible {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s, border-color 0.3s;
    }

.nu-card-hidden {
    opacity: 0 !important;
    transform: scale(0.95) !important;
}

.nu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(10,31,68,0.12);
    border-color: var(--yellow);
}

.nu-card-img-wrap {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .nu-card-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s;
    }

.nu-card:hover .nu-card-img-wrap img {
    transform: scale(1.06);
}

.nu-card-emoji {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.nu-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

    .nu-card-badge.event {
        background: var(--yellow);
        color: var(--navy);
    }

    .nu-card-badge.press {
        background: var(--teal);
        color: var(--white);
    }

    .nu-card-badge.award {
        background: var(--pink);
        color: var(--white);
    }

    .nu-card-badge.workshop {
        background: var(--navy);
        color: var(--white);
    }

.nu-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.nu-card-date {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.nu-card-body h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 10px;
}

.nu-card-body p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 16px;
}

.nu-card-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--pink);
    text-decoration: none;
    align-self: flex-start;
    transition: letter-spacing 0.2s;
}

    .nu-card-link:hover {
        letter-spacing: 0.5px;
    }

/* Load More */
.nu-load-more-wrap {
    text-align: center;
    margin-top: 52px;
}

.nu-load-more-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 44px;
    border-radius: 50px;
    border: 2px solid var(--navy);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

    .nu-load-more-btn:hover {
        background: var(--navy);
        color: var(--white);
        box-shadow: 0 8px 28px rgba(10,31,68,0.18);
        transform: translateY(-2px);
    }

/* ===== NEWSLETTER BAND ===== */
.nu-newsletter-section {
    background: var(--navy);
    padding: 80px 40px;
    position: relative;
    overflow: hidden;
}

.nu-newsletter-deco1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.07;
    pointer-events: none;
}

.nu-newsletter-deco2 {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: var(--pink);
    opacity: 0.08;
    pointer-events: none;
}

.nu-newsletter-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.nu-newsletter-text {
    flex: 1;
}

    .nu-newsletter-text h2 {
        font-family: 'Poppins', sans-serif;
        font-size: 32px;
        font-weight: 900;
        color: var(--white);
        line-height: 1.25;
        margin-bottom: 12px;
        margin-top: 8px;
    }

    .nu-newsletter-text p {
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.72);
        line-height: 1.75;
    }

.nu-newsletter-form {
    flex: 0 0 420px;
}

.nu-subscribe-row {
    display: flex;
    gap: 0;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.nu-email-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
}

    .nu-email-input::placeholder {
        color: var(--text-muted);
    }

.nu-subscribe-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 15px 26px;
    background: var(--yellow);
    color: var(--navy);
    border: none;
    cursor: pointer;
    border-radius: 0 50px 50px 0;
    transition: background 0.2s;
    white-space: nowrap;
}

    .nu-subscribe-btn:hover {
        background: var(--yellow-bright);
    }

.nu-form-note {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    text-align: center;
}

/* ==========================================================
   NEWS & UPDATES RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
    .nu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .nu-featured-img-wrap {
        flex: 0 0 340px;
    }

    .nu-featured-content h3 {
        font-size: 20px;
    }

    .nu-newsletter-inner {
        gap: 48px;
    }

    .nu-newsletter-form {
        flex: 0 0 340px;
    }
}

@media (max-width: 860px) {
    .nu-hero-left-img {
        left: 16px;
        font-size: 40px;
    }

    .nu-hero-right-img {
        right: 16px;
        font-size: 44px;
    }

    .nu-hero-center h1 {
        font-size: 30px;
    }

    .nu-featured-card {
        flex-direction: column;
    }

    .nu-featured-img-wrap {
        flex: none;
        width: 100%;
        min-height: 240px;
    }

    .nu-featured-content {
        padding: 28px 28px 28px;
    }

    .nu-newsletter-inner {
        flex-direction: column;
        gap: 36px;
        text-align: center;
    }

    .nu-newsletter-form {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }

    .nu-newsletter-text h2 {
        font-size: 26px;
    }
}

@media (max-width: 640px) {
    .nu-hero {
        padding: 40px 16px 72px;
        min-height: 180px;
    }

    .nu-hero-center h1 {
        font-size: 24px;
        letter-spacing: 0.5px;
    }

    .nu-hero-left-img {
        display: none;
    }

    .nu-hero-right-img {
        display: none;
    }

    .nu-filter-section {
        padding: 24px 16px 4px;
    }

    .nu-filter-inner {
        gap: 8px;
    }

    .nu-filter-btn {
        font-size: 12px;
        padding: 7px 16px;
    }

    .nu-featured-section {
        padding: 44px 16px 52px;
    }

    .nu-featured-content {
        padding: 22px 20px 22px;
    }

        .nu-featured-content h3 {
            font-size: 17px;
        }

    .nu-grid-section {
        padding: 44px 16px 52px;
    }

    .nu-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nu-newsletter-section {
        padding: 48px 20px;
    }

    .nu-newsletter-text h2 {
        font-size: 22px;
    }

    .nu-newsletter-text p {
        font-size: 13.5px;
    }

    .nu-subscribe-row {
        flex-direction: column;
        border-radius: 16px;
        gap: 0;
    }

    .nu-email-input {
        border-radius: 14px 14px 0 0;
        padding: 14px 20px;
    }

    .nu-subscribe-btn {
        border-radius: 0 0 14px 14px;
        padding: 14px 20px;
    }

    .nu-load-more-btn {
        padding: 12px 32px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .nu-hero-center h1 {
        font-size: 20px;
    }

    .nu-featured-content h3 {
        font-size: 15px;
    }

    .nu-card-body h4 {
        font-size: 14px;
    }
}

/* ==========================================================
   OUR MISSION PAGE
   ========================================================== */

/* ---- Mission Hero Banner (Navy theme matching Our Priority) ---- */
.mission-hero {
    background: var(--navy);
    min-height: 360px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Concentric ring decoration — top right */
.mh-circle-ring {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 1.5px solid rgba(245,197,24,0.35);
    pointer-events: none;
}
.mh-circle-ring::before,
.mh-circle-ring::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(245,197,24,0.25);
    inset: 28px;
}
.mh-circle-ring::after {
    inset: 56px;
    border-color: rgba(245,197,24,0.15);
}

/* Gold blobs — right side */
.mh-blob-gold-lg {
    position: absolute;
    right: -30px;
    top: 30px;
    width: 200px;
    height: 200px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.85;
}
.mh-blob-gold-sm {
    position: absolute;
    right: 110px;
    bottom: 20px;
    width: 120px;
    height: 120px;
    background: var(--yellow-bright);
    border-radius: 50%;
    opacity: 0.55;
}

/* Teal blob — top center */
.mh-blob-teal {
    position: absolute;
    left: 45%;
    top: -20px;
    width: 130px;
    height: 130px;
    background: var(--teal);
    border-radius: 50%;
    opacity: 0.18;
}

/* Purple blob — bottom left */
.mh-blob-purple {
    position: absolute;
    left: -40px;
    bottom: 20px;
    width: 160px;
    height: 160px;
    background: #6B2FA0;
    border-radius: 50%;
    opacity: 0.45;
}

/* Wave bottom */
.mission-hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 90px;
    background: var(--sky-soft);
    border-radius: 60% 60% 0 0 / 100% 100% 0 0;
}

/* Center content */
.mission-hero-center {
    position: relative;
    z-index: 5;
    text-align: center;
    padding: 60px 20px 100px;
}

/* Eyebrow pill */
.mh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50px;
    padding: 7px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    background: rgba(255,255,255,0.06);
}
.mh-eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* Main title */
.mission-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.mh-title-yellow {
    color: var(--yellow);
}

/* Breadcrumb */
.mission-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}
.breadcrumb-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumb-link:hover { color: var(--yellow); }

.breadcrumb-arrow {
    color: rgba(255,255,255,0.45);
    font-size: 16px;
    line-height: 1;
}
.breadcrumb-current {
    color: var(--yellow);
    font-weight: 700;
}

/* ---- Mission Content Section ---- */
.mission-content-section {
    padding: 72px 60px 80px;
    background: var(--white);
}

.mission-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.mission-text-col {
    flex: 1;
}

.mission-content-title {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 36px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 28px;
    padding: 20px 24px;
    border-radius: 16px;
    background: var(--sky-soft);
    border: 1.5px solid var(--sky-mid);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
    animation: none;
}

.mission-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-item:hover {
    box-shadow: 0 8px 28px rgba(10,31,68,0.08);
    transform: translateY(-2px);
    border-color: var(--yellow);
}

.mission-item-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.mission-item-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    font-family: 'Baloo 2', sans-serif;
}

.mission-item-bold {
    font-weight: 800;
    color: var(--navy);
    display: inline;
}

/* ---- Mission Image Column ---- */
.mission-img-col {
    flex: 0 0 380px;
}

.mission-img-wrap {
    position: relative;
    border-radius: 24px;
    overflow: visible;
}

.mission-img-wrap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(10,31,68,0.12);
    display: block;
}

.mission-img-fallback {
    width: 100%;
    height: 360px;
    background: linear-gradient(135deg, var(--sky-soft), var(--sky-mid));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 24px 60px rgba(10,31,68,0.12);
}

.mission-img-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--yellow);
    color: var(--navy);
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(245,197,24,0.35);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

/* ---- Mission Pillars Section ---- */
.mission-pillars-section {
    background: var(--sky-soft);
    padding: 80px 60px 100px;
    position: relative;
    overflow: hidden;
}

.mission-pillars-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    text-align: left;
}

.mission-pillar-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px 28px 36px;
    border: 1.5px solid var(--sky-mid);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
}

.mission-pillar-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-pillar-card:hover {
    box-shadow: 0 16px 48px rgba(10,31,68,0.10);
    transform: translateY(-4px);
    border-color: var(--yellow);
}

.mission-pillar-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}

.mission-pillar-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.mission-pillar-card p {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 20px;
}

.mission-pillar-line {
    height: 3px;
    width: 40px;
    background: var(--yellow);
    border-radius: 4px;
}

/* ---- Mission CTA Section ---- */
.mission-cta-section {
    background: var(--navy);
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
}

.mission-cta-deco1 {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 300px;
    height: 300px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.07;
}

.mission-cta-deco2 {
    position: absolute;
    left: -60px;
    bottom: -60px;
    width: 220px;
    height: 220px;
    background: var(--pink);
    border-radius: 50%;
    opacity: 0.09;
}

.mission-cta-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    position: relative;
    z-index: 2;
}

.mission-cta-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.mission-cta-text p {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 560px;
}

.mission-cta-btns {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.mission-cta-btn-primary {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 36px;
    background: var(--yellow);
    color: var(--navy);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    box-shadow: 0 8px 24px rgba(245,197,24,0.3);
    white-space: nowrap;
}
.mission-cta-btn-primary:hover {
    background: var(--yellow-bright);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(245,197,24,0.4);
}

.mission-cta-btn-secondary {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 36px;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}
.mission-cta-btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.footer-wave-top {
    height: 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 72px 48px 56px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 48px;
}

.footer-brand-col {}

.footer-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
}

.footer-brand-desc {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.62);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 300px;
}

.footer-social-row {
    display: flex;
    gap: 10px;
}

.footer-soc-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1.5px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-soc-btn:hover {
    background: var(--yellow);
    color: var(--navy);
    border-color: var(--yellow);
}

.footer-col-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
}

.footer-link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link-list li a {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-link-list li a::before {
    content: '›';
    color: var(--yellow);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}
.footer-link-list li a:hover { color: var(--yellow); }

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.footer-contact-icon {
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 1px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.09);
}

.footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 22px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.42);
    line-height: 1.6;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom-links a {
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--yellow); }

.footer-bottom-links span {
    color: rgba(255,255,255,0.2);
}

/* ==========================================================
   MISSION PAGE RESPONSIVE
   ========================================================== */
@media (max-width: 1100px) {
    .mission-pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .mission-content-inner {
        flex-direction: column;
        gap: 48px;
    }
    .mission-img-col {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
    .mission-cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .mission-cta-text p {
        max-width: 100%;
    }
    .mission-cta-btns {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mission-hero { min-height: 260px; }
    .mission-hero-title { font-size: 38px; }
    .mh-blob-gold-lg { width: 130px; height: 130px; right: -20px; }
    .mh-blob-gold-sm { width: 80px; height: 80px; right: 60px; }
    .mh-circle-ring { width: 180px; height: 180px; right: 60px; }
    .mission-content-section { padding: 52px 24px 60px; }
    .mission-pillars-section { padding: 56px 24px 72px; }
    .mission-cta-section { padding: 60px 24px; }
    .mission-pillars-grid { grid-template-columns: 1fr; gap: 20px; }
    .mission-content-title { font-size: 28px; }
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 52px 24px 40px;
        gap: 36px;
    }
    .footer-bottom-inner {
        padding: 18px 24px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .mission-hero-title { font-size: 28px; }
    .mh-blob-gold-lg, .mh-blob-gold-sm, .mh-circle-ring { display: none; }
    .mission-breadcrumb { font-size: 12px; }
    .mission-cta-text h2 { font-size: 24px; }
    .mission-cta-btns { flex-direction: column; }
    .mission-cta-btn-primary, .mission-cta-btn-secondary { text-align: center; }
}
