.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    transition: 0.3s ease;
}

/* Primary Button */
.btn-primary-custom {
    background: #6A3D9A;
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.btn-primary-custom:hover {
    background: #E58A1F;
    transform: translateY(-3px);
    color: #fff;
}


/* Outline Button */
.btn-outline-custom {
    border: 2px solid #6A3D9A;
    color: #6A3D9A;
    background: transparent;
}

.btn-outline-custom:hover {
    background: #E58A1F;
    border: 2px solid #E58A1F;
    color: #fff;
    transform: translateY(-3px);
}

/* Home page kids section */

.kids-feature-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

/* CARD */
.kids-feature-box {
    padding: 42px 28px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: #fff;

    box-shadow: 0 12px 28px rgba(0,0,0,0.15);

    animation: floatIdle 4s ease-in-out infinite;

    transition: all 0.35s ease;
}

/* ===== BRIGHT COLORS (VIBRANT KIDS STYLE) ===== */
.kfb-one {
    background: linear-gradient(135deg, #ff3cac, #784ba0, #2b86c5);
}

.kfb-two {
    background: linear-gradient(135deg, #ff512f, #dd2476);
}

.kfb-three {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.kfb-four {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

/* TEXT */
.kids-feature-box h3 {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
    color: #fff;
}

.kids-feature-box p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 22px;
}

/* ICON WRAPPER */
.kids-feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    animation: iconBounce 2s infinite ease-in-out;
}

/* IMAGE STYLE */
.kids-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ========================= */
/* 🔥 HOVER - STRONG MOVEMENT */
/* ========================= */
.kids-feature-box:hover {
    animation: wiggle 0.4s ease-in-out;
    transform: translateY(-18px) scale(1.08) rotate(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
}

/* glow burst */
.kids-feature-box:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

/* floating idle */
@keyframes floatIdle {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* icon bounce */
@keyframes iconBounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(-10px) scale(1.05) rotate(5deg); }
    100% { transform: translateY(0); }
}

/* wiggle effect on hover */
@keyframes wiggle {
    0% { transform: translateY(-18px) rotate(0deg); }
    25% { transform: translateY(-18px) rotate(-3deg); }
    50% { transform: translateY(-18px) rotate(3deg); }
    75% { transform: translateY(-18px) rotate(-2deg); }
    100% { transform: translateY(-18px) rotate(2deg); }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .kids-feature-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .kids-feature-section {
        grid-template-columns: 1fr;
    }
}

.features_heading h1{
      font-family: "Cherry Bomb One", cursive;
  color: #6A3D9A;
}

/*=============vision & Mission=============
==========================================*/

.ckx-spark-section{
    position: relative;
    overflow: hidden;
    padding: 50px 20px;
    background:
        linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
}

/* Floating Background Shapes */

.ckx-floating-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.25;
    animation: ckxFloat 8s infinite ease-in-out;
}

.ckx-shape-one{
    width: 220px;
    height: 220px;
    background: #ffcc70;
    top: -60px;
    left: -60px;
}

.ckx-shape-two{
    width: 280px;
    height: 280px;
    background: #ff6ec7;
    bottom: -100px;
    right: -80px;
    animation-delay: 2s;
}

.ckx-shape-three{
    width: 160px;
    height: 160px;
    background: #7cffc4;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

@keyframes ckxFloat{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-25px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* Wrapper */

.ckx-spark-wrapper{
    max-width: 1250px;
    margin: auto;
    position: relative;
    z-index: 2;
}

/* Heading */

.ckx-heading-area{
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.ckx-mini-title{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-family: "Cherry Bomb One", cursive;
}

.ckx-heading-area h2{
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: "Cherry Bomb One", cursive;
}

.ckx-heading-area p{
    max-width: 760px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
}

/* Grid */

.ckx-purpose-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* Cards */

.ckx-purpose-card{
    position: relative;
    overflow: hidden;
    padding: 50px 40px;
    border-radius: 35px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.18);
    transition: all 0.45s ease;
}

.ckx-purpose-card:hover{
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(0,0,0,0.28);
}

.ckx-card-glow{
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

/* Icon */

.ckx-icon-wrap{
    width: 150px;
    height: 150px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffcc70, #ff6ec7);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
    box-shadow: 0 15px 35px rgba(0,0,0,0.22);
    padding: 12px;
    position: relative;
    overflow: hidden;
}

.ckx-icon-wrap::before{
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: rgba(255,255,255,0.15);
    top: -20%;
    left: -20%;
    border-radius: 50%;
}

/* Titles */

.ckx-purpose-card h3{
    color: #fff;
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Text */

.ckx-purpose-card p{
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* Decorative Line */

.ckx-card-line{
    width: 80px;
    height: 5px;
    border-radius: 50px;
    background: linear-gradient(to right, #ffcc70, #ff6ec7);
}

.ckx-icon-wrap img{
    width: 115px;
    height: 115px;
    object-fit: contain;

    display: block;
    margin: auto;

    position: relative;
    z-index: 2;

    transition: transform 0.4s ease;
}

.ckx-purpose-card:hover .ckx-icon-wrap img{
    transform: scale(1.25) rotate(-4deg);
}

/* ===== Responsive ===== */

@media (max-width: 992px){

    .ckx-heading-area h2{
        font-size: 42px;
    }

    .ckx-purpose-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px){

    .ckx-spark-section{
        padding: 90px 18px;
    }

    .ckx-heading-area h2{
        font-size: 34px;
    }

    .ckx-heading-area p{
        font-size: 16px;
    }

    .ckx-purpose-card{
        padding: 40px 28px;
    }

    .ckx-purpose-card h3{
        font-size: 28px;
    }
}

@media (max-width: 480px){

    .ckx-heading-area h2{
        font-size: 28px;
    }

    .ckx-purpose-card{
        border-radius: 28px;
    }

    .ckx-icon-wrap{
        width: 90px;
        height: 90px;
        border-radius: 22px;
    }

    .ckx-purpose-card p{
        font-size: 15px;
        line-height: 1.8;
    }
}

/* ===== Our Core Values ===== */

.ckj-section{
    padding: 90px 20px;
background:
        radial-gradient(circle at 10% 10%, rgba(108,99,255,0.15), transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255,79,216,0.15), transparent 45%),
        radial-gradient(circle at 50% 100%, rgba(0,200,150,0.12), transparent 45%),
        linear-gradient(135deg, #f7faff, #fff3fb);}

/* ===== HEADER ===== */

.ckj-header{
    text-align: center;
    max-width: 750px;
    margin: auto auto 60px;
}

.ckj-header span{
    background: linear-gradient(135deg,#6c63ff,#ff4fd8);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.ckj-header h2{
    font-size: 42px;
    margin: 18px 0;
    font-weight: 900;
	color: #6A3D9A;
    font-family: "Cherry Bomb One", cursive;

}

.ckj-header p{
    color: #666;
    font-size: 16px;
    line-height: 1.8;
}

/* ===== TIMELINE ===== */

.ckj-timeline{
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* CENTER LINE */

.ckj-timeline::before{
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom,#6c63ff,#ff4fd8);
    left: 50%;
    transform: translateX(-50%);
}

/* ITEM */

.ckj-item{
    position: relative;
    width: 50%;
    padding: 20px 40px;
}

/* LEFT RIGHT POSITION */

.ckj-item.left{
    left: 0;
    text-align: right;
}

.ckj-item.right{
    left: 50%;
    text-align: left;
}

/* DOT */

.ckj-dot{
    position: absolute;
    width: 14px;
    height: 14px;
    background: #ff4fd8;
    border-radius: 50%;
    top: 28px;
    z-index: 2;
    box-shadow: 0 0 0 6px rgba(255,79,216,0.15);
}

.ckj-item.left .ckj-dot{
    right: -7px;
}

.ckj-item.right .ckj-dot{
    left: -7px;
}

/* CONTENT BOX */

.ckj-content{
    position: relative;
    padding: 22px 24px;
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.95),
        rgba(255, 245, 255, 0.85),
        rgba(240, 250, 255, 0.9)
    );

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255,255,255,0.6);

    box-shadow:
        0 12px 30px rgba(108, 99, 255, 0.12),
        0 6px 20px rgba(255, 79, 216, 0.08);

    transition: all .35s ease;

    overflow: hidden;
}

.ckj-content::before{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255,79,216,0.25), transparent 70%);
    top: -40px;
    right: -40px;
    border-radius: 50%;
    transition: .4s ease;
}

.ckj-content:hover{
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 18px 45px rgba(108, 99, 255, 0.18),
        0 10px 25px rgba(255, 79, 216, 0.12);
}

.ckj-content:hover::before{
    transform: scale(1.4);
    opacity: 0.8;
}

.ckj-content h3{
    font-size: 20px;
    margin-bottom: 8px;
    color: #222;
}

.ckj-content p{
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===== RESPONSIVE ===== */

@media(max-width: 768px){

    .ckj-timeline::before{
        left: 10px;
    }

    .ckj-item{
        width: 100%;
        padding-left: 40px;
        text-align: left !important;
    }

    .ckj-item.left,
    .ckj-item.right{
        left: 0;
    }

    .ckj-dot{
        left: 0 !important;
    }

    .ckj-header h2{
        font-size: 30px;
    }
}

/*================Eco Learning============
=======================================*/

.ckeco-section{
    padding: 90px 20px;

    background:
        radial-gradient(circle at 20% 20%, rgba(0,200,150,0.12), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(108,99,255,0.12), transparent 45%),
        linear-gradient(135deg, #f6fff9, #f7faff);
}

/* ===== CONTAINER ===== */

.ckeco-container{
    max-width: 1200px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* ===== LEFT SIDE ===== */

.ckeco-left{
    flex: 1;
}

.ckeco-badge{
    display: inline-block;
    background: linear-gradient(135deg,#00c896,#6c63ff);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.ckeco-left h2{
    font-size: 44px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
    	color: #6A3D9A;
    font-family: "Cherry Bomb One", cursive;
}

.ckeco-desc{
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* ===== LIST ===== */

.ckeco-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 14px;
}

.ckeco-item{
    background: #fff;
    padding: 14px 16px;
    border-radius: 14px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.05);

    font-size: 15px;
    font-weight: 600;
    color: #333;

    transition: 0.3s ease;
    cursor: pointer;
}

.ckeco-item:hover{
    transform: translateY(-4px);
    background: linear-gradient(135deg,#eafff6,#f0f5ff);
}

/* ===== RIGHT IMAGE ===== */

.ckeco-right{
    flex: 1;
    display: flex;
    justify-content: center;
}

.ckeco-image-box{
    width: 100%;
    max-width: 420px;

    border-radius: 30px;
    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(0,0,0,0.15);

    position: relative;
}

/* image animation */
.ckeco-image-box img{
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.ckeco-image-box:hover img{
    transform: scale(1.05);
}

/* glow effect */
.ckeco-image-box::before{
    content: "";
    position: absolute;
    inset: -20px;

    background: radial-gradient(circle, rgba(0,200,150,0.25), transparent 60%);
    z-index: -1;
    filter: blur(20px);
}

/* ===== RESPONSIVE ===== */

@media(max-width: 900px){
    .ckeco-container{
        flex-direction: column;
        text-align: center;
    }

    .ckeco-list{
        grid-template-columns: 1fr;
    }

    .ckeco-left h2{
        font-size: 32px;
    }
}

/*=======day care===========
==========================*/

.ck-daycare-section {
  width: 100%;
  padding: 70px 20px;
  background: linear-gradient(135deg, #ff00cc, #ffcc00, #00f5ff, #7cff00);
  background-size: 400% 400%;
  animation: ck-bgmove 10s ease infinite;
}

.ck-daycare-section h2{
	font-family: "Cherry Bomb One", cursive;
    font-weight: bold;
    text-align: center;
}

@keyframes ck-bgmove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Container */
.ck-daycare-container {
  max-width: 1100px;
  margin: auto;
}

/* Header */
.ck-daycare-header {
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}

.ck-daycare-header h2 {
  font-size: 42px;
  font-weight: 800;
  text-shadow: 2px 2px 0 #000;
}

.ck-daycare-header p {
  font-size: 18px;
  font-weight: 500;
}

/* GRID */
.ck-daycare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* CARD */
.ck-daycare-card {
  border-radius: 20px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s ease;
  border: 3px solid #fff;
}

.ck-daycare-card:hover {
  transform: scale(1.07) rotate(-1deg);
}

/* IMAGE */
.ck-daycare-img {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  filter: drop-shadow(2px 4px 2px rgba(0,0,0,0.3));
}

/* TEXT */
.ck-daycare-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.ck-daycare-card p {
  font-size: 14px;
  color: #111;
  font-weight: 500;
}

/* 🌈 BRIGHT COLORS */

.ck-bright-pink {
  background: linear-gradient(135deg, #ff006e, #ff4d6d);
  color: white;
}

.ck-bright-orange {
  background: linear-gradient(135deg, #ff7a00, #ffb703);
  color: white;
}

.ck-bright-blue {
  background: linear-gradient(135deg, #00bbf9, #00f5ff);
  color: #000;
}

.ck-bright-green {
  background: linear-gradient(135deg, #38b000, #70e000);
  color: #000;
}

/* FOOTER */
.ck-daycare-footer {
  text-align: center;
  margin-top: 35px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 0 #000;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .ck-daycare-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ck-daycare-grid {
    grid-template-columns: 1fr;
  }

  .ck-daycare-header h2 {
    font-size: 32px;
  }
}

/*=======nursery care===========
===============================*/

.ck-nursery-section {
  width: 100%;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #fff, #f0f7ff);
}

.ck-nursery-section h2{
    text-align: center;
    font-weight: bold;
    	font-family: "Cherry Bomb One", cursive;
}

.ck-nursery-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT SIDE */
.ck-nursery-left {
  flex: 1;
  text-align: center;
}

.ck-nursery-image {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.ck-nursery-image:hover {
  transform: scale(1.03);
}

/* RIGHT SIDE */
.ck-nursery-right {
  flex: 1;
}

.ck-nursery-right h2 {
  font-size: 38px;
  color: #6A3D9A;
  margin-bottom: 10px;
}

.ck-nursery-desc {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* FEATURES AS CHIPS */
.ck-nursery-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.ck-nursery-chip {
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}

.ck-nursery-chip:hover {
  transform: translateY(-4px);
}

/* BRIGHT CHIP COLORS */
.ck-chip-red {
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}

.ck-chip-blue {
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
}

.ck-chip-yellow {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #000;
}

.ck-chip-green {
  background: linear-gradient(135deg, #56ab2f, #a8e063);
}

.ck-chip-purple {
  background: linear-gradient(135deg, #8e2de2, #4a00e0);
}

/* TAGLINE */
.ck-nursery-tagline {
  margin-top: 10px;
  padding: 14px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ff512f, #dd2476);
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ck-nursery-container {
    flex-direction: column;
    text-align: center;
  }

  .ck-nursery-right h2 {
    font-size: 30px;
  }
}

/*==============ROUTINE CARE===========
=====================================*/

.ck-routine-section {
  width: 100%;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0fff4, #e6f7ff);
}

.ck-routine-section h2{
	font-family: "Cherry Bomb One", cursive;
    font-weight: bold;
}

.ck-routine-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* LEFT IMAGE */
.ck-routine-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.ck-routine-image {
  width: 500px;
  height: auto;
  /* border-radius: 50%; */
  /* object-fit: cover; */
  border: 8px solid #6A3D9A;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  transition: 0.3s ease;
}

.ck-routine-image:hover {
  transform: scale(1.05);
  border-color: #ff7a00;
}

/* RIGHT SIDE */
.ck-routine-right {
  flex: 1;
}

.ck-routine-right h2 {
  font-size: 36px;
  color: #0077b6;
  margin-bottom: 25px;
}

/* LIST */
.ck-routine-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ITEM CARD */
.ck-routine-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  border-left: 6px solid #00c896;
  transition: 0.3s ease;
}

.ck-routine-item:hover {
  transform: translateX(8px);
  border-left-color: #ff7a00;
}

/* ICON IMAGES */
.ck-routine-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* TEXT */
.ck-routine-item span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ck-routine-container {
    flex-direction: column;
    text-align: center;
  }

  .ck-routine-image {
    width: 250px;
    height: 250px;
  }

  .ck-routine-right h2 {
    font-size: 28px;
  }

  .ck-routine-item {
    justify-content: center;
  }
}

/*==============WHY CHOOSE US===========
========================================*/

.ck-why2-section {
  width: 100%;
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #e8f0ff, #ffffff);
}

.ck-why2-container {
  max-width: 1100px;
  margin: auto;
}

.ck-why2-title {
  text-align: center;
  font-size: 38px;
  color: #6A3D9A;
  margin-bottom: 50px;
  font-weight: 800;
  	font-family: "Cherry Bomb One", cursive;
}

/* GRID */
.ck-why2-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

/* LEFT & RIGHT COLUMNS */
.ck-why2-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* FEATURE BOX */
.ck-why2-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  border-left: 5px solid #6A3D9A;
}

.ck-why2-box:hover {
  transform: translateY(-6px);
  border-left-color: #ff7a00;
}

/* ICON IMAGE */
.ck-why2-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

/* TEXT */
.ck-why2-box span {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

/* CENTER BADGE */
.ck-why2-center {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ck-why2-badge {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #6A3D9A;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  animation: ckPulse 3s infinite ease-in-out;
}

/* subtle pulse */
@keyframes ckPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ck-why2-grid {
    flex-direction: column;
    text-align: center;
  }

  .ck-why2-box {
    justify-content: center;
  }

  .ck-why2-badge {
    width: 180px;
    height: 180px;
  }
}

/*===========SUMMER CAMP=========
===============================*/

.ck-summer-highlights{
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    #a8e6ff 0%,
    #c5b3ff 25%,
    #ffd6e7 50%,
    #fff0a6 75%,
    #b8f7c5 100%
  );
}

.ck-summer-container{
  max-width: 1200px;
  margin: auto;
}

.ck-summer-title{
  text-align: center;
  margin-bottom: 50px;
}

.ck-summer-title h2{
  font-size: 42px;
  color: #6A3D9A;
  margin-bottom: 15px;
  font-weight: 700;
  	font-family: "Cherry Bomb One", cursive;
}

.ck-summer-title p{
  max-width: 700px;
  margin: auto;
  font-size: 17px;
  line-height: 1.7;
  color: #666;
}

.ck-summer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.ck-summer-card{
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  transition: 0.4s ease;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.ck-summer-card:hover{
  transform: translateY(-10px);
}

.ck-card-one{
  background: linear-gradient(135deg, #ff7b7b, #ffb36b);
}

.ck-card-two{
  background: linear-gradient(135deg, #7b61ff, #b36bff);
}

.ck-card-three{
  background: linear-gradient(135deg, #00b894, #55efc4);
}

.ck-card-four{
  background: linear-gradient(135deg, #0984e3, #74b9ff);
}

.ck-card-image{
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ck-card-image img{
  width: 55px;
  height: 55px;
  object-fit: contain;
}

.ck-summer-card h3{
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #fff;
}

.ck-summer-card p{
  font-size: 15px;
  line-height: 1.7;
}

/* ===== Responsive ===== */

@media (max-width: 991px){

  .ck-summer-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .ck-summer-title h2{
    font-size: 34px;
  }

}

@media (max-width: 576px){

  .ck-summer-grid{
    grid-template-columns: 1fr;
  }

  .ck-summer-title h2{
    font-size: 28px;
  }

  .ck-summer-card{
    padding: 30px 20px;
  }

}

/*===========WINTER CAMP=========
===============================*/

.ck-winter-camp-section{
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    #b8ecff 0%,
    #9fd8ff 35%,
    #d6c6ff 70%,
    #ffffff 100%
  );
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.ck-winter-wrapper{
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ===== Left Content ===== */

.ck-winter-tag{
  display: inline-block;
  padding: 10px 18px;
  background: #dff4ff;
  color: #0077b6;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.ck-winter-content h2{
  font-size: 48px;
  line-height: 1.2;
  color: #6A3D9A;
  margin-bottom: 20px;
  font-weight: 700;
  	font-family: "Cherry Bomb One", cursive;
}

.ck-winter-content > p{
  font-size: 17px;
  line-height: 1.8;
  color: #5b6470;
  margin-bottom: 35px;
}

/* ===== Feature Items ===== */

.ck-winter-features{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 35px;
}

.ck-winter-item{
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.ck-winter-icon{
  min-width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #e0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.ck-winter-item h4{
  font-size: 20px;
  color: #111827;
  margin-bottom: 8px;
}

.ck-winter-item p{
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
}

/* ===== Button ===== */

.ck-winter-btn{
  display: inline-block;
  padding: 14px 30px;
  background: #6A3D9A;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s ease;
}

.ck-winter-btn:hover{
  background: #6A3D9A;
  transform: translateY(-3px);
}

/* ===== Right Side Cards ===== */

.ck-winter-cards{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ck-winter-card{
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.ck-winter-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.ck-winter-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.ck-winter-overlay h3{
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}

/* ===== Responsive ===== */

@media (max-width: 991px){

  .ck-winter-wrapper{
    grid-template-columns: 1fr;
  }

  .ck-winter-content h2{
    font-size: 38px;
  }

}

@media (max-width: 576px){

  .ck-winter-camp-section{
    padding: 70px 15px;
  }

  .ck-winter-content h2{
    font-size: 30px;
  }

  .ck-winter-item{
    flex-direction: column;
  }

  .ck-winter-card img{
    height: 240px;
  }

}

/*===========SPRING CAMP=========
==================================*/

.ck-spring-camp-area{
  position: relative;
  padding: 40px 20px;
  background: linear-gradient(
    135deg,
    #d4f8c4 0%,
    #fff7b2 30%,
    #ffd6e7 65%,
    #c8f1ff 100%
  );
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ===== Floating Shapes ===== */

.ck-spring-shape{
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.ck-spring-shape-one{
  width: 220px;
  height: 220px;
  background: rgba(255, 183, 77, 0.18);
  top: -60px;
  left: -60px;
}

.ck-spring-shape-two{
  width: 280px;
  height: 280px;
  background: rgba(76, 175, 80, 0.12);
  bottom: -100px;
  right: -100px;
}

/* ===== Container ===== */

.ck-spring-container{
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* ===== Heading ===== */

.ck-spring-heading{
  text-align: center;
  margin-bottom: 60px;
}

.ck-spring-heading span{
  display: inline-block;
  background: #e7f8ea;
  color: #2e7d32;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 18px;
}

.ck-spring-heading h2{
  font-size: 48px;
  color: #7DBB35;
  margin-bottom: 18px;
  font-weight: 700;
  	font-family: "Cherry Bomb One", cursive;
}

.ck-spring-heading p{
  max-width: 760px;
  margin: auto;
  color: #667085;
  line-height: 1.8;
  font-size: 17px;
}

/* ===== Grid ===== */

.ck-spring-grid{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 35px;
  align-items: stretch;
}

/* ===== Large Card ===== */

.ck-spring-large-card{
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.ck-spring-large-card img{
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.ck-spring-large-content{
  padding: 35px;
}

.ck-spring-large-content h3{
  font-size: 32px;
  color: #1d2939;
  margin-bottom: 15px;
}

.ck-spring-large-content p{
  color: #667085;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

/* ===== Button ===== */

.ck-spring-btn{
  display: inline-block;
  padding: 14px 28px;
  background: #E58A1F;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s ease;
}

.ck-spring-btn:hover{
  transform: translateY(-4px);
  background-color: #6A3D9A;
  box-shadow: 0 10px 20px rgba(67,160,71,0.3);
}

/* ===== Right Small Cards ===== */

.ck-spring-small-wrapper{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ck-spring-mini-card{
  background: #ffffff;
  padding: 25px;
  border-radius: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.ck-spring-mini-card:hover{
  transform: translateY(-6px);
}

.ck-spring-mini-icon{
  min-width: 70px;
  height: 70px;
  background: #f3fff4;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.ck-spring-mini-card h4{
  font-size: 22px;
  color: #1d2939;
  margin-bottom: 8px;
}

.ck-spring-mini-card p{
  color: #667085;
  line-height: 1.7;
  font-size: 15px;
}

/* ===== Responsive ===== */

@media (max-width: 991px){

  .ck-spring-grid{
    grid-template-columns: 1fr;
  }

  .ck-spring-heading h2{
    font-size: 38px;
  }

}

@media (max-width: 576px){

  .ck-spring-camp-area{
    padding: 70px 15px;
  }

  .ck-spring-heading h2{
    font-size: 30px;
  }

  .ck-spring-large-content{
    padding: 25px;
  }

  .ck-spring-large-content h3{
    font-size: 26px;
  }

  .ck-spring-mini-card{
    flex-direction: column;
  }

}

/*========about banner==========
===============================*/

/* MAIN BANNER WRAPPER */
.about-banner {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

/* IMAGE */
.about-banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* DARK OVERLAY */
.about-banner .banner-overlay {
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.55); */

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

/* CONTENT */
.banner-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
}

.banner-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: "Cherry Bomb One", cursive;
}

.banner-content p {
  margin-left: 100px;
    font-size: 25px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #6A3D9A;
    font-weight: 700;
}

/* BREADCRUMB */
.banner-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
}

.banner-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.banner-breadcrumb a:hover {
    color: #ff6b00;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-banner {
        height: 350px;
    }

    .banner-content h1 {
        font-size: 40px;
    }

    .banner-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-banner {
        height: 300px;
    }

    .banner-content h1 {
        font-size: 30px;
    }

    .banner-content p {
        font-size: 14px;
    }

    .banner-breadcrumb {
        font-size: 13px;
        flex-wrap: wrap;
    }
}

/*========Coaching==========
===============================*/

.ck-academic-galaxy-section{
    width:100%;
    padding:40px 20px;
background:
linear-gradient(
135deg,
#ffecd2 0%,
#fcb69f 25%,
#a1c4fd 50%,
#c2ffd8 75%,
#fddb92 100%
);
    overflow:hidden;
}

.ck-academic-galaxy-container{
    max-width:1300px;
    margin:auto;
}

.ck-academic-galaxy-heading{
    text-align:center;
    margin-bottom:60px;
}

.ck-academic-galaxy-tag{
    display:inline-block;
    background:#ff8a00;
    color:#fff;
    padding:10px 24px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.ck-academic-galaxy-heading h2{
    font-size:48px;
    line-height:1.3;
    color:#6A3D9A;
    margin-bottom:20px;
    font-weight:800;
    font-family: "Cherry Bomb One", cursive;
}

.ck-academic-galaxy-heading p{
    max-width:850px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

.ck-academic-galaxy-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.ck-academic-galaxy-card{
    position:relative;
    background:#fff;
    border-radius:30px;
    padding:35px 28px;
    transition:0.4s ease;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.ck-academic-galaxy-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#ff6b6b,#ffb347,#6c63ff,#00c9a7);
}

.ck-academic-galaxy-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 60px rgba(0,0,0,0.12);
}

.ck-academic-galaxy-icon{
    width:80px;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:24px;
    background:linear-gradient(135deg,#ffecd2,#fcb69f);
    font-size:36px;
    margin-bottom:25px;
}

.ck-academic-galaxy-card h3{
    font-size:24px;
    color:#222;
    margin-bottom:18px;
    font-weight:700;
}

.ck-academic-galaxy-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
    margin-bottom:22px;
}

.ck-academic-galaxy-card ul{
    padding:0;
    margin:0;
    list-style:none;
}

.ck-academic-galaxy-card ul li{
    position:relative;
    padding-left:26px;
    margin-bottom:12px;
    color:#444;
    font-size:15px;
    font-weight:500;
}

.ck-academic-galaxy-card ul li::before{
    content:'✔';
    position:absolute;
    left:0;
    top:0;
    color:#ff7b00;
    font-weight:bold;
}

/* =========================
Responsive Design
========================= */

@media(max-width:1200px){

    .ck-academic-galaxy-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:991px){

    .ck-academic-galaxy-heading h2{
        font-size:38px;
    }

    .ck-academic-galaxy-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .ck-academic-galaxy-section{
        padding:70px 15px;
    }

    .ck-academic-galaxy-heading h2{
        font-size:30px;
    }

    .ck-academic-galaxy-heading p{
        font-size:16px;
    }

    .ck-academic-galaxy-grid{
        grid-template-columns:1fr;
    }

    .ck-academic-galaxy-card{
        padding:30px 24px;
    }

}

/*============Gallery=============
===============================*/

/* MAIN SECTION */
.gallery-update-page{
  width:100%;
  min-height:100vh;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
  overflow:hidden;
  padding:30px;
  background:linear-gradient(135deg,#ffb3ec,#ffd166,#7bdff2,#b2f7ef);
  background-size:400% 400%;
  animation:galleryGradient 10s ease infinite;
}

/* ANIMATED BACKGROUND */
@keyframes galleryGradient{
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}

/* CARD */
.gallery-update-card{
  width:100%;
  max-width:700px;
  text-align:center;
  padding:50px 35px;
  border-radius:35px;
  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(10px);
  border:4px solid rgba(255,255,255,0.4);
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
  position:relative;
  z-index:2;
}

/* ICON */
.gallery-icon img{
  width:140px;
  max-width:100%;
  animation:galleryBounce 2s infinite;
}

@keyframes galleryBounce{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-12px);
  }
}


@media(max-width:768px){

  .gallery-icon img{
    width:100px;
  }

}

/* TITLE */
.gallery-update-card h1{
  font-size:3rem;
  margin-top:15px;
  color:#0000;
  text-shadow:3px 3px 0 #6A3D9A;
}

/* TEXT */
.gallery-update-card p{
  margin-top:20px;
  font-size:1.2rem;
  line-height:1.8;
  color:#000;
}

/* LOADER */
.gallery-loader{
  width:85px;
  height:85px;
  margin:35px auto;
  border-radius:50%;
  border:10px solid rgba(255,255,255,0.3);
  border-top:10px solid #fff;
  animation:gallerySpin 1s linear infinite;
}

@keyframes gallerySpin{
  100%{
    transform:rotate(360deg);
  }
}

/* BUTTON */
.gallery-btn{
  padding:14px 30px;
  border:none;
  border-radius:50px;
  background:#ff6b81;
  color:#fff;
  font-size:1.1rem;
  cursor:pointer;
  transition:0.3s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.gallery-btn:hover{
  transform:translateY(-3px) scale(1.05);
  background:#ff4770;
}

/* FLOATING ICONS */
.gallery-floating-shapes span{
  position:absolute;
  font-size:40px;
  animation:galleryFloat 6s infinite ease-in-out;
  opacity:0.8;
}

.gallery-floating-shapes span:nth-child(1){
  top:10%;
  left:10%;
}

.gallery-floating-shapes span:nth-child(2){
  top:18%;
  right:12%;
  animation-delay:1s;
}

.gallery-floating-shapes span:nth-child(3){
  bottom:12%;
  left:15%;
  animation-delay:2s;
}

.gallery-floating-shapes span:nth-child(4){
  bottom:10%;
  right:10%;
  animation-delay:3s;
}

@keyframes galleryFloat{
  0%,100%{
    transform:translateY(0) rotate(0deg);
  }
  50%{
    transform:translateY(-20px) rotate(10deg);
  }
}

/* RESPONSIVE */
@media(max-width:768px){

  .gallery-update-card{
    padding:40px 25px;
  }

  .gallery-update-card h1{
    font-size:2.2rem;
  }

  .gallery-update-card p{
    font-size:1rem;
  }

  .gallery-icon{
    font-size:70px;
  }
}

@media(max-width:480px){

  .gallery-update-card h1{
    font-size:1.8rem;
  }

  .gallery-btn{
    width:100%;
  }

  .gallery-floating-shapes span{
    font-size:28px;
  }
}

/*============skill development=============
============================================*/

/* main container */
.sd-container{
    max-width:1200px;
    margin:auto;
    padding:60px 20px;
}

/* layout */
.sd-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

/* left image */
.sd-image-box{
    flex:1;
}

.sd-image-box img{
    width:100%;
    max-width:450px;
    aspect-ratio:1/1;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* right content */
.sd-text-box{
    flex:1;
}

.sd-title{
    font-size:42px;
    color:#1f2937;
    margin-bottom:20px;
}

.sd-title span{
    color:#7c3aed;
}

.sd-desc{
    font-size:17px;
    line-height:1.8;
    color:#4b5563;
    margin-bottom:25px;
}

.sd-points{
    list-style:none;
    padding:0;
}

.sd-points li{
    background:#ffffff;
    margin-bottom:12px;
    padding:12px 15px;
    border-left:6px solid #7c3aed;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* button */
.sd-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 25px;
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
}

/* responsive */
@media(max-width:768px){
    .sd-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .sd-title{
        font-size:32px;
    }
}

.sda-wrapper{
    max-width:1300px;
    margin:auto;
}

.sda-main-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    color:#6A3D9A;
    margin-bottom:15px;
    	font-family: "Cherry Bomb One", cursive;
}

.sda-sub-title{
    text-align:center;
    color:#475569;
    font-size:18px;
    margin-bottom:60px;
}

.sda-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
}

.sda-card{
    perspective:1000px;
    height:320px;
}

.sda-card-inner{
    position:relative;
    width:100%;
    height:100%;
    transition:transform 0.8s;
    transform-style:preserve-3d;
}

.sda-card:hover .sda-card-inner{
    transform:rotateY(180deg);
}

.sda-front,
.sda-back{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:25px;
    backface-visibility:hidden;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.sda-front{
    padding:30px;
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.sda-icon-img{
    width:70px;
    height:70px;
    object-fit:contain;
    margin-bottom:25px;
}

.sda-front i{
    font-size:60px;
    margin-bottom:25px;
}

.sda-front h2{
    font-size:24px;
    margin-bottom:15px;
        color: #fff;
}

.sda-front p{
    font-size:15px;
    line-height:1.7;
}

.sda-back{
    background:#ffffff;
    transform:rotateY(180deg);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    padding:30px;
    text-align:center;
}

.sda-back h3{
    font-size:24px;
    color:#111827;
    margin-bottom:20px;
}

.sda-back p{
    color:#475569;
    line-height:1.8;
    margin-bottom:20px;
}

.sda-btn{
    text-decoration:none;
    padding:12px 28px;
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition: all 0.3s ease;
}

.sda-btn:hover{
    transform:scale(1.05);
    background: #E58A1F;
    color: #fff;
}

/* Colorful backgrounds */

.bg1{background:linear-gradient(135deg,#667eea,#764ba2);}
.bg2{background:linear-gradient(135deg,#ff9966,#ff5e62);}
.bg3{background:linear-gradient(135deg,#00b09b,#96c93d);}
.bg4{background:linear-gradient(135deg,#fc4a1a,#f7b733);}
.bg5{background:linear-gradient(135deg,#36d1dc,#5b86e5);}
.bg6{background:linear-gradient(135deg,#834d9b,#d04ed6);}
.bg7{background:linear-gradient(135deg,#11998e,#38ef7d);}
.bg8{background:linear-gradient(135deg,#ee0979,#ff6a00);}
.bg9{background:linear-gradient(135deg,#396afc,#2948ff);}
.bg10{background:linear-gradient(135deg,#ff512f,#dd2476);}
.bg11{background:linear-gradient(135deg,#141e30,#243b55);}
.bg12{background:linear-gradient(135deg,#ff758c,#ff7eb3);}

/* Responsive */

@media(max-width:768px){

    .sda-main-title{
        font-size:34px;
    }

    .sda-sub-title{
        font-size:16px;
    }

    .sda-card{
        height:300px;
    }
}

/*=============header banner=============
=======================================*/

.sk-hero-section{
    position:relative;
    width:100%;
    min-height:100vh;
    display:flex;
    height:auto;
    align-items:center;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

@media(max-width:768px){
    .sk-hero-section{
        min-height:auto;
        padding:80px 0;
    }
}

/* FULL IMAGE (HTML IMG STYLE BACKGROUND) */
.sk-hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position: 92% center;
    z-index:-2;
}

/* DARK OVERLAY */
.sk-hero-overlay{
    position:absolute;
    inset:0;
    z-index:-1;
}

/* CONTENT */
.sk-hero-content{
    width:100%;
    max-width:800px;
    padding:40px 8%;
    color:#fff;
}

/* HEADING */
.sk-hero-title{
    font-size:52px;
    font-weight:800;
    margin-bottom:20px;
    line-height:1.2;
    	font-family: "Cherry Bomb One", cursive;
      color: #6A3D9A;
}

.sk-hero-title span{
    color:#7DBB35;
}

/* PARAGRAPH */
.sk-hero-text{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
    color:#6A3D9A;
}

/* BUTTON GROUP */
.sk-btn-group{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* BUTTON STYLE */
.sk-btn{
    padding:12px 25px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    display: inline-block;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
    background: #fff;
    border: 2px solid #7c3aed;
    color: #7c3aed;
}

.sk-btn::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg,#7c3aed,#ec4899);
    transition: width 0.4s ease;
    z-index: 0;
}

.sk-btn{
    z-index: 1;
}

.sk-btn span{
    position: relative;
    z-index: 1;
}
.sk-btn:hover::before{
    width: 100%;
}

.sk-btn:hover{
    color: #fff;
}
/* PRIMARY */
.sk-btn-primary{
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    color:#fff;
}

/* SECONDARY */
.sk-btn-secondary{
    border:2px solid #fff;
    background:linear-gradient(135deg,#7c3aed,#ec4899);
    color:#fff;
}

/* RESPONSIVE */

@media(max-width:1024px){
    .sk-hero-image{
object-position: top center;
    }
}

@media(max-width:768px){

    .sk-hero-content{
        text-align:center;
        margin:auto;
    }

    .sk-hero-title{
        font-size:34px;
    }

    .sk-hero-text{
        font-size:16px;
    }

    .sk-btn-group{
        justify-content:center;
    }
}

/*==========whatsapp popup==================
==================================== */

/* Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 120px;
  right: -10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 20px; */
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

.whatsapp-btn img {

  object-fit: contain;
  transition: 0.3s ease;
}

.whatsapp-btn img:first-child {
  width: 170px;
  height: 170px;
 transform: translate(0, -15px);
}

.whatsapp-btn img:last-child {
  width: 75px;
  height: 75px;
   transform: translate(-30px, 35px);

}

.whatsapp-close-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* Left image */
.whatsapp-btn img:first-child {
  right: 0%;
}

/* Right image */
.whatsapp-btn img:last-child {
  right: 0;
}

.whatsapp-btn:hover img:first-child {
  left: -5px;
}

.whatsapp-btn:hover img:last-child {
  right: -5px;
}

  /* Chat Box */
  .chat-box {
    position: fixed;
    bottom: 160px;
    right: 28px;
    width: 280px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
      opacity: 0;                
  transform: translateY(20px); 
  pointer-events: none;        
  transition: all 0.5s ease; 
    z-index: 9999;
  }

  .chat-box.show {            
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

  .chat-header {
    background: #25D366;
    color: #fff;
    font-weight: bold;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content:center;
  }

  .chat-header-text{
    text-align: center;
  }

  /* Input fields */
.chat-body .form-control {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  color: #000;         
  background: #fff;
  box-shadow: none;
}

.chat-body .form-control::placeholder {
  color: #888;
  font-size: 12px;
}

/* Button */
.chat-btn {
  background: #25D366;
  border: none;
  padding: 6px 10px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}

  .whatsapp-close-btn {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
  }
  .whatsapp-close-btn:hover {
    color: #000;
  }

  .whatsapp-btn.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.5);
  transition: 0.3s ease;
}

  .chat-body {
    padding: 15px;
    font-size: 14px;
    color: #333;
  }

  .chat-body p {
    margin-bottom: 15px;
  }

#whatsappText {
  position: fixed;       
  bottom: 91px;         
  right: 45px;          
  background: #F5F7F9;
  color: #000;
  padding: 6px 12px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: opacity 0.5s ease; 
}

#whatsappText.hide {    
  opacity: 0;
  pointer-events: none;
}

.icon-spin {
  display: inline-block;
  animation: spin 0.5s linear;
}

.icon-spin-reverse {
  display: inline-block;
  animation: spin-reverse 0.5s linear;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(180deg); }
}

@keyframes spin-reverse {
  from { transform: rotate(180deg); }
  to { transform: rotate(0deg); }
}

/*=================pop up============
===================================*/

/* OVERLAY */
.ux-popup-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.7);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  opacity:0;
  visibility:hidden;
  transition:0.4s ease;
  z-index:9999;
  overflow-y: auto;
}

/* ACTIVE */
.ux-popup-overlay.active{
  opacity:1;
  visibility:visible;
}

/* POPUP BOX */
.ux-popup-box{
  width:100%;
  max-width:480px;
  background:#ffffff;
  border-radius:28px;
  padding:30px 25px;
  position:relative;
  animation:popupFade 0.4s ease;
  box-shadow:0 20px 50px rgba(0,0,0,0.2);
  max-height: 90vh;
  overflow-y: auto; 
}

/* ANIMATION */
@keyframes popupFade{
  from{
    transform:translateY(30px) scale(0.95);
    opacity:0;
  }
  to{
    transform:translateY(0) scale(1);
    opacity:1;
  }
}

/* CLOSE BUTTON */
.ux-close-popup{
  position:absolute;
  top:15px;
  right:15px;
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#f1f5f9;
  font-size:24px;
  cursor:pointer;
  transition:0.3s ease;
}

.ux-close-popup:hover{
  background:#ff4d6d;
  color:#fff;
  transform:rotate(90deg);
}

/* TITLE */
.ux-popup-title{
  	font-family: "Cherry Bomb One", cursive;
  font-size:30px;
  font-weight:700;
  color:#0f172a;
  margin-bottom:5px;
  text-align:center;
}

/* SUBTITLE */
.ux-popup-subtitle{
  text-align:center;
  color:#64748b;
  margin-bottom:28px;
  line-height:1.6;
  font-size:15px;
}

/* FORM */
.ux-popup-form{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* INPUT GROUP */
.ux-input-group{
  display:flex;
  flex-direction:column;
}

/* LABEL */
.ux-input-group label{
  margin-bottom:4px;
  font-size:14px;
  font-weight:600;
  color:#334155;
}

.red-dot{
  color: crimson;
}

/* INPUTS */
.ux-input-group input,textarea,
.ux-input-group select{
  width:100%;
  padding:12px 13px;
  border:1px solid #dbeafe;
  border-radius:14px;
  outline:none;
  font-size:15px;
  transition:0.3s ease;
  background:#f8fafc;
  resize: none;
}

/* FOCUS */
.ux-input-group input:focus,
.ux-input-group select:focus{
  border-color:#7b2ff7;
  background:#fff;
  box-shadow:0 0 0 4px rgba(123,47,247,0.1);
}

/* BUTTON */
.ux-submit-btn{
  margin-top:10px;
  padding:15px;
  border:none;
  border-radius:16px;
background: linear-gradient(135deg, #6A3D9A, #f093fb, #f5576c);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.ux-submit-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 25px rgba(123,47,247,0.25);
}

/* RESPONSIVE */
@media (max-width: 576px){

  .ux-popup-box{
    margin-top: 80px;
    width:92%;
    padding:18px 14px;
    border-radius:16px;
  }

  .ux-popup-form{
    gap:12px;
  }

  .ux-popup-title{
    	font-family: "Cherry Bomb One", cursive;
    font-size:20px;
    margin-bottom:6px;
  }

  .ux-popup-subtitle{
    font-size:12px;
    margin-bottom:14px;
    line-height:1.4;
  }

  .ux-input-group label{
    font-size:12px;
    margin-bottom:5px;
  }

  .ux-input-group input,
  .ux-input-group select{
    padding:5px 6px;
    font-size:13px;
    border-radius:10px;
  }

  .ux-submit-btn{
    padding:7px;
    font-size:13px;
    border-radius:12px;
    margin-top:4px;
  }

  .ux-close-popup{
    width:30px;
    height:30px;
    font-size:18px;
    top:10px;
    right:10px;
  }

}

/*===========Founder===============
===============================*/

.ck-about-section{
  padding:80px 20px;
  background:#f8fafc;
}

.ck-about-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  gap:50px;
}

/* LEFT IMAGE */
.ck-about-left{
  flex:1;
  display:flex;
  justify-content:center;
}

.ck-founder-img{
  width:100%;
  max-width:420px;
  border-radius:20px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  object-fit:cover;
}

/* RIGHT CONTENT */
.ck-about-right{
  flex:1;
}

.ck-about-title{
  font-size:36px;
  color:#6A3D9A;
  	font-family: "Cherry Bomb One", cursive;
  margin-bottom:15px;
}

.ck-about-text{
  font-size:16px;
  color:#475569;
  line-height:1.7;
  margin-bottom:15px;
}

/* OWNER CARD */
.ck-owner-card{
  margin-top:25px;
  padding:25px;
  border-radius:18px;
  background:#ffffff;
  border:2px solid rgba(106,61,154,0.15);
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  text-align:center;
  position:relative;
  overflow:hidden;
}

/* glowing background effect */
.ck-owner-card::before{
  content:"";
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(106,61,154,0.08), transparent 60%);
  transform:rotate(25deg);
}

/* badge */
.ck-owner-badge{
  display:inline-block;
  padding:6px 14px;
  font-size:13px;
  font-weight:600;
  color:#fff;
  background:linear-gradient(135deg,#6A3D9A,#4facfe);
  border-radius:50px;
  margin-bottom:15px;
}

/* name */
.ck-owner-name{
  font-size:20px;
  color:#1e293b;
  font-weight:700;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}

/* divider */
.ck-owner-divider{
  width:60px;
  height:3px;
  background:linear-gradient(135deg,#6A3D9A,#4facfe);
  margin:10px auto;
  border-radius:10px;
  position:relative;
  z-index:1;
}

/* role */
.ck-owner-role{
  font-size:16px;
  font-weight:600;
  letter-spacing:2px;
  color:#6A3D9A;
  margin-top:10px;
  position:relative;
  z-index:1;
}

/* RESPONSIVE */
@media(max-width:768px){
  .ck-about-container{
    flex-direction:column;
    text-align:center;
  }

  .ck-about-title{
    font-size:28px;
  }

  .ck-founder-img{
    max-width:300px;
  }
}

/* footer form */
.footer_feedback{
    margin-top:20px;
    background:#6A3D9A;
    padding:25px 20px;
    border-radius:12px;
}

.footer_feedback h5{
    font-size:20px;
    margin-bottom:15px;
    color:#fff;
    font-weight:bold;
    text-align:center;
}

.footer_feedback input,
.footer_feedback textarea{
    width:100%;
    padding:10px 12px;
    margin-bottom:12px;
    border:none;
    border-radius:6px;
    outline:none;
    color:#333;
    font-size:14px;
    background-color:#fff;
}

/* Placeholder White */
.footer_feedback input::placeholder,
.footer_feedback textarea::placeholder{
    color:#999;
    opacity:1;
}

.footer_feedback textarea{
    resize:none;
}

.footer_feedback button{
    width:auto;
    padding:10px 25px;
    background:#7DBB35;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
    display:block;
    margin:0 auto;
    font-weight:600;
}

.footer_feedback button:hover{
    background:#689d2c;
}

/*=========mobile navbar email btn=========
=========================================*/

.email-btn{
    display:inline-block;
    padding:10px 18px;
    /* background:#ff6b6b; */
    color:#fff;
    border-radius:5px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.email-btn:hover{
    background:#6A3D9A;
    color:#fff;
}

/*=========Registration Form=============
=========================================*/
.ck-registration-section{
    padding:60px 0;
}

/* Unique Card */
.ck-registration-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

/* Title */
/* .ck-form-title{
    text-align:center;
    margin-bottom:25px;
    font-weight:700;
    color:#222;
} */

/* Labels */
.ck-registration-form .form-label{
    font-weight:600;
    margin-bottom:6px;
    color:#444;
}

/* Inputs */
.ck-registration-form .form-control,
.ck-registration-form .form-select{
    height:40px;
    border-radius:10px;
    border:1px solid #dcdcdc;
    font-size:15px;
}

.ck-registration-form textarea.form-control{
    height:120px;
    resize:none;
}

/* Focus */
.ck-registration-form .form-control:focus,
.ck-registration-form .form-select:focus{
    border-color:#6A3D9A;
    box-shadow:0 0 0 0.15rem rgba(255,107,107,0.2);
}

/* Error */
.ck-error-message{
    color:#dc3545;
    font-size:13px;
    margin-top:5px;
    display:none;
}

/* Button */
.ck-submit-btn{
    background:#6A3D9A;
    color:#fff;
    border:none;
    padding:14px 40px;
    border-radius:10px;
    font-size:17px;
    font-weight:600;
    transition:0.3s;
}

.ck-submit-btn:hover{
    background:#E58A1F;
}

.ck-submit-btn:disabled{
    background:#999;
    cursor:not-allowed;
}

/* Success Popup */
.ck-success-popup{
    position:fixed;
    top:30px;
    right:30px;
    background:#28a745;
    color:#fff;
    padding:15px 25px;
    border-radius:10px;
    font-weight:600;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
    display:none;
    z-index:9999;
    animation:fadeIn 0.4s ease;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(-10px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .ck-registration-card{
        padding:25px;
    }

}

/*=======Registration-heading===========
======================================*/

.registration-heading h2{
  text-align: center;
  font-weight: bold;
  font-family: "Cherry Bomb One", cursive;
  text-align: center;
  position: relative;
  right: 100px;

}

/*=========Registration button===========
=======================================*/

/* Container fixed right */
.ck-registration-float-right{
    position:fixed;
    right:0;
    top:40%;
    transform:translateY(-50%);
    z-index:999;
}

/* Box */
.ck-registration-box{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:#fff;
    padding:2px 12px;
    border-radius:15px 0 0 15px;
    text-decoration:none;
    /* box-shadow:0 5px 20px rgba(0,0,0,0.25); */
    color:#000;
    font-weight:600;
    font-size:14px;

    /* animation */
    animation:ckSlideRight 3s infinite ease-in-out;
}

/* Image */
.ck-registration-box img{
    width:85px;
}

/* TEXT */
.ck-registration-box span{
    text-align:center;
    line-height:1.4;
}

/* 🔥 Slide in/out animation */
@keyframes ckSlideRight {

    0% {
        transform: translateX(120%) translateY(-50%);
        opacity: 0;
    }

    25% {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }

    70% {
        transform: translateX(0) translateY(-50%);
        opacity: 1;
    }

    100% {
        transform: translateX(120%) translateY(-50%);
        opacity: 0;
    }
}

/* Hover */
.ck-registration-box:hover{
    background:#7DBB35;
    color: #fff;
    transform:translateX(0) translateY(-50%) scale(1.05);
}

/* Responsive */

@media(max-width:768px){
    .ck-registration-box img{
        width:45px;
    }

    .ck-registration-box{
        font-size:12px;
        padding:5px;
    }
}

/* small mobile */
@media(max-width:480px){
    .ck-registration-float-right{
        top:35%;
    }
}

/*=============Registration page Navbar============
==================================================*/

/* =========================================
   REGISTRATION NAVBAR (DOES NOT AFFECT SITE)
========================================= */

.registration-nav {
    padding: 15px 65px;
    margin: 15px 25px;
    border-bottom: 1px solid #ddd;
    background: #e9ecef;
    border-radius: 15px;
}

/* Header layout */
.registration-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.registration-logo {
    flex-shrink: 0;
}

.registration-logo img {
    width: clamp(180px, 24vw, 260px);
    height: auto;
    display: block;
}

/* Title */
.registration-title {
    flex: 1;
    text-align: center;
}

.registration-title h2 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    color: #6A3D9A;
    font-family: "Cherry Bomb One", cursive;
    line-height: 1.3;
}

/* Tablet */
@media only screen and (max-width: 991px) {
    .registration-title h2 {
        font-size: 30px;
    }
}

/* Mobile */
@media only screen and (max-width: 767px) {

    .registration-header {
        flex-direction: column;
        text-align: center;
    }

    .registration-logo {
        margin-bottom: 15px;
    }

    .registration-title {
        padding: 0;
    }

    .registration-title h2 {
        font-size: 24px;
    }
}

/* Small Mobile */
@media only screen and (max-width: 480px) {
    .registration-title h2 {
        font-size: 20px;
    }
}