/* ============================================
   RK INTERNATIONAL SCHOOL - FRESH MODERN DESIGN
   Completely Unique Layout & Styling
   ============================================ */

:root {
    --crimson: #DC143C;
    --burgundy: #DC143C;
    --gold: #FFB800;
    --amber: #FF8C00;
    --navy: #0F172A;
    --slate: #1E293B;
    --cream: #FFFBF5;
    --pearl: #F8F9FA;
    --charcoal: #2D2D2D;
    --fog: #64748B;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--charcoal);
    background: var(--pearl);
    line-height: 1.65;
    overflow-x: hidden;
}

/* VIP BUTTON */
.vip-tour-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-lr;
    text-orientation: mixed;
    background: linear-gradient(180deg, #ff1a00, #ffae00);
    color: #ffffff;
    padding: 18px 10px;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
    border-radius: 40px 0 0 40px;
    text-decoration: none;
    letter-spacing: 1px;
    z-index: 9999999;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
    transition: .3s ease-in-out;
    animation: vipGlow 2.2s infinite;
}

.vip-tour-button:hover {
    transform: translateY(-50%) scale(1.08);
}

@keyframes vipGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 174, 0, .7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 174, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 174, 0, 0);
    }
}

/* ============================================
   MODERN FLOATING NAVIGATION
   ============================================ */
.modern-nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: calc(100% - 80px);
    max-width: 1300px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-wrapper {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.04);
    position: relative;
}

.modern-nav.scrolled .nav-wrapper {
    padding: 12px 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.brand-logo {
    height: 52px;
    transition: height 0.3s;
}

.modern-nav.scrolled .brand-logo {
    height: 60px;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--crimson);
    letter-spacing: -0.3px;
}

.brand-tag {
    font-size: 12px;
    color: var(--fog);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    padding: 10px 20px;
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-item:hover {
    background: var(--cream);
    color: var(--crimson);
}

.nav-cta {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: white;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
    transition: all 0.3s;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

/* Hamburger hidden on desktop */
.hamburger {
    display: none;
    font-size: 26px;
    font-weight: 900;
    cursor: pointer;
    user-select: none;
    z-index: 10;
    color: var(--charcoal);
    transition: color 0.3s;
}

.hamburger:hover {
    color: var(--crimson);
}

/* ============================================
   MOBILE DESIGN - CRITICAL FIXES
   ============================================ */
@media(max-width:768px) {
    .modern-nav {
        width: calc(100% - 30px);
        top: 10px;
    }

    .nav-wrapper {
        padding: 12px 18px;
    }

    .brand-logo {
        height: 42px;
    }

    .brand-name {
        font-size: 14px;
    }

    .brand-tag {
        font-size: 10px;
    }

    /* show hamburger */
    .hamburger {
        display: block;
    }

    /* 🔥 CRITICAL FIX: Menu mobile me niche dropdown + HIDDEN by default */
    .nav-menu {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 12px;
        padding: 18px 0;
        border-radius: 18px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
        z-index: 999;

        /* 🔥 CRITICAL: Default hidden state */
        display: none;
        /* Initially completely hidden */
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* 🔥 CRITICAL: Open state - show menu */
    .nav-menu.active {
        display: flex;
        /* Show the menu */
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-item,
    .nav-cta {
        width: 90%;
        text-align: center;
        margin: 0 auto;
    }
}

/* Demo content */
.demo-content {
    padding: 150px 20px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content h1 {
    color: var(--crimson);
    margin-bottom: 20px;
}

.demo-content p {
    color: var(--charcoal);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* ----------- Banner Section ----------- */

.main-banner {
    width: 100%;
    margin-top: 93px;
    /* nav ke height ke hisaab se adjust karein */
}

.banner-wrapper {
    width: 100%;
    aspect-ratio: 1873 / 805;
    /* exact same ratio as your image */
    overflow: hidden;
    border-radius: 12px;
    margin-top: 30px;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* image crop hogi but full cover dikhegi */
    display: block;
    /* margin-top: 44px;
    border-radius: 20px; */
}

/* Mobile optimization */
@media (max-width: 768px) {
    .banner-wrapper {
        /* aspect-ratio: 16 / 9; */
        aspect-ratio: 12 / 5;
        /* mobile par better dikhta hai */
        border-radius: 8px;
    }
}


/* ============================================
   HERO SECTION - NEW DESIGN
   ============================================ */
.hero-modern {
    padding: 42px 40px 80px;
    background: linear-gradient(165deg, var(--cream) 0%, #FFF 100%);
    position: relative;
    overflow: hidden;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: -300px;
    right: -300px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--crimson), var(--burgundy));
    color: white;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.25);
}

.hero-headline {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--crimson), var(--amber));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    font-size: 18px;
    color: var(--fog);
    margin-bottom: 35px;
    font-style: italic;
    font-weight: 400;
}

.hero-answer-box {
    background: white;
    padding: 30px;
    border-radius: 18px;
    border-left: 6px solid var(--gold);
    margin-bottom: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.hero-answer-box h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.hero-answer-box p {
    font-size: 16px;
    color: var(--fog);
    font-weight: 500;
}

.hero-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.info-card {
    background: white;
    padding: 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.info-text h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 2px;
}

.info-text p {
    font-size: 13px;
    color: var(--fog);
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-primary {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: white;
    padding: 16px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(255, 140, 0, 0.3);
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 140, 0, 0.4);
}

.cta-primary .arrow {
    font-size: 18px;
    transition: transform 0.3s;
}

.cta-primary:hover .arrow {
    transform: translateX(4px);
}

.cta-outline {
    background: transparent;
    color: var(--crimson);
    padding: 16px 34px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: 3px solid var(--crimson);
    transition: all 0.3s;
}

.cta-outline:hover {
    background: var(--crimson);
    color: white;
}

.hero-image-wrapper {
    position: relative;
}

.hero-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.floating-stat {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 25px 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 44px;
    font-weight: 900;
    color: var(--crimson);
    line-height: 1;
}

.stat-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--charcoal);
    margin-top: 5px;
}

/* ============================================
   DUBAI OFFER SECTION
   ============================================ */
.dubai-offer {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--burgundy) 100%);
    padding: 90px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.dubai-offer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
}

.offer-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-label {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 30px;

}

.offer-header h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 35px;
}

.offer-header span {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 8px;
}

.offer-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
}

.offer-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 20px 50px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 900;
    font-size: 19px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.offer-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4);
}

.offer-disclaimer {
    margin-top: 30px;
    font-size: 17px;
    opacity: 0.95;
}

/* ============================================
   EXPERIENCE SECTION
   ============================================ */
.experience-section {
    padding: 37px 40px;
    background: var(--cream);
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--amber));
    margin: 20px auto 0;
    border-radius: 10px;
}

.section-title span {
    color: var(--crimson);
}

.experience-box {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px 50px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 4px solid var(--gold);
}

.exp-icon-large {
    font-size: 72px;
    margin-bottom: 25px;
}

.experience-box h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--crimson);
    margin-bottom: 30px;
}

.exp-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-tag {
    font-size: 18px;
    font-weight: 700;
    color: var(--charcoal);
}

.exp-btn {
    display: inline-block;
    background: var(--crimson);
    color: white;
    padding: 18px 42px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
    transition: all 0.3s;
}

.exp-btn:hover {
    background: var(--burgundy);
    transform: translateY(-3px);
}

/* ============================
   PROOF SECTION
============================ */
.proof-section {
    padding: 40px 28px;
    background: linear-gradient(180deg, #ffffff, #fff6f6);
    text-align: center;
}

/* heading styling */
.proof-section .section-title {
    font-size: 34px;
    font-weight: 900;
    margin-bottom: 55px;
    color: #222;
    position: relative;
}

.proof-section .section-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ED1C24, #FCD504);
    display: block;
    margin: 12px auto 0;
    border-radius: 10px;
}

/* grid */
.proof-cards {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* card */
.stat-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 45px 28px;
    border-radius: 22px;
    text-align: center;

    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);

    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);

    transition: 0.35s ease;
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(40px);
}

/* animated border glow */
.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, #ED1C24, #FCD504);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .28;
}

/* visible when scrolled */
.stat-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* hover motion */
.stat-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.18);
}

/* icon */
.stat-icon {
    font-size: 52px;
    margin-bottom: 22px;
    animation: pop 2.2s infinite ease-in-out;
}

/* main number */
.stat-value {
    font-size: 46px;
    font-weight: 900;
    color: #ED1C24;
    margin-bottom: 8px;
}

/* title */
.stat-title {
    font-size: 18px;
    font-weight: 800;
    color: #222;
}

/* desc */
.stat-desc {
    font-size: 15px;
    color: #777;
}

/* brand top strip */
.red-card {
    border-top: 6px solid #ED1C24;
}

.yellow-card {
    border-top: 6px solid #FCD504;
}

/* animations */
@keyframes pop {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ============= RESPONSIVE ================= */

@media(max-width: 1000px) {
    .proof-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 650px) {
    .proof-cards {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 35px 22px;
    }

    .proof-section .section-title {
        font-size: 26px;
    }
}

/* ============================================
   HOLISTIC SECTION
   ============================================ */
.holistic-section {
    padding: 0px 40px;
    background: var(--cream);
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.5s;
}

.gallery-item.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-img {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s;
}

.gallery-item:hover .gallery-img img {
    transform: scale(1.1);
}

.gallery-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(220, 20, 60, 0.95), transparent);
    padding: 35px 25px;
    color: white;
}

.gallery-label h4 {
    font-size: 24px;
    font-weight: 800;
}

/* ============================================
   SOLUTIONS BENTO GRID
   ============================================ */
.solutions-section {
    padding: 100px 40px;
    background: white;
}

.bento-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.bento-box {
    background: white;
    padding: 45px 35px;
    border-radius: 22px;
    border: 2px solid #E5E7EB;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.bento-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.bento-box:hover {
    border-color: var(--gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.highlight-box {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: white;
    border: none;
}

.highlight-box h3,
.highlight-box p {
    color: white;
}

.bento-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.bento-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.bento-box p {
    font-size: 16px;
    color: var(--fog);
    line-height: 1.6;
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy-section {
    padding: 40px 40px;
    background: var(--cream);
    text-align: center;
}

.philosophy-icon {
    font-size: 72px;
    margin-bottom: 30px;
}

.transform-cards {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.transform-card {
    background: white;
    padding: 35px 40px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    font-size: 22px;
    font-weight: 700;
}

.from {
    color: var(--fog);
    text-decoration: line-through;
}

.transform-arrow {
    color: var(--gold);
    font-size: 36px;
}

.to {
    color: var(--crimson);
}

/* ============================================
   QUESTIONS SECTION
   ============================================ */
.questions-section {
    padding: 40px 40px;
    background: white;
}

.question-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.q-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    border-left: 6px solid var(--crimson);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.5s;
}

.q-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.q-text {
    font-size: 17px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 22px;
}

.q-buttons {
    display: flex;
    gap: 15px;
}

.q-btn {
    padding: 12px 32px;
    border: 3px solid #E5E7EB;
    background: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.q-btn:hover {
    border-color: var(--crimson);
}

.q-btn.active {
    background: var(--crimson);
    color: white;
    border-color: var(--crimson);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--crimson), var(--burgundy));
    color: white;
}

.guarantee-banner {
    text-align: center;
    margin-bottom: 60px;
}

.guarantee-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 900;
    font-size: 15px;
    margin-bottom: 30px;
}

.guarantee-banner h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.guarantee-banner p {
    font-size: 19px;
    font-style: italic;
    margin-bottom: 35px;
    font-weight: 400;
}

.guarantee-shield {
    font-size: 64px;
}

.guarantee-gallery {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.guarantee-gallery img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
   TRUST SECTION
   ============================================ */
.trust-section {
    padding: 0px 40px;
    background: var(--cream);
}

.trust-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    background: white;
    padding: 45px 30px;
    border-radius: 20px;
    text-align: center;
    border-top: 5px solid var(--gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.trust-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.trust-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.trust-icon-box {
    font-size: 52px;
    margin-bottom: 22px;
}

.trust-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.trust-item p {
    font-size: 16px;
    color: var(--fog);
    line-height: 1.6;
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.modern-footer {
    background: var(--navy);
    color: white;
    padding: 80px 40px 35px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.f-logo {
    height: 85px;
    margin-left: 80px;
}

.footer-brand h3 {
    font-size: 26px;
    color: var(--gold);
    margin-bottom: 8px;
}

.f-tag {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 6px;
}

.f-subtitle {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 16px;
}

.f-desc {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.footer-contact h4,
.footer-qr h4 {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 25px;
    font-weight: 800;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.c-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-decoration: none;
    color: white;
    opacity: 0.9;
    transition: all 0.3s;
}

.c-item:hover {
    opacity: 1;
    color: var(--gold);
}

.c-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.qr-box {
    text-align: center;
    margin-bottom: 25px;
}

.qr-code {
    width: 160px;
    height: 160px;
    background: white;
    border-radius: 18px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    color: var(--crimson);
}

.tour-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    transition: all 0.3s;
}

.tour-btn:hover {
    background: var(--amber);
    transform: translateY(-2px);
}

.footer-bar {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bar p {
    margin-bottom: 8px;
    opacity: 0.85;
}

.footer-tagline {
    color: var(--gold);
    font-weight: 800;
}

/* ============================================
   STICKY CTA
   ============================================ */
/* .sticky-cta {
    position: fixed;
    bottom: 35px;
    right: 35px;
    background: var(--crimson);
    color: white;
    padding: 18px 32px;
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 16px;
    z-index: 9998;
    animation: float 3s ease-in-out infinite;
} */


/* ============================================
   🔟 TIMER CTA - PREMIUM STYLING
   ============================================ */
.timer-cta-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2147483647;
    /* Maximum possible z-index */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.timer-cta-container.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.timer-cta-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
    position: relative;
    transform: scale(0.8);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.timer-cta-container.active .timer-cta-card {
    transform: scale(1);
}

.timer-cta-header {
    margin-bottom: 12px;
}

.timer-cta-tagline {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--crimson);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.timer-cta-headline {
    font-size: 32px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 30px;
}

.timer-cta-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.date-picker-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 20px;
}

.calendar-icon {
    color: var(--gold);
    margin-right: 15px;
    font-size: 20px;
}

.timer-cta-date {
    border: none;
    background: transparent;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: var(--charcoal);
    width: 100%;
    outline: none;
    cursor: pointer;
}

.timer-cta-btn {
    background: linear-gradient(135deg, var(--gold), var(--amber));
    color: white;
    border: none;
    padding: 20px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.3);
}

.timer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 184, 0, 0.4);
}

.timer-cta-close {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--crimson);
    border: 3px solid white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.timer-cta-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--navy);
}


/* 10-Second Nudge Animation */
@keyframes nudgePop {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.05) rotate(2deg);
    }

    50% {
        transform: scale(1.05) rotate(-2deg);
    }

    70% {
        transform: scale(1.05) rotate(2deg);
    }

    100% {
        transform: scale(1);
    }
}

.nudge-pop {
    animation: nudgePop 0.8s ease-in-out;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .timer-cta-card {
        padding: 30px 20px;
        width: 95%;
    }

    .timer-cta-headline {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .timer-cta-tagline {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .timer-cta-btn {
        font-size: 16px;
        padding: 15px;
    }

    .timer-cta-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: -15px;
        right: -15px;
    }
}

/* ============================================
   RESTORED ORIGINAL STICKY CTA STYLES
   ============================================ */
.pro-cta {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: linear-gradient(45deg, #ED1C24, #ff3a3a);
    color: white;
    padding: 14px 22px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    font-weight: 800;
    border: 2px solid #FCD504;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    z-index: 9999;
    animation: float 3s ease-in-out infinite;
    transition: transform .3s ease, box-shadow .3s ease;
}

.pro-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 55px rgba(237, 28, 36, 0.55);
}

.logo-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 4px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: glow 2s infinite;
}

.logo-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.cta-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.book-btn {
    background: #FCD504;
    color: #ED1C24;
    border: none;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 13px;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.book-btn:hover {
    transform: scale(1.08);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(252, 213, 4, .8);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(252, 213, 4, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(252, 213, 4, 0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    100% {
        box-shadow: 0 0 15px 4px rgba(255, 255, 255, 0.6);
    }
}

@media(max-width:600px) {
    .pro-cta {
        padding: 10px 16px;
        right: 16px;
        bottom: 16px;
        font-size: 12px;
    }
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet & Below */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-headline {
        font-size: 36px;
    }

    .hero-info-cards {
        grid-template-columns: 1fr;
    }

    .proof-cards,
    .gallery-grid,
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .modern-nav {
        top: 10px;
        width: calc(100% - 40px);
    }

    .nav-wrapper {
        padding: 12px 20px;
    }

    .nav-menu {
        display: none;
    }

    .brand-logo {
        height: 55px;
    }

    .brand-name {
        font-size: 15px;
    }

    .brand-tag {
        font-size: 11px;
    }

    .hero-modern {
        padding: 47px 20px 60px;
    }

    .hero-headline {
        font-size: 28px;
        letter-spacing: -0.3px;
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-answer-box h2 {
        font-size: 22px;
    }

    .hero-answer-box p {
        font-size: 15px;
    }

    .hero-info-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card {
        padding: 16px;
    }

    .info-icon {
        font-size: 28px;
    }

    .info-text h4 {
        font-size: 14px;
    }

    .info-text p {
        font-size: 12px;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary,
    .cta-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 16px 24px;
        font-size: 15px;
    }

    .floating-stat {
        bottom: 15px;
        right: 15px;
        padding: 18px 24px;
    }

    .stat-number {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .dubai-offer {
        padding: 60px 20px;
    }

    .offer-header h2 {
        font-size: 30px;
    }

    .offer-badges {
        flex-direction: column;
        gap: 15px;
    }

    .badge {
        font-size: 15px;
        padding: 12px 24px;
    }

    .offer-btn {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
    }

    .offer-disclaimer {
        font-size: 15px;
    }

    .experience-section,
    .proof-section,
    .holistic-section,
    .solutions-section,
    .philosophy-section,
    .questions-section,
    .guarantee-section,
    .trust-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .experience-box {
        padding: 40px 30px;
    }

    .exp-icon-large {
        font-size: 56px;
    }

    .experience-box h3 {
        font-size: 24px;
    }

    .feature-tag {
        font-size: 15px;
    }

    .exp-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 16px;
    }

    .proof-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-card {
        padding: 40px 30px;
    }

    .stat-value {
        font-size: 36px;
    }

    .stat-title {
        font-size: 17px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .gallery-img {
        height: 300px;
    }

    .gallery-label h4 {
        font-size: 20px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bento-box {
        padding: 35px 25px;
    }

    .bento-icon {
        font-size: 36px;
    }

    .bento-box h3 {
        font-size: 17px;
    }

    .bento-box p {
        font-size: 15px;
    }

    .philosophy-icon {
        font-size: 56px;
    }

    .transform-cards {
        gap: 20px;
    }

    .transform-card {
        flex-direction: column;
        padding: 25px 20px;
        gap: 15px;
        font-size: 18px;
    }

    .transform-arrow {
        font-size: 28px;
        transform: rotate(90deg);
    }

    .q-card {
        padding: 25px 20px;
    }

    .q-text {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .q-buttons {
        flex-wrap: wrap;
    }

    .q-btn {
        padding: 10px 24px;
        font-size: 15px;
    }

    .guarantee-banner h2 {
        font-size: 28px;
    }

    .guarantee-banner p {
        font-size: 16px;
    }

    .guarantee-shield {
        font-size: 48px;
    }

    .guarantee-gallery {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-item {
        padding: 35px 25px;
    }

    .trust-icon-box {
        font-size: 44px;
    }

    .trust-item h3 {
        font-size: 17px;
    }

    .modern-footer {
        padding: 60px 20px 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .f-logo {
        height: 65px;
    }

    .footer-brand h3 {
        font-size: 22px;
    }

    .contact-list {
        gap: 15px;
    }

    .c-item {
        font-size: 15px;
    }

    .c-icon {
        font-size: 20px;
    }

    .qr-code {
        width: 140px;
        height: 140px;
        font-size: 32px;
    }

    .tour-btn {
        width: 100%;
        padding: 14px 24px;
    }

    .footer-bar {
        padding-top: 25px;
    }

    .footer-bar p {
        font-size: 14px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 14px 20px;
        font-size: 14px;
        border-radius: 50px;
    }

    .pulse-dot {
        width: 8px;
        height: 8px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-headline {
        font-size: 24px;
    }

    .section-title {
        font-size: 24px;
    }

    .offer-header h2 {
        font-size: 26px;
    }

    .experience-box h3 {
        font-size: 22px;
    }

    .stat-value {
        font-size: 32px;
    }

    .transform-card {
        font-size: 16px;
    }

    .guarantee-banner h2 {
        font-size: 24px;
    }
}

/* ============================================
   ABC PHILOSOPHY SECTION
   ============================================ */
.abc-section {
    padding: 0px 40px;
    background: var(--pearl);
    text-align: center;
}

.abc-container {
    max-width: 1300px;
    margin: 0 auto;

}

.abc-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: white;

    background: linear-gradient(45deg, #ED1C24, #ff3a3a);
    ;
    /* Changed from blue to crimson */
    display: inline-block;
    padding: 8px 18px;
    margin: 0 auto 60px;
    border-radius: 22px;
}

.abc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.abc-card {
    background: white;
    padding: 50px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-bottom: 12px solid var(--gold);
    /* Changed to project gold */
    transition: all 0.3s;
    text-align: left;
}

.abc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.abc-card-bg {
    position: absolute;
    top: 5px;
    right: 15px;
    font-size: 140px;
    font-weight: 900;
    color: rgba(220, 20, 60, 0.04);
    line-height: 1;
    pointer-events: none;
    font-family: 'Georgia', serif;
}

.abc-icon-box {
    width: 65px;
    height: 65px;
    background: var(--crimson);
    /* Changed from dark red to theme crimson */
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(139, 26, 26, 0.2);
}

.abc-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--crimson);
    /* Changed to theme crimson */
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.abc-card p {
    font-size: 16px;
    color: var(--fog);
    line-height: 1.6;
}

.abc-footer-text {
    font-size: 16px;
    color: var(--fog);
    font-weight: 500;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.abc-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.abc-img-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 3px dashed var(--gold);
    /* Changed to theme gold */
    background: #f4f4f4;
}

.abc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.abc-img-box:hover img {
    transform: scale(1.08);
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px 15px 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1024px) {

    .abc-cards,
    .abc-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .abc-cards,
    .abc-images {
        grid-template-columns: 1fr;
    }

    .abc-section {
        padding: 60px 20px;
    }

    .abc-card {
        padding: 40px 25px;
    }

    .abc-card-bg {
        font-size: 110px;
    }

    .abc-card h3 {
        font-size: 22px;
    }
}

/* ============================================
   THE WONDERFUL TRIO SECTION
   ============================================ */
.trio-section {
    padding: 100px 40px;
    background: #FFF;
    text-align: center;
}

.trio-container {
    max-width: 1200px;
    margin: 0 auto;
}

.trio-subtitle {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 80px;
}

.triangle-wrapper {
    position: relative;
    width: 400px;
    height: 350px;
    margin: 0 auto 100px;
}

.triangle-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.trio-node {
    position: absolute;
    z-index: 2;
    width: 120px;
}

.node-circle {
    width: 100px;
    height: 100px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--gold);
    transition: transform 0.3s;
}

.node-circle i {
    font-size: 24px;
    margin-bottom: 8px;
}

.node-circle span {
    font-size: 14px;
    font-weight: 700;
}

.node-top {
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
}

.node-left {
    bottom: -20px;
    left: -30px;
}

.node-right {
    bottom: -20px;
    right: -30px;
}

.node-circle:hover {
    transform: scale(1.1);
}

.center-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 2px solid var(--gold);
    padding: 15px;
    border-radius: 8px;
    z-index: 3;
    width: 160px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mini-triangle {
    color: var(--gold);
    font-size: 20px;
    margin-bottom: 5px;
}

.center-box p {
    font-size: 12px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.2;
}

.trio-motto {
    font-size: 20px;
    font-weight: 800;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 60px;
}

.philosophy-trinities {
    margin-bottom: 80px;
}

.trinity-title {
    font-size: 24px;
    color: var(--crimson);
    margin-bottom: 40px;
    font-weight: 800;
}

.trinity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.trinity-card {
    background: var(--pearl);
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s;
}

.trinity-card:hover {
    transform: translateY(-5px);
}

.trinity-card h4 {
    font-size: 17px;
    color: var(--burgundy);
    margin-bottom: 10px;
    font-weight: 800;
}

.trinity-card p {
    font-size: 14px;
    color: var(--fog);
}

.trio-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trio-img-box {
    border: 3px dashed var(--gold);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.trio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .triangle-wrapper {
        width: 100%;
        max-width: 300px;
        height: 280px;
        margin-top: 40px;
    }

    .node-top {
        transform: translateX(-50%) scale(0.8);
    }

    .node-left {
        left: 0;
        transform: scale(0.8);
    }

    .node-right {
        right: 0;
        transform: scale(0.8);
    }

    .center-box {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .trinity-grid,
    .trio-images {
        grid-template-columns: 1fr;
    }

    .trio-section {
        padding: 60px 20px;
    }
}

/* ============================================
   REVIVING VALUES SECTION
   ============================================ */
.values-section {
    padding: 0px 40px;
    background: var(--pearl);
    text-align: center;
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.quote-box {
    background: linear-gradient(135deg, var(--burgundy), var(--crimson));
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin: 50px auto 70px;
    max-width: 800px;
    box-shadow: 0 20px 50px rgba(139, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.quote-icon {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 25px;
}

.quote-box p {
    font-size: 22px;
    font-weight: 700;
    font-style: italic;
    line-height: 1.5;
}

.festivals-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 80px;
}

.fest-card {
    background: white;
    padding: 22px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-top: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    cursor: pointer;
    /* Change cursor to pointer */
}

.fest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-top-color: var(--crimson);
    /* Highlight color change on hover */
}

.fest-card i {
    font-size: 22px;
    color: var(--crimson);
}

.fest-card span {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

/* ============================================
   PREMIUM GALLERY MODAL STYLING
   ============================================ */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    /* Deep navy backdrop */
    display: none;
    z-index: 1000000;
    justify-content: center;
    align-items: center;
    padding: 20px;
    backdrop-filter: blur(10px);
}

.modal-content {
    background: white;
    width: 95%;
    max-width: 1200px;
    max-height: 85vh;
    border-radius: 24px;
    position: relative;
    padding: 60px 40px 40px;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 3px solid #dc143c;
    /* Premium Border as requested */
    animation: modalScale 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* CUSTOM SCROLLBAR STYLING */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #dc143c;
    border-radius: 10px;
    border: 3px solid #f8fafc;
}

::-webkit-scrollbar-thumb:hover {
    background: #b01030;
}

@keyframes modalScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    cursor: pointer;
    color: var(--charcoal);
    background: #f1f5f9;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: #dc143c;
    color: white;
    transform: rotate(90deg);
}

.modal-title {
    text-align: center;
    font-size: 32px;
    color: #dc143c;
    /* Changed to #dc143c */
    margin-bottom: 40px;
    font-weight: 900;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: #dc143c;
    /* Changed to #dc143c */
    margin: 15px auto 0;
    border-radius: 10px;
}

.modal-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.modal-img-wrapper {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 16 / 11;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
    border: 3px solid #dc143c;
    /* "Pyaar sa border" */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-img-wrapper:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
}

.modal-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: zoom-in;
}

.modal-img-wrapper:hover img {
    transform: scale(1.15);
    /* Slightly more zoom for premium feel */
}

@media (max-width: 992px) {
    .modal-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .modal-gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 50px 20px 30px;
    }

    .modal-title {
        font-size: 24px;
    }
}

.visit-footer {
    margin-bottom: 70px;
}

.visit-motto {
    font-size: 26px;
    color: var(--burgundy);
    margin-bottom: 30px;
    font-weight: 800;
}

.visit-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--amber), var(--gold));
    color: white;
    padding: 16px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
    transition: all 0.3s;
}

.visit-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
}

.values-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.v-img-box {
    border: 3px dashed var(--gold);
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.v-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.v-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .festivals-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .festivals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-images {
        grid-template-columns: 1fr;
    }

    .quote-box p {
        font-size: 18px;
    }

    .visit-motto {
        font-size: 22px;
    }
}

/* ============================================
   LEARNING ECOSYSTEMS SECTION
   ============================================ */
.ecosystem-section {
    padding: 40px 40px;
    background: white;
    text-align: center;
}

.ecosystem-container {
    max-width: 1200px;
    margin: 0 auto;
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.eco-card {
    background: white;
    padding: 30px;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border-bottom: 6px solid var(--gold);
    transition: all 0.3s;
}

.eco-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.eco-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.eco-content h3 {
    font-size: 19px;
    color: var(--navy);
    margin-bottom: 5px;
    font-weight: 800;
}

.eco-content p {
    font-size: 14px;
    color: var(--fog);
}

.ecosystem-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.e-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.e-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.e-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .ecosystem-grid,
    .ecosystem-images {
        grid-template-columns: 1fr;
    }

    .eco-card {
        padding: 25px;
    }

    .ecosystem-section {
        padding: 60px 20px;
    }
}

/* ============================================
   VISHWAGURU BHARAT SECTION
   ============================================ */
.vishwaguru-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--crimson) 0%, var(--burgundy) 100%);
    width: 100%;
    color: white;
    text-align: center;
}

.vishwaguru-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.vish-header {
    margin-bottom: 60px;
}

.vish-icon {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 25px;
}

.vish-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 12px;
}

.vish-title span {
    background: #0047AB;
    /* Deep Blue background for Vishwaguru Bharat text */
    padding: 4px 12px;
    border-radius: 4px;
}

.vish-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 500;
}

.intl-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.intl-card {
    background: white;
    color: var(--navy);
    padding: 30px 40px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 20px;
    min-width: 350px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    border-bottom: 6px solid var(--gold);
    transition: transform 0.3s;
    text-align: left;
}

.intl-card:hover {
    transform: translateY(-8px);
}

.intl-icon {
    font-size: 32px;
    color: var(--crimson);
}

.intl-content h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 5px;
}

.intl-content p {
    font-size: 15px;
    color: var(--fog);
}

.expo-pill {
    background: #FFB800;
    /* Bright gold background */
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 70px;
    box-shadow: 0 8px 25px rgba(255, 184, 0, 0.3);
}

.expo-pill i {
    font-size: 17px;
}

.vish-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.vish-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    aspect-ratio: 16 / 10;
    position: relative;
}

.vish-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    opacity: 0.8;
}

.vish-img-box:hover img {
    transform: scale(1.1);
    opacity: 1;
}

.img-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .intl-cards {
        flex-direction: column;
        align-items: center;
    }

    .intl-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vishwaguru-section {
        padding: 60px 0;
    }

    .vish-images {
        grid-template-columns: 1fr;
    }

    .vish-title {
        font-size: 26px;
    }
}

/* ============================================
   SPORTS EXCELLENCE SECTION
   ============================================ */
.sports-section {
    padding: 40px 40px;
    background: #FFF;
    text-align: center;
}

.sports-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sports-icon {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 25px;
}

.sports-subtitle {
    font-size: 18px;
    color: var(--fog);
    margin-bottom: 60px;
}

.sports-top-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.s-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--crimson);
    transition: all 0.3s;
}

.s-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.s-card i {
    font-size: 28px;
    color: var(--crimson);
    margin-bottom: 20px;
}

.s-card p {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
}

.pathway-container {
    margin-bottom: 80px;
}

.pathway-title {
    font-size: 24px;
    color: var(--crimson);
    margin-bottom: 50px;
    font-weight: 800;
}

.pathway-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.path-box {
    background: var(--burgundy);
    color: white;
    padding: 25px 30px;
    border-radius: 12px;
    min-width: 180px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.path-box.highlight {
    background: var(--crimson);
    border-bottom: 6px solid var(--gold);
    transform: scale(1.05);
}

.path-icon {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--gold);
}

.path-box span {
    font-size: 14px;
    font-weight: 800;
}

.path-arrow {
    font-size: 24px;
    color: var(--fog);
    font-weight: 900;
}

.sports-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.s-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.s-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.s-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .sports-top-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .sports-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .sports-top-cards,
    .sports-images {
        grid-template-columns: 1fr;
    }

    .pathway-grid {
        flex-direction: column;
    }

    .path-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .path-box {
        width: 100%;
    }

    .sports-section {
        padding: 60px 20px;
    }
}

/* ============================================
   ACHIEVEMENTS & COMPETITIONS SECTION
   ============================================ */
.achievements-section {
    padding: 40px 40px;
    background: var(--pearl);
    text-align: center;
}

.achievements-container {
    max-width: 1300px;
    margin: 0 auto;
}

.achievements-icon {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 25px;
}

.achievements-subtitle {
    font-size: 18px;
    color: var(--fog);
    margin-bottom: 70px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.ach-card {
    background: white;
    padding: 45px 25px;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border-bottom: 12px solid var(--gold);
    transition: all 0.3s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ach-icon-circle {
    width: 65px;
    height: 65px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.2);
}

.ach-card h3 {
    font-size: 20px;
    color: var(--crimson);
    font-weight: 800;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.ach-card p {
    font-size: 15px;
    color: var(--fog);
    line-height: 1.5;
}

.ach-card.highlight {
    border-bottom-color: var(--crimson);
    background: linear-gradient(to bottom, #ffffff, #fffafa);
}

.ach-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.ach-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.ach-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.ach-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1100px) {
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ach-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .achievements-grid,
    .ach-images {
        grid-template-columns: 1fr;
    }

    .achievements-section {
        padding: 60px 20px;
    }
}

/* ============================================
   EVERY CHILD MATTERS (SUPPORT SYSTEM)
   ============================================ */
.support-section {
    padding: 40px 40px;
    background: #FFF;
    text-align: center;
}

.support-container {
    max-width: 1200px;
    margin: 0 auto;
}

.support-icon-main {
    font-size: 40px;
    color: var(--crimson);
    margin-bottom: 25px;
}

.support-subtitle {
    font-size: 18px;
    color: var(--fog);
    margin-bottom: 60px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.support-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--crimson);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: all 0.3s;
}

.support-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.s-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.s-info h3 {
    font-size: 19px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 5px;
}

.s-info p {
    font-size: 14px;
    color: var(--fog);
}

.support-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.su-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.su-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.su-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .support-grid,
    .support-images {
        grid-template-columns: 1fr;
    }

    .support-card {
        padding: 25px;
    }

    .support-section {
        padding: 60px 20px;
    }
}

/* ============================================
   CAMPUS, INFRASTRUCTURE & SECURITY
   ============================================ */
.infra-section {
    padding: 40px 40px;
    background: var(--pearl);
    text-align: center;
}

.infra-container {
    max-width: 1300px;
    margin: 0 auto;
}

.infra-icon-main {
    font-size: 42px;
    color: var(--crimson);
    margin-bottom: 25px;
}

.infra-subtitle {
    font-size: 18px;
    color: var(--fog);
    margin-bottom: 70px;
}

.infra-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.infra-card {
    background: white;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    border-bottom: 10px solid var(--gold);
    transition: all 0.3s;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.infra-icon-circle {
    width: 65px;
    height: 65px;
    background: var(--burgundy);
    color: white;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.infra-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--crimson);
    margin-bottom: 12px;
}

.infra-card p {
    font-size: 14px;
    color: var(--fog);
    line-height: 1.5;
}

.infra-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.in-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.in-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.in-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1100px) {

    .infra-grid,
    .infra-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .infra-grid,
    .infra-images {
        grid-template-columns: 1fr;
    }

    .infra-section {
        padding: 60px 20px;
    }
}

/* ============================================
   CHOOSE THE PATH (STREAMS) SECTION
   ============================================ */
.path-section {
    padding: 40px 40px;
    background: #FFF;
    text-align: center;
}

.path-container {
    max-width: 1100px;
    margin: 0 auto;
}

.path-icon-main {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 25px;
}

.path-subtitle {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: var(--navy);
    margin-bottom: 60px;
}

.streams-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.stream-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-left: 4px solid var(--crimson);
    transition: all 0.3s;
}

.stream-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.st-icon-circle {
    width: 65px;
    height: 65px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(255, 184, 0, 0.2);
}

.stream-card h3 {
    font-size: 22px;
    color: var(--burgundy);
    font-weight: 800;
}

.feature-dark-box {
    background: var(--burgundy);
    color: white;
    padding: 40px 50px;
    border-radius: 15px;
    display: inline-block;
    text-align: left;
    margin-bottom: 60px;
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.2);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.feature-list li:last-child {
    margin-bottom: 0;
}

.bullet {
    color: var(--gold);
}

.path-bottom-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.pb-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.pb-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pb-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {

    .streams-grid,
    .path-bottom-images {
        grid-template-columns: 1fr;
    }

    .feature-dark-box {
        padding: 30px 25px;
        width: 100%;
    }

    .feature-list li {
        font-size: 14px;
    }

    .path-section {
        padding: 60px 20px;
    }
}

/* ============================================
   INTERACTIVE PARENT CONNECT SECTION
   ============================================ */
.parent-connect-section {
    padding: 40px 40px;
    background: #FFFBF5;
    /* Soft cream background */
    text-align: center;
}

.parent-connect-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pc-icon-main {
    font-size: 42px;
    color: var(--burgundy);
    margin-bottom: 25px;
}

.pc-subtitle {
    font-size: 18px;
    color: var(--fog);
    margin-bottom: 70px;
    font-weight: 500;
}

.pc-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.pc-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
    border-bottom: 8px solid var(--gold);
    transition: all 0.3s;
}

.pc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.pc-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(220, 20, 60, 0.1);
    color: var(--crimson);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.pc-card h3 {
    font-size: 20px;
    color: var(--navy);
    font-weight: 800;
    margin-bottom: 12px;
}

.pc-card p {
    font-size: 14px;
    color: var(--fog);
    line-height: 1.5;
}

.pc-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pc-img-box {
    border: 3px dashed var(--gold);
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.pc-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pc-img-box:hover img {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .pc-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .pc-cards,
    .pc-images {
        grid-template-columns: 1fr;
    }

    .parent-connect-section {
        padding: 60px 20px;
    }
}