.gsg-welcome-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff8f5, #f7fffd 60%, #fff9df);
    position: relative;
    overflow: hidden;
}

/* IMAGE BOX */
.gsg-img-box {
    position: relative;
    padding: 20px;
}

.gsg-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border: 8px solid #fff;
}

/* DECOR SHAPES */
.gsg-img-shape1 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #FD4D40;
    border-radius: 50%;
    top: -20px;
    left: -10px;
    z-index: 1;
}

.gsg-img-shape2 {
    position: absolute;
    width: 130px;
    height: 130px;
    background: #16C3B0;
    border-radius: 50%;
    bottom: -10px;
    right: 10px;
    z-index: 1;
}

/* FLOATING BADGE */
.gsg-img-badge {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 3;
}

.gsg-img-badge i {
    color: #F1C22E;
    margin-right: 6px;
}

/* CONTENT */
.gsg-content {
    position: relative;
}

.gsg-tag {
    display: inline-block;
    background: #16C3B0;
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 15px;
}

.gsg-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #222;
}

.gsg-title span {
    color: #FD4D40;
}

/* TEXT */
.gsg-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 14px;
    text-align: justify;
}

/* BUTTON */
.gsg-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #FD4D40, #F1C22E);
    color: #fff;
    padding: 12px 26px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.gsg-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .gsg-title {
        font-size: 30px;
    }

    .gsg-content p {
        text-align: left;
    }

    .gsg-main-img {
        height: auto;
    }
}
.gsg-facility-section {
    position: relative;
    padding: 90px 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(253,77,64,0.12), transparent 25%),
        radial-gradient(circle at 92% 25%, rgba(22,195,176,0.14), transparent 25%),
        linear-gradient(135deg, #fff8f5, #f7fffd 55%, #fff9df);
    overflow: hidden;
}

.gsg-facility-heading {
    margin-bottom: 50px;
}

.gsg-facility-heading span {
    display: inline-block;
    background: #FD4D40;
    color: #fff;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.gsg-facility-heading h2 {
    font-size: 44px;
    font-weight: 900;
    color: #222;
    margin-bottom: 12px;
}

.gsg-facility-heading h2::after {
    content: "";
    display: block;
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg, #FD4D40, #F1C22E, #16C3B0);
    border-radius: 30px;
    margin: 16px auto 0;
}

.gsg-facility-heading p {
    color: #666;
    font-size: 16px;
    margin-top: 18px;
}

.gsg-facility-card {
    position: relative;
    height: 100%;
    background: #fff;
    padding: 34px 26px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all .35s ease;
}

.gsg-facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.14);
}

.gsg-facility-card::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -65px;
    right: -65px;
    border-radius: 50%;
    opacity: .16;
}

.gsg-facility-red::before {
    background: #FD4D40;
}

.gsg-facility-yellow::before {
    background: #F1C22E;
}

.gsg-facility-green::before {
    background: #16C3B0;
}

.gsg-facility-icon {
    width: 82px;
    height: 82px;
    margin: 0 auto 22px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 34px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.14);
    transition: .35s ease;
}

.gsg-facility-red .gsg-facility-icon {
    background: linear-gradient(135deg, #FD4D40, #ff7b70);
}

.gsg-facility-yellow .gsg-facility-icon {
    background: linear-gradient(135deg, #F1C22E, #ffdc65);
}

.gsg-facility-green .gsg-facility-icon {
    background: linear-gradient(135deg, #16C3B0, #48e1d0);
}

.gsg-facility-card:hover .gsg-facility-icon {
    transform: rotate(-8deg) scale(1.08);
}

.gsg-facility-card h3 {
    font-size: 22px;
    font-weight: 900;
    color: #222;
    margin-bottom: 14px;
}

.gsg-facility-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .gsg-facility-section {
        padding: 60px 0;
    }

    .gsg-facility-heading h2 {
        font-size: 34px;
    }

    .gsg-facility-card p {
        text-align: left;
    }
}
.gsg-class-section {
    padding: 90px 0;
    background: #fffaf5;
}

/* Heading */
.gsg-class-head span {
    background: #16C3B0;
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
}

.gsg-class-head h2 {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0;
}

.gsg-class-head h2::after {
    content: "";
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #FD4D40, #F1C22E, #16C3B0);
    display: block;
    margin: 12px auto 0;
    border-radius: 20px;
}

.gsg-class-head p {
    color: #666;
}

/* Card */
.gsg-class-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    position: relative;
}

.gsg-class-card:hover {
    transform: translateY(-8px);
}

/* Top Image */
.gsg-class-img {
    position: relative;
}

.gsg-class-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* Badge */
.gsg-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.gsg-class-card.red .gsg-badge {
    background: #FD4D40;
}
.gsg-class-card.yellow .gsg-badge {
    background: #F1C22E;
}
.gsg-class-card.green .gsg-badge {
    background: #16C3B0;
}

/* Body */
.gsg-class-body {
    padding: 20px;
}

.gsg-class-body p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

/* Points */
.gsg-class-points {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.gsg-class-points span {
    background: #f1f1f1;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* Info */
.gsg-class-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-weight: 600;
}

.gsg-class-meta i {
    margin-right: 5px;
    color: #16C3B0;
}

/* Hover Color Effect */
.gsg-class-card.red:hover {
    box-shadow: 0 15px 40px rgba(253,77,64,0.2);
}
.gsg-class-card.yellow:hover {
    box-shadow: 0 15px 40px rgba(241,194,46,0.2);
}
.gsg-class-card.green:hover {
    box-shadow: 0 15px 40px rgba(22,195,176,0.2);
}

/* Mobile */
@media(max-width:768px){
    .gsg-class-head h2{
        font-size: 30px;
    }
}
.gsg-after-school-section {
    padding: 90px 0;
    background:
        radial-gradient(circle at 8% 15%, rgba(253,77,64,.10), transparent 25%),
        radial-gradient(circle at 90% 20%, rgba(22,195,176,.12), transparent 25%),
        linear-gradient(135deg, #fffaf5, #f7fffd);
}

.gsg-after-head {
    margin-bottom: 50px;
}

.gsg-after-head span {
    display: inline-block;
    background: #FD4D40;
    color: #fff;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.gsg-after-head h2 {
    font-size: 44px;
    font-weight: 900;
    color: #222;
    margin: 16px 0 10px;
}

.gsg-after-head h2::after {
    content: "";
    width: 110px;
    height: 6px;
    background: linear-gradient(90deg, #FD4D40, #F1C22E, #16C3B0);
    display: block;
    margin: 16px auto 0;
    border-radius: 30px;
}

.gsg-after-head p {
    color: #666;
    font-size: 16px;
    margin-top: 18px;
}

.gsg-after-card {
    height: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 28px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: .35s ease;
    position: relative;
    overflow: hidden;
}

.gsg-after-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0,0,0,.13);
}

.gsg-after-card::before {
    content: "";
    position: absolute;
    width: 145px;
    height: 145px;
    right: -65px;
    top: -65px;
    border-radius: 50%;
    opacity: .14;
}

.gsg-after-card.red::before {
    background: #FD4D40;
}

.gsg-after-card.yellow::before {
    background: #F1C22E;
}

.gsg-after-card.green::before {
    background: #16C3B0;
}

.gsg-after-icon {
    min-width: 95px;
    width: 95px;
    height: 95px;
    border-radius: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7ef;
    box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.gsg-after-icon img {
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.gsg-after-card.red .gsg-after-icon {
    background: rgba(253,77,64,.12);
}

.gsg-after-card.yellow .gsg-after-icon {
    background: rgba(241,194,46,.16);
}

.gsg-after-card.green .gsg-after-icon {
    background: rgba(22,195,176,.14);
}

.gsg-after-content h3 {
    font-size: 24px;
    font-weight: 900;
    color: #222;
    margin-bottom: 10px;
}

.gsg-after-card.red h3 {
    color: #FD4D40;
}

.gsg-after-card.yellow h3 {
    color: #d39b00;
}

.gsg-after-card.green h3 {
    color: #16C3B0;
}

.gsg-after-content p {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.gsg-after-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.gsg-after-points span {
    background: #f8fbfb;
    border: 1px dashed rgba(22,195,176,.25);
    color: #444;
    padding: 7px 12px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .gsg-after-school-section {
        padding: 60px 0;
    }

    .gsg-after-head h2 {
        font-size: 32px;
    }

    .gsg-after-card {
        flex-direction: column;
    }

    .gsg-after-content p {
        text-align: left;
    }
}
.gsg-why-section {
    position: relative;
    padding: 90px 0;
    background:
        linear-gradient(rgba(253,77,64,.88), rgba(22,195,176,.88)),
        url("images/background1.jpg") center/cover no-repeat;
    overflow: hidden;
}

.gsg-why-section::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(241,194,46,.35);
    border-radius: 50%;
    top: -110px;
    left: -90px;
}

.gsg-why-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,.16);
    border-radius: 50%;
    right: -70px;
    bottom: -80px;
}

.gsg-why-content,
.gsg-why-img-box {
    position: relative;
    z-index: 2;
}

.gsg-why-badge {
    display: inline-block;
    background: #F1C22E;
    color: #222;
    padding: 8px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.gsg-why-content h2 {
    font-size: 46px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
}

.gsg-why-content h2::after {
    content: "";
    width: 105px;
    height: 6px;
    display: block;
    background: #F1C22E;
    border-radius: 30px;
    margin-top: 15px;
}

.gsg-why-intro {
    color: #fff;
    font-size: 16px;
    line-height: 1.8;
    max-width: 720px;
    margin-bottom: 28px;
}

.gsg-why-list {
    display: grid;
    gap: 18px;
}

.gsg-why-item {
    display: flex;
    gap: 18px;
    background: rgba(255,255,255,.96);
    padding: 20px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
    transition: .35s ease;
}

.gsg-why-item:hover {
    transform: translateX(8px);
}

.gsg-why-icon {
    min-width: 62px;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.gsg-why-item.red .gsg-why-icon {
    background: #FD4D40;
}

.gsg-why-item.yellow .gsg-why-icon {
    background: #F1C22E;
}

.gsg-why-item.green .gsg-why-icon {
    background: #16C3B0;
}

.gsg-why-item h3 {
    font-size: 22px;
    font-weight: 900;
    color: #222;
    margin-bottom: 6px;
}

.gsg-why-item p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 0;
}

.gsg-why-img-box {
    position: relative;
    text-align: center;
    padding: 20px;
}

.gsg-why-img-box img {
    position: relative;
    z-index: 2;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0,0,0,.25));
}

.gsg-why-shape-one,
.gsg-why-shape-two {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.gsg-why-shape-one {
    width: 170px;
    height: 170px;
    background: #F1C22E;
    top: 40px;
    right: 20px;
}

.gsg-why-shape-two {
    width: 140px;
    height: 140px;
    background: #fff;
    bottom: 55px;
    left: 0;
    opacity: .9;
}

.gsg-why-floating {
    position: absolute;
    z-index: 3;
    left: 0;
    bottom: 55px;
    background: #fff;
    color: #222;
    padding: 14px 20px;
    border-radius: 22px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 18px 45px rgba(0,0,0,.18);
}

.gsg-why-floating i {
    color: #FD4D40;
    margin-right: 8px;
}

@media (max-width: 991px) {
    .gsg-why-section {
        padding: 60px 0;
    }

    .gsg-why-content h2 {
        font-size: 34px;
    }

    .gsg-why-item {
        flex-direction: column;
    }

    .gsg-why-item:hover {
        transform: translateY(-5px);
    }
}

.kids-gallery-section{
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background:
    radial-gradient(circle at top left,
    rgba(255,193,7,0.20),
    transparent 25%),

    radial-gradient(circle at bottom right,
    rgba(0,188,212,0.18),
    transparent 28%),

    linear-gradient(135deg,
    #fff9ef 0%,
    #f5fbff 45%,
    #fff4fb 100%);
}



/* ==========================================
HEADING
========================================== */

.gallery-heading{
    margin-bottom: 60px;
}

.gallery-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 100px;

    background: linear-gradient(135deg,#ff9800,#ff4081);

    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;

    box-shadow: 0 12px 30px rgba(255,64,129,0.25);
}

.gallery-heading h2{
    font-size: 48px;
    font-weight: 900;
    color: #24315e;
    margin-bottom: 18px;
}

.gallery-heading p{
    max-width: 760px;
    margin: auto;
    color: #667085;
    font-size: 17px;
    line-height: 1.8;
}



/* ==========================================
GALLERY CARD
========================================== */

.gallery-card{
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #fff;

    box-shadow:
    0 18px 45px rgba(36,49,94,0.12);

    transition: 0.4s ease;
}

.gallery-card:hover{
    transform: translateY(-10px);
    box-shadow:
    0 28px 60px rgba(36,49,94,0.18);
}



/* ==========================================
IMAGE
========================================== */

.gallery-card img{
    width: 100%;
    height: 320px;

    object-fit: cover;
    object-position: center;

    transition: 0.5s ease;

    display: block;
}


/* IMAGE HOVER */

.gallery-card:hover img{
    transform: scale(1.08);
}



/* ==========================================
OVERLAY
========================================== */

.gallery-overlay{
    position: absolute;
    inset: 0;

    background:
    linear-gradient(to top,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.08));

    opacity: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.4s ease;
}

.gallery-card:hover .gallery-overlay{
    opacity: 1;
}



/* ==========================================
ICON
========================================== */

.gallery-icon{
    width: 72px;
    height: 72px;

    border-radius: 50%;

    background: rgba(255,255,255,0.18);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    border: 2px solid rgba(255,255,255,0.25);

    transform: scale(0.7);

    transition: 0.35s ease;
}

.gallery-card:hover .gallery-icon{
    transform: scale(1);
}

.gallery-icon i{
    color: #fff;
    font-size: 28px;
}



/* ==========================================
RESPONSIVE
========================================== */

@media(max-width:991px){

    .kids-gallery-section{
        padding: 70px 0;
    }

    .gallery-heading h2{
        font-size: 34px;
    }

    .gallery-card img{
        height: 260px;
    }

}

@media(max-width:575px){

    .gallery-card img{
        height: 240px;
    }

    .gallery-heading h2{
        font-size: 28px;
    }

    .gallery-heading p{
        font-size: 15px;
    }

}
.about-video-section{
    position: relative;
    padding: 100px 0;
    background:
    radial-gradient(circle at top left, rgba(255,193,7,0.20), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0,188,212,0.18), transparent 30%),
    linear-gradient(135deg, #fff9ef 0%, #f5fbff 45%, #fff4fb 100%);
    overflow: hidden;
}

.about-video-card{
    position: relative;
    padding: 14px;
    border-radius: 34px;
    background: linear-gradient(135deg,#ff9800,#ff4081,#00bcd4);
    box-shadow: 0 25px 60px rgba(36,49,94,0.18);
}

.about-video-card video{
    width: 100%;
   
    object-fit: cover;
    border-radius: 24px;
    display: block;
    background: #000;
}

.about-school-content{
    position: relative;
    padding: 10px 0;
}

.about-badge{
    display: inline-block;
    padding: 10px 24px;
    border-radius: 100px;
    background: linear-gradient(135deg,#ff9800,#ff4081);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 12px 30px rgba(255,64,129,0.25);
}

.about-school-content h2{
    font-size: 46px;
    font-weight: 900;
    color: #24315e;
    margin-bottom: 22px;
    line-height: 1.15;
}

.about-school-content p{
    color: #667085;
    font-size: 16.5px;
    line-height: 1.85;
    margin-bottom: 18px;
}

.about-points{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.about-points div{
    background: #fff;
    padding: 16px 18px;
    border-radius: 18px;
    color: #24315e;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(36,49,94,0.08);
}

.about-points i{
    color: #25D366;
    margin-right: 8px;
}

@media(max-width:991px){
    .about-video-section{
        padding: 70px 0;
    }

    .about-school-content h2{
        font-size: 34px;
    }

    .about-video-card video{
        height: 360px;
    }

    .about-points{
        grid-template-columns: 1fr;
    }
}

@media(max-width:575px){
    .about-school-content h2{
        font-size: 29px;
    }

    .about-video-card video{
        height: 300px;
    }
}