/* =====================================
   ROOT COLORS
===================================== */

:root {
    --purple: #240263;
    --yellow: #ffcf00;
    --white: #ffffff;
    --text-dark: #292333;
}


/* =====================================
   GLOBAL
===================================== */

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
}


/* =====================================
   NAVBAR
===================================== */

.main-navbar {
    background: var(--white);
    padding: 13px 0;
    position: sticky;
    top: 0;
    z-index: 9999;

    transition: all 0.3s ease;
}


/* Navbar after scroll */

.main-navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 25px rgba(36, 2, 99, 0.12);
}


/* =====================================
   BRAND
===================================== */

.navbar-brand {
    text-decoration: none;
    gap: 10px;
}


/* Logo icon */

.brand-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 50% 50% 45% 55%;

    font-size: 27px;

    box-shadow: 4px 4px 0 var(--purple);

    transition: 0.3s ease;
}


.navbar-brand:hover .brand-icon {
    transform: rotate(-8deg) scale(1.05);
}


/* Brand text */

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}


.brand-title {
    font-family: "Baloo 2", cursive;
    font-size: 22px;
    font-weight: 800;
    color: var(--purple);
}


.brand-subtitle {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #777;
    text-transform: uppercase;
}


/* =====================================
   NAVIGATION LINKS
===================================== */

.navbar-nav {
    gap: 4px;
}


.nav-link {
    position: relative;

    color: #383142 !important;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 13px !important;

    transition: all 0.25s ease;
}


.nav-link:hover,
.nav-link.active {
    color: var(--purple) !important;
}


/* Yellow underline */

.nav-link::after {
    content: "";

    position: absolute;
    left: 50%;
    bottom: 3px;

    width: 0;
    height: 3px;

    background: var(--yellow);

    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}


.nav-link:hover::after,
.nav-link.active::after {
    width: 22px;
}


/* =====================================
   ADMISSION BUTTON
===================================== */

.nav-admission {
    margin-left: 10px;
}


.admission-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 12px 18px;

    background: var(--purple);
    color: var(--white);

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow: 4px 4px 0 var(--yellow);

    transition: all 0.25s ease;
}


.admission-btn:hover {
    color: var(--purple);
    background: var(--yellow);

    transform: translateY(-2px);

    box-shadow: 4px 4px 0 var(--purple);
}


.admission-btn i {
    font-size: 16px;
}


/* =====================================
   MOBILE TOGGLER
===================================== */

.custom-toggler {
    width: 45px;
    height: 45px;

    padding: 8px;

    border: 2px solid var(--purple) !important;
    border-radius: 12px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 5px;

    box-shadow: none !important;
}


.custom-toggler span {
    display: block;

    width: 22px;
    height: 3px;

    background: var(--purple);

    border-radius: 5px;

    transition: 0.3s;
}


/* =====================================
   NAVBAR WAVE
===================================== */

.navbar-wave {
    height: 8px;

    background: var(--yellow);

    position: relative;
}


.navbar-wave::after {
    content: "";

    position: absolute;

    width: 100%;
    height: 12px;

    left: 0;
    bottom: -6px;

    background:
        radial-gradient(
            18px 10px at 25px 0,
            transparent 70%,
            var(--yellow) 71%
        ) repeat-x;

    background-size: 50px 12px;
}


/* =====================================
   DEMO SECTION
===================================== */

.demo-section {
    min-height: 80vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 10% 20%,
            rgba(255, 207, 0, 0.2),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(36, 2, 99, 0.1),
            transparent 25%
        );

    text-align: center;
}


.demo-section h1 {
    font-family: "Baloo 2", cursive;
    font-size: clamp(40px, 6vw, 75px);

    font-weight: 800;

    color: var(--purple);
}


.demo-section p {
    font-size: 20px;
    font-weight: 500;
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 991px) {

    .main-navbar {
        padding: 10px 0;
    }


    .navbar-collapse {
        margin-top: 15px;

        padding: 15px;

        background: #faf8ff;

        border-radius: 20px;

        box-shadow: 0 8px 25px rgba(36, 2, 99, 0.08);
    }


    .navbar-nav {
        gap: 0;
    }


    .nav-link {
        padding: 12px 15px !important;

        border-radius: 10px;
    }


    .nav-link:hover,
    .nav-link.active {
        background: rgba(36, 2, 99, 0.06);
    }


    .nav-link::after {
        display: none;
    }


    .nav-admission {
        margin: 10px 0 0;
    }


    .admission-btn {
        width: 100%;

        justify-content: center;

        padding: 13px;
    }

}


@media (max-width: 575px) {

    .brand-icon {
        width: 45px;
        height: 45px;

        font-size: 22px;

        box-shadow: 3px 3px 0 var(--purple);
    }


    .brand-title {
        font-size: 18px;
    }


    .brand-subtitle {
        font-size: 8px;
    }

}

```css
/* =====================================
   HERO CAROUSEL
===================================== */

.hero-section {
    position: relative;
    overflow: hidden;
}


/* Main slide */

.hero-slide {
    min-height: 650px;

    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;
}


/* Backgrounds */

.hero-slide-1 {
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(255, 207, 0, 0.25),
            transparent 28%
        ),
        linear-gradient(
            120deg,
            #240263 0%,
            #3d1187 55%,
            #5a24a0 100%
        );
}


.hero-slide-2 {
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(255, 207, 0, 0.35),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #3b087e 0%,
            #240263 60%,
            #180040 100%
        );
}


.hero-slide-3 {
    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(255, 207, 0, 0.3),
            transparent 30%
        ),
        linear-gradient(
            120deg,
            #240263 0%,
            #4b1493 60%,
            #6c32b5 100%
        );
}


/* =====================================
   HERO CONTENT
===================================== */

.hero-content {
    position: relative;
    z-index: 5;

    max-width: 650px;

    padding: 80px 0;
}


.hero-badge {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 9px 17px;

    margin-bottom: 20px;

    background: rgba(255, 255, 255, 0.14);

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 30px;

    color: var(--yellow);

    font-size: 13px;
    font-weight: 600;

    backdrop-filter: blur(8px);
}


.hero-badge i {
    font-size: 15px;
}


/* Heading */

.hero-content h1 {
    margin: 0 0 18px;

    font-family: "Baloo 2", cursive;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 0.98;

    font-weight: 800;

    color: var(--white);

    letter-spacing: -1px;
}


.hero-content h1 span {
    display: block;

    color: var(--yellow);
}


/* Paragraph */

.hero-content p {
    max-width: 570px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 17px;
    line-height: 1.8;
}


/* =====================================
   BUTTONS
===================================== */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.hero-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 14px 22px;

    border-radius: 35px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: all 0.3s ease;
}


/* Primary */

.primary-btn {
    background: var(--yellow);

    color: var(--purple);

    box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.18);
}


.primary-btn:hover {
    color: var(--purple);

    transform: translateY(-3px);

    box-shadow: 5px 8px 0 rgba(0, 0, 0, 0.18);
}


.primary-btn i {
    transition: transform 0.3s ease;
}


.primary-btn:hover i {
    transform: translateX(4px);
}


/* Secondary */

.secondary-btn {
    color: var(--white);

    border: 2px solid rgba(255, 255, 255, 0.7);

    background: rgba(255, 255, 255, 0.08);
}


.secondary-btn:hover {
    background: var(--white);

    color: var(--purple);

    border-color: var(--white);

    transform: translateY(-3px);
}


/* =====================================
   DECORATIVE SHAPES
===================================== */

.hero-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.shape-one {
    width: 380px;
    height: 380px;

    right: -120px;
    top: -100px;

    border: 50px solid rgba(255, 207, 0, 0.12);
}


.shape-two {
    width: 200px;
    height: 200px;

    right: 15%;
    bottom: -120px;

    background: rgba(255, 207, 0, 0.08);
}


.shape-three {
    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border: 70px solid rgba(255, 207, 0, 0.08);
}


.shape-four {
    width: 280px;
    height: 280px;

    right: 8%;
    bottom: -150px;

    border: 35px solid rgba(255, 207, 0, 0.12);
}


/* =====================================
   CAROUSEL ARROWS
===================================== */

.carousel-control-prev,
.carousel-control-next {
    width: 65px;

    opacity: 1;

    z-index: 10;
}


.hero-arrow {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.13);

    border: 1px solid rgba(255, 255, 255, 0.3);

    color: var(--white);

    backdrop-filter: blur(5px);

    transition: 0.3s ease;
}


.hero-arrow:hover {
    background: var(--yellow);

    color: var(--purple);

    transform: scale(1.08);
}


/* =====================================
   INDICATORS
===================================== */

.carousel-indicators {
    z-index: 10;

    margin-bottom: 28px;
}


.carousel-indicators button {
    width: 25px;
    height: 5px;

    margin: 0 4px;

    border: 0;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.5);

    opacity: 1;

    transition: all 0.3s ease;
}


.carousel-indicators button.active {
    width: 45px;

    background: var(--yellow);
}


/* =====================================
   SLIDE ANIMATION
===================================== */

.carousel-item.active .hero-badge {
    animation: fadeUp 0.7s ease both;
}


.carousel-item.active h1 {
    animation: fadeUp 0.8s ease 0.1s both;
}


.carousel-item.active p {
    animation: fadeUp 0.8s ease 0.2s both;
}


.carousel-item.active .hero-buttons {
    animation: fadeUp 0.8s ease 0.3s both;
}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .hero-slide {
        min-height: 590px;
    }


    .hero-content {
        padding: 70px 20px 90px;

        text-align: center;
    }


    .hero-content h1 {
        font-size: clamp(42px, 12vw, 58px);

        letter-spacing: -0.5px;
    }


    .hero-content p {
        font-size: 15px;

        line-height: 1.7;

        margin-left: auto;
        margin-right: auto;
    }


    .hero-badge {
        font-size: 11px;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-btn {
        width: 100%;
        max-width: 280px;
    }


    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }


    .shape-one {
        width: 250px;
        height: 250px;

        right: -120px;
        top: -100px;

        border-width: 35px;
    }

}
```css
/* =====================================
   WELCOME / ABOUT SECTION
===================================== */

.welcome-section {
    position: relative;

    padding: 110px 0 130px;

    background: #fffdf7;

    overflow: hidden;
}


/* =====================================
   SECTION HEADING
===================================== */

.section-heading {
    margin-bottom: 22px;
}


.section-tag {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 8px 16px;

    margin-bottom: 15px;

    background: rgba(36, 2, 99, 0.07);

    color: var(--purple);

    border-radius: 30px;

    font-size: 12px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.section-tag i {
    color: var(--yellow);
    font-size: 15px;
}


.section-heading h2 {
    margin: 0;

    font-family: "Baloo 2", cursive;

    font-size: clamp(42px, 5vw, 60px);

    line-height: 1.05;

    font-weight: 800;

    color: var(--purple);
}


.section-heading h2 span {
    display: block;

    color: #e6ae00;
}


/* =====================================
   TEXT
===================================== */

.welcome-intro {
    margin-bottom: 14px;

    font-size: 18px;

    line-height: 1.7;

    font-weight: 600;

    color: #3c3448;
}


.welcome-text {
    margin-bottom: 28px;

    font-size: 14px;

    line-height: 1.9;

    color: #716a78;

    max-width: 570px;
}


/* =====================================
   HIGHLIGHTS
===================================== */

.welcome-highlights {
    display: flex;

    flex-direction: column;

    gap: 15px;

    margin-bottom: 30px;
}


.highlight-item {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.highlight-icon {
    min-width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--yellow);

    color: var(--purple);

    font-size: 19px;

    box-shadow: 3px 3px 0 var(--purple);
}


.highlight-item h5 {
    margin: 1px 0 4px;

    font-family: "Baloo 2", cursive;

    font-size: 18px;

    font-weight: 700;

    color: var(--purple);
}


.highlight-item p {
    margin: 0;

    max-width: 450px;

    font-size: 12px;

    line-height: 1.6;

    color: #77717f;
}


/* =====================================
   CTA
===================================== */

.welcome-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 22px;

    background: var(--purple);

    color: var(--white);

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 5px 5px 0 var(--yellow);

    transition: all 0.3s ease;
}


.welcome-btn:hover {
    color: var(--purple);

    background: var(--yellow);

    transform: translateY(-3px);

    box-shadow: 5px 7px 0 var(--purple);
}


.welcome-btn i {
    transition: 0.3s ease;
}


.welcome-btn:hover i {
    transform: translateX(4px);
}


/* =====================================
   VISUAL AREA
===================================== */

.welcome-visual {
    position: relative;

    min-height: 500px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* Main image container */

.welcome-image-wrapper {
    position: relative;

    width: min(470px, 90%);

    z-index: 3;
}


/* Image */

.welcome-image {
    display: block;

    width: 100%;

    aspect-ratio: 4 / 4.4;

    object-fit: cover;

    border-radius: 45% 45% 30px 30px;

    border: 10px solid var(--white);

    box-shadow:
        0 20px 50px rgba(36, 2, 99, 0.15);
}


/* =====================================
   DECORATIVE CIRCLES
===================================== */

.visual-circle {
    position: absolute;

    border-radius: 50%;
}


.circle-yellow {
    width: 140px;
    height: 140px;

    background: var(--yellow);

    top: 15px;
    right: 5%;

    z-index: 1;
}


.circle-purple {
    width: 110px;
    height: 110px;

    background: var(--purple);

    bottom: 15px;
    left: 4%;

    z-index: 1;
}


/* =====================================
   EXPERIENCE CARD
===================================== */

.experience-card {
    position: absolute;

    left: -35px;
    bottom: 45px;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 14px 18px;

    background: var(--white);

    border-radius: 18px;

    box-shadow: 0 12px 35px rgba(36, 2, 99, 0.15);

    z-index: 5;

    animation: floatingCard 3s ease-in-out infinite;
}


.experience-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--yellow);

    color: var(--purple);

    border-radius: 12px;

    font-size: 19px;
}


.experience-card strong,
.experience-card span {
    display: block;
}


.experience-card strong {
    font-family: "Baloo 2", cursive;

    color: var(--purple);

    font-size: 18px;

    line-height: 1;
}


.experience-card span {
    margin-top: 4px;

    color: #777;

    font-size: 10px;

    font-weight: 600;
}


@keyframes floatingCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =====================================
   LEARNING BUBBLE
===================================== */

.learning-bubble {
    position: absolute;

    right: -10px;
    bottom: 80px;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 11px 15px;

    background: var(--purple);

    color: var(--white);

    border-radius: 30px;

    font-family: "Baloo 2", cursive;

    font-size: 14px;

    font-weight: 600;

    z-index: 5;

    transform: rotate(4deg);

    box-shadow: 4px 4px 0 var(--yellow);
}


.learning-bubble i {
    color: var(--yellow);
}


/* =====================================
   BACKGROUND DECORATION
===================================== */

.welcome-section::before {
    content: "✦";

    position: absolute;

    top: 80px;
    left: 4%;

    color: rgba(36, 2, 99, 0.08);

    font-size: 80px;
}


.welcome-section::after {
    content: "●";

    position: absolute;

    right: 3%;
    top: 45%;

    color: rgba(255, 207, 0, 0.2);

    font-size: 70px;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 991px) {

    .welcome-section {
        padding: 80px 0 100px;
    }


    .welcome-visual {
        min-height: 550px;

        margin-top: 20px;
    }


    .welcome-image-wrapper {
        width: min(500px, 85%);
    }


    .experience-card {
        left: 3%;
    }


    .learning-bubble {
        right: 3%;
    }

}


@media (max-width: 575px) {

    .welcome-section {
        padding: 65px 0 80px;
    }


    .section-heading h2 {
        font-size: 42px;
    }


    .welcome-intro {
        font-size: 16px;
    }


    .welcome-text {
        font-size: 13px;
    }


    .welcome-visual {
        min-height: 430px;
    }


    .welcome-image-wrapper {
        width: 85%;
    }


    .welcome-image {
        border-width: 7px;
    }


    .circle-yellow {
        width: 90px;
        height: 90px;

        right: 0;
        top: 10px;
    }


    .circle-purple {
        width: 70px;
        height: 70px;

        left: 0;
        bottom: 10px;
    }


    .experience-card {
        left: 0;
        bottom: 25px;

        padding: 10px 13px;
    }


    .experience-icon {
        width: 35px;
        height: 35px;

        font-size: 16px;
    }


    .experience-card strong {
        font-size: 15px;
    }


    .learning-bubble {
        right: 0;
        bottom: 75px;

        font-size: 11px;

        padding: 9px 12px;
    }

}

/* =========================
   OUR PROGRAMS SECTION
========================= */

.programs-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #ffffff;
}

/* Section Heading */

.section-heading {
    max-width: 720px;
    margin: 0 auto 55px;
    position: relative;
    z-index: 2;
}

.section-tag {
    display: inline-block;
    color: var(--purple);
    background: rgba(36, 2, 99, 0.08);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-family: "Baloo 2", sans-serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-heading h2 span {
    color: var(--purple);
}

.section-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #686273;
    margin: 0;
}


/* Program Card */

.program-card {
    position: relative;
    height: 100%;
    padding: 38px 28px 30px;
    background: #fffdf7;
    border: 1px solid rgba(36, 2, 99, 0.08);
    border-radius: 28px;
    overflow: hidden;
    transition: all 0.35s ease;
    z-index: 2;
}

.program-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    background: rgba(255, 207, 0, 0.15);
    border-radius: 50%;
    top: -50px;
    right: -40px;
    transition: all 0.35s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: rgba(36, 2, 99, 0.18);
    box-shadow: 0 20px 45px rgba(36, 2, 99, 0.12);
}

.program-card:hover::before {
    transform: scale(1.3);
}


/* Program Icon */

.program-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--purple);
    color: var(--yellow);
    border-radius: 20px;
    font-size: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.program-card:hover .program-icon {
    transform: rotate(-5deg) scale(1.08);
}


/* Number */

.program-number {
    position: absolute;
    top: 28px;
    right: 25px;
    font-family: "Baloo 2", sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: rgba(36, 2, 99, 0.12);
}


/* Card Content */

.program-card h3 {
    font-family: "Baloo 2", sans-serif;
    font-size: 27px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.program-card p {
    color: #6d6875;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}


/* Learn More */

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--purple);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.program-link i {
    transition: transform 0.3s ease;
}

.program-link:hover {
    color: #ffb900;
}

.program-link:hover i {
    transform: translateX(5px);
}


/* Bottom CTA */

.programs-bottom {
    margin-top: 55px;
    position: relative;
    z-index: 2;
}

.programs-bottom p {
    color: #6d6875;
    margin-bottom: 22px;
    font-size: 15px;
}

.programs-bottom p i {
    color: var(--yellow);
    margin-right: 6px;
}

.btn-program-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 25px;
    background: var(--purple);
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-program-cta:hover {
    background: var(--yellow);
    color: var(--purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 207, 0, 0.25);
}


/* Decorative Shapes */

.program-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.shape-one {
    width: 180px;
    height: 180px;
    background: rgba(255, 207, 0, 0.10);
    left: -90px;
    top: 160px;
}

.shape-two {
    width: 120px;
    height: 120px;
    border: 18px solid rgba(36, 2, 99, 0.05);
    right: -45px;
    bottom: 120px;
}

.program-star {
    position: absolute;
    color: var(--yellow);
    font-size: 35px;
    opacity: 0.7;
    pointer-events: none;
}

.star-one {
    top: 90px;
    right: 8%;
    transform: rotate(15deg);
}

.star-two {
    bottom: 80px;
    left: 7%;
    font-size: 25px;
    transform: rotate(-15deg);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .programs-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 45px;
    }

    .program-card {
        padding: 32px 25px;
    }
}

@media (max-width: 575px) {

    .programs-section {
        padding: 65px 0;
    }

    .section-heading {
        padding: 0 10px;
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .section-heading p {
        font-size: 14px;
    }

    .program-card {
        border-radius: 24px;
        padding: 30px 23px;
    }

    .program-icon {
        width: 62px;
        height: 62px;
        font-size: 26px;
    }

    .program-card h3 {
        font-size: 25px;
    }

    .programs-bottom {
        margin-top: 40px;
        padding: 0 15px;
    }

    .btn-program-cta {
        width: 100%;
        justify-content: center;
    }

    .star-one {
        right: 4%;
    }

    .star-two {
        left: 3%;
    }
}


/* =========================
   FUN & LEARNING ACTIVITIES
========================= */

.activities-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: #fffaf0;
}


/* Heading */

.activities-heading {
    margin-bottom: 55px;
}

.activities-heading .section-tag {
    background: var(--yellow);
    color: var(--purple);
}


/* Activity Card */

.activity-card {
    height: 100%;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(36, 2, 99, 0.07);
    box-shadow: 0 8px 30px rgba(36, 2, 99, 0.06);
    transition: all 0.35s ease;
    position: relative;
    z-index: 2;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(36, 2, 99, 0.13);
}


/* Image */

.activity-image {
    height: 215px;
    position: relative;
    overflow: hidden;
    background: #eee8f7;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.08);
}


/* Image Overlay */

.activity-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(36, 2, 99, 0.25),
        transparent 55%
    );
    pointer-events: none;
}


/* Activity Icon */

.activity-icon {
    position: absolute;
    z-index: 3;
    bottom: -22px;
    right: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: var(--purple);

    border: 5px solid #ffffff;
    border-radius: 50%;

    font-size: 22px;

    transition: all 0.35s ease;
}

.activity-card:hover .activity-icon {
    transform: rotate(10deg) scale(1.08);
}


/* Content */

.activity-content {
    padding: 32px 27px 28px;
}

.activity-label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--purple);
}

.activity-content h3 {
    font-family: "Baloo 2", sans-serif;
    color: var(--purple);
    font-size: 27px;
    font-weight: 800;
    margin: 5px 0 10px;
}

.activity-content p {
    color: #6d6875;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* Bottom Message */

.activities-bottom {
    max-width: 800px;
    margin: 60px auto 0;

    padding: 25px 30px;

    display: flex;
    align-items: center;
    gap: 20px;

    background: var(--purple);
    color: #ffffff;

    border-radius: 25px;

    position: relative;
    z-index: 2;
}

.activities-bottom-icon {
    flex: 0 0 60px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 18px;

    font-size: 25px;
}

.activities-bottom h4 {
    font-family: "Baloo 2", sans-serif;
    font-size: 24px;
    margin: 0 0 3px;
}

.activities-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}


/* Decorative Shapes */

.activity-decoration {
    position: absolute;
    pointer-events: none;
}

.activity-circle-one {
    width: 220px;
    height: 220px;

    border: 35px solid rgba(255, 207, 0, 0.12);

    border-radius: 50%;

    top: 100px;
    left: -110px;
}

.activity-circle-two {
    width: 150px;
    height: 150px;

    background: rgba(36, 2, 99, 0.04);

    border-radius: 50%;

    bottom: 100px;
    right: -70px;
}

.activity-star-one {
    top: 75px;
    right: 8%;

    font-size: 38px;
    color: var(--yellow);

    transform: rotate(15deg);
}

.activity-star-two {
    bottom: 80px;
    left: 8%;

    font-size: 25px;
    color: var(--purple);

    transform: rotate(-15deg);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .activities-section {
        padding: 80px 0;
    }

    .activity-image {
        height: 210px;
    }

    .activities-bottom {
        margin-top: 45px;
    }
}


@media (max-width: 575px) {

    .activities-section {
        padding: 65px 0;
    }

    .activities-heading {
        margin-bottom: 35px;
    }

    .activity-card {
        border-radius: 24px;
    }

    .activity-image {
        height: 200px;
    }

    .activity-content {
        padding: 30px 23px 25px;
    }

    .activity-content h3 {
        font-size: 25px;
    }

    .activities-bottom {
        margin: 40px 10px 0;
        padding: 22px;
        gap: 15px;
        border-radius: 22px;
    }

    .activities-bottom-icon {
        flex: 0 0 50px;
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .activities-bottom h4 {
        font-size: 21px;
    }

    .activities-bottom p {
        font-size: 13px;
    }

    .activity-star-one {
        right: 4%;
    }

    .activity-star-two {
        left: 4%;
    }
}

/* =========================
   FACILITIES SECTION
========================= */

.facilities-section {
    position: relative;
    overflow: hidden;
    padding: 105px 0;
    background: #ffffff;
}


/* Heading */

.facilities-heading {
    margin-bottom: 65px;
}

.facilities-heading .section-tag {
    background: rgba(255, 207, 0, 0.18);
    color: var(--purple);
}


/* =========================
   FACILITIES VISUAL
========================= */

.facilities-visual {
    position: relative;
    padding: 15px 35px 35px 15px;
}

.facilities-main-image {
    position: relative;
    height: 520px;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 55px rgba(36, 2, 99, 0.15);
    z-index: 2;
}

.facilities-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facilities-main-image:hover img {
    transform: scale(1.05);
}


/* Image Badge */

.facilities-badge {
    position: absolute;
    left: 25px;
    bottom: 25px;

    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 18px;

    background: #ffffff;
    color: var(--purple);

    border-radius: 18px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.facilities-badge i {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    border-radius: 12px;

    color: var(--purple);
}

.facilities-badge span {
    font-family: "Baloo 2", sans-serif;
    font-size: 16px;
    line-height: 1.05;
    font-weight: 800;
}


/* Mini Floating Card */

.facilities-mini-card {
    position: absolute;

    right: 0;
    bottom: 0;

    display: flex;
    align-items: center;
    gap: 12px;

    background: var(--purple);
    color: #ffffff;

    padding: 17px 20px;

    border-radius: 20px;

    box-shadow: 0 15px 35px rgba(36, 2, 99, 0.25);

    z-index: 4;
}

.mini-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 13px;

    font-size: 20px;
}

.facilities-mini-card strong,
.facilities-mini-card small {
    display: block;
}

.facilities-mini-card strong {
    font-family: "Baloo 2", sans-serif;
    font-size: 17px;
}

.facilities-mini-card small {
    font-size: 11px;
    opacity: 0.75;
}


/* Decorative Dots */

.facilities-dot {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.dot-one {
    width: 90px;
    height: 90px;

    background: var(--yellow);

    top: -15px;
    left: -15px;
}

.dot-two {
    width: 55px;
    height: 55px;

    border: 10px solid var(--purple);

    right: 10px;
    top: 30px;
}


/* =========================
   FACILITY CONTENT
========================= */

.facilities-content {
    position: relative;
    z-index: 2;
}

.facility-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;

    padding: 18px 0;

    border-bottom: 1px dashed rgba(36, 2, 99, 0.12);
}

.facility-item:last-child {
    border-bottom: none;
}


/* Facility Icon */

.facility-icon {
    flex: 0 0 55px;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(36, 2, 99, 0.08);
    color: var(--purple);

    border-radius: 17px;

    font-size: 22px;

    transition: all 0.3s ease;
}

.facility-item:hover .facility-icon {
    background: var(--yellow);
    transform: rotate(-5deg);
}


/* Facility Text */

.facility-item h3 {
    font-family: "Baloo 2", sans-serif;

    font-size: 22px;
    font-weight: 800;

    color: var(--purple);

    margin: 2px 0 5px;
}

.facility-item p {
    color: #6d6875;

    font-size: 13px;
    line-height: 1.75;

    margin: 0;
}


/* Decorative Background */

.facility-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.facility-shape-one {
    width: 240px;
    height: 240px;

    background: rgba(255, 207, 0, 0.08);

    left: -120px;
    top: 200px;
}

.facility-shape-two {
    width: 150px;
    height: 150px;

    border: 25px solid rgba(36, 2, 99, 0.04);

    right: -70px;
    bottom: 100px;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

    .facilities-section {
        padding: 80px 0;
    }

    .facilities-heading {
        margin-bottom: 45px;
    }

    .facilities-main-image {
        height: 450px;
    }

    .facilities-content {
        margin-top: 15px;
    }
}


@media (max-width: 575px) {

    .facilities-section {
        padding: 65px 0;
    }

    .facilities-heading {
        margin-bottom: 35px;
    }

    .facilities-visual {
        padding: 10px 20px 35px 10px;
    }

    .facilities-main-image {
        height: 380px;
        border-radius: 27px;
    }

    .facilities-badge {
        left: 18px;
        bottom: 18px;
        padding: 10px 13px;
    }

    .facilities-badge i {
        width: 35px;
        height: 35px;
    }

    .facilities-badge span {
        font-size: 14px;
    }

    .facilities-mini-card {
        right: 0;
        padding: 13px 15px;
    }

    .mini-icon {
        width: 40px;
        height: 40px;
    }

    .facilities-mini-card strong {
        font-size: 15px;
    }

    .facility-item {
        gap: 13px;
        padding: 15px 0;
    }

    .facility-icon {
        flex: 0 0 48px;
        width: 48px;
        height: 48px;
        border-radius: 14px;
        font-size: 19px;
    }

    .facility-item h3 {
        font-size: 19px;
    }

    .facility-item p {
        font-size: 12.5px;
    }
}

/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
    position: relative;
    padding: 105px 0;
    background: #fffaf0;
    overflow: hidden;
}


/* Section Heading */

.gallery-section .section-heading {
    max-width: 720px;
    margin: 0 auto 45px;
}

.gallery-section .section-tag {
    display: inline-block;
    color: var(--purple);
    background: rgba(255, 207, 0, 0.18);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-section .section-heading h2 {
    font-family: "Baloo 2", cursive;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.gallery-section .section-heading h2 span {
    color: var(--purple);
}

.gallery-section .section-heading p {
    color: #706b78;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   FILTER BUTTONS
========================================= */

.gallery-filters {
    margin-bottom: 38px;
}

.gallery-filter {
    border: 2px solid transparent;
    background: #ffffff;
    color: var(--text-dark);
    padding: 10px 22px;
    margin: 5px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter:hover {
    color: var(--purple);
    border-color: var(--yellow);
    transform: translateY(-2px);
}

.gallery-filter.active {
    background: var(--purple);
    color: #ffffff;
    border-color: var(--purple);
    box-shadow: 0 8px 20px rgba(36, 2, 99, 0.18);
}


/* =========================================
   GALLERY GRID
========================================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(36, 2, 99, 0.08);
}

.gallery-item.gallery-large {
    grid-column: span 2;
}

.gallery-item.gallery-tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}


/* =========================================
   OVERLAY
========================================= */

.gallery-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    background: linear-gradient(
        to top,
        rgba(36, 2, 99, 0.9),
        rgba(36, 2, 99, 0.05) 70%
    );

    color: #ffffff;
    opacity: 0;
    transition: opacity 0.35s ease;
}

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

.gallery-overlay span {
    display: inline-block;
    width: fit-content;
    background: var(--yellow);
    color: var(--purple);
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.gallery-overlay h4 {
    font-family: "Baloo 2", cursive;
    font-size: 22px;
    margin: 0;
    padding-right: 55px;
}

.gallery-view {
    position: absolute;
    right: 22px;
    bottom: 22px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: var(--purple);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
    cursor: pointer;

    transition: all 0.3s ease;
}

.gallery-view:hover {
    background: var(--yellow);
    transform: rotate(90deg);
}


/* =========================================
   GALLERY BOTTOM
========================================= */

.gallery-bottom {
    margin-top: 45px;
}

.gallery-bottom p {
    color: #77727d;
    margin-bottom: 18px;
    font-size: 15px;
}

.btn-gallery {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 13px 25px;
    border-radius: 50px;

    background: var(--yellow);
    color: var(--purple);

    font-weight: 700;
    text-decoration: none;

    transition: all 0.3s ease;
}

.btn-gallery:hover {
    background: var(--purple);
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================
   GALLERY MODAL
========================================= */

.gallery-modal {
    position: relative;
    background: #ffffff;
    border: none;
    border-radius: 22px;
    overflow: hidden;
}

.gallery-modal img {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    background: #18003f;
    display: block;
}

.gallery-close {
    position: absolute;
    z-index: 5;
    top: 15px;
    right: 15px;

    width: 42px;
    height: 42px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: var(--purple);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.gallery-modal-caption {
    padding: 18px 22px;
}

.gallery-modal-caption h4 {
    font-family: "Baloo 2", cursive;
    color: var(--purple);
    margin: 0;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-section .section-heading h2 {
        font-size: 44px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.gallery-large {
        grid-column: span 2;
    }

}


@media (max-width: 575px) {

    .gallery-section {
        padding: 70px 0;
    }

    .gallery-section .section-heading h2 {
        font-size: 38px;
    }

    .gallery-section .section-heading p {
        font-size: 14px;
    }

    .gallery-filters {
        margin-bottom: 25px;
    }

    .gallery-filter {
        padding: 8px 16px;
        font-size: 12px;
        margin: 3px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
        gap: 14px;
    }

    .gallery-item.gallery-large {
        grid-column: span 1;
    }

    .gallery-item.gallery-tall {
        grid-row: span 1;
    }

    .gallery-overlay {
        opacity: 1;
    }

}
/* =========================================
   ADMISSION CTA
========================================= */

.admission-cta {
    padding: 90px 0;
    background: #ffffff;
}

.admission-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 35px;
    padding: 80px 30px;
    text-align: center;

    background: linear-gradient(
        135deg,
        #240263 0%,
        #3d087d 100%
    );

    box-shadow: 0 20px 60px rgba(36, 2, 99, 0.20);
}


/* Content */

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    margin: auto;
}

.cta-tag {
    display: inline-block;

    padding: 8px 20px;
    margin-bottom: 18px;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 50px;

    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-content h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Baloo 2", cursive;
    font-size: 52px;
    line-height: 1.1;
    font-weight: 800;
}

.cta-content h2 span {
    color: var(--yellow);
}

.cta-content p {
    max-width: 620px;
    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.85);

    font-size: 16px;
    line-height: 1.8;
}


/* Admission Button */

.cta-admission-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 15px 28px;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 50px;

    font-size: 15px;
    font-weight: 800;
    text-decoration: none;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;
}

.cta-admission-btn:hover {
    background: #ffffff;
    color: var(--purple);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.20);
}

.cta-admission-btn i:last-child {
    transition: transform 0.3s ease;
}

.cta-admission-btn:hover i:last-child {
    transform: translateX(4px);
}


/* =========================================
   DECORATIONS
========================================= */

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-circle-one {
    width: 220px;
    height: 220px;

    top: -100px;
    left: -80px;

    border: 35px solid rgba(255, 207, 0, 0.12);
}

.cta-circle-two {
    width: 280px;
    height: 280px;

    right: -120px;
    bottom: -140px;

    border: 45px solid rgba(255, 255, 255, 0.06);
}

.cta-star {
    position: absolute;

    color: var(--yellow);
    font-size: 30px;

    z-index: 1;

    animation: ctaFloat 3s ease-in-out infinite;
}

.star-one {
    top: 35px;
    right: 18%;
}

.star-two {
    bottom: 35px;
    left: 15%;
    font-size: 20px;
    animation-delay: 1s;
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .admission-cta {
        padding: 65px 0;
    }

    .admission-cta-box {
        padding: 60px 22px;
        border-radius: 28px;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-admission-btn {
        width: 100%;
        max-width: 300px;
    }

    .star-one {
        right: 8%;
    }

    .star-two {
        left: 8%;
    }
}
/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;
    background: #240263;
    color: #ffffff;
    overflow: hidden;
    padding-top: 85px;
}


/* =========================================
   TOP WAVE
========================================= */

.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 70px;
    overflow: hidden;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer-wave path {
    fill: #ffffff;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 45px 0 55px;
}


/* =========================================
   BRAND
========================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-logo-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 16px 16px 16px 5px;

    font-size: 25px;

    transform: rotate(-4deg);
}

.footer-logo strong {
    display: block;

    font-family: "Baloo 2", cursive;
    font-size: 25px;
    line-height: 1;
}

.footer-logo small {
    display: block;
    margin-top: 4px;

    color: rgba(255,255,255,0.7);

    font-size: 11px;
    font-weight: 500;
}

.footer-brand > p {
    max-width: 320px;

    color: rgba(255,255,255,0.72);

    font-size: 14px;
    line-height: 1.8;

    margin-bottom: 22px;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.10);
    color: #ffffff;

    border-radius: 50%;

    text-decoration: none;

    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--purple);
    transform: translateY(-4px);
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.footer-column h4 {
    position: relative;

    font-family: "Baloo 2", cursive;
    font-size: 21px;
    margin-bottom: 20px;

    color: #ffffff;
}

.footer-column h4::after {
    content: "";

    display: block;

    width: 30px;
    height: 3px;

    background: var(--yellow);

    border-radius: 10px;

    margin-top: 7px;
}

.footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 11px;
}

.footer-column ul li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: rgba(255,255,255,0.70);

    font-size: 13px;
    text-decoration: none;

    transition: all 0.25s ease;
}

.footer-column ul li a:hover {
    color: var(--yellow);
    transform: translateX(5px);
}

.footer-column ul li a i {
    color: var(--yellow);
    font-size: 11px;
}


/* =========================================
   CONTACT
========================================= */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-bottom: 17px;
}

.footer-contact-item > span {
    flex-shrink: 0;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(255,255,255,0.10);
    color: var(--yellow);

    border-radius: 10px;

    font-size: 14px;
}

.footer-contact-item p,
.footer-contact-item a {
    margin: 0;

    color: rgba(255,255,255,0.72);

    font-size: 13px;
    line-height: 1.6;

    text-decoration: none;
}

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


/* =========================================
   ADMISSION BANNER
========================================= */

.footer-admission {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;

    padding: 25px 30px;

    background: var(--yellow);
    color: var(--purple);

    border-radius: 22px;

    margin-bottom: 35px;
}

.footer-admission span {
    display: block;

    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;

    opacity: 0.7;

    margin-bottom: 3px;
}

.footer-admission h3 {
    margin: 0;

    font-family: "Baloo 2", cursive;
    font-size: 26px;
    line-height: 1.1;
}

.footer-admission a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: var(--purple);
    color: #ffffff;

    padding: 13px 22px;

    border-radius: 50px;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: all 0.3s ease;
}

.footer-admission a:hover {
    background: #ffffff;
    color: var(--purple);
    transform: translateY(-3px);
}

.footer-admission a i {
    transition: transform 0.3s ease;
}

.footer-admission a:hover i {
    transform: translateX(4px);
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 22px 0;

    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 11px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom-links a,
.footer-bottom-links span {
    color: rgba(255,255,255,0.55);

    font-size: 11px;
    text-decoration: none;
}

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


/* =========================================
   DECORATIVE STARS
========================================= */

.footer-star {
    position: absolute;

    color: var(--yellow);

    font-size: 25px;

    opacity: 0.6;

    animation: footerStarFloat 4s ease-in-out infinite;
}

.footer-star-1 {
    top: 130px;
    right: 5%;
}

.footer-star-2 {
    bottom: 100px;
    left: 3%;
    font-size: 17px;
    animation-delay: 1s;
}

.footer-star-3 {
    top: 260px;
    left: 48%;
    font-size: 13px;
    animation-delay: 2s;
}

@keyframes footerStarFloat {

    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(12deg);
    }

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

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

    .footer-brand {
        grid-column: span 2;
    }

}


@media (max-width: 767px) {

    .site-footer {
        padding-top: 70px;
    }

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

    .footer-brand {
        grid-column: span 1;
    }

    .footer-admission {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }

    .footer-admission a {
        width: 100%;
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

}


@media (max-width: 480px) {

    .footer-main {
        padding-top: 30px;
    }

    .footer-admission h3 {
        font-size: 23px;
    }

    .footer-logo strong {
        font-size: 22px;
    }

}