/* ==========================
   Logo
   ========================== */

.navbar-brand img {
    width: auto;
    max-width: 200px;
    max-height: 100px;
    transition: all 0.3s ease;
}

@media (max-width: 992px) {
    .navbar-brand img {
        max-height: 62px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 86px;
    }
}

/* ==========================
   Navbar Dropdown Menu
   ========================== */

.program-menu {
    position: relative;
    display: inline-block;
}

.program-link {
    display: inline-flex;
    align-items: center;
}

.program-link::after {
    content: "▼";
    font-size: 10px;
    margin-left: 6px;
    transition: 0.3s;
}

.program-menu:hover .program-link::after {
    transform: rotate(180deg);
}

.program-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 10px;
    padding: 10px 0;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .3s ease;
    z-index: 999;
}

.program-dropdown a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #F4A825;
    white-space: nowrap;
    transition: .3s;
}

.program-dropdown a:hover {
    background: #f5f5f5;
    color: #398121;
}

.program-menu:hover .program-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ===========================
   Mobile Program Dropdown
   =========================== */

.mobile-menu-title{
    color: var(--fg);
    font-weight:700;
    pointer-events:none;
    margin-top:10px;
}

.mobile-submenu{
    padding-right:25px;
    font-size:20px;
    text-transform:none;
}

@media (max-width: 991px){

    .nav-links{
        display:none;
    }

    .nav-toggle{
        display:flex;
    }

        .nav{
        display:flex;
        align-items:center;
    }

    .nav-cta-row{
        margin-left:auto;
    }

}

/* ===========================
   course Background
   =========================== */

/* Shared colorful premium card */
.cap-gradient{
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow:
    0 20px 50px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.18);
}

/* Gradient layer */
.cap-gradient::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.22), transparent 28%),
    radial-gradient(circle at 85% 85%, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(
      135deg,
      #FF6B6B 0%,
      #FFB347 25%,
      #4F8CFF 65%,
      #7C4DFF 100%
    );
}

/* Soft glow */
.cap-gradient::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background:linear-gradient(
      to bottom,
      rgba(255,255,255,.08),
      rgba(0,0,0,.12)
  );
}

.cap-gradient:nth-child(1)::before{
  background:linear-gradient(135deg,#FF6B6B,#FFB347);
}

.cap-gradient:nth-child(2)::before{
  background:linear-gradient(135deg,#00C6A7,#00E5A8);
}

.cap-gradient:nth-child(3)::before{
  background:linear-gradient(135deg,#4F8CFF,#7C4DFF);
}

.cap-gradient:nth-child(4)::before{
  background:linear-gradient(135deg,#EC4899,#8B5CF6);
}

.cap-gradient:nth-child(5)::before{
  background:linear-gradient(135deg,#14B8A6,#22C55E);
}

.cap-gradient:nth-child(6)::before{
  background:linear-gradient(135deg,#F97316,#EF4444);
}

.cap-gradient:nth-child(7)::before{
  background:linear-gradient(135deg,#3B82F6,#06B6D4);
}

/* ===========================================
   Feature Pills
=========================================== */

.feature-pill{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.4rem;
    border-radius: 999px;
    overflow: hidden;
    isolation: isolate;

    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    letter-spacing: .03em;

    border: 1px solid rgba(255,255,255,.15);

    box-shadow:
        0 12px 30px rgba(0,0,0,.15),
        inset 0 1px 0 rgba(255,255,255,.25);

    transition: all .35s ease;
}

/* Gradient Background */

.feature-pill::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:-2;

    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,.25), transparent 28%),
        linear-gradient(
            135deg,
            #FF6B6B 0%,
            #FF9F43 20%,
            #FFD93D 40%,
            #00C897 65%,
            #3B82F6 100%
        );
}

/* Gloss Effect */

.feature-pill::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;

    background:linear-gradient(
        to bottom,
        rgba(255,255,255,.18),
        rgba(255,255,255,0) 45%,
        rgba(0,0,0,.08)
    );
}

/* Hover */

.feature-pill:hover{
    transform: translateY(-6px) scale(1.05);
    box-shadow:
        0 20px 45px rgba(0,0,0,.22),
        0 0 30px rgba(255,255,255,.18);
}


/* ===========================================
   Home-course
=========================================== */
.home-course{
background:
radial-gradient(circle at 15% 20%, #FFE082 0%, transparent 22%),
radial-gradient(circle at 80% 25%, #A5D8FF 0%, transparent 20%),
radial-gradient(circle at 70% 80%, #B9FBC0 0%, transparent 22%),
radial-gradient(circle at 30% 85%, #FFD6E7 0%, transparent 20%),
#FDFCF8;
}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonials-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:

        radial-gradient(circle at 8% 15%, rgba(255,193,7,.15), transparent 25%),

        radial-gradient(circle at 90% 20%, rgba(59,130,246,.14), transparent 30%),

        radial-gradient(circle at 20% 90%, rgba(34,197,94,.13), transparent 25%),

        radial-gradient(circle at 85% 85%, rgba(236,72,153,.13), transparent 30%),

        linear-gradient(
            135deg,
            #FFFDF8,
            #FFF8F1,
            #F8FBFF,
            #F8FFF9
        );

}


/* =========================================================
   SLIDER
========================================================= */

.testimonial-slider{

    margin-top:70px;

    overflow:hidden;

    width:100%;

    position:relative;

}

.testimonial-track{

    display:flex;

    gap:28px;

    align-items:stretch;

    width:max-content;

    will-change:transform;

}


/* =========================================================
   CARD
========================================================= */

.testimonial-card{

    position:relative;

    width:360px;

    min-height:320px;

    flex-shrink:0;

    overflow:hidden;

    padding:35px;

    border-radius:32px;

    color:#fff;

    box-shadow:
        0 18px 45px rgba(0,0,0,.18);

    transition:.45s ease;

}


/* Hover */

.testimonial-card:hover{

    transform:

        translateY(-10px)

        rotate(-1deg)

        scale(1.03);

}


/* =========================================================
   DIFFERENT COLOR FOR EVERY CARD
========================================================= */


.testimonial-card:nth-child(8n+1){

background:
linear-gradient(135deg,#FF6B6B,#FFB347);

}

.testimonial-card:nth-child(8n+2){

background:
linear-gradient(135deg,#00C6A7,#22C55E);

}

.testimonial-card:nth-child(8n+3){

background:
linear-gradient(135deg,#4F8CFF,#7C4DFF);

}

.testimonial-card:nth-child(8n+4){

background:
linear-gradient(135deg,#EC4899,#8B5CF6);

}

.testimonial-card:nth-child(8n+5){

background:
linear-gradient(135deg,#F97316,#EF4444);

}

.testimonial-card:nth-child(8n+6){

background:
linear-gradient(135deg,#14B8A6,#3B82F6);

}

.testimonial-card:nth-child(8n+7){

background:
linear-gradient(135deg,#10B981,#06B6D4);

}

.testimonial-card:nth-child(8n){

background:
linear-gradient(135deg,#8B5CF6,#3B82F6);

}


/* =========================================================
   GLOW
========================================================= */

.testimonial-card::before{

content:"";

position:absolute;

width:240px;

height:240px;

border-radius:50%;

background:

rgba(255,255,255,.12);

top:-90px;

right:-70px;

}


/* =========================================================
   QUOTE ICON
========================================================= */

.quote-icon{

position:absolute;

top:20px;

right:30px;

font-size:100px;

line-height:1;

opacity:.12;

font-family:Georgia;

}


/* =========================================================
   STARS
========================================================= */

.stars{

font-size:22px;

letter-spacing:4px;

color:#FFD84D;

margin-bottom:25px;

}


/* =========================================================
   PARAGRAPH
========================================================= */

.testimonial-card p{

line-height:1.9;

font-size:16px;

margin-bottom:35px;

opacity:.96;

}


/* =========================================================
   AUTHOR
========================================================= */

.author{

display:flex;

align-items:center;

gap:15px;

margin-top:auto;

}

.author img{

width:62px;

height:62px;

border-radius:50%;

object-fit:cover;

border:3px solid rgba(255,255,255,.25);

box-shadow:

0 8px 20px rgba(0,0,0,.2);

}


.author h4{

margin:0;

font-size:18px;

font-weight:700;

}


.author span{

display:block;

margin-top:4px;

font-size:14px;

opacity:.85;

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:768px){

.testimonial-card{

width:300px;

padding:28px;

}

}

#intake{
    background: linear-gradient(
  135deg,
  #E11D48 0%,
  #F97316 50%,
  #FACC15 100%
);
}

/* =========================================================
   About Section
========================================================= */

/*======================================
  ABOUT SECTION
======================================*/

.about-section{
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background:
        radial-gradient(circle at top left, rgba(255,220,80,.45) 0%, transparent 28%),
        radial-gradient(circle at top right, rgba(255,165,200,.35) 0%, transparent 25%),
        radial-gradient(circle at bottom right, rgba(120,220,255,.40) 0%, transparent 30%),
        radial-gradient(circle at bottom left, rgba(170,255,170,.30) 0%, transparent 25%),
        linear-gradient(135deg,#FFFDF8,#F5FCFF,#FFF7FB);
}

/* Floating Decorations */

.about-section::before{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#FFD54F;
    border-radius:50%;
    top:-70px;
    left:-70px;
    opacity:.25;
}

.about-section::after{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:#7DDCFF;
    border-radius:50%;
    bottom:-90px;
    right:-90px;
    opacity:.20;
}

/*======================================
  TAG
======================================*/

.about-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:10px 22px;

    border-radius:50px;

    color:#fff;

    font-size:.95rem;
    font-weight:700;

    background:linear-gradient(135deg,#FFA726,#FFD54F);

    box-shadow:0 10px 25px rgba(255,170,40,.35);
}

/*======================================
  HEADING
======================================*/

.about-title{

    margin-top:20px;

    font-size:3.2rem;

    font-weight:800;

    line-height:1.2;

    color:#25324B;
}

.about-title span{

    background:linear-gradient(90deg,#4B7BFF,#00C7A5);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;
}

/*======================================
  PARAGRAPH
======================================*/

.about-text{

    margin-top:22px;

    color:#5F6B7B;

    font-size:1.08rem;

    line-height:1.95;
}

/*======================================
  IMAGE
======================================*/

.about-image{

    position:relative;
}

.about-image img{

    width:100%;

    border-radius:35px;

    border:10px solid #fff;

    box-shadow:
    0 25px 70px rgba(0,0,0,.15);

    position:relative;

    z-index:5;

    animation:floatImage 5s ease-in-out infinite;
}

@keyframes floatImage{

    0%,100%{

        transform:translateY(0);
    }

    50%{

        transform:translateY(-12px);
    }

}

/* Decorative Shapes */

.shape{

    position:absolute;

    border-radius:50%;
}

.shape-one{

    width:180px;
    height:180px;

    background:#FFE45C;

    top:-40px;
    left:-40px;

    opacity:.70;

    z-index:1;
}

.shape-two{

    width:220px;
    height:220px;

    background:#82D9FF;

    bottom:-45px;
    right:-45px;

    opacity:.60;

    z-index:1;
}

/*======================================
  FEATURE CARDS
======================================*/

.feature-card{

    background:#fff;

    padding:28px;

    border-radius:28px;

    height:100%;

    text-align:center;

    position:relative;

    transition:.35s ease;

    box-shadow:0 18px 45px rgba(0,0,0,.08);

    border:3px solid transparent;

    background-image:
    linear-gradient(#fff,#fff),
    linear-gradient(135deg,#FFD54F,#6ED9FF,#FFA6C9);

    background-origin:border-box;

    background-clip:padding-box,border-box;
}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 28px 55px rgba(0,0,0,.12);
}

/* Feature Icon */

.feature-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#FFD54F,#FF9800);

    color:#fff;

    font-size:30px;

    box-shadow:0 10px 25px rgba(255,165,0,.30);
}

.feature-card h5{

    margin:18px 0 12px;

    font-weight:700;

    color:#27344A;
}

.feature-card p{

    margin:0;

    color:#697688;

    font-size:.95rem;

    line-height:1.7;
}

/*======================================
  RESPONSIVE
======================================*/

@media (max-width:1200px){

    .about-title{

        font-size:2.8rem;
    }

}

@media (max-width:991px){

    .about-section{

        padding:70px 0;
    }

    .about-title{

        font-size:2.4rem;

        margin-top:15px;
    }

    .about-image{

        margin-top:40px;
    }

}

@media (max-width:767px){

    .about-section{

        text-align:center;
    }

    .about-title{

        font-size:2rem;
    }

    .about-text{

        font-size:1rem;
    }

    .feature-card{

        margin-bottom:20px;
    }

    .shape-one{

        width:120px;
        height:120px;
    }

    .shape-two{

        width:150px;
        height:150px;
    }

}

@media (max-width:576px){

    .about-title{

        font-size:1.8rem;
    }

    .about-tag{

        font-size:.85rem;

        padding:8px 18px;
    }

}

/*=========================
Founder Section
==========================*/

.founder-section{
    position:relative;
    padding:100px 0;
    overflow:hidden;
    background:linear-gradient(90deg,#ffffff 0%,#ffffff 60%,#F0FFF8 60%,#F0FFF8 100%);
}

.founder-section::before{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:#FFEFD0;
    top:-120px;
    right:-120px;
    transform:rotate(45deg);
}

.founder-section::after{
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    background:#E6F1FF;
    bottom:-90px;
    left:-90px;
    transform:rotate(25deg);
}

/*=========================
Content
==========================*/

.founder-content{
    position:relative;
    z-index:2;
}

.section-label{
    display:inline-block;
    padding:8px 20px;
    background:#FFE6B3;
    color:#D97706;
    font-size:.9rem;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.founder-content h2{
    margin:25px 0;
    font-size:3.1rem;
    line-height:1.2;
    font-weight:800;
    color:#23324B;
}

.founder-content h2 span{
    color:#10B981;
}

.founder-line{
    width:90px;
    height:6px;
    background:linear-gradient(90deg,#FF8A65,#10B981);
    margin-bottom:30px;
}

.founder-content p{
    font-size:1.05rem;
    line-height:2;
    color:#64748B;
    margin-bottom:22px;
}

/*=========================
Profile
==========================*/

.founder-profile{
    display:flex;
    align-items:center;
    gap:20px;
    margin-top:45px;
}

.profile-border{
    width:6px;
    height:70px;
    background:linear-gradient(#FF8A65,#10B981);
}

.founder-profile h4{
    margin:0;
    font-size:1.4rem;
    font-weight:700;
    color:#1E293B;
}

.founder-profile span{
    color:#0F766E;
    font-weight:600;
    letter-spacing:.5px;
}

/*=========================
Image
==========================*/

.founder-image-wrapper{
    position:relative;
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:600px;
}

.bg-box{
    position:absolute;
    transition:.5s;
}

.bg-one{
    width:330px;
    height:430px;
    background:#FFD166;
    transform:rotate(-8deg);
    left:40px;
    top:60px;
}

.bg-two{
    width:330px;
    height:430px;
    background:#7DD3FC;
    transform:rotate(8deg);
    right:40px;
    bottom:50px;
}

.founder-img{
    position:relative;
    width:360px;
    height:470px;
    object-fit:cover;
    z-index:5;
    box-shadow:0 30px 60px rgba(0,0,0,.15);
    transition:.4s;
}

.founder-image-wrapper:hover .founder-img{
    transform:translateY(-10px) scale(1.02);
}

.founder-image-wrapper:hover .bg-one{
    transform:rotate(-12deg);
}

.founder-image-wrapper:hover .bg-two{
    transform:rotate(12deg);
}

/*=========================
Floating Card
==========================*/

.experience-card{
    position:absolute;
    bottom:35px;
    left:0;
    padding:18px 28px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(14px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
    border-left:5px solid #10B981;
    z-index:10;
}

.experience-card h3{
    margin:0;
    font-size:2rem;
    color:#10B981;
    font-weight:800;
}

.experience-card p{
    margin:5px 0 0;
    font-size:.95rem;
    color:#555;
}

/*=========================
Responsive
==========================*/

@media(max-width:1200px){

.founder-content h2{
    font-size:2.7rem;
}

.bg-one,
.bg-two{
    width:290px;
    height:390px;
}

.founder-img{
    width:320px;
    height:430px;
}

}

@media(max-width:991px){

.founder-section{
    background:#fff;
    padding:70px 0;
}

.founder-content{
    text-align:center;
}

.founder-line{
    margin:0 auto 30px;
}

.founder-profile{
    justify-content:center;
}

.founder-image-wrapper{
    margin-top:40px;
    min-height:500px;
}

.bg-one{
    left:20px;
}

.bg-two{
    right:20px;
}

.experience-card{
    left:50%;
    transform:translateX(-50%);
}

}

@media(max-width:768px){

.founder-content h2{
    font-size:2.2rem;
}

.bg-one,
.bg-two{
    width:240px;
    height:320px;
}

.founder-img{
    width:260px;
    height:350px;
}

.profile-border{
    display:none;
}

.founder-profile{
    flex-direction:column;
    gap:8px;
}

}

@media(max-width:576px){

.founder-content h2{
    font-size:1.8rem;
}

.founder-content p{
    font-size:1rem;
}

.bg-one,
.bg-two{
    width:180px;
    height:250px;
}

.founder-img{
    width:210px;
    height:290px;
}

.experience-card{
    width:220px;
    text-align:center;
}

}

/*====================================
Vision & Mission
====================================*/

.vision-section{
padding:90px 0;
background:#FCFCFF;
}

.vm-badge{
display:inline-block;
padding:8px 20px;
background:#6C63FF;
color:#fff;
border-radius:30px;
font-weight:600;
}

.vision-section h2{
font-size:2.8rem;
font-weight:800;
margin-top:20px;
color:#24324A;
}

.vm-card{
padding:40px;
border-radius:25px;
height:100%;
transition:.35s;
position:relative;
overflow:hidden;
}

.vm-card h3{
font-weight:700;
margin-bottom:20px;
}

.vm-card p{
line-height:1.9;
margin:0;
color:#555;
}

.vision{
background:linear-gradient(135deg,#FFE0F4,#FFD1EC);
border-left:8px solid #FF4FA3;
}

.vision h3{
color:#D81B60;
}

.mission{
background:linear-gradient(135deg,#DDF4FF,#CBEAFF);
border-left:8px solid #2196F3;
}

.mission h3{
color:#1565C0;
}

.vm-card:hover{
transform:translateY(-10px);
box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.vm-card::before{
content:"";
position:absolute;
width:130px;
height:130px;
background:rgba(255,255,255,.25);
border-radius:50%;
top:-50px;
right:-50px;
}

.vm-sticker img{
max-width:180px;
animation:float 4s ease-in-out infinite;
}

@keyframes float{
50%{
transform:translateY(-12px) rotate(4deg);
}
}

@media(max-width:991px){

.vision-section h2{
font-size:2.2rem;
}

.vm-sticker{
margin:25px 0;
}

}

@media(max-width:576px){

.vision-section h2{
font-size:1.8rem;
}

.vm-card{
padding:30px;
}

.vm-sticker img{
max-width:140px;
}

}

.values-section{
padding:100px 0;
background:linear-gradient(180deg,#FFF9FB,#F5FBFF,#FFFDF5);
position:relative;
overflow:hidden;
}

.value-tag{
display:inline-block;
padding:8px 22px;
background:#7C4DFF;
color:#fff;
border-radius:30px;
font-weight:600;
}

.values-section h2{
margin:20px 0 15px;
font-size:3rem;
font-weight:800;
color:#23324A;
}

.values-section p{
color:#6B7280;
max-width:700px;
margin:auto;
line-height:1.8;
}

/*----------------*/

.book-page{
position:relative;
padding:40px;
min-height:300px;
border-radius:28px;
overflow:hidden;
transition:.35s;
box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.book-page:hover{
transform:translateY(-10px) rotate(-2deg);
box-shadow:0 30px 60px rgba(0,0,0,.15);
}

/* Folded Corner */

.book-page::after{
content:"";
position:absolute;
top:0;
right:0;
width:70px;
height:70px;
background:rgba(255,255,255,.55);
clip-path:polygon(100% 0,0 0,100% 100%);
}

/* Page Number */

.page-no{
position:absolute;
right:28px;
bottom:20px;
font-size:4rem;
font-weight:800;
opacity:.12;
color:rgba(255,255,255,.18);
}

/* Icon */

.page-icon{
width:90px;
height:90px;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:25px;
}

.page-icon img{
width:100%;
height:100%;
object-fit:contain;
transition:.35s;
}

.book-page:hover .page-icon img{
transform:rotate(-8deg) scale(1.08);
}

/* Text */

.book-page h3,
.book-page p{
color:#fff;
}

/* Colors */

.pink{
background:linear-gradient(135deg,#FF2E63,#FF6B9A);
color:#fff;
}

.blue{
background:linear-gradient(135deg,#0099FF,#00C6FF);
color:#fff;
}

.green{
background:linear-gradient(135deg,#00C853,#64DD17);
color:#fff;
}

.orange{
background:linear-gradient(135deg,#FF6D00,#FFB300);
color:#fff;
}

/* Decorative Shapes */

.book-page::before{
content:"";
position:absolute;
width:170px;
height:170px;
border-radius:50%;
background:rgba(255,255,255,.12);
top:-70px;
right:-70px;
}

/* Responsive */

@media(max-width:991px){

.values-section h2{
font-size:2.3rem;
}

}

@media(max-width:576px){

.values-section{
padding:70px 0;
}

.values-section h2{
font-size:1.8rem;
}

.book-page{
padding:30px;
min-height:auto;
}

.page-no{
font-size:3rem;
}

.page-icon{
width:60px;
height:60px;
font-size:1.5rem;
}

}

/*====================================
Seasonal Camp
====================================*/

.camp-highlight{
    background:
    linear-gradient(135deg,#FFF8E8 0%,#F6FAFF 55%,#FFF2F7 100%);
    overflow:hidden;
}

/* Heading */

.camp-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:50px;
    background:#FFE16A;
    color:#222;
    font-weight:700;
    letter-spacing:.5px;
}

.camp-title{
    font-size:3rem;
    font-weight:800;
    line-height:1.15;
    color:#1E293B;
}

.camp-title span{
    color:#FF6B6B;
}

.camp-text{
    color:#64748B;
    font-size:1.05rem;
    line-height:1.9;
}

/* Cards */

.feature-card{
    background:#fff;
    border-radius:22px;
    padding:25px;
    text-align:center;
    height:100%;
    box-shadow:
    0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:
    0 18px 45px rgba(0,0,0,.12);
}

.feature-card{
    font-size:34px;
}

.feature-card img {
    display: block;
    margin: 15px auto 0;
}


.feature-card p{
    color:#64748B;
    margin:0;
}

/* Image */

.image-wrapper{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.image-wrapper img{
    position:relative;
    z-index:2;
    border:8px solid #fff;
    max-width:100%;
}

/* Floating Shapes */

.shape{
    position:absolute;
    border-radius:50%;
    z-index:1;
    animation:float 6s ease-in-out infinite;
}

.yellow{
    width:180px;
    height:180px;
    background:#FFD93D;
    top:-35px;
    left:-25px;
}

/* .pink{
    width:140px;
    height:140px;
    background:#FF6B9D;
    right:-20px;
    bottom:20px;
} */

/* .blue{
    width:95px;
    height:95px;
    background:#67D4FF;
    top:45%;
    right:-40px;
} */

@keyframes float{
    0%,100%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-18px);
    }
}

/* Responsive */

@media(max-width:991px){
    .camp-title{
        font-size:2.3rem;
        text-align:center;
    }
    .camp-tag,
    .camp-text{
        text-align:center;
        display:block;
    }

    .feature-card{
        margin-bottom:15px;
    }

    .image-wrapper{
        margin-top:40px;
    }
}

@media(max-width:576px){
    .camp-title{
        font-size:1.9rem;
    }

    .feature-card{
        padding:20px;
    }
}

/*====================================
Summer Camp
====================================*/

.traincamp-section{
    padding:90px 20px;
background: linear-gradient(135deg, #6fd3ff 0%, #8ef7c5 35%, #fff176 70%, #ffffff 100%);
    overflow:hidden;
}

.traincamp-heading{
    text-align:center;
    margin-bottom:60px;
}

.traincamp-heading span{
    background:#ff9800;
    color:#fff;
    padding:8px 22px;
    border-radius:30px;
    font-weight:700;
}

.traincamp-heading h2{
    margin:18px 0 10px;
    font-size:2.8rem;
    color:#1e293b;
}

.traincamp-heading p{
    color:#64748b;
}

.traincamp-track{
    height:10px;
    background:repeating-linear-gradient(90deg,#444 0 40px,transparent 40px 60px),#8b5a2b;
    margin-bottom:120px;
    position:relative;
}

.traincamp-track::before{
    content:"";
    position:absolute;
    width:100%;
    height:3px;
    background:#444;
    top:-12px;
}

.traincamp-track::after{
    content:"";
    position:absolute;
    width:100%;
    height:3px;
    background:#444;
    bottom:-12px;
}

.traincamp-train{
    display:flex;
    gap:20px;
    align-items:flex-end;
    overflow-x:auto;
    padding-bottom:20px;
}

.traincamp-engine,
.traincamp-coach{
    min-width:220px;
    height:220px;
    border-radius:18px;
    position:relative;
    text-align:center;
    flex-shrink:0;
}

.traincamp-engine{
    background:#ff5e62;
}

.traincamp-window{
    width:80px;
    height:55px;
    background:#dff5ff;
    border-radius:10px;
    margin:25px auto;
}

.traincamp-smoke{
    width:22px;
    height:22px;
    background:#ddd;
    border-radius:50%;
    position:absolute;
    animation:smoke 3s infinite;
}

.s1{
    top:-20px;
    left:40px;
}

.s2{
    top:-55px;
    left:20px;
    animation-delay:1s;
}

.traincamp-coach{
    background:#fff;
    border:4px solid #ff9800;
    box-shadow:0 15px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.traincamp-coach:hover{
    transform:translateY(-12px);
}

.traincamp-icon{
    width:80px;
    height:80px;
    margin:18px auto;
    border-radius:50%;
    /* background:#ff9800; */
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
}

.traincamp-coach h3{
    color:#1e293b;
    margin-bottom:8px;
}

.traincamp-coach p{
    color:#64748b;
}

.traincamp-wheel{
    width:36px;
    height:36px;
    background:#333;
    border:6px solid #888;
    border-radius:50%;
    position:absolute;
    bottom:-18px;
    animation:wheel .8s linear infinite;
}

.traincamp-wheel:first-of-type{
    left:35px;
}

.traincamp-wheel:last-of-type{
    right:35px;
}

@keyframes smoke{
    0%{
        transform:translateY(0) scale(.5);
        opacity:1;
    }
    100%{
        transform:translateY(-60px) scale(2);
        opacity:0;
    }
}

@keyframes wheel{
    to{
        transform:rotate(360deg);
    }
}

@media(max-width:768px){
    .traincamp-heading h2{
        font-size:2rem;
    }

    .traincamp-train{
        padding-left:10px;
    }
}

/* =======================================================
   WINTER CAMP
======================================================= */

.wcamp-showcase-section{
    padding:120px 0;
background: linear-gradient(180deg, #7ec8ff 0%, #b8e6ff 35%, #dff5ff 65%, #fdfefe 100%);

    overflow:hidden;
}

.wcamp-header{
    max-width:760px;
    margin:auto auto 80px;
}

.wcamp-label{
    display:inline-block;
    padding:10px 20px;
    background:#DFF4FF;
    color:#0084C8;
    border-radius:100px;
    font-weight:700;
}

.wcamp-header h2{
    font-size:56px;
    margin:25px 0;
    font-weight:800;
    color:#1B2430;
}

.wcamp-header h2 span{
    color:#4AA8FF;
}

.wcamp-header p{
    color:#667085;
    line-height:1.9;
}

/* GRID */

.wcamp-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

/* LEFT */

.wcamp-sticky-panel{
    position:sticky;
    top:120px;
    height:fit-content;
}

.wcamp-image-box{
    position:relative;
}

.wcamp-image-box img{
    width:100%;
    border-radius:36px;
    display:block;
    box-shadow:
    0 30px 80px rgba(0,0,0,.15);
    transition:.5s;
}

/* floating */

.wcamp-badge{
    position:absolute;
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    font-size:28px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    animation:wcampFloat 4s ease-in-out infinite;
}

.wcamp-badge-one{
    left:-20px;
    top:40px;
}

.wcamp-badge-two{
    right:-20px;
    top:180px;
}

.wcamp-badge-three{
    bottom:30px;
    left:40px;
}
/* RIGHT */

.wcamp-content-column{
    display:flex;
    flex-direction:column;
    gap:40px;
}

.wcamp-card{
    padding:45px;
    border-radius:30px;
    background:#fff;
    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    border-left:6px solid transparent;
    min-height:280px;
}

.wcamp-card.active{
    background:
    linear-gradient(135deg,#57C5FF,#7F7CFF);
    color:white;
    transform:translateX(15px);
    border-left-color:#FFD93D;
}

.wcamp-card span{
    font-size:70px;
    font-weight:800;
    opacity:.18;
    display:block;
    margin-bottom:15px;
}

.wcamp-card h3{
    font-size:32px;
    margin-bottom:20px;
}

.wcamp-card p{
    line-height:1.9;
}

/* animation */

@keyframes wcampFloat{
    0%,100%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-14px);
    }
}

/* MOBILE */

@media(max-width:992px){
    .wcamp-layout{
        grid-template-columns:1fr;
    }
    .wcamp-sticky-panel{
        position:relative;
        top:0;
    }

    .wcamp-header h2{
        font-size:40px;
    }
}

@media(max-width:576px){
    .wcamp-card{
        padding:30px;
        min-height:auto;
    }

    .wcamp-header h2{
        font-size:32px;
    }
}

/*==========================================
SPRING CAMP
==========================================*/

.spcamp-section{
    padding:100px 0;
background: linear-gradient(180deg, #f8ffd8 0%, #d8ffd6 35%, #ffe6f2 70%, #fffdf6 100%);
    overflow:hidden;
}

.spcamp-heading{
    max-width:720px;
    margin:0 auto 70px;
    text-align:center;
}

.spcamp-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    background:#FFE8EF;
    color:#E84A7A;
    border-radius:100px;
    font-weight:700;
}

.spcamp-heading h2{
    margin:20px 0;
    font-size:54px;
    font-weight:800;
    color:#24324A;
}

.spcamp-heading h2 span{
    color:#6BCB77;
}

.spcamp-heading p{
    margin:0;
    line-height:1.8;
    color:#667085;
}

.spcamp-garden{
    display:grid;
    grid-template-columns:1fr 420px 1fr;
    grid-template-rows:auto auto;
    align-items:center;
    gap:40px;
}

.spcamp-center{
    grid-row:1 / span 2;
    display:flex;
    justify-content:center;
}

.spcamp-image-wrap{
    position:relative;
    width:420px;
    aspect-ratio:1;
    padding:14px;
    border-radius:42% 58% 65% 35% /
                  38% 34% 66% 62%;
    background:
    linear-gradient(135deg,#FFE6A7,#C8F5B6,#D6EEFF);
    animation:spcampBlob 10s infinite ease-in-out;
}

.spcamp-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:inherit;
    display:block;
}

.spcamp-card{
    background:#fff;
    padding:30px;
    border-radius:26px;
    box-shadow:
    0 18px 40px rgba(0,0,0,.07);
    transition:.35s;
}

.spcamp-card:hover{
    transform:translateY(-8px);
}

.spcamp-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#FFF5D9;
    font-size:30px;
    margin-bottom:18px;
}

.spcamp-card h4{
    margin:0 0 12px;
    font-size:24px;
    color:#24324A;
}

.spcamp-card p{
    margin:0;
    line-height:1.7;
    color:#667085;
}

@keyframes spcampBlob{
    0%,100%{

        border-radius:42% 58% 65% 35% /
                      38% 34% 66% 62%;
    }

    50%{
        border-radius:60% 40% 36% 64% /
                      56% 62% 38% 44%;
    }
}

@media(max-width:991px){
    .spcamp-garden{
        grid-template-columns:1fr;
        gap:30px;
    }

    .spcamp-center{
        grid-row:auto;
        order:-1;
    }

    .spcamp-image-wrap{
        width:320px;
    }

    .spcamp-heading h2{
        font-size:38px;
    }
}

@media(max-width:576px){
    .spcamp-section{
        padding:70px 0;
    }

    .spcamp-heading{
        margin-bottom:45px;
    }

    .spcamp-image-wrap{
        width:260px;
    }

    .spcamp-heading h2{
        font-size:30px;
    }

    .spcamp-card{
        padding:24px;
    }
}

/*==============================
  SKILL INTRO SECTION
===============================*/

.gk-skill-intro-section{
    position:relative;
    overflow:hidden;
    padding:110px 7%;
    background:linear-gradient(135deg,#FFF4B8 0%,#FFE3F3 30%,#D9F8FF 65%,#CFFFD9 100%);
}

/*==============================
 ABSTRACT SHAPES
===============================*/

.gk-skill-intro-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    top:-180px;
    left:-120px;
    background:#FFB703;
    border-radius:55% 45% 62% 38% / 43% 52% 48% 57%;
    transform:rotate(-18deg);
    opacity:.28;
    animation:gkBlobMove1 12s ease-in-out infinite;
}

.gk-skill-intro-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    bottom:-240px;
    right:-150px;
    background:#5BE7FF;
    border-radius:40% 60% 65% 35% / 55% 45% 55% 45%;
    opacity:.22;
    animation:gkBlobMove2 15s ease-in-out infinite;
}

/* Decorative zig-zag */

.gk-skill-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:80px;
    align-items:center;
    position:relative;
    z-index:5;
}

.gk-skill-container::before{
    content:"";
    position:absolute;
    width:180px;
    height:18px;
    background:repeating-linear-gradient(
        -45deg,
        #FF5F8F 0px,
        #FF5F8F 12px,
        transparent 12px,
        transparent 24px
    );
    top:-45px;
    right:120px;
    border-radius:30px;
}

.gk-skill-container::after{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border:8px dashed #32D74B;
    border-radius:30px;
    left:-40px;
    bottom:40px;
    transform:rotate(12deg);
    opacity:.4;
}

/*==============================
 LEFT CONTENT
===============================*/

.gk-skill-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#ff6a00;
    padding:14px 26px;
    border-radius:50px;
    font-weight:700;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:28px;
}

.gk-skill-left h2{
    font-size:62px;
    line-height:1.08;
    color:#27374d;
    margin-bottom:25px;
    font-weight:800;
}

.gk-skill-left h2 span{
    color:#ff4b7d;
}

.gk-skill-left p{
    font-size:18px;
    line-height:1.9;
    color:#4c5667;
    max-width:620px;
}

/*==============================
 FEATURE CARDS
===============================*/

.gk-skill-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:45px;
}

.gk-feature-card{
    background:#ffffff;
    padding:22px;
    border-radius:24px;
    display:flex;
    align-items:center;
    gap:16px;
    font-size:24px;
    font-weight:700;
    color:#333;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    transition:.4s;
}

.gk-feature-card:nth-child(1){
    border-top:6px solid #FF7A00;
}

.gk-feature-card:nth-child(2){
    border-top:6px solid #00B8FF;
}

.gk-feature-card:nth-child(3){
    border-top:6px solid #00C853;
}

.gk-feature-card:nth-child(4){
    border-top:6px solid #FF4D94;
}

.gk-feature-card:hover{
    transform:translateY(-10px) rotate(-1deg);
}

.gk-feature-card span{
    font-size:17px;
}

/*==============================
 IMAGE
===============================*/

.gk-main-card{
    position:relative;
}

.gk-main-card img{
    width:100%;
    display:block;
    border-radius:35px;
    border:10px solid #fff;
    box-shadow:0 35px 70px rgba(0,0,0,.12);
}

/*==============================
 FLOATING CARDS
===============================*/

.gk-floating-card{
    position:absolute;
    background:#fff;
    border-radius:24px;
    padding:18px;
    min-width:170px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    animation:gkFloat 5s ease-in-out infinite;
}

.gk-floating-card::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:24px;
    padding:3px;
    background:linear-gradient(45deg,#ff5f8f,#00c8ff,#ffd400);
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
            mask-composite:exclude;
}

.gk-floating-card h4{
    margin:10px 0 5px;
    font-size:18px;
}

.gk-floating-card p{
    margin:0;
    font-size:14px;
    color:#666;
}

.card-one{
    top:-25px;
    left:-30px;
}

.card-two{
    right:-35px;
    top:35%;
    animation-delay:1.5s;
}

.card-three{
    bottom:-20px;
    left:12%;
    animation-delay:3s;
}

/*==============================
 ANIMATIONS
===============================*/

@keyframes gkFloat{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

}

@keyframes gkBlobMove1{

0%,100%{
transform:translateY(0) rotate(-18deg);
}

50%{
transform:translateY(30px) rotate(10deg);
}

}

@keyframes gkBlobMove2{

0%,100%{
transform:translateY(0) rotate(0deg);
}

50%{
transform:translateY(-35px) rotate(-15deg);
}

}

/*==============================
 RESPONSIVE
===============================*/

@media(max-width:992px){

.gk-skill-container{
grid-template-columns:1fr;
text-align:center;
gap:60px;
}

.gk-skill-left p{
margin:auto;
}

.gk-skill-features{
grid-template-columns:repeat(2,1fr);
}

.card-one{
left:0;
}

.card-two{
right:0;
}

.card-three{
left:50%;
transform:translateX(-50%);
}

}

@media(max-width:768px){

.gk-skill-intro-section{
padding:80px 25px;
}

.gk-skill-left h2{
font-size:42px;
}

.gk-skill-features{
grid-template-columns:1fr;
}

.gk-floating-card{
position:relative;
left:auto;
right:auto;
top:auto;
bottom:auto;
margin-top:18px;
}

.gk-main-card{
display:flex;
flex-direction:column;
gap:15px;
}

.gk-skill-container::before,
.gk-skill-container::after{
display:none;
}

}

@media(max-width:480px){

.gk-skill-left h2{
font-size:34px;
}

.gk-skill-left p{
font-size:16px;
}

.gk-skill-tag{
font-size:14px;
padding:12px 18px;
}

}
/*==============================
SECTION
==============================*/

.gks-course-section{
    padding:90px 0;
    background:linear-gradient(135deg,#FFF7D6,#FFE6F3,#DFF8FF,#E6FFE9);
    position:relative;
    overflow:hidden;
}

.gks-subtitle{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    border-radius:50px;
    color:#ff6600;
    font-weight:700;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.gks-title{
    font-size:48px;
    font-weight:800;
    margin:20px 0 15px;
    color:#253858;
}

.gks-desc{
    max-width:700px;
    margin:auto;
    color:#666;
}

/*==============================
CARD
==============================*/

.gks-course-card{
    position:relative;
    overflow:hidden;
    background:#fff;
    border-radius:28px;
    padding:35px 25px;
    text-align:center;
    transition:.4s;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
}

.gks-course-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,.15);
}

/*==============================
TOP COLOR BAR
==============================*/

.gks-course-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:8px;
}

/*==============================
COLORS
==============================*/

.gks-orange::before{
    background:#ff8a00;
}

.gks-blue::before{
    background:#00b8ff;
}

.gks-pink::before{
    background:#ff4da6;
}

.gks-green::before{
    background:#19c37d;
}

.gks-yellow::before{
    background:#ffc107;
}

.gks-purple::before{
    background:#8e44ff;
}

.gks-cyan::before{
    background:#00d9ff;
}

.gks-red::before{
    background:#ff5252;
}

.gks-teal::before{
    background:#00c9a7;
}

.gks-indigo::before{
    background:#536dfe;
}

.gks-lime::before{
    background:#8bc34a;
}

.gks-violet::before{
    background:#9c27b0;
}

/*==============================
ICON
==============================*/

.gks-course-icon{
    width:110px;
    height:110px;
    border-radius:50%;
    background:#f7f7f7;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.gks-course-card:hover .gks-course-icon{
    transform:rotate(8deg) scale(1.08);
}

.gks-course-icon img{
    width:70px;
}

/*==============================
AGE BADGE
==============================*/

.gks-age{
    display:inline-block;
    margin-top:22px;
    padding:8px 18px;
    border-radius:30px;
    background:#f2f5ff;
    color:#555;
    font-size:14px;
    font-weight:700;
}

.gks-course-card h3{
    margin:18px 0 12px;
    font-size:25px;
    font-weight:800;
    color:#263238;
}

.gks-course-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:25px;
}

/*==============================
BUTTON
==============================*/

.gks-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:13px 30px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#ff7a00,#ff4081);
    color:#fff;
    font-weight:700;
    transition:.35s;
    text-decoration:none;
}

.gks-btn:hover{
    color:#fff;
    transform:translateY(-3px);
}

/*==============================
SHINE EFFECT
==============================*/

.gks-course-card::after{
    content:"";
    position:absolute;
    width:80px;
    height:250%;
    background:rgba(255,255,255,.45);
    top:-100%;
    left:-100px;
    transform:rotate(25deg);
    transition:.8s;
}

.gks-course-card:hover::after{
    left:130%;
}

/*==============================
MODAL
==============================*/

.gks-modal{
    border-radius:25px;
    border:none;
    overflow:hidden;
}

.gks-modal .modal-header{
    background:linear-gradient(135deg,#ff8a00,#ff4d94);
    color:#fff;
    border:none;
}

.gks-modal .btn-close{
    filter:invert(1);
}

#gksModalContent{
    padding:10px;
}

.gks-popup-heading{
    color:#ff6b35;
    font-size:24px;
    margin:25px 0 15px;
}

.gks-list{
    padding-left:18px;
}

.gks-list li{
    margin-bottom:10px;
    line-height:1.8;
}

.gks-enquiry-btn{
    display:inline-block;
    margin-top:25px;
    background:#ff6b35;
    color:#fff;
    padding:12px 28px;
    border-radius:40px;
    text-decoration:none;
}

.gks-enquiry-btn:hover{
    color:#fff;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.gks-title{
    font-size:38px;
}

}

@media(max-width:767px){

.gks-title{
    font-size:30px;
}

.gks-course-card{
    padding:30px 20px;
}

.gks-course-icon{
    width:90px;
    height:90px;
}

.gks-course-icon img{
    width:60px;
}

}