:root {
    /* Color Palette */
    --primary: #4A148C;
    /* Deep Purple */
    --primary-dark: #310E68;
    --secondary: #FFC107;
    /* Golden Yellow */
    --secondary-light: #FFD54F;
    --accent-red: #EF4444;
    /* Red */
    --lite-purple: #E1BEE7;
    --lite-purple-bg: #F3E5F5;
    /* Very light purple for backgrounds */
    --white: #ffffff;
    --off-white: #F3E5F5;
    /* Changed from off-white to light purple tint */
    --dark-text: #1E293B;
    --light-text: #64748B;
    --light-text: #64748B;

    /* Gradients */
    --grad-purple: linear-gradient(135deg, #4A148C, #c20ae2);
    --grad-yellow-red: linear-gradient(135deg, #FFC107, #EF4444);
    --grad-glass: linear-gradient(145deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.1));

    /* Shadows */
    --glow-purple: 0 0 20px rgba(74, 20, 140, 0.4);
    --glow-yellow: 0 0 20px rgba(255, 193, 7, 0.4);
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-text);
    background-color: var(--off-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Utilities */
.text-gradient {
    background: var(--grad-purple);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.btn {
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-gradient-primary {
    background: var(--grad-purple);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.3);
}

.btn-gradient-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 20, 140, 0.5);
    color: white;
}

.btn-gradient-secondary {
    background: var(--grad-yellow-red);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.btn-gradient-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.5);
    color: white;
}

/* Customizing View All Programs Button (Outline Dark replacement) */
.btn-outline-dark {
    color: white;
    border: none;
    background: var(--grad-purple);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 20, 140, 0.3);
}

.btn-outline-dark:hover {
    background: var(--grad-purple);
    color: white;
    box-shadow: 0 8px 25px rgba(74, 20, 140, 0.5);
    transform: translateY(-3px);
}

/* Ensure Outline Primary follows similar pattern (Solid by default) */
.btn-outline-primary {
    color: white;
    background: var(--primary);
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: white;
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

/* Customize btn-light (used in Program Cards) */
.btn-light {
    background: var(--primary);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--primary);
    /* Keep same color */
    color: white !important;
    box-shadow: var(--glow-purple);
    transform: translateY(-3px);
}

/* Customize Workshop Buttons (Solid Default, Lift Hover) */
.btn-outline-secondary {
    background: var(--secondary);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-secondary:hover {
    background: var(--secondary);
    color: white;
    box-shadow: var(--glow-yellow);
    transform: translateY(-3px);
}

.btn-outline-danger {
    background: var(--accent-red);
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-danger:hover {
    background: var(--accent-red);
    color: white;
    box-shadow: 0 8px 15px rgba(239, 68, 68, 0.4);
    transform: translateY(-3px);
}

.btn-outline-success {
    background: #10b981;
    /* Bootstrap/Tailwind success equivalent or Custom Green */
    color: white;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-outline-success:hover {
    background: #10b981;
    color: white;
    box-shadow: 0 8px 15px rgba(16, 185, 129, 0.4);
    transform: translateY(-3px);
}

/* 1. Top Bar */
#top-bar {
    z-index: 1031;
    font-size: 0.9rem;
}

#top-bar a {
    color: var(--dark-text);
    transition: color 0.3s;
}

#top-bar a:hover {
    color: var(--primary);
}

/* 2. Navbar */
.navbar {
    transition: all 0.3s ease;
    z-index: 1030;
    background: var(--primary);
    /* Changed to Violet/Primary */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.bg-white {
    background-color: var(--primary) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Default Navbar Text (Violet Bg) */
.navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

.navbar .nav-link:hover {
    color: var(--secondary) !important;
    /* Yellow on hover */
}

.navbar .navbar-brand {
    color: var(--white) !important;
    font-weight: 800;
    transition: text-shadow 0.3s;
}

/* Scroll State Text (White Bg) */
/* Scroll State Text (Keep White on Violet) */
.navbar.bg-white .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

.navbar.bg-white .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar.bg-white .navbar-brand {
    color: var(--white) !important;
}


/* Login Button Transition - Solid White by Default on Purple Navbar */
.navbar .btn-outline-primary {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border: none !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar .btn-outline-primary:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.navbar.bg-white .btn-outline-primary {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    border: none !important;
}

.navbar.bg-white .btn-outline-primary:hover {
    background-color: var(--white) !important;
    color: var(--primary) !important;
    transform: translateY(-3px);
}

/* Page Header for subpages (spacer + background) */
.page-header-spacer {
    padding-top: 140px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #f3e8ff 0%, #ffffff 100%);
    margin-bottom: 2rem;
}

/* Mobile Navbar Styling - Integrated & Aligned */
/* Mobile Navbar Styling - Integrated & Aligned */
@media (max-width: 1199.98px) {

    /* Force solid background on mobile/tablet */
    .navbar {
        background-color: var(--primary) !important;
        /* Violet on mobile too */
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        top: 0 !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        max-height: 100vh;
        overflow-y: auto;
        /* Allow scrolling if menu is tall */
    }


    /* Remove floating styles, keep it standard */
    .navbar-collapse {
        background: transparent;
        box-shadow: none;
        margin-top: 0;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        /* Separator */
    }

    /* Ensure links are white on mobile since background is violet */
    .navbar .nav-link {
        color: white !important;
        padding: 10px 0;
        /* More clickable area */
        padding-left: 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }

    .navbar.bg-white .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }


    .navbar .btn {
        width: 100%;
        margin-top: 0.5rem;
        text-align: center;
        display: block;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* Typography responsiveness */
/* Overriding Bootstrap bg-light to use Light Purple Tint */
.bg-light {
    background-color: var(--lite-purple-bg) !important;
}

@media (max-width: 768px) {

    h1.display-3,
    h1.display-4,
    .display-3,
    .display-4,
    .display-6 {
        font-size: 2rem !important;
        /* Force smaller headings on mobile */
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    #hero {
        padding-top: 100px;
        /* Reduced padding on mobile */
        text-align: center;
    }

    #hero p.lead {
        font-size: 1rem;
    }

    /* Center buttons on mobile hero */
    #hero .d-flex {
        justify-content: center;
    }
}

/* Removed duplicate .navbar-brand and .nav-link styles that were conflicting */

/* 3. Hero Section */
#hero {
    position: relative;
    padding-top: 140px;
    padding-bottom: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #eadef7 0%, #fbfafc 100%);
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('images/bg-4.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    border-bottom-left-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.2);
    color: #D97706;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.type-cursor {
    display: inline-block;
    width: 3px;
    background-color: var(--primary);
    animation: blink 1s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.stat-badge {
    background: white;
    border-radius: 12px;
    padding: 15px;
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--primary);
    transition: transform 0.3s;
}

.stat-badge:hover {
    transform: translateY(-5px);
}


/* ================= HERO FLOATING SHAPES ================= */

.hero-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

/* Pink dots */
.hero-dots {
    top: 12%;
    left: 6%;
    width: 120px;
    /*opacity: 0.9;*/
    animation: heroDotsFloat 14s ease-in-out infinite;
}

/* Triangle */
.hero-triangle {
    bottom: 18%;
    right: 8%;
    width: 102px;
    animation: heroDotsFloat 10s linear infinite;
}

/* ================= KEYFRAMES ================= */

@keyframes heroDotsFloat {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 15px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@keyframes heroTriangleRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .hero-dots {
        width: 90px;
        top: 8%;
        left: 4%;
    }

    .hero-triangle {
        width: 108px;
        right: 6%;
    }
}

@media (max-width: 576px) {
    .hero-dots {
        width: 70px;
        top: 6%;
        left: 3%;
        animation-duration: 20s;
    }

    .hero-triangle {
        width: 114px;
        bottom: 10%;
        animation-duration: 16s;
    }
}


/* ================= HERO FLOATING SHAPES (DEFAULT / LARGE) ================= */

.hero-dots {
    top: 12%;
    left: 6%;
    width: 120px;
}

.hero-triangle {
    bottom: 18%;
    right: 8%;
    width: 122px;
}

/* ================= MEDIUM SCREENS (TABLET) ================= */

@media (max-width: 992px) {
    .hero-dots {
        width: 80px;
        top: 6%;
        left: 3%;
        /*opacity: 0.8;*/
        animation-duration: 18s;
    }

    .hero-triangle {
        width: 116px;
        bottom: 8%;
        right: 4%;
        animation-duration: 14s;
    }
}

/* ================= SMALL SCREENS (MOBILE) ================= */

@media (max-width: 576px) {
    .hero-dots {
        width: 55px;
        top: 4%;
        left: 2%;
        /*opacity: 0.6;*/
        animation-duration: 22s;
    }

    .hero-triangle {
        width: 72px;
        bottom: 5%;
        right: 3%;
        animation-duration: 18s;
    }
}

/* ================= LARGE DESKTOP TUNING (1000px–1700px) ================= */

@media (min-width: 1000px) and (max-width: 1700px) {

    /* Pink dots */
    .hero-dots {
        width: 95px;
        /* slightly smaller than full desktop */
        top: 10%;
        left: 4%;
        /*opacity: 0.85;*/
        animation-duration: 16s;
    }

    /* Triangle */
    .hero-triangle {
        width: 108px;
        bottom: 14%;
        right: 6%;
        animation-duration: 12s;
    }
}




/* 4.  about */
.about-float {
    position: relative;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}



.about-dots {
    position: absolute;
    top: -18%;
    left: -18%;
    width: 110px;
    height: 110px;

    background: url("images/bulb.png") no-repeat center / contain;
    z-index: 1;
    pointer-events: none;

    animation: dotsMove 14s ease-in-out infinite;
}


.about-triangle {
    position: absolute;
    top: 4%;
    right: -12%;

    width: 18px;
    height: 18px;

    background: url("images/about-triangle.png") no-repeat center / contain;
    z-index: 1;
    pointer-events: none;

    animation: rotateCW 10s linear infinite;
}


.about-circle {
    position: absolute;
    top: 14%;
    right: -16%;

    width: 18px;
    height: 18px;

    background: url("images/about-circle.png") no-repeat center / contain;
    z-index: 1;
    pointer-events: none;

    animation: rotateCW 12s linear infinite;
}

.about-dots-2 {
    position: absolute;
    bottom: -20%;
    right: -15%;
    width: 110px;
    height: 110px;

    background: url("images/about-dots.png") no-repeat center / contain;
    z-index: 0;
    pointer-events: none;

    animation: dotsMoveOpposite 18s ease-in-out infinite;
}

.about-triangle-2 {
    position: absolute;
    bottom: 12%;
    left: -14%;

    width: 18px;
    height: 18px;

    background: url("images/about-triangle.png") no-repeat center / contain;
    z-index: 0;
    pointer-events: none;

    animation: rotateCCW 14s linear infinite;
}

.about-circle-2 {
    position: absolute;
    bottom: 4%;
    left: -18%;

    width: 18px;
    height: 18px;

    background: url("images/about-circle.png") no-repeat center / contain;
    z-index: 0;
    pointer-events: none;

    animation: rotateCCW 16s linear infinite;
}

@keyframes dotsMove {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(35px, 20px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes dotsMove {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(35px, 20px);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@keyframes dotsMoveOpposite {
    0% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-35px, -25px);
    }

    100% {
        transform: translate(0, 0);
    }
}

@-webkit-keyframes dotsMoveOpposite {
    0% {
        -webkit-transform: translate(0, 0);
    }

    50% {
        -webkit-transform: translate(-35px, -25px);
    }

    100% {
        -webkit-transform: translate(0, 0);
    }
}

@keyframes rotateCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateCW {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes rotateCCW {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@-webkit-keyframes rotateCCW {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(-360deg);
    }
}

@media (max-width: 576px) {

    .about-dots,
    .about-dots-2 {
        width: 70px;
        height: 70px;
        opacity: 0.7;
    }

    .about-triangle,
    .about-triangle-2,
    .about-circle,
    .about-circle-2 {
        width: 12px;
        height: 12px;
    }

    .about-dots {
        animation-duration: 22s;
    }

    .about-dots-2 {
        animation-duration: 26s;
    }
}

/* Benefit list */
.benefit-item {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    /* text stays dark */
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Check circle icon – violet */
.benefit-item i {
    color: #7c3aed;
    /* professional violet */
    font-size: 18px;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7c3aed;
    /* violet */
}

/* 5. Program Categories */
/* ===============================
   PROGRAMS SECTION – VIOLET UI
================================ */

.programs-section {
    background: linear-gradient(135deg,
            #ede9fe,
            #f5f3ff,
            #faf5ff);
    padding: 80px 0;
}

/* Section heading */
.programs-section h2 {
    color: #1f2937;
    font-weight: 800;
}

.programs-section .section-tag {
    color: #7c3aed;
    font-weight: 600;
}

.programs-section .text-gradient {
    background: linear-gradient(90deg,
            #7c3aed,
            #a855f7,
            #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------------- CARDS ---------------- */

.program-card {
    height: 100%;
    border-radius: 22px;
    background: #ffffff;
    padding: 36px 26px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(124, 58, 237, 0.18);
    transition: all 0.35s ease;
}

.program-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.35);
}

/* ICON */
.program-icon {
    width: 78px;
    height: 78px;
    border-radius: 20px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

/* TEXT */
.program-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
}

.program-card p {
    font-size: 14px;
    color: #4b5563;
    margin-top: 10px;
}

/* BADGES */
.program-card .badge {
    background: #ede9fe;
    color: #f8f6fa;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
}

/* ---------------- SUBTLE VARIATIONS ---------------- */

.program-1 .program-icon {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.program-2 .program-icon {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.program-3 .program-icon {
    background: linear-gradient(135deg, #6d28d9, #7c3aed);
}

.program-4 .program-icon {
    background: linear-gradient(135deg, #a855f7, #ec4899);
}

.program-5 .program-icon {
    background: linear-gradient(135deg, #5b21b6, #7c3aed);
}

/* MOBILE */
@media (max-width: 576px) {
    .programs-section {
        padding: 60px 0;
    }

    .program-card {
        padding: 30px 20px;
    }
}


   /*6. Program Card – Premium Non-Clickable */

.program-card {
    background: linear-gradient(145deg, #ffffff, #f3e8ff);
    border: 1px solid rgba(139, 92, 246, 0.1);
}



/* ===============================
   Program Card – Premium Non-Clickable
================================ */

.program-card {
    position: relative;
    height: 100%;
    padding: 40px 32px;

    border-radius: 24px;

    background:
        linear-gradient(
            160deg,
            #ffffff 0%,
            #f5f0ff 60%,
            #ede9fe 100%
        );

    border: 1px solid rgba(124, 58, 237, 0.16);

    box-shadow:
        0 16px 45px rgba(124, 58, 237, 0.16);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;

    cursor: default; /* 🔥 IMPORTANT: removes redirect feel */
}

/* Hover – calm premium lift (NOT clicky) */
.program-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 28px 70px rgba(124, 58, 237, 0.28);
}

/* Soft violet glow border */
.program-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 0 1px rgba(124, 58, 237, 0.25);
    pointer-events: none;
}

/* Icon container */
.program-card .display-4 {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #a855f7
    );

    color: #ffffff;
    font-size: 34px;

    box-shadow:
        0 10px 25px rgba(124, 58, 237, 0.35);
}

    /* <!--6. Featured Programs --> */

/* Base badge style */
.program-card .badge {
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;

    backdrop-filter: blur(6px);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

/* Ages 4–8 (REPLACED yellow → soft amber-violet) */
.program-card .badge.bg-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
}

/* Academic */
.program-card .badge.bg-success {
    background: linear-gradient(135deg, #16a34a, #22c55e) !important;
}

/* Creativity */
.program-card .badge.bg-info {
    background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
}

/* Sensory */
.program-card .badge.bg-danger {
    background: linear-gradient(135deg, #db2777, #ec4899) !important;
}

/* Mindfulness */
.program-card .badge.bg-secondary {
    background: linear-gradient(135deg, #7c3aed, #a855f7) !important;
}

/* Kill Bootstrap text-dark forever */
.program-card .badge.text-dark {
    color: #ffffff !important;
}

/* Description */
.program-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #475569;
    margin-bottom: 0;
}

/* Mobile */
@media (max-width: 576px) {
    .program-card {
        padding: 32px 24px;
    }

    .program-card h4 {
        font-size: 1.2rem;
    }
}
/* FORCE ALL PROGRAM CATEGORY TEXT TO WHITE */
.program-card .badge,
.program-card .badge.bg-warning,
.program-card .badge.bg-info,
.program-card .badge.bg-success,
.program-card .badge.bg-danger,
.program-card .badge.bg-secondary {
    color: #ffffff !important;
}

/* Remove Bootstrap text-dark override */
.program-card .badge.text-dark {
    color: #ffffff !important;
}
/* ===============================
   LEFT ACCENT BAR (ALL CARDS)
================================ */

.program-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    bottom: 24px;
    width: 5px;
    border-radius: 6px;

    background: linear-gradient(
        to bottom,
        #7c3aed,
        #a855f7
    );
}
.program-card:hover::before {
    background: linear-gradient(
        to bottom,
        #a855f7,
        #ec4899
    );
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    background: #ff0000;
    color: white;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}
/* 5.FEATURED – MINIMAL STYLE */

.featured-minimal {
    background: #f8fafc;
}

/* Card */
.minimal-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.minimal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

/* Image */
.minimal-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

/* Body */
.minimal-body {
    padding: 18px;
}

.minimal-body h5 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.age {
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
}

.minimal-body p {
    font-size: 14px;
    color: #475569;
    margin: 10px 0 12px;
}

/* Meta */
.meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
}

.meta i {
    color: #f59e0b;
}

/* Button */
.minimal-card .btn-primary {
    background: #7c3aed;
    border-color: #7c3aed;
}

.minimal-card .btn-primary:hover {
    background: #6d28d9;
}

/* Mobile */
@media (max-width: 576px) {
    .minimal-card img {
        height: 180px;
    }
}

/* Between 991px and 1371px → 2 per row */
@media (max-width: 1371px) and (min-width: 992px) {
    .featured-minimal .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
/* ===============================
   7. COUNTER SECTION – RESPONSIVE
================================ */

#counters {
    background: var(--grad-purple);
    color: #ffffff;
    padding: clamp(60px, 8vw, 100px) 0;
    position: relative;
    overflow: hidden;
}

/* Pattern overlay */
#counters::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Counter number – RESPONSIVE */
.counter-val {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;

    /* Responsive font scaling */
    font-size: clamp(2rem, 4.5vw, 3.2rem);
}

/* Counter label text */
#counters p {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Extra spacing on mobile */
@media (max-width: 576px) {
    #counters .row>div {
        margin-bottom: 10px;
    }
}





/* 8. Workshop Section  */

.workshops-eye {
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

/* Workshop Card */
.workshop-eye-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 22px;
    border-radius: 18px;
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.workshop-eye-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.22);
}

/* Date Box */
.workshop-date {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 14px;
    border-radius: 14px;
    text-align: center;
    min-width: 78px;
}

.workshop-date .day {
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.workshop-date .month {
    font-size: 12px;
    letter-spacing: 1px;
}

/* Content */
.workshop-content h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.workshop-content p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
}

/* Join Now Button – BASE */
.workshop-eye-card .btn {
    margin-left: auto;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: #ffffff;
    border: none;
    transition: transform 0.25s ease;
}

/* Text color (static, no change on hover) */
.workshop-eye-card.violet .btn {
    color: #6d28d9;
}

.workshop-eye-card.amber .btn {
    color: #92400e;
}

.workshop-eye-card.rose .btn {
    color: #9f1239;
}

.workshop-eye-card.green .btn {
    color: #166534;
}

/* Hover – ONLY MOVEMENT */
.workshop-eye-card .btn:hover {
    transform: translateY(-2px);
    background: #ffffff;
    /* force no change */
    color: inherit;
    /* force no change */
}

/* Card Color Themes */
.workshop-eye-card.violet {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.workshop-eye-card.amber {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.workshop-eye-card.rose {
    background: linear-gradient(135deg, #e11d48, #fb7185);
}

.workshop-eye-card.green {
    background: linear-gradient(135deg, #16a34a, #4ade80);
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .workshop-eye-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .workshop-eye-card .btn {
        margin-left: 0;
        margin-top: 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .workshop-eye-card {
        padding: 18px;
    }

    .workshop-date {
        min-width: 70px;
    }

    .workshop-date .day {
        font-size: 24px;
    }
}


/* ===============================
   JOIN NOW BUTTON – FINAL WORKING FIX
================================ */

/* Base button */
.workshop-eye-card .btn {
    margin-left: auto;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 999px;
    background: #ffffff !important;
    border: none;
    opacity: 1 !important;
    transition: transform 0.25s ease;
}

/* Explicit text colors (NEVER inherit) */
.workshop-eye-card.violet .btn {
    color: #6d28d9 !important;
}

.workshop-eye-card.amber .btn {
    color: #92400e !important;
}

.workshop-eye-card.rose .btn {
    color: #9f1239 !important;
}

.workshop-eye-card.green .btn {
    color: #166534 !important;
}

/* Hover / Focus / Active – ONLY MOVEMENT */
.workshop-eye-card .btn:hover,
.workshop-eye-card .btn:focus,
.workshop-eye-card .btn:active {
    transform: translateY(-2px);
    background: #ffffff !important;
    /* force same bg */
    box-shadow: none !important;
    outline: none !important;
    opacity: 1 !important;
}

/* Prevent Bootstrap disabled appearance */
.workshop-eye-card .btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

/* ===============================
   WORKSHOP FLOATING SVG DECOR
================================ */

.workshops-eye {
    position: relative;
    overflow: hidden;
}

/* Base decor */
.workshop-decor {
    position: absolute;
    width: 260px;
    height: 260px;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.18;
    pointer-events: none;
    animation: floatY 12s ease-in-out infinite;
}

/* Purple blob */
.decor-1 {
    top: -60px;
    left: -80px;
    background-image: url("images/ideas-book-light-bulb-power-knowledge-sign-vector-illustration.png");
}

/* Amber blob */
.decor-2 {
    bottom: -70px;
    right: -90px;

    animation-delay: 3s;
    background-image: url("images/shiny-earth-globe.png");
}

/* Green blob */
.decor-3 {
    top: 35%;
    right: 10%;
    width: 18px;
    height: 18px;
    animation-delay: 6s;
    background-image: url("images/about-triangle.png");
}

/* Floating animation */
@keyframes floatY {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}



/* <!-- 9. Team Section --> */

/* ===============================
   TEAM SECTION – MODERN UI
================================ */

.team-section {
    background: #f8fafc;
}

/* Team Card */
.team-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.15);
}

/* Image */
.team-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 14px;
    border: 4px solid #ede9fe;
}

/* Title */
.team-card h6 {
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

/* Subtitle */
.team-card span {
    font-size: 14px;
    color: #64748b;
}

/* Button override */
.team-section .btn-outline-primary {
    border-color: #7c3aed;
    color: #f5f4f7;
}

.team-section .btn-outline-primary:hover {
    background: #7c3aed;
    color: #ffffff;
}

/* Mobile spacing */
@media (max-width: 576px) {
    .team-card {
        padding: 26px 18px;
    }
}

/* <!-- 10. Testimonials Slider --> */
/* Testimonials Card - Glassy on Dark Background */
.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* Testimonials - NOW DARK PURPLE */
#testimonials {
    background-color: var(--primary);
    color: white;
    position: relative;
}

#testimonials .section-tag {
    color: var(--secondary);
    /* Pop of yellow on purple */
}

#testimonials .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

#testimonials h2 {
    color: white;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 60%; /* Slightly taller than 56.25% */
    overflow: hidden;
    border-radius: 18px;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/* Default: 2 per row */
#testimonials .col-12 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Mobile */
@media (max-width: 767px) {
    #testimonials .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Only above 1450px → 4 per row */
@media (min-width: 1450px) {
    #testimonials .col-12 {
        flex: 0 0 25%;
        max-width: 25%;
    }
}
/*11. PARTNERS – AUTO MOVING SLIDER */

/* ===============================
   PARTNERS – RESPONSIVE SCALING
================================ */

.partners-final {
    background: #ffffff;
    overflow: hidden;
}

/* 🔹 Section title – RESPONSIVE */
.partners-title {
    font-weight: 700;
    letter-spacing: 2px;
    color: #64748b;

    /* Small → Medium → Large */
    font-size: clamp(12px, 1.4vw, 18px);
}

/* Marquee container */
.partners-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Moving track */
.partners-track {
    display: flex;
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
    width: max-content;
    animation: partnerScroll 30s linear infinite;
}

/* Logo card */
.partner-logo-box {
    flex: 0 0 auto;
    background: #ffffff;
    padding: clamp(10px, 1.5vw, 22px) clamp(16px, 2vw, 34px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 🔹 Logo image – RESPONSIVE */
.partner-logo-box img {
    width: auto;
    height: auto;
    object-fit: contain;

    /* Small → Medium → Large */
    max-height: clamp(40px, 5vw, 80px);
    max-width: clamp(90px, 10vw, 180px);
}

/* Animation */
@keyframes partnerScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause auto-scroll when hovering any logo */
.partners-final:hover .partners-track {
    animation-play-state: paused;
}


/* 12.BLOG – MODERN PREVIEW */

.blog-modern {
    background: #F3E5F5;
}

/* Header */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
}

/* Card */
.blog-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px 22px;
    height: 100%;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

/* Date */
.blog-date {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #7c3aed;
    margin-bottom: 10px;
}

/* Title */
.blog-card h6 {
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 16px;
}

/* Link */
.blog-link {
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
    text-decoration: none;
}

.blog-link:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px) {
    .blog-card {
        padding: 22px 18px;
    }
}

/* <!-- 13. Final CTA --> */


/* ===============================
   CTA SVG DECORATIONS
================================ */

.cta-decor-wrap {
    background: linear-gradient(135deg, var(--lite-purple-bg), #ffffff);
    position: relative;
}

/* SVG base */
.cta-svg {
    position: absolute;
    width: clamp(90px, 15vw, 160px);
    height: auto;
    pointer-events: none;
}

/* Left SVG */
.cta-svg.left {
    left: -40px;
    top: 20%;
    animation: floatLeft 6s ease-in-out infinite;
}

/* Right SVG */
.cta-svg.right {
    right: -40px;
    bottom: 15%;
    animation: floatRight 7s ease-in-out infinite;
}

/* Keyframes */
@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(-4deg);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .cta-svg {
        width: 120px;
        opacity: 0.8;
    }
}

/* Mobile – hide decorations for clean UI */
@media (max-width: 576px) {
    .cta-svg {
        display: none;
    }
}

/* ===============================
   CTA – OUTSIDE FLOATING IMAGES
================================ */

.cta-section {
    position: relative;
    overflow: hidden;
}

/* CTA box */
.cta-box {
    background: linear-gradient(135deg, var(--lite-purple-bg), #ffffff);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}

/* Decorative image base */
.cta-decor.outside {
    position: absolute;
    bottom: 0;
    width: clamp(100px, 16vw, 260px);
    pointer-events: none;
    z-index: 0;
}

/* Left image */
.cta-decor.outside.left {
    left: -5px;
    animation: floatLeft 7s ease-in-out infinite;
}

/* Right image */
.cta-decor.outside.right {
    right: -5px;
    animation: floatRight 8s ease-in-out infinite;
}

/* Floating animations */
@keyframes floatLeft {

    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-22px) rotate(3deg);
    }
}

@keyframes floatRight {

    0%,
    100% {
        transform: translateY(0) rotate(3deg);
    }

    50% {
        transform: translateY(-26px) rotate(-3deg);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .cta-decor.outside {
        width: 150px;
        opacity: 0.8;
    }

    .cta-decor.outside.left {
        left: -50px;
    }

    .cta-decor.outside.right {
        right: -50px;
    }
}

/* Mobile – hide images */
@media (max-width: 576px) {
    .cta-decor.outside {
        display: none;
    }
}


/* Footer - Ensure Deep Purple */
footer {
    background: var(--primary-dark);
    color: #E2E8F0;
    padding-top: 80px;
    padding-bottom: 30px;
}

footer a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

/* Ensure footer contact text is visible */
footer .list-unstyled.small {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer .list-unstyled.small .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer .list-unstyled.small i.text-primary {
    color: var(--secondary) !important;
    /* Make icons Yellow/Secondary for better contrast on dark bg */
}

footer h5 {
    color: white;
    margin-bottom: 25px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* ===============================
   FOOTER RESPONSIVE TYPOGRAPHY
   (NO COLOR CHANGES)
================================ */

/* Base text improvements */
footer p,
footer li,
footer a {
    font-size: 14px;
    line-height: 1.7;
}

/* Headings */
footer h4 {
    font-size: 22px;
}

footer h5 {
    font-size: 16px;
}

/* ===============================
   TABLET (≤ 991px)
================================ */
@media (max-width: 991px) {

    /* Center align content */
    footer .col-lg-4,
    footer .col-lg-2 {
        text-align: center;
    }

    footer h4 {
        font-size: 20px;
    }

    footer h5 {
        font-size: 15px;
    }

    footer p,
    footer li,
    footer a {
        font-size: 13.5px;
    }

    /* Remove list indentation */
    footer ul {
        padding-left: 0;
    }
}

/* ===============================
   MOBILE (≤ 576px)
================================ */
@media (max-width: 576px) {

    footer {
        text-align: center;
    }

    footer h4 {
        font-size: 18px;
    }

    footer h5 {
        font-size: 15px;
        margin-top: 20px;
    }

    footer p,
    footer li,
    footer a {
        font-size: 13px;
    }

    /* Center social icons */
    footer .social-link {
        margin-right: 8px;
    }

    /* Improve contact list spacing */
    footer ul li {
        margin-bottom: 10px;
    }
}















/* NAVBARWIDTH empty space on the right */
@media (max-width: 1200px) {

    .navbar,
    .navbar .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .navbar-collapse {
        width: 100%;
    }
}

.hero-bg {
    width: 100%;
}

.scroll-top-btn {
    position: fixed;
    right: 20px;
    bottom: 40px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #6c63ff;
    color: #fff;
    border: none;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    transition: background 0.3s ease, transform 0.3s ease;
}

.scroll-top-btn:hover {
    background: #ff6a00;
    transform: translateY(-4px);
}







.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 YouTube ratio */
    overflow: hidden;
    border-radius: 14px 14px 0 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



/* Clean Image Hero with Blur (Background Only) */
.page-header-spacer {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    color: #fff;
}

/* Background image with blur */
.page-header-spacer::before {
    content: "";
    position: absolute;
    inset: 0;
    /* background: url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=2070&auto=format&fit=crop') center/cover no-repeat; */
    filter: blur(1.5px);         
    transform: scale(1.1);     
    z-index: 1;
    background-color: #712DB0;
    
}

/* Keep text above blur */
.page-header-spacer .container {
    position: relative;
    z-index: 2;
}

/* ===============================
   RESPONSIVE FLOATING PARTICLES
================================ */

.particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    animation: floatFast 4s infinite ease-in-out;
}

/* Bigger sizes (desktop default) */
.particles span:nth-child(1) { width: 22px; height: 22px; top: 20%; left: 15%; animation-delay: 0s; }
.particles span:nth-child(2) { width: 28px; height: 28px; top: 60%; left: 25%; animation-delay: 1s; }
.particles span:nth-child(3) { width: 18px; height: 18px; top: 40%; left: 70%; animation-delay: 2s; }
.particles span:nth-child(4) { width: 26px; height: 26px; top: 75%; left: 80%; animation-delay: 0.5s; }
.particles span:nth-child(5) { width: 20px; height: 20px; top: 30%; left: 50%; animation-delay: 1.5s; }
.particles span:nth-child(6) { width: 24px; height: 24px; top: 65%; left: 10%; animation-delay: 2.5s; }

/* Faster floating animation */
@keyframes floatFast {
    0%   { transform: translateY(0px); opacity: 0.3; }
    50%  { transform: translateY(-35px); opacity: 0.7; }
    100% { transform: translateY(0px); opacity: 0.3; }
}

/* ===============================
   RESPONSIVE SIZES
================================ */

/* Tablet */
@media (max-width: 992px) {
    .particles span {
        transform: scale(0.8);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .particles span {
        transform: scale(0.6);
    }
}


/* Only affect Contact header */
.contact-header .text-gradient {
    color: #FFC135;             
    -webkit-text-fill-color: #FFC135;
    background: none;          
}

.contact-header .section-tag {
    color: #FFC135;
}



/* Premium Background */
.contact-section {
    background: linear-gradient(135deg, #f9fafc, #eef2f7);
}

/* Contact Cards */
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffb703, #fb8500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #fff;
    font-size: 24px;
}

.icon-box.location {
    background: linear-gradient(135deg, #2196f3, #0d47a1);
}

/* Form Card */
.contact-form-card {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

/* Inputs */
.custom-input {
    border-radius: 12px;
    padding: 14px 18px;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.custom-input:focus {
    border-color: #ffb703;
    box-shadow: 0 0 0 3px rgba(255,183,3,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-card {
        padding: 30px 20px;
    }
}



.parent-testimonials {
    background: linear-gradient(135deg, #f9fafc, #eef2f7);
}

.video-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 ratio */
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-top-btn {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
}

.video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button */
.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #B62CD9;
    color: white;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.video-wrapper:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}



