:root {

    /* ===== COLORS ===== */
    --primary: #f5a300;       /* Yellow (Main brand) */
    --secondary: #4b2a8a;     /* Purple */
    --accent: #d62828;        /* Red */

    --dark: #111111;
    --light: #ffffff;
    --gray: #f8f9fa;
    --text: #333333;

    /* ===== GRADIENTS ===== */
    --gradient-main: linear-gradient(135deg, #f5a300, #ffcc33);
    --gradient-purple: linear-gradient(135deg, #4b2a8a, #7b4dff);

    /* ===== TYPOGRAPHY ===== */
    --font-primary: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 32px;
    --font-size-xxl: 42px;

    /* ===== SPACING ===== */
    --section-padding: 80px;
    --container-width: 1200px;

    /* ===== BORDER RADIUS ===== */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
    --radius-full: 50px;

    /* ===== SHADOWS ===== */
    --shadow-light: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-medium: 0 6px 20px rgba(0,0,0,0.15);
    --shadow-heavy: 0 10px 40px rgba(0,0,0,0.25);

    /* ===== TRANSITIONS ===== */
    --transition: all 0.3s ease-in-out;

}


/* ================= TOP HEADER ================= */
.top-header {
    background: var(--gradient-purple);
    color: var(--light);
    font-size: 14px;
    padding: 8px 0;
}

.top-header i {
    margin-right: 6px;
}

.top-right a {
    color: var(--light);
    margin-left: 12px;
    font-size: 16px;
    transition: var(--transition);
}

.top-right a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}

/* ================= NAVBAR ================= */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: var(--transition);
}

/* SCROLL EFFECT */
.main-navbar.scrolled {
    box-shadow: var(--shadow-medium);
}

/* LOGO */
.logo {
    width: 100px;
}

.brand-text {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--secondary);
}

/* NAV LINKS */
.nav-link {
    position: relative;
    margin: 0 14px;
    font-weight: 500;
    color: var(--text);
    transition: var(--transition);
}

/* HOVER COLOR */
.nav-link:hover {
    color: var(--secondary);
}

/* 🔥 ANIMATED UNDERLINE */
.nav-link::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 3px;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    border-radius: 20px;
    transition: var(--transition);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

/* ACTIVE */
.nav-link.active {
    color: var(--secondary);
}

/* 🔥 ADMISSION BUTTON */
.nav-link.highlight {
    background: var(--gradient-main);
    color: var(--light) !important;
    padding: 8px 20px;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.nav-link.highlight:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .navbar-collapse {
        background: var(--light);
        padding: 20px;
        border-radius: var(--radius-md);
        margin-top: 10px;
        box-shadow: var(--shadow-medium);
    }

    .nav-link {
        margin: 12px 0;
        text-align: center;
    }

    .nav-link::before {
        display: none;
    }

    .nav-link.active {
        background: var(--primary);
        color: var(--light) !important;
        padding: 10px;
        border-radius: var(--radius-sm);
    }
}


/* ================= HERO ================= */
.hero-premium {
    background: #f5f5f5;
}

/* LAYOUT */
.hero-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 450px;
}

/* IMAGE */
.hero-img {
    max-width: 580px;
    width: 100%;
    transition: transform 5s ease;
}

/* 🔥 ZOOM EFFECT */
.carousel-item.active .hero-img {
    transform: scale(1.08);
}

/* TEXT */
.hero-right h1 {
    font-size: 48px;
    color: var(--secondary);
    font-weight: 700;
}

.hero-right p {
    font-size: 20px;
    color: #555;
}

/* ADMISSION */
.admission-bar {
    background: #caa32c;
    color: #fff;
    padding: 15px 60px;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    margin: 20px auto;
    width: fit-content;
}

/* FEATURES */
.hero-bottom {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-bottom: 20px;
}

.hero-bottom div {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgb(98, 9, 170);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    top: 50%;
}

/* 🔥 PURPLE STRIP */
.hero-strip {
    background: var(--secondary);
    padding: 12px 0;
}

/* 🔥 FIXED INDICATORS */
.carousel-indicators {
    position: static;
    margin: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
}

.carousel-indicators .active {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-row {
        flex-direction: column;
        text-align: center;
    }

    .hero-img {
        max-width: 460px;
    }

    .hero-right h1 {
        font-size: 26px;
    }

    .hero-right p {
        font-size: 14px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 10px;
    }
}

/* ================= HERO BOTTOM PREMIUM ================= */
.hero-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 25px 0;
    flex-wrap: wrap;
}

/* EACH ITEM */
.hero-bottom div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

/* ICON STYLE 🔥 */
.hero-bottom i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 50%;
    font-size: 20px;
    color: var(--primary);
    background: #fff;
    transition: var(--transition);
}

/* HOVER EFFECT 🔥 */
.hero-bottom div:hover {
    transform: translateY(-5px);
}

.hero-bottom div:hover i {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .hero-bottom div {
        justify-content: center;
    }
}

/* ================= ADMISSION BUTTON ================= */
.admission-bar {
    display: inline-block;
    text-align: center;
    background: linear-gradient(135deg, #caa32c, #f5a300);
    color: #fff;
    padding: 14px 50px;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none !important;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;

}

/* CENTER ALIGN */
.admission-bar {
    display: block;
    width: fit-content;
}

/* 🔥 HOVER EFFECT */
.admission-bar:hover {
    background: var(--secondary);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* 🔥 SHINE EFFECT */
.admission-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.admission-bar:hover::before {
    left: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .admission-bar {
        font-size: 16px;
        padding: 10px 25px;
    }
}

/* ================= ABOUT SECTION ================= */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f7f5ff);
}

/* IMAGE */
.about-img-box {
    position: relative;
    text-align: center;
}

.about-img-box img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

/* IMAGE HOVER */
.about-img-box:hover img {
    transform: scale(1.05);
}

/* TAG */
.about-tag {
    display: inline-block;
    background: var(--gradient-main);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

/* TITLE */
.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

/* TEXT */
.about-content p {
    font-size: 16px;
    color: #555;
    margin: 15px 0;
    text-align: justify;
}

/* FEATURES */
.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

.about-features i {
    color: var(--primary);
    font-size: 18px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    background: var(--gradient-purple);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.about-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .about-content {
        text-align: center;
        margin-top: 20px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .top-right a {
        display: none;
    }
}

/* ================= TOP HEADER ================= */
.top-header {
    background: var(--secondary);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

/* LEFT TEXT */
.top-left span {
    margin-right: 15px;
}

/* ICON STYLE */
.top-left i {
    margin-right: 6px;
    color: var(--primary);
}

/* RIGHT SOCIAL */
.top-right a {
    color: #fff;
    margin-left: 12px;
    font-size: 16px;
    transition: var(--transition);
}

/* HOVER EFFECT 🔥 */
.top-right a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}


/* ================= HERO CONTROLS ================= */
.hero-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);

    border-radius: 50%;
    border: none;

    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

/* LEFT */
.carousel-control-prev.hero-control {
    left: 20px;
}

/* RIGHT */
.carousel-control-next.hero-control {
    right: 20px;
}

/* ICON */
.hero-control i {
    font-size: 22px;
    color: var(--secondary);
}

/* 🔥 HOVER EFFECT */
.hero-control:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.1);
}

.hero-control:hover i {
    color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .hero-control {
        width: 40px;
        height: 40px;
    }

    .hero-control i {
        font-size: 16px;
    }

    .carousel-control-prev.hero-control {
        left: 10px;
    }

    .carousel-control-next.hero-control {
        right: 10px;
    }
}


/* ================= PROGRAMS PREMIUM ================= */
.programs-premium {
    background: var(--secondary);
    padding: 80px 0;
}

/* TITLE */
.prog-title h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
}

.prog-title span {
    color: var(--primary);
}

/* LINE */
.prog-title .line {
    width: 60px;
    height: 6px;
    background: var(--primary);
    border-radius: 10px;
    margin-top: 10px;
}

/* CARD */
.prog-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.3s;
}

/* IMAGE */
.prog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

/* ZOOM HOVER 🔥 */
.prog-card:hover img {
    transform: scale(1.1);
}

/* BOTTOM BAR */
.prog-bottom {
    background: linear-gradient(135deg, #f5a300, #ffd54f);
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* TEXT */
.prog-bottom h5 {
    margin: 0;
    font-weight: 600;
    color: var(--secondary);
}

/* PLUS ICON */
.prog-bottom span {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prog-bottom i {
    color: var(--secondary);
}

/* HOVER EFFECT */
.prog-card:hover {
    transform: translateY(-10px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .prog-title h2 {
        font-size: 24px;
    }

    .prog-card img {
        height: 180px;
    }
}

/* ================= PROGRAMS ================= */
.programs-flip {
    background: var(--secondary);
    padding: 80px 0;
}

/* TITLE */
.prog-title h2 {
    color: #fff;
}
.prog-title span {
    color: var(--primary);
}
.prog-title .line {
    width: 60px;
    height: 6px;
    background: var(--primary);
    border-radius: 10px;
    margin-top: 10px;
}

/* FLIP CARD */
.flip-card {
    perspective: 1000px;
}

.flip-inner {
    position: relative;
    width: 100%;
    height: 300px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* HOVER FLIP */
.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
}

/* FRONT */
.flip-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BOTTOM BAR */
.prog-bottom {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(135deg, #f5a300, #ffd54f);
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* BACK */
.flip-back {
    background: #fff;
    color: #333;
    padding: 20px;
    transform: rotateY(180deg);
}

.flip-back h5 {
    color: var(--secondary);
    margin-bottom: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    /* CLICK INSTEAD OF HOVER */
    .flip-card.active .flip-inner {
        transform: rotateY(180deg);
    }
}

/* ================= FACILITIES ================= */
.facilities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f3f0ff);
}

/* TITLE */
.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

.section-title span {
    color: var(--primary);
}

.section-title p {
    color: #666;
    margin-top: 10px;
}

/* CARD */
.facility-card {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

/* ICON */
.facility-card .icon {
    width: 70px;
    height: 70px;
    margin: auto;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-card i {
    color: #fff;
    font-size: 28px;
}

/* TEXT */
.facility-card h5 {
    margin-top: 15px;
    color: var(--secondary);
    font-weight: 600;
}

.facility-card p {
    font-size: 14px;
    color: #555;
}

/* 🔥 HOVER */
.facility-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 24px;
    }
}

/* ================= PURPOSE ================= */
.purpose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f1e9, #ffffff);
    position: relative;
}

/* IMAGE */
.purpose-img img {
    width: 100%;
    max-width: 450px;
    animation: float 4s ease-in-out infinite;
}

/* FLOAT ANIMATION 🔥 */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* CONTENT */
.purpose-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

.purpose-content span {
    color: var(--primary);
}

/* LINE */
.purpose-content .line {
    width: 60px;
    height: 6px;
    background: var(--primary);
    border-radius: 10px;
    margin: 10px 0 20px;
}

/* TEXT */
.purpose-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* BUTTON */
.purpose-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    margin-top: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

/* ICON CIRCLE */
.purpose-btn span {
    width: 35px;
    height: 35px;
    background: #fff;
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HOVER 🔥 */
.purpose-btn:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.purpose-btn:hover span {
    background: var(--primary);
    color: #fff;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .purpose-section {
        text-align: center;
    }

    .purpose-img img {
        max-width: 350px;
        margin-bottom: 20px;
    }

    .purpose-content h2 {
        font-size: 24px;
    }

    /* LINE */
.purpose-content .line {
    width: 60px;
    height: 6px;
    background: var(--primary);
    border-radius: 10px;
    margin: 20px 110px 20px;
}
}

/* ================= ACTIVITIES ULTRA ================= */
.activities-ultra {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f9f7ff);
}

/* TITLE (reuse from before) */
.super-title {
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.super-title .tag {
    background: rgba(245,163,0,0.15);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 30px;
}

.super-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--secondary);
}

.super-title span {
    color: var(--primary);
}

/* LINE */
.title-shape {
    width: 80px;
    height: 6px;
    background: var(--primary);
    border-radius: 10px;
    margin: 20px auto;
}

/* ACTIVITY ITEM */
.activity-item {
    margin-bottom: 80px;
}

/* IMAGE */
.activity-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: 0.5s;
}

/* ZOOM */
.activity-img:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.activity-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary);
}

.activity-content p {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 1.7;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .activities-ultra {
        text-align: center;
    }

    .super-title h2 {
        font-size: 26px;
    }

    .activity-content h3 {
        font-size: 22px;
    }
}

/* ================= ACTIVITY IMAGE ================= */
.activity-img {
    position: relative;
    display: inline-block;
}

/* MAIN IMAGE */
.activity-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.6s ease;
    position: relative;
    z-index: 2;
}

/* 🔥 BACKGROUND SHAPE */
.activity-img::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    background: var(--gradient-main);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: 1;
    opacity: 0.3;
    transition: 0.5s;
}

/* 🔥 FLOAT EFFECT */
.activity-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed var(--primary);
    border-radius: 20px;
    top: -15px;
    left: -15px;
    z-index: 0;
    opacity: 0.5;
}

/* 🔥 HOVER EFFECT */
.activity-img:hover img {
    transform: scale(1.05) rotate(1deg);
}

.activity-img:hover::before {
    top: 10px;
    left: 10px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .activity-img::before,
    .activity-img::after {
        display: none;
    }

    .activity-img img {
        border-radius: 15px;
    }
}


/* ================= SECTION ================= */
.facilities-flip {
    padding: 80px 0;
    background: #f9f7ff;
}

/* CARD */
.flip-card {
    perspective: 1000px;
}

/* INNER */
.flip-inner {
    position: relative;
    width: 100%;
    height: 260px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

/* HOVER FLIP */
.flip-card:hover .flip-inner {
    transform: rotateY(180deg);
}

/* FRONT + BACK */
.flip-front, .flip-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    backface-visibility: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* FRONT */
.flip-front {
    background: #fff;
    text-align: center;
}

.flip-front img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

/* TITLE */
.flip-front h5 {
    padding: 10px;
    color: var(--secondary);
}

/* BACK */
.flip-back {
    background: linear-gradient(135deg, #f5a300, #ffcc33);
    color: #fff;
    transform: rotateY(180deg);
    padding: 20px;
    text-align: center;
}

/* TEXT */
.flip-back h5 {
    font-weight: 700;
}

.flip-back p {
    font-size: 14px;
    margin-top: 10px;
}

/* 🎈 CARTOON STYLE SHADOW */
.flip-card {
    transition: 0.3s;
}

.flip-card:hover {
    transform: translateY(-10px) scale(1.03);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .flip-card.active .flip-inner {
        transform: rotateY(180deg);
    }
}

.flip-front {
    border: 3px dashed var(--primary);
}

.flip-back {
    border: 3px dashed #fff;
}


/* ================= GALLERY ================= */
.gallery-ultra {
    padding: 80px 20px;
    background: #fff;
}

/* ITEM */
.gallery-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 15px;
}

/* IMAGE */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}

/* OVERLAY */
.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(75,42,138,0.6);
    opacity: 0;
    transition: 0.3s;
}

/* HOVER EFFECT */
.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover::after {
    opacity: 1;
}

/* PLAY BUTTON (VIDEO) */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    font-size: 24px;
    color: var(--secondary);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .gallery-item img {
        height: 150px;
    }
}

/* ================= ADMISSION ================= */
/* ================= ADMISSION ================= */
.admission-section {
    padding: 80px 0;
    position: relative;
    background: url('./img/bgs.jpg') center/cover no-repeat;
    z-index: 1;
}



/* BOX */
.admission-box {
    display: flex;
    gap: 30px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
    position: relative;
}

/* PAPER EFFECT ✨ */
.admission-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 9.0;
    border-radius: 20px;
}

/* LEFT */
.admission-info {
    flex: 1;
}

.admission-info h2 {
    color: var(--secondary);
    font-weight: 700;
}

.admission-info ul {
    margin-top: 15px;
}

.admission-info li {
    margin-bottom: 8px;
}

/* FORM */
.admission-form {
    flex: 1;
    z-index: 2;
}

.admission-form h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

/* INPUT */
.admission-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

/* BUTTON */
.admission-form button {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    border: none;
    background: var(--secondary);
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

/* HOVER */
.admission-form button:hover {
    background: var(--primary) !important;
    transform: translateY(-2px);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

    .admission-box {
        flex-direction: column;
        padding: 25px;
    }

    .admission-info {
        text-align: left;
    }
}

/* ================= TESTIMONIAL ================= */
.testimonial-ultra {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff, #f3f0ff);
}

/* LEFT */
.testi-left span {
    color: var(--primary);
    font-weight: 600;
}

.testi-left h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

/* NAV BUTTON */
.testi-nav button {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid var(--secondary);
    background: transparent;
    margin-right: 10px;
    transition: 0.3s;
}

.testi-nav button:hover {
    background: var(--secondary);
    color: #fff;
}

/* CARD */
.testi-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: 0.3s;
    height: 100%;
}

/* HOVER */
.testi-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* TEXT */
.testi-card h5 {
    font-weight: 600;
    color: var(--secondary);
}

.stars {
    color: #f5a300;
    margin: 8px 0;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .testi-left {
        text-align: center;
        margin-bottom: 20px;
    }
}

/* SWIPER WRAPPER FIX */
.testi-slider .swiper-wrapper {
    align-items: stretch;
}

/* EACH SLIDE FULL HEIGHT */
.testi-slider .swiper-slide {
    display: flex;
    height: auto;
}

/* CARD FIX */
.testi-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    height: 100%;          /* 🔥 equal height */
    min-height: 220px;     /* adjust as needed */

    background: #fff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: 0.3s;
}

/* TEXT AREA (OPTIONAL ALIGN) */
.testi-card p {
    flex-grow: 1;
}

/* ================= GOOGLE REVIEW BUTTON ================= */
.google-review {
    margin-top: 20px;
}

/* BUTTON */
.google-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #fff;
    border: 2px solid #eee;
    padding: 10px 18px;
    border-radius: 50px;

    text-decoration: none;
    font-weight: 500;
    color: #333;

    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
    padding: 10px;
        margin-bottom: 20px;
}

/* ICON */
.google-btn img {
    width: 20px;
    
}

/* ARROW */
.google-btn i {
    font-size: 14px;
}

/* 🔥 HOVER EFFECT */
.google-btn:hover {
    background: linear-gradient(135deg, #2d40e9, #2146ee);
    color: #000000 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 768px) {
    .google-btn {
        justify-content: center;
        width: 80%;
        padding: 10px;
        margin-bottom: 20px;
    }
}

/* ================= FOOTER ================= */
.footer-clean {
    background: linear-gradient(135deg, #4b2a8a, #7b4dff);
    color: #fff;
    
}

/* LOGO FIX 🔥 */
.footer-logo {
    width: 140px;
    margin-bottom: 15px;
    background: #fff;
    padding: 8px 12px;
    border-radius: 100px;
}

/* BRAND TEXT */
.footer-brand p {
    font-size: 14px;
    color: #ddd;
}

/* SOCIAL */
.footer-social a {
    width: 35px;
    height: 35px;
    background: #fff;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* LINKS */
.footer-links h5 {
    margin-bottom: 15px;
    font-weight: 600;
    color: #ffd84d;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

/* LINK STYLE */
.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* CONTACT */
.footer-links p {
    margin-bottom: 8px;
    color: #ddd;
}

.footer-links i {
    margin-right: 8px;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: space-between;
}

.footer-bottom span {
    color: #ffd84d;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* ================= FOOTER ================= */
.footer-clean {
    position: relative;
    background: linear-gradient(135deg, #4b2a8a, #7b4dff);
    color: #fff;
    padding: 180px 0 30px;
}

/* 🌊 WAVE */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
}

/* SVG */
.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* WAVE COLOR */
.footer-wave path {
    fill: #fff; /* match section above */
}

/* ================= WA ULTRA ================= */
.wa-ultra {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

/* ICON CIRCLE */
.wa-icon {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    color: #fff;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    transition: 0.3s;
}

/* 🔥 PULSE RING */
.wa-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37,211,102,0.4);
    animation: waPulse 2s infinite;
    z-index: -1;
}

@keyframes waPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* LABEL */
.wa-label {
    background: rgba(255,255,255,0.9);
    color: #333;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;

    backdrop-filter: blur(10px);

    opacity: 0;
    transform: translateX(10px);
    transition: 0.3s;
}

/* SHOW LABEL ON HOVER */
.wa-ultra:hover .wa-label {
    opacity: 1;
    transform: translateX(0);
}

/* HOVER ICON */
.wa-ultra:hover .wa-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* MOBILE */
@media (max-width: 768px) {

    .wa-label {
        display: none;
    }

    .wa-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* ================= WA LEFT ================= */
.wa-ultra {
    position: fixed;
    bottom: 25px;
    left: 25px;   /* 🔥 change from right → left */
    right: auto;  /* important */
    z-index: 999;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* LABEL POSITION FIX (LEFT SIDE) */
.wa-label {
    order: -1; /* 👈 move text before icon */
    transform: translateX(-10px);
}

/* SHOW ON HOVER */
.wa-ultra:hover .wa-label {
    transform: translateX(0);
}

/* ================= SCROLL TOP ================= */
.scroll-top {
    position: fixed;
    bottom: 100px; /* above WhatsApp */
    right: 25px;
    z-index: 999;

    width: 55px;
    height: 55px;

    background: linear-gradient(135deg, #f5a300, #ffcc33);
    color: #fff;

    border: none;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    cursor: pointer;

    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);

    transition: 0.3s;
}

/* SHOW BUTTON */
.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* HOVER */
.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

/* ICON */
.scroll-top i {
    font-size: 22px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .scroll-top {
        right: 15px;
        bottom: 90px;
        width: 50px;
        height: 50px;
    }
}

/* ================= ABOUT HEADER ================= */
.about-header {
    position: relative;
    height: 350px;

    background: url('./img/bg4.png') center/cover no-repeat;
    background-attachment: fixed; /* 🔥 PARALLAX */

    display: flex;
    align-items: center;
    justify-content: center;

    color: #fff;
}

/* OVERLAY */
.about-header .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

/* CONTENT */
.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 42px;
    font-weight: 700;
}

.header-content p {
    font-size: 18px;
    margin-top: 10px;
}

/* ================= ABOUT ================= */
.about-premium {
    padding: 80px 0;
    background: #fff;
}

/* IMAGE */
.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: 0.5s;
}

.about-img:hover img {
    transform: scale(1.05);
}

/* CONTENT */
.about-content .tag {
    color: var(--primary);
    font-weight: 600;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
}

.about-content h2 span {
    color: var(--primary);
}

/* TEXT */
.about-content p {
    margin-top: 15px;
    color: #555;
    line-height: 1.7;
}

/* FEATURES */
.about-features {
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature i {
    color: var(--primary);
    margin-right: 10px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    background: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: var(--secondary);
}

/* MOBILE */
@media (max-width: 768px) {
    .about-premium {
        text-align: center;
    }

    .about-content h2 {
        font-size: 26px;
    }
}

/* ================= MISSION VISION ================= */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f7ff, #ffffff);
}

/* CARD */
.mv-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;

    box-shadow: var(--shadow-light);
    transition: 0.3s;
}

/* HOVER */
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* ICON */
.mv-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    margin-bottom: 15px;

    background: var(--gradient-main);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    font-size: 28px;
}

/* TITLE */
.mv-card h4 {
    color: var(--secondary);
    font-weight: 600;
}

/* TEXT */
.mv-card p {
    margin-top: 10px;
    color: #555;
    line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {
    .mv-card {
        padding: 20px;
    }
}

/* ================= PROGRAMS ================= */
.programs-ultra {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f9f7ff);
}

/* CARD */
.program-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: 0.3s;
}

/* HOVER */
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

/* IMAGE */
.program-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* CONTENT */
.program-content {
    padding: 20px;
}

/* TITLE */
.program-content h4 {
    color: var(--secondary);
    font-weight: 700;
}

/* AGE */
.program-content span {
    display: block;
    color: var(--primary);
    font-size: 14px;
    margin-bottom: 10px;
}

/* TEXT */
.program-content p {
    font-size: 14px;
    color: #555;
}

/* LIST */
.program-content ul {
    padding-left: 18px;
    margin-top: 10px;
}

.program-content ul li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* MOBILE */
@media (max-width: 768px) {

    .program-img img {
        height: 180px;
    }

    .program-content {
        text-align: left;
    }
}

/* ================= ACTIVITIES CARDS ================= */
.activities-cards {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff, #f9f7ff);
}

/* CARD */
.act-card {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;

    box-shadow: var(--shadow-light);
    transition: 0.3s;
}

/* ICON */
.act-card i {
    font-size: 35px;
    color: #fff;

    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;
    margin-bottom: 15px;

    border-radius: 50%;
    background: var(--gradient-main);
}

/* TITLE */
.act-card h5 {
    color: var(--secondary);
    font-weight: 600;
}

/* TEXT */
.act-card p {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

/* 🔥 HOVER EFFECT */
.act-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-medium);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .act-card {
        padding: 20px;
    }
}

/* ================= CONTACT ================= */
.contact-ultra {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f9f7ff);
}

/* CARD */
.contact-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

/* TITLE */
.contact-card h3 {
    color: var(--secondary);
    font-weight: 700;
}

/* TEXT */
.contact-card p {
    color: #555;
}

/* INFO */
.contact-info p {
    margin: 10px 0;
}

.contact-info i {
    color: var(--primary);
    margin-right: 10px;
}

/* GOOGLE BUTTON */
.google-btn {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    border: 2px solid #eee;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.google-btn:hover {
    background: var(--primary);
    color: #fff;
}

/* SOCIAL */
.social-links {
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* MAP */
.map-box {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* MOBILE */
@media (max-width: 768px) {

    .contact-card {
        text-align: center;
    }

    .map-box iframe {
        min-height: 250px;
    }
}

/* ================= FAQ ================= */
.faq-ultra {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff, #f9f7ff);
}

/* BOX */
.faq-box {
    max-width: 800px;
    margin: auto;
}

/* ITEM */
.faq-item {
    background: #fff;
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: 0.3s;
}

/* QUESTION */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
    cursor: pointer;
}

.faq-question h5 {
    margin: 0;
    color: var(--secondary);
}

/* ICON */
.faq-question i {
    font-size: 20px;
    transition: 0.3s;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 18px;
}

.faq-answer p {
    padding-bottom: 15px;
    color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active i {
    transform: rotate(45deg);
    color: var(--primary);
}

/* HOVER */
.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.footer-link {
    color: #ffd84d;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

/* HOVER EFFECT */
.footer-link:hover {
    color: #fff;
    text-decoration: underline;
}