/* Color Palette & Base System */
:root {
    --bg-dark-purple: #0c0024;
    --bg-light-purple: #1a004a;
    --yellow: #fbc200;
    --white: #ffffff;
    --text-muted: #b9a8df;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark-purple);
    color: var(--white);
    overflow-x: hidden;
}

/* --- EXACT NAVBAR STYLES (FIXED) --- */
.navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-dark-purple);
    width: 100%;
    position: relative;
    z-index: 1000;
}

/* Logo Alignment */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2.3rem;
    color: var(--yellow);
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .main-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.2px;
}

.logo-text .sub-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--yellow);
    letter-spacing: 2px;
    margin-top: 1px;
}

.logo-text .tagline {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Navigation Menu Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--yellow);
}

/* Right Area Content */
.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    color: var(--white);
    font-size: 1.1rem;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--yellow);
}

/* Top Right Yellow Button */
.btn-enroll {
    background-color: var(--yellow);
    color: #000;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(251, 194, 0, 0.2);
    transition: transform 0.2s ease;
}

.btn-enroll:hover {
    transform: scale(1.03);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
}

/* --- HERO SECTION STYLES --- */
.hero-section {
    width: 100%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 20px 0 60px 5%;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1.3fr;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.hero-content {
    z-index: 5;
}

.welcome-tag {
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    margin-bottom: 25px;
}

.welcome-tag span {
    color: var(--yellow);
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
}

.text-yellow {
    color: var(--yellow);
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-yellow {
    background-color: var(--yellow);
    color: #000;
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(251, 194, 0, 0.3);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Features Grid layout */
.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.f-icon {
    color: var(--yellow);
    font-size: 1.3rem;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2daf7;
}

/* Right Content: Organic Shaped Graphic Box */
.hero-graphics-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.organic-shape-container {
    width: 95%;
    height: 550px;
    overflow: hidden;
    border: 10px solid var(--yellow);
    border-radius: 40% 60% 40% 60% / 40% 40% 60% 60%; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.exact-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.admissions-badge-exact {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background-color: #0c0024;
    border: 4px dashed var(--yellow);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 145px;
    height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    z-index: 10;
}

.admissions-badge-exact p {
    font-size: 0.8rem;
    line-height: 1.2;
    font-weight: 600;
}

.admissions-badge-exact h3 {
    color: var(--yellow);
    font-size: 1.35rem;
    font-weight: 800;
    margin-top: 4px;
}

/* MOBILE RESPONSIVE MEDIA QUERIES */
@media (max-width: 1100px) {
    .nav-links { gap: 15px; font-size: 0.85rem; }
    .hero-title { font-size: 3.2rem; }
    .organic-shape-container { height: 460px; }
}

@media (max-width: 992px) {

    .nav-links, .social-icons, .nav-right .btn-enroll {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section { 
        padding: 40px 5%; 
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-graphics-wrapper {
        justify-content: center;
        margin-top: 40px;
    }

    .organic-shape-container {
        width: 100%;
        max-width: 480px;
        height: 450px;
    }

    .welcome-tag, .hero-buttons, .feature-item {
        justify-content: center;
    }

    /* ADD THIS */
    .hero-buttons {
        flex-wrap: wrap;
        gap: 12px;
    }

    .hero-buttons a {
        white-space: nowrap;
    }

    .hero-features {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons a {
        width: auto;
        min-width: 180px;
        max-width: 220px;
        justify-content: center;
        text-align: center;
        white-space: nowrap;
    }
}
@media (max-width: 992px) {
    .nav-links {
        display: none; /* Initially hidden on mobile */
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-dark-purple);
        padding: 25px;
        gap: 20px;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.4);
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* CSS toggled by JS script */
    .nav-links.active {
        display: flex !important;
    }

    .menu-toggle {
        display: block; /* Shows burger icon on mobile screens */
    }
}







/* --- ABOUT US SECTION STYLES --- */
.about-section {
    width: 100%;
    padding: 100px 6%;
    background-color: var(--bg-dark-purple);
    position: relative;
}

.about-container {
    display: grid;
    grid-template-columns: 1.1fr 1.4fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

/* Left Side: Overlapping Images Custom Shapes */
.about-images-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
}

.crown-icon {
    position: absolute;
    top: -30px;
    left: 20px;
    color: var(--yellow);
    font-size: 2rem;
    transform: rotate(-15deg);
}

.main-image-card {
    position: absolute;
    top: 20px;
    left: 40px;
    width: 80%;
    height: 340px;
    border: 6px solid var(--yellow);
    border-radius: 60% 40% 40% 60% / 50% 40% 60% 50%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.about-img-1 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-image-card {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 50%;
    height: 220px;
    border: 5px solid var(--yellow);
    border-radius: 40% 50% 50% 40% / 40% 40% 60% 60%;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    z-index: 10;
}

.about-img-2 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Right Side: Content & Headings */
.about-content-wrapper {
    display: flex;
    flex-direction: column;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 550px;
}

.btn-learn-more {
    background-color: #2c0072;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.15);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    margin-bottom: 45px;
    transition: background-color 0.3s;
}

.btn-learn-more:hover {
    background-color: #3e00a3;
}

/* Cards Grid Layout (2x2 Structure) */
.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.about-card {
    background-color: var(--bg-light-purple);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.card-icon-box {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--yellow);
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.card-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--white);
}

.card-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1200px) {
    .section-title { font-size: 2.5rem; }
    .about-container { gap: 40px; }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
    }
    .about-images-wrapper {
        height: 400px;
        max-width: 500px;
        margin: 0 auto 30px auto;
    }
    .about-content-wrapper {
        text-align: center;
        align-items: center;
    }
    .btn-learn-more {
        align-self: center;
    }
    .about-cards-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        text-align: left;
    }
}







/* --- WHY CHOOSE US SECTION STYLES --- */
.why-choose-section {
    width: 100%;
    padding: 80px 5% 100px 5%;
    background-color: var(--bg-dark-purple);
    position: relative;
    text-align: center;
}

.why-choose-container {
    max-width: 1300px;
    margin: 0 auto;
}

/* Header Title and Heart Divider Styling */
.why-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 70px;
}

.heart-divider .line {
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--yellow), transparent);
}

.heart-divider i {
    color: var(--yellow);
    font-size: 0.8rem;
}

/* Timeline/Row Container with Connecting Line */
.features-timeline-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    width: 100%;
    justify-content: center;
}

/* Dashed background centerline connecting icons (2 rows for 8 timeline items) */
.connecting-line {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 82%;
    height: 2px;
    border-top: transparent;
    z-index: 1;
    pointer-events: none;
}

.custom-icon{
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(91%) sepia(16%) saturate(500%) hue-rotate(210deg) brightness(100%);
}

.info-item a {
    color: inherit;
    text-decoration: none;
}



/* First row (items 1–4) */
.connecting-line.row-1 {
    top: 50px; /* Aligns exactly middle of the 100px circles */
}

/* Second row (items 5–8) */
.connecting-line.row-2 {
    /* Position second dashed line for the 2nd grid row */
    top: calc(50px + 150px);
}

/* Individual Feature Item */
.timeline-item {
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Circles - Alternating color tones */
.circle-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.bg-purple {
    background: linear-gradient(135deg, #441c8c, #230c4f);
    color: #e2daf7;
}

.bg-yellow {
    background: linear-gradient(135deg, var(--yellow), #c69900);
    color: #0c0024;
}

/* Circle Hover Effect */
.timeline-item:hover .circle-icon-box {
    transform: scale(1.1) translateY(-5px);
}

/* Headings and Descriptions inside row */
.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--yellow);
    margin-bottom: 12px;
}

.timeline-item p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    max-width: 220px;
}

/* --- RESPONSIVENESS --- */
@media (max-width: 1024px) {
    .features-timeline-row {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }
    .connecting-line {
        /* Hide linear lines on broken grids */
        display: none;
    }
    .connecting-line.row-1,
    .connecting-line.row-2 {
        display: none;
    }


}

@media (max-width: 768px) {
    .why-header h2 { font-size: 2rem; }
    .features-timeline-row {
        grid-template-columns: 1fr;
        gap: 45px;
    }
    .timeline-item p {
        max-width: 320px;
    }
}




/* --- OUR GALLERY SECTION STYLES --- */
.gallery-section {
    width: 100%;
    padding: 60px 0 80px 0;
    background-color: var(--bg-dark-purple);
    overflow: hidden;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4%;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.gallery-header h2 i {
    color: var(--yellow);
    font-size: 1.2rem;
}

/* Slider Track Layout */
.slider-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    gap: 20px;
    width: 100%;
}

.gallery-slider-track-container {
    overflow: hidden;
    width: 100%;
}

.gallery-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* 100% Matching Card Grid Boxes */
.gallery-card {
    min-width: calc(30% - 16px); /* Shows exactly 5 cards side-by-side on large desktop */
    height: 440px;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    background-color: var(--bg-light-purple);
}
.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
    transition: transform 0.3s ease;
}

.gallery-card:hover img {
    transform: scale(1.06);
}

/* Navigation Buttons (Yellow Background) */
.nav-btn {
    background-color: var(--yellow);
    border: none;
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: transform 0.2s;
}

.nav-btn:hover {
    transform: scale(1.1);
}

/* Pagination Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.dot.active {
    background-color: var(--yellow);
    transform: scale(1.2);
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 1200px) {
    .gallery-card {
        min-width: calc(33.333% - 14px); /* 3 Cards on Tablets */
    }
}

@media (max-width: 768px) {
    .gallery-card img {
        object-fit: contain;
        background: #fff;
    }
    .gallery-card {
        min-width: calc(100% - 10px); /* 1 Card on Mobile */
        height: 280px;
    }
    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .left-btn { left: -10px; }
    .right-btn { right: -10px; }
}

/* --- GALLERY LIGHTBOX MODAL --- */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 0, 36, 0.95); /* Deep purple transparent overlay */
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Open State Trigger Class via JS */
.gallery-lightbox.show {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-box {
    max-width: 85%;
    max-height: 85vh;
    transform: scale(0.7);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-lightbox.show .lightbox-content-box {
    transform: scale(1);
}

#lightboxFullImg {
    max-width: 100%;
    max-height: 80vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 5px solid var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}
/* Close & Navigation Actions */
.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--yellow);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2050;
}

.lightbox-nav:hover {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
}

.lightbox-left { left: 40px; }
.lightbox-right { right: 40px; }

/* Pointer on gallery items */
.gallery-card {
    cursor: pointer;
}


    @media (max-width: 768px) {

    .gallery-slider-track-container {
        overflow: hidden;
    }

    .gallery-slider-track {
        flex-direction: column;
        gap: 20px;
        transform: none !important;
    }

    .gallery-card {
        min-width: 100%;
        width: 100%;
        height: auto;
    }

    .gallery-card img {
        width: 100%;
        height: auto;
        object-fit: contain;
        display: block;
    }

    /* arrows hide on mobile */
    .nav-btn {
        display: none;
    }

    /* dots hide */
     .slider-dots {
        display: none !important;
        visibility: hidden;
        opacity: 0;
        height: 0;
        margin: 0;
        overflow: hidden;
    }

    .lightbox-nav { width: 45px; height: 45px; font-size: 1.1rem; }
    .lightbox-left { left: 15px; }
    .lightbox-right { right: 15px; }
    .lightbox-close { top: 15px; right: 25px; }
}





/* --- TESTIMONIALS SECTION STYLES --- */
.testimonials-section {
    width: 100%;
    padding: 80px 4% 100px 4%;
    background-color: var(--bg-dark-purple);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1250px;
    margin: 0 auto;
    position: relative;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
}

/* === SLIDER WINDOW CONTAINER === */
.testimonials-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden; /* Excess track strips will stay invisible */
    padding: 20px 5px;
}

/* Flex Track Belt */
.testimonials-slider-track {
    display: flex;
    gap: 25px;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: grab; /* Shows hand drag hint */
    user-select: none;
}

.testimonials-slider-track:active {
    cursor: grabbing;
}

/* Single Slide Grid Frame (2 items on large desktop screens) */
.testimonial-slide {
    min-width: calc(50% - 13px); /* Half width minus split gap */
    box-sizing: border-box;
    transition: opacity 0.4s ease;
}

/* Premium Card Item Inside Slide Box */
.testimonial-card {
    background-color: var(--bg-light-purple);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    padding: 35px 35px;
    border-radius: 20px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
}

/* Giant Quote watermark icon inside card layout */
.quote-bg-icon {
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 6rem;
    color: rgba(251, 194, 0, 0.03);
    pointer-events: none;
}

.card-top-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.star-rating i {
    color: var(--yellow);
    font-size: 1rem;
    margin-right: 2px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-text {
    color: #e2daf7;
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 25px;
    font-weight: 400;
    flex-grow: 1; /* Pushes profile strictly to baseline bottom layout */
}

/* Parent Profile Meta elements footer row */
.parent-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
}

/* Alphabet Initials Profile Avatar Layout */
.avatar-initials {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    border: 2px solid var(--yellow);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Color palettes variations for cute flat profiles */
.purple-bg { background: #6e2bc9; }
.yellow-bg { background: #fbc200; color: #000; }
.blue-bg   { background: #2b93c9; }
.green-bg  { background: #2bc97c; }
.pink-bg   { background: #ff4757; }
.orange-bg { background: #ff7f50; }

.parent-info h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.parent-info span { font-size: 0.82rem; color: var(--text-muted); }

/* === NAVIGATION SLIDER ARROWS === */
.slider-arrow {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    background-color: var(--yellow);
    color: #000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: var(--white);
    transform: translateY(-50%) scale(1.08);
}

.prev-arrow { left: -25px; }
.next-arrow { right: -25px; }

/* Bottom Control Dots Bar indicator strip */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--yellow);
    width: 24px; /* Pill shaped expanding active dot hint */
    border-radius: 10px;
}

/* Micro Heart animations setup */
.heart-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; }
.heart-divider .line { height: 3px; width: 50px; background: var(--yellow); border-radius: 10px; }
.heart-divider i { color: #ff4757; }
.animate-pulse-heart { animation: pulse 1.4s infinite; }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* === SLIDER MEDIA PANEL RESPONSIVENESS === */
@media (max-width: 992px) {
    .testimonial-slide {
        min-width: 100%; /* Only 1 item full-view active at a time on portable devices */
    }
    .prev-arrow { left: -10px; }
    .next-arrow { right: -10px; }
    .testimonials-header h2 { font-size: 2.1rem; }
}

@media (max-width: 576px) {
    .slider-arrow { display: none; } /* Hide raw sharp buttons on thin viewports to maximize content width */
    .testimonial-card { padding: 30px 22px; }
    .review-text { font-size: 0.98rem; }
}

/* --- FAQ ACCORDION SYSTEM (100% MATCH) --- */
.faq-section {
    width: 100%;
    padding: 80px 4% 100px 4%;
    background-color: var(--bg-dark-purple);
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1350px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 35px;
}

.faq-header h2 {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--white);
}

/* === HORIZONTAL SWIPABLE TABS BAR === */
.faq-tabs-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 10px 5px;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.faq-tabs-bar::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.faq-tab-btn {
    background-color: var(--bg-light-purple);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap; /* Mobile par buttons warp na hon */
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.faq-tab-btn i {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.faq-tab-btn:hover {
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.faq-tab-btn.active {
    background-color: var(--yellow);
    color: #000;
    border-color: var(--yellow);
    box-shadow: 0 10px 20px rgba(251, 194, 0, 0.2);
}

.faq-tab-btn.active i {
    color: #000;
}

/* Three Column Structure */
.faq-content-layout {
    display: grid;
    grid-template-columns: 1fr 2.4fr 1fr;
    align-items: flex-start;
    gap: 35px;
}

/* Characters sticky setup */
.faq-character {
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 120px;
}

.char-wrapper {
    position: relative;
    width: 100%;
    max-width: 250px;
}

.char-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.55));
    animation: floatCharacter 4s ease-in-out infinite;
}

@keyframes floatCharacter {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.char-badge-purple {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #6e2bc9;
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 800;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Accordion Wrapper */
.faq-accordion-box {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

/* Accordion Animation Mechanics */
.faq-item {
    background-color: var(--bg-light-purple);
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    overflow: hidden;
    transform: scale(1);
    opacity: 1;
    display: block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                opacity 0.4s ease, 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}

/* Tab hide state animation trigger */
.faq-item.hide-faq {
    display: none;
    opacity: 0;
    transform: scale(0.95);
}

.faq-item:hover {
    transform: translateY(-3px);
    border-color: rgba(251, 194, 0, 0.2);
}

.faq-question {
    padding: 20px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--white);
}

.arrow-icon {
    background-color: var(--yellow);
    color: #000;
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), padding 0.4s ease;
    padding: 0 26px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-bottom: 20px;
}

/* Active State */
.faq-item.active {
    border-color: var(--yellow);
    box-shadow: 0 12px 25px rgba(251, 194, 0, 0.1);
}

.faq-item.active .arrow-icon {
    transform: rotate(90deg);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

/* Heart divider micro animation */
.heart-divider { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 10px; }
.heart-divider .line { height: 3px; width: 50px; background: var(--yellow); border-radius: 10px; }
.heart-divider i { color: #ff4757; }
.animate-pulse-heart { animation: beat 1.4s infinite; }
@keyframes beat { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); } }

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .faq-content-layout { grid-template-columns: 1fr 2.5fr; }
    .right-char { display: none; }
}

@media (max-width: 992px) {
    .faq-content-layout { grid-template-columns: 1fr; }
    .left-char { display: none; }
    .faq-tabs-bar { justify-content: flex-start; padding-left: 4%; padding-right: 4%; }
}


/* --- RESPONSIVE BREAKPOINTS (UPDATED FOR VERTICAL BUTTONS) --- */
@media (max-width: 992px) {
    .faq-content-layout { 
        grid-template-columns: 1fr; 
    }
    .left-char { 
        display: none; 
    }
    
    /* Buttons ko row se column (up to down) mein badalne ke liye */
    .faq-tabs-bar {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 450px; /* Buttons zyada wide na hon, center mein pyare laghein */
        margin: 0 auto 35px auto;
        padding: 0 4%;
    }

    .faq-tab-btn {
        width: 100%; /* Har button poori width le ga taake touch karna aasan ho */
        justify-content: center; /* Text aur icon center mein aa jayein gey */
        padding: 15px 20px;
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .faq-question { 
        padding: 18px 22px; 
        gap: 14px; 
    }
    .faq-answer { 
        padding: 0 22px; 
    }
    .faq-question h3 { 
        font-size: 1rem; 
    }
    .faq-section { 
        padding: 60px 4% 80px 4%; 
    }
}

/* --- CONTACT US & FOOTER STYLES (100% IMAGE MATCH) --- */
.contact-section {
    width: 100%;
    padding: 80px 4% 20px 4%;
    background-color: var(--bg-dark-purple);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
}
.info-item a {
    color: inherit;
    text-decoration: none;
}
.contact-container {
    max-width: 1350px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* 3-Column Base Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 0.8fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* COLUMN 1: Info Elements */
.info-links-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    color: var(--yellow);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-item p {
    color: #b9a8df;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.info-locationone {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.info-iconone {
    color: var(--yellow);
    font-size: 1.2rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.info-textone h4 {
    margin-top: 6px;
    color: #fff;
}

.info-textone p {
    margin: 0;
    color: #b9a8df;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Dynamic Map Aspect Box Frame */
.map-wrapper-box {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.map-wrapper-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) invert(0.9) contrast(1.2); /* Blends standard map inside dark background nicely */
}

/* COLUMN 2: Message Contact Form Fields */
.footer-msg-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row-twin {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-field {
    background-color: #170738;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 20px;
    border-radius: 8px;
    color: var(--white);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--yellow);
    background-color: #1c0944;
}

.textarea-field {
    resize: none;
}

.btn-submit-form {
    background-color: var(--yellow);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: flex-end;
    transition: transform 0.2s, background-color 0.2s;
}

.btn-submit-form:hover {
    transform: translateY(-2px);
    background-color: #e2b200;
}

/* COLUMN 3: Social & Horizontal WhatsApp Widget */
.social-inner-card {
    background-color: #170738;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
}

.social-inner-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.social-media-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 30px;
}

.social-circle-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.icon-fb { background-color: #3b5998; }
.icon-insta { background-color: #e1306c; }
.icon-yt { background-color: #cf0000; }

.social-circle-link:hover {
    transform: scale(1.1);
}

/* Custom Image-Matched WhatsApp Badge Row Container */
.whatsapp-badge-widget {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: #0e0224;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    text-align: left;
    transition: background-color 0.3s;
}

.whatsapp-badge-widget:hover {
    background-color: #12032e;
}

.wa-icon-holder {
    color: #25d366;
    font-size: 2.2rem;
}

.wa-text-holder span {
    font-size: 0.72rem;
    color: var(--text-muted);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.wa-text-holder h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
}

/* SUB FOOTER CREDITS BAR PANEL */
.bottom-credits-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-img {
    width: auto;
    height: 120px;
}

.brand-text-block h4 {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.brand-text-block span {
    font-size: 0.68rem;
    letter-spacing: 2px;
    color: var(--yellow);
    display: block;
}

.brand-text-block p {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.footer-legal-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: var(--white);
}

.divider-dot {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 8px;
}

.footer-copyright-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-social-col {
        grid-column: 1 / -1;
        max-width: 450px;
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .form-row-twin {
        grid-template-columns: 1fr;
    }
    .bottom-credits-bar {
        flex-direction: column;
        text-align: center;
    }
    .footer-brand-meta {
        flex-direction: column;
        gap: 6px;
    }
    .btn-submit-form {
        width: 100%;
    }
}
.logo-area {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px; /* Aap apni navbar ki height ke mutabiq isay 60px ya 70px bhi kar sakte hain */
    width: auto;  /* Taake image ki aspect ratio kharab na ho */
    object-fit: contain;
}



/* ==============================
   Floating WhatsApp Button
============================== */

.floating-whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    border-radius:50%;
    background:linear-gradient(135deg,#25D366,#128C7E);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#fff;
    font-size:34px;
    z-index:9999;

    box-shadow:
        0 10px 30px rgba(37,211,102,.45),
        0 0 0 rgba(37,211,102,.6);

    transition:.35s ease;

    animation:
        whatsappPulse 2s infinite,
        whatsappFloat 3s ease-in-out infinite;
}

.floating-whatsapp:hover{
    transform:translateY(-6px) scale(1.1);
    box-shadow:
        0 15px 40px rgba(37,211,102,.6);
}

@keyframes whatsappPulse{
    0%{
        box-shadow:
            0 0 0 0 rgba(37,211,102,.55);
    }

    70%{
        box-shadow:
            0 0 0 18px rgba(37,211,102,0);
    }

    100%{
        box-shadow:
            0 0 0 0 rgba(37,211,102,0);
    }
}

@keyframes whatsappFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-6px);
    }

}

/* Mobile */

@media(max-width:768px){

.floating-whatsapp{

    width:58px;
    height:58px;
    right:18px;
    bottom:18px;
    font-size:30px;

}

}