  @import url('https://fonts.googleapis.com/css2?family=Amaranth:ital,wght@0,400;0,700;1,400;1,700&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');
  @import url('https://fonts.googleapis.com/css2?family=Arimo:ital,wght@0,400..700;1,400..700&display=swap');

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  :root {
    --maroon: #6b1a3a;
    --maroon-dark: #4e1229;
    --orange: #FE5D37;
    --orange-hover: #c94215;
    --text: #4E4E4E;
    --white: #fff;
    --violet: #70167E;
    --maroon: #6b1a3a;
    --orange: #e8521a;
    --purple: #7b2d8b;
    --green: #27ae60;
    --yellow: #fff3cc;
    --white: #fff;
    --purple: #6b1a8a;
    --orange: #e8521a;
    --teal: #b2e8f0;
    --bg: #cdf0f7;
    --white: #fff;
    --text: #333;
    --blue: #4db6e4;
  }

  /* @font-face {
        font-family: 'MyFont';
        src: url('../fonts/Acumin\ Variable\ Concept.ttf');
        font-weight: normal;
        font-style: normal;
    } */

  a {
    text-decoration: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  body {
    font-family: "Amaranth", sans-serif;
  }


  /* ── TOP BAR ───────────────────────────────── */
  .top-bar {
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 7px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 9;
  }

  .top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .top-bar-left a {
    color: var(--white);
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s;
    font-weight: 500;
  }

  .top-bar-left a:hover {
    opacity: .75;
  }

  .top-bar-socials {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .top-bar-socials a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .45);
    transition: background .2s, border-color .2s;
  }

  .top-bar-socials a:hover {
    background: rgba(255, 255, 255, .18);
    border-color: var(--white);
  }

  .top-bar-socials svg {
    width: 13px;
    height: 13px;
    fill: var(--white);
  }

  /* ── SCALLOP WAVE ──────────────────────────── */
  .scallop-wrap {
    line-height: 0;
    overflow: hidden;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1;
  }

  .scallop-wrap svg {
    display: block;
    width: 100%;
    height: auto;
  }

  /* ── MAIN NAV ──────────────────────────────── */
  .main-nav {
    background: var(--white);
    padding: 42px 32px 1px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 80px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .07);
  }

  /* Logo */
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
  }

  /* Inline SVG logo placeholder */
  .logo-svg-wrap {
    width:60%;
    height:100%;
    position: relative;
  }

  .logo-text {
    line-height: 1.15;
  }

  .logo-text .brand {
    color: var(--maroon);
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: .04em;
  }

  .logo-text .sub {
    color: var(--maroon);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  /* Nav links */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    flex: 1;
    justify-content: center;
    margin: 0;
  }

  .nav-links li a {
    color: var(--text);
    text-decoration: none;
    font-weight: 400;
    font-size: 18px;
    padding: 8px 14px;
    border-radius: 4px;
    position: relative;
    transition: color .2s;
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--maroon);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    border-radius: 2px;
  }

  .nav-links li a:hover {
    color: var(--maroon);
  }

  .nav-links li a:hover::after,
  .nav-links li a.active::after {
    transform: scaleX(1);
  }

  .nav-links li a.active {
    color: var(--maroon);
  }

  /* CTA Button */
  .btn-contact {
    background: var(--orange);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 0.88rem;
    border: none;
    border-radius: 50px;
    padding: 12px 22px;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .15s;
    letter-spacing: .03em;
  }

  .btn-contact:hover {
    background: var(--orange-hover);
    transform: translateY(-1px);
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    border-radius: 4px;
    transition: background .2s;
  }

  .hamburger:hover {
    background: rgba(0, 0, 0, .06);
  }

  .hamburger span {
    display: block;
    height: 3px;
    background: var(--maroon);
    border-radius: 3px;
    transition: transform .3s, opacity .3s, width .3s;
  }

  .hamburger span:nth-child(2) {
    width: 75%;
  }

  /* Open state */
  .hamburger.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
  }

  .hamburger.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  /* Overlay */
  .drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .4);
    z-index: 999;
    opacity: 0;
    transition: opacity .35s ease;
  }

  .drawer-overlay.open {
    display: block;
    opacity: 1;
  }

  /* Mobile drawer – slides left → right */
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 270px;
    height: 100%;
    background: var(--white);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 0;
    box-shadow: 4px 0 24px rgba(0, 0, 0, .18);
    transform: translateX(-100%);
    transition: transform .35s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  /* Drawer header */
  .drawer-header {
    background: var(--maroon);
    padding: 20px 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .drawer-header .drawer-logo {
    color: var(--white);
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: .05em;
    line-height: 1.2;
  }

  .drawer-header .drawer-logo span {
    display: block;
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: .12em;
    opacity: .8;
  }

  .drawer-close {
    background: rgba(255, 255, 255, .15);
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
  }

  .drawer-close:hover {
    background: rgba(255, 255, 255, .3);
  }

  /* Drawer links */
  .mobile-menu a:not(.btn-contact) {
    color: var(--text);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 24px;
    border-bottom: 1px solid #f0e0e8;
    transition: color .2s, background .2s, padding-left .2s;
    display: block;
  }

  .mobile-menu a:not(.btn-contact):hover,
  .mobile-menu a.active {
    color: var(--maroon);
    background: #fdf3f7;
    padding-left: 30px;
  }

  .mobile-menu .btn-contact {
    margin: 20px 24px 24px;
    display: block;
    text-align: center;
  }

  .logo-svg-wrap img {
    width: 100%;
  }

  /* ── RESPONSIVE ────────────────────────────── */
  @media (max-width: 860px) {

    .nav-links,
    .btn-contact {
      display: none;
    }

    .hamburger {
      display: flex;
    }
  }

  @media (max-width: 520px) {
    .top-bar {
      font-size: 0.72rem;
      padding: 6px 14px;
    }

    .main-nav {
      padding: 0 16px;
      min-height: 66px;
    }

       .logo-svg-wrap {
        width: 76px;
        height: 92px;
    }
  }

  /* BANNER-START */
  .banner {
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0;
    position: relative;
    background-position: center;
  }

  /* BEFORE IMAGE */
 .banner::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 0;
  width: 200%;          /* double width for seamless loop */
  height: 50px;
  background: url('../img/header-btm-img.png') repeat-x center / auto 100%;
  z-index: 1;
  animation: waveSweep 40s linear infinite;
}
  @keyframes waveSweep {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


  /* AFTER IMAGE */
  .banner-slider::after {
    content: "";
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 200%;
    height: 50px;
    background: url('../img/header-btm-img.png') repeat-x left/auto 100%;
    z-index: 1;
    transform: rotate(180deg);
    animation: waveBottomSweep 40s linear infinite;
  }
  @keyframes waveBottomSweep {

  0%   { transform: rotate(180deg) translateX(0); }

  100% { transform: rotate(180deg) translateX(50%); }

             /* ← +50% not -50% because element is flipped */

}

  .left-banner {
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;

  }

  .banner-con h3 {
    font-size: 27px;
    color: var(--violet);
  }

  .banner-con h3 span {
    padding-right: 11px;
  }

  .banner-con h1 {
    font-size: 55px;
    font-family: "Baloo 2", sans-serif;
    font-weight: 900;
  }

  .banner-con h1 span {
    color: var(--orange);
  }

  .left-banner p {
    font-size: 18px;
    width: 445px;
    color: var(--text);
    margin-bottom: 25px;

  }

  .cmn-btn a {
    background-color: var(--orange);
    padding: 11px 24px;
    border-radius: 50px;
    color: var(--white);
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .cmn-btn a:hover {
    background-color: var(--maroon);
    transform: translateY(-2px);
  }

  .cmn-btn a:nth-child(2) {
    background-color: var(--violet);
  }

  .left-banner>img {
    width: 100%;
  }

  .banner .col-md-7 {
    position: relative;
  }

  /* .left-banner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }*/
  .left-b-content {
    display: flex;
    align-items: center;
  }

  .left-b-content {
    /* background-color: #fff; */
    position: relative;
    padding: 28px 28px 55px 28px;
    border-radius: 25px;
    z-index: 1;
  }

  .left-b-content::before {
    content: '';
    position: absolute;
    top: -118px;
    left: -111px;
    width: 982px;
    height: 650px;
    background-image: url('../img/banner-text-bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
  }

.banner-con-righ img {
  width: 100%;
  animation: kidSwing 2.5s ease-in-out infinite;
  transform-origin: top center;
}

@keyframes kidSwing {
  0%   { transform: rotate(0deg); }
  20%  { transform: rotate(4deg); }
  50%  { transform: rotate(-4deg); }
  80%  { transform: rotate(3deg); }
  100% { transform: rotate(0deg); }
}

  .baner-obj-2 {
    position: absolute;
    top: -73px;
    left: -82px;
  }

  .baner-obj-1 {
    position: absolute;
    bottom: -73px;
    right: -82px;
  }

  /* About-css */

  .about-section {
    position: relative;
    padding: 80px 0px 120px 0;
    overflow: hidden;
    background: #fff;
  }

  .about-left .top-img img {
    border-radius: 33px;
    border: 2px dashed var(--orange);
    width: 100%;
  }

  .about-left .btm-img img {
    border-radius: 33px;
    border: 2px dashed var(--orange);
    width: 100%;
  }

  .about-left {
    position: relative;
  }

  .top-img {
    position: absolute;
    left: 0;
    top: 0;
  }

  .btm-img {
    position: absolute;
    left: 249px;
    top: 188px;
  }

  .about-left::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-77%, 57%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background-color: #FFE9B9;
  }

  .about-obj-4 {
    position: absolute;
    bottom: -500px;
    left: 47px;
  }

  .about-obj-4 img {
    width: 200px;
  }

  .about-obj-balloon img {
    width: 70px;
  }

  .about-obj-balloon {
    position: absolute;
    bottom: -441px;
    left: 155px;
  }

  .year-of-experience {
    content: "";
    position: absolute;
    top: 61px;
    right: 89px;
  }

  .main-years-box {
    display: flex;
    align-items: center;
  }

  .main-years-box .number-count {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--violet);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    color: var(--white);
  }

  .years-text {
    font-size: 24px;
    padding-left: 10px;
  }

  /* colorful top border dots */


  /* ══════════════════════════════
       LAYOUT GRID
    ══════════════════════════════ */
  /* .about-inner {
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    } */

  /* ══════════════════════════════
       LEFT – IMAGE BLOCK
    ══════════════════════════════ */
  .img-block {
    position: relative;
    min-height: 420px;
  }

  /* dashed decorative square behind main image */
  .dashed-frame {
    position: absolute;
    bottom: 12px;
    left: 68px;
    width: 240px;
    height: 290px;
    border: 3px dashed #e8521a;
    border-radius: 16px;
    z-index: 1;
  }

  /* top-left small image */
  .img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 155px;
    height: 175px;
    border-radius: 16px;
    object-fit: cover;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    border: 4px solid #fff;
  }

  /* main (large) image */
  .img-main {
    position: absolute;
    bottom: 0;
    left: 80px;
    width: 235px;
    height: 285px;
    border-radius: 16px;
    object-fit: cover;
    z-index: 3;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .18);
    border: 4px solid #fff;
  }

  /* 15 years badge */
  .badge-years {
    position: absolute;
    top: 22px;
    left: 130px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px 8px 8px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .14);
  }

  .badge-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .badge-text {
    font-size: .82rem;
    font-weight: 800;
    color: #333;
    line-height: 1.3;
  }

  /* toy airplane */
  .toy-plane {
    position: absolute;
    bottom: 90px;
    left: -10px;
    z-index: 4;
    width: 72px;
    opacity: .92;
    animation: floatPlane 4s ease-in-out infinite;
  }

  @keyframes floatPlane {

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

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

  /* doodle clouds / flower top-left */
  .doodle-flower {
    position: absolute;
    top: 48px;
    left: -24px;
    z-index: 1;
    opacity: .55;
  }

  /* green cloud bushes bottom */
  .green-clouds {
    position: absolute;
    bottom: -10px;
    left: -30px;
    z-index: 6;
    display: flex;
    gap: 0;
  }

  .cloud-circle {
    background: #27ae60;
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* ══════════════════════════════
       RIGHT – TEXT BLOCK
    ══════════════════════════════ */
  .text-block {
    position: relative;
    z-index: 2;
  }

  .about-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--orange);
    font-weight: 800;
    font-size: .9rem;
    margin-bottom: 12px;
    letter-spacing: .04em;
  }

  .about-tag svg {
    flex-shrink: 0;
  }

  .about-heading {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .about-heading .accent {
    color: var(--orange);
    display: block;
  }

  /* dot divider */
  .dot-divider {
    display: flex;
    gap: 6px;
    margin: 14px 0 20px;
  }

  .dot-divider span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
  }

  .dot-divider .d1 {
    background: var(--orange);
  }

  .dot-divider .d2 {
    background: #ccc;
  }

  .dot-divider .d3 {
    background: #ccc;
  }

  /* tab pills */
  .tab-row {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    margin-top: 35px;
  }

  .tab-btn {
    font-weight: 400;
    font-size: 20px;
    padding: 7px 40px;
    border-radius: 30px;
    border: 2px dashed var(--orange);
    background: transparent;
    color: #000;
    cursor: pointer;
    transition: all .22s;
  }

  .tab-btn.active,
  .tab-btn:hover {
    background: #FFE9B9;
    border-color: var(--orange);
    color: #333;
  }

  /* tab content */
  .tab-content {
    display: none;
  }

  .tab-content.active {
    display: block;
  }

  .tab-desc {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 18px;
    font-family: "Arimo", sans-serif;
  }

  /* checklist */
  .check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    padding: 0;
  }

  .check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #000;
  }

  .check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .check-icon svg {
    width: 12px;
    height: 12px;
  }

  /* Enroll button */
  .btn-enroll {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: .92rem;
    padding: 13px 32px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .18s, box-shadow .18s;
    letter-spacing: .03em;
  }

  .btn-enroll:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(232, 82, 26, .35);
  }

  /* kid reading illustration – top right */
  .kid-illustration {
    position: absolute;
    top: -90px;
    right: -20px;
    width: 114px;
    pointer-events: none;
    z-index: 1;
    animation: floatKid 5s ease-in-out infinite
  }

  @keyframes floatKid {

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

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

  /* palm trees bottom right */
  .palm-wrap {
    position: absolute;
    bottom: -10px;
    right: 2%;
    z-index: 1;
  }

  /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
  @media (max-width: 860px) {
    .about-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }

    .img-block {
      min-height: 340px;
    }

    .kid-illustration {
      width: 100px;
      top: -30px;
      right: 0;
    }

    .palm-wrap {
      display: none;
    }
  }

  @media (max-width: 500px) {
    .img-top {
      width: 120px;
      height: 140px;
    }

    .img-main {
      width: 190px;
      height: 240px;
      left: 60px;
    }

    .dashed-frame {
      width: 200px;
      height: 250px;
      left: 52px;
    }
  }

  .about-obj-1 {
    position: absolute;
    right: 0;
    bottom: -9px;
    z-index: 1;
    animation: waveFloat 4s ease-in-out infinite;
    transform-origin: bottom left;
  }

  .about-obj-2 {
    position: absolute;
    right: 180px;
    bottom: 0;
  }

 .about-obj-3 {
  position: absolute;
  left: 0;
  bottom: -9px;
  animation: waveFloat 4s ease-in-out infinite;
  transform-origin: bottom left;
}

@keyframes waveFloat {
  0%   { transform: translateY(0px) scaleX(1); }
  25%  { transform: translateY(-8px) scaleX(1.02); }
  50%  { transform: translateY(-4px) scaleX(0.98); }
  75%  { transform: translateY(-10px) scaleX(1.01); }
  100% { transform: translateY(0px) scaleX(1); }
}

  .cmn-heading h3 {
    font-size: 27px;
    color: var(--violet);
  }

  .cmn-heading h3 span {
    padding-right: 11px;
  }

  .cmn-heading h3 span img {
    width: 30px;
    height: 30px;
  }

  .cmn-heading h2 {
    font-size: 55px;
    font-family: "Baloo 2", sans-serif;
    font-weight: 900;
  }

  .cmn-heading h2 span {
    color: var(--orange);
  }

  .about-section .cmn-btn {
    margin-top: 45px;
  }

  .services {
    padding: 40px 0;
    position: relative;
  }

  .services .cmn-heading {
    text-align: center;
    margin-bottom: 20px;
  }

  .services .dot-divider {
    justify-content: center;
  }

  .cmn-heading p {
    font-size: 20px;
  }

  .services-obj {
    position: absolute;
    top: 40px;
    right: 40px;
  }

  /* services-card */
  CARD ══════════════════════ */ .service-card {
    outline: none;
    padding: 12px 14px;
  }

  .card-inner {
    position: relative;
    border-radius: 24px;
    border: 3px dashed var(--orange);
    background: var(--white);
    cursor: pointer;
    transition: transform .3s ease, box-shadow .3s ease;
  }

  .card-inner:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(107, 26, 58, .13);
  }

  /* Image container */
  .card-img {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
  }

  .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
    border-radius: 25px;
  }

  .card-inner:hover .card-img img {
    transform: scale(1.06);
    border-radius: 25px !important;
  }

  /* Gradient overlay on image */
  .card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, .25) 100%);
    border-radius: 25px;
  }

  /* Image placeholder when no real image */
  .card-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Bottom info bar */
  .card-footer {
    background: var(--white);
    padding: 16px 18px;
    gap: 12px;
  }

  .card-footer-con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
  }

  .card-footer-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }

  .card-icon svg {
    width: 32px;
    height: 32px;
  }

  .card-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
  }

  /* Orange arrow button */
  .card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D18109;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .2s;
  }

  .card-inner:hover .card-arrow {
    background: var(--orange);
    transform: rotate(45deg);
  }

  .card-arrow svg {
    width: 16px;
    height: 16px;
  }

  .card-footer {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 350px;
    position: absolute;
    bottom: -98px;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px !important;
  }

  .services-slider .slick-list {
    padding: 52px 0;
  }

  .services-slider .slick-slide {
    padding: 0px 20px;
  }

  /* testimonilas-css */
  .testi-card {
    background: #4c1360;
    color: #fff;
    padding: 57px 125px;
    border-radius: 8px;
    position: relative;
    border-radius: 166px 94px 290px 166px;
  }

  /* Quote Icon */
  .testi-card .quote {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ff1744;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Name */
  .testi-card h2 {
    margin-bottom: 10px;
  }

  /* Stars */
  .stars {
    color: gold;
    margin-bottom: 15px;
  }

  /* Text */
  .testi-card p {
    line-height: 1.6;
  }

  /* Slick Dots */
  .services-slider .slick-dots li button:before {
    font-size: 12px;
    color: gray;
  }

  .services-slider .slick-dots li.slick-active button:before {
    color: red;
  }

  .testimonails {
    background-color: #F0F6FA;
    padding: 80px 0;
  }

  .testimonial-slider {
    margin-top: 60px;
  }

  .testimonial-slider .slick-dots li button {
    background: #B5B5B5;
    border-radius: 50px;
  }

  .testimonial-slider .slick-dots {
    bottom: -38px;
  }

  .testimonial-slider .slick-dots .slick-active button {
    background: #e8063c;
  }

  .testimonials-right img {
    width: 100%;
  }

  .footer-kids img {
    width: 100%;
  }

  /* NEWSLETTER-CSS */
  /* Section */
  .newsletter {
    padding: 80px 0 400px 0;
    text-align: center;
    background-image: url(../img/newsletter-bg.png);
    background-position: center;
  }

  /* Box */
  .newsletter-box {
    max-width: 800px;
    margin: auto;
  }

  /* Icon */
  .icon {
    font-size: 40px;
    color: #e60023;
    margin-bottom: 10px;
  }

  /* Small Text */
  .sub-text {
    color: #555;
    margin-bottom: 10px;
  }

  /* Heading */
  .newsletter h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
  }

  /* Form */
  .newsletter-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  /* Input */
  .newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 16px;
  }

  /* Button */
  .newsletter-form button {
    background: #e60023;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
  }

  .newsletter-form button:hover {
    background: #c4001d;
  }

  /* FOOTER-CSS */
  /* ══════════════════════════════════
       FOOTER WRAPPER
    ══════════════════════════════════ */
  .site-footer {
    background: #d1fdff;
    position: relative;
    padding: 80px 0 0 0;
    margin-top: 20px
  }

  .site-footer::after {
    content: "";
    position: absolute;
    top: -32px;
    left: 0px;
    width: 200%;
    height: 50px;
    z-index: 9;
    background: url(../img/footer-top.png) center center / contain no-repeat;
    animation: waveSlide 35s linear infinite;
  }

  @keyframes waveSlide {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  /* ── doodle watermark pattern ── */
  .site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='20' cy='20' r='6' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.5'/%3E%3Cpath d='M50,15 Q60,5 70,15 Q60,25 50,15Z' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.5'/%3E%3Crect x='90' y='10' width='14' height='14' rx='3' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.4'/%3E%3Cpath d='M10,60 Q20,50 30,60 Q20,70 10,60Z' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.4'/%3E%3Ccircle cx='70' cy='70' r='5' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.4'/%3E%3Cpath d='M95,60 L100,50 L105,60 L115,60 L107,66 L110,76 L100,70 L90,76 L93,66 L85,60Z' fill='none' stroke='%2380d8e8' stroke-width='1' opacity='.35'/%3E%3Cpath d='M20,90 Q30,80 40,90 Q30,100 20,90Z' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.4'/%3E%3Ccircle cx='60' cy='105' r='4' fill='none' stroke='%2380d8e8' stroke-width='1.2' opacity='.35'/%3E%3C/svg%3E");
    background-size: 120px 120px;
    opacity: .6;
    pointer-events: none;
  }

  /* ── main grid ── */
  .footer-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px 32px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
  }

  /* ══════════════════════════════════
       COL 1 – BRAND
    ══════════════════════════════════ */
  .footer-brand {}

  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
  }

  .footer-logo-text .brand {
    display: block;
    color: var(--purple);
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: .05em;
  }

  .footer-logo-text .sub {
    display: block;
    color: var(--purple);
    font-size: .58rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .footer-desc {
    font-size: 21px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  /* Social icons */
  .social-row {
    display: flex;
    gap: 10px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
  }

  .social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
    fill: #fff;
  }

  .sb-fb {
    background: #1877f2;
  }

  .sb-tw {
    background: #1da1f2;
  }

  .sb-ig {
    background: radial-gradient(circle at 30% 110%, #fd5 0%, #f73 25%, #e4286c 50%, #9c27b0 75%);
  }

  .sb-yt {
    background: #ff0000;
  }

  /* ══════════════════════════════════
       COLS 2-4 – NAV COLUMNS
    ══════════════════════════════════ */
  .footer-col-title {
    font-family: "Baloo 2", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--purple);
    margin-bottom: 20px;
    position: relative;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-left: 0;
  }

  .footer-links li a {
    text-decoration: none;
    font-size: 22px;
    color: #000;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, gap .2s;
  }

  .footer-links li a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 2px;
    background: var(--orange);
    border-radius: 2px;
    transition: width .22s ease;
    flex-shrink: 0;
  }

  .footer-links li a:hover {
    color: var(--orange);
  }

  .footer-links li a:hover::before {
    width: 14px;
  }

  /* Contact items */
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    word-break: break-all;
  }

  .contact-item:last-child {
    margin-bottom: 0;
  }

  .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .ci-pin {
    background: #fee2e2;
  }

  .ci-ph {
    background: #dcfce7;
  }

  .ci-mail {
    background: #fef9c3;
  }

  .contact-icon svg {
    width: 15px;
    height: 15px;
  }

  .contact-text {
    font-size: 20px;
    color: #000;
  }

  .site-footer .container {
    border-bottom: 1px solid var(--orange);
  }

  /* ══════════════════════════════════
       KIDS ILLUSTRATION – bottom right
    ══════════════════════════════════ */
  .footer-kids {
    position: absolute;
    bottom: 0;
    /* sits above the bottom bar */
    right: 0;
    z-index: 3;
    pointer-events: none;
  }

  /* ══════════════════════════════════
       BOTTOM BAR
    ══════════════════════════════════ */
  .footer-bottom {
    position: relative;
    z-index: 4;
    text-align: center;
    padding: 16px 20px;
    font-size: 22px;
    color: #000;
  }

  .site-footer .row {
    padding-bottom: 50px;
  }

  .footer-bottom span {
    color: var(--purple);
  }

  /* ══════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════ */
  @media (max-width: 1024px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 36px 24px;
    }

    .footer-kids {
      width: 220px;
      bottom: 46px;
    }
  }

  @media (max-width: 600px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .footer-kids {
      display: none;
    }

    .site-footer {
      padding: 40px 6% 0;
    }
  }

  /* ABOUT-US-PAGE */
  /* PAGE HERO */
  .page-hero {
    background: linear-gradient(135deg, var(--maroon) 0%, #a01550 100%);
    color: #fff;
    text-align: center;
    padding: 70px 20px 80px;
    position: relative;
    overflow: hidden;
  }

  .page-hero::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 50px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 50'%3E%3Cpath fill='%23ffffff' d='M0,30 C360,60 1080,0 1440,30 L1440,50 L0,50 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
  }

  .page-hero .breadcrumb {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: .8;
  }

  .page-hero .breadcrumb a {
    color: #ffcc88;
    text-decoration: none;
  }

  .page-hero h1 {
    font-family: 'Baloo 2', cursive;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .page-hero h1 span {
    color: var(--yellow);
  }

  /* SECTION LABEL */
  .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--purple);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 10px;
  }

  .section-label i {
    color: var(--yellow);
  }

  h2.section-title {
    font-family: 'Baloo 2', cursive;
    font-size: 38px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
  }

  h2.section-title span {
    color: var(--orange);
  }

  /* ABOUT INTRO */
  .about-intro {
    padding: 80px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: var(--white);
  }

  .about-intro .images-stack {
    position: relative;
    width: 420px;
    flex-shrink: 0;
    height: 380px;
  }

  .about-intro .images-stack img {
    border-radius: 16px;
    object-fit: cover;
  }

  .img-main {
    width: 300px;
    height: 340px;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
  }

  .img-secondary {
    width: 200px;
    height: 220px;
    position: absolute;
    right: 0;
    bottom: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    border: 4px solid #fff;
  }

  .badge-years {
    position: absolute;
    top: 30px;
    right: 10px;
    background: var(--purple);
    color: #fff;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2', cursive;
    font-weight: 800;
    box-shadow: 0 6px 20px rgba(123, 63, 160, .4);
    z-index: 2;
  }

  .badge-years .num {
    font-size: 26px;
    line-height: 1;
  }

  .badge-years .txt {
    font-size: 10px;
    text-align: center;
    line-height: 1.2;
  }

  .about-content {
    flex: 1;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
  }

  .feature-list {
    list-style: none;
    margin: 20px 0;
  }

  .feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .feature-list li i {
    color: var(--orange);
    font-size: 18px;
  }

  .btn-primary {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    padding: 13px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: background .2s, transform .2s;
    margin-top: 10px;
  }

  .btn-primary:hover {
    background: var(--maroon);
    transform: translateY(-2px);
  }

  /* MISSION VISION VALUES */
  .mvv-section {
    background: var(--light-bg);
    padding: 80px 60px;
    text-align: center;
  }

  .mvv-section .section-header {
    margin-bottom: 50px;
  }

  .mvv-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }

  .mvv-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .07);
    transition: transform .3s, box-shadow .3s;
    position: relative;
    overflow: hidden;
  }

  .mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
  }

  .mvv-card:nth-child(1)::before {
    background: var(--orange);
  }

  .mvv-card:nth-child(2)::before {
    background: var(--purple);
  }

  .mvv-card:nth-child(3)::before {
    background: var(--green);
  }

  .mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
  }

  .mvv-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
  }

  .mvv-card:nth-child(1) .icon-wrap {
    background: #fff3e8;
    color: var(--orange);
  }

  .mvv-card:nth-child(2) .icon-wrap {
    background: #f3e8ff;
    color: var(--purple);
  }

  .mvv-card:nth-child(3) .icon-wrap {
    background: #e8f5e9;
    color: var(--green);
  }

  .mvv-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 14px;
  }

  .mvv-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
  }

  /* TEAM */
  .team-section {
    padding: 80px 60px;
    background: var(--white);
  }

  .team-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }

  .team-card {
    text-align: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
    transition: transform .3s;
  }

  .team-card:hover {
    transform: translateY(-6px);
  }

  .team-card .photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f0e8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
  }

  .team-card .photo-placeholder {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
  }

  .team-card:nth-child(1) .photo-placeholder {
    background: #ffe8d6;
  }

  .team-card:nth-child(2) .photo-placeholder {
    background: #e8f0ff;
  }

  .team-card:nth-child(3) .photo-placeholder {
    background: #e8ffe8;
  }

  .team-card:nth-child(4) .photo-placeholder {
    background: #ffe8f0;
  }

  .team-card .info {
    padding: 20px;
  }

  .team-card .info h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
  }

  .team-card .info .role {
    color: var(--orange);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
  }

  .team-card .socials a {
    color: #aaa;
    margin: 0 5px;
    transition: color .2s;
  }

  .team-card .socials a:hover {
    color: var(--orange);
  }

  /* STATS */
  .stats-section {
    background: linear-gradient(135deg, var(--maroon), #a01550);
    padding: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    color: #fff;
  }

  .stat-item .number {
    font-family: 'Baloo 2', cursive;
    font-size: 52px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
  }

  .stat-item .label {
    font-size: 15px;
    opacity: .9;
    margin-top: 6px;
    font-weight: 600;
  }

  /* Services-page-css-strat */

  /* PROGRAMS GRID */
  .programs-section {
    padding: 80px 60px;
    background: var(--white);
  }

  .programs-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .program-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .09);
    transition: transform .3s, box-shadow .3s;
    background: #fff;
  }

  .program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
  }

  .program-card .thumb {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
  }

  .program-card:nth-child(1) .thumb {
    background: linear-gradient(135deg, #ffe8d6, #ffd0b5);
  }

  .program-card:nth-child(2) .thumb {
    background: linear-gradient(135deg, #e8f0ff, #d0e4ff);
  }

  .program-card:nth-child(3) .thumb {
    background: linear-gradient(135deg, #e8ffe8, #c8f0c8);
  }

  .program-card:nth-child(4) .thumb {
    background: linear-gradient(135deg, #ffe8f8, #ffd0f0);
  }

  .program-card:nth-child(5) .thumb {
    background: linear-gradient(135deg, #fff8e8, #ffe8c0);
  }

  .program-card:nth-child(6) .thumb {
    background: linear-gradient(135deg, #e8f8ff, #c8eeff);
  }

  .program-card .arrow-btn {
    position: absolute;
    bottom: -18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(244, 123, 32, .4);
    font-size: 14px;
  }

  .program-card .body {
    padding: 28px 24px 24px;
  }

  .program-card .age-tag {
    background: #fff3e8;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
  }

  .program-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
  }

  .program-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
  }

  .program-card .features {
    list-style: none;
  }

  .program-card .features li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
  }

  .program-card .features li i {
    color: var(--green);
    font-size: 12px;
  }

  /* WHY CHOOSE US */
  .why-section {
    background: var(--light-bg);
    padding: 80px 60px;
  }

  .why-inner {
    display: flex;
    gap: 60px;
    align-items: center;
  }

  .why-content {
    flex: 1;
  }

  .why-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .why-cards {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .why-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
    transition: transform .3s;
  }

  .why-card:hover {
    transform: translateY(-4px);
  }

  .why-card .icon {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .why-card h4 {
    font-family: 'Baloo 2', cursive;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
  }

  .why-card p {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
  }

  /* SCHEDULE / PRICING */
  .pricing-section {
    padding: 80px 60px;
    background: var(--white);
    text-align: center;
  }

  .pricing-section .section-header {
    margin-bottom: 50px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto;
  }

  .pricing-card {
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #eee;
    position: relative;
    transition: transform .3s, box-shadow .3s;
  }

  .pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .1);
  }

  .pricing-card.featured {
    background: var(--maroon);
    color: #fff;
    border-color: var(--maroon);
    transform: scale(1.05);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
  }

  .pricing-card .badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange);
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
  }

  .pricing-card h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
  }

  .pricing-card .price {
    font-family: 'Baloo 2', cursive;
    font-size: 42px;
    font-weight: 800;
    color: var(--orange);
    margin: 16px 0;
  }

  .pricing-card.featured .price {
    color: var(--yellow);
  }

  .pricing-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: #999;
  }

  .pricing-card.featured .price span {
    color: rgba(255, 255, 255, .7);
  }

  .pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 20px 0;
  }

  .pricing-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    display: flex;
    gap: 8px;
  }

  .pricing-card.featured ul li {
    border-color: rgba(255, 255, 255, .15);
  }

  .pricing-card ul li i {
    color: var(--green);
  }

  .pricing-card .btn {
    display: block;
    padding: 12px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    margin-top: 10px;
    background: var(--orange);
    color: #fff;
    transition: background .2s;
  }

  .pricing-card .btn:hover {
    background: #d66a10;
  }

  .pricing-card.featured .btn {
    background: #fff;
    color: var(--maroon);
  }

  .pricing-card.featured .btn:hover {
    background: var(--yellow);
    color: #333;
  }



  .about-obj-2 img {
    transform-origin: bottom center;
    /* tree moves from bottom */
    animation: treeSwing 3s ease-in-out infinite;
  }

  @keyframes treeSwing {
    0% {
      transform: rotate(0deg);
    }

    25% {
      transform: rotate(2deg);
    }

    50% {
      transform: rotate(0deg);
    }

    75% {
      transform: rotate(-2deg);
    }

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

  .team-section .cmn-heading {
    text-align: center;
    margin-bottom: 50px;
  }

  .programs-section .cmn-heading {
    text-align: center;
    margin-bottom: 50px;
  }

  .pricing-section .cmn-heading {
    margin-bottom: 50px;
  }

  /* RATING SUMMARY */
  .rating-banner {
    background: var(--light-bg);
    padding: 50px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  .overall-rating {
    text-align: center;
  }

  .overall-rating .big-num {
    font-family: 'Baloo 2', cursive;
    font-size: 80px;
    font-weight: 800;
    color: var(--maroon);
    line-height: 1;
  }

  .overall-rating .stars {
    color: var(--yellow);
    font-size: 26px;
    margin: 8px 0;
  }

  .overall-rating .count {
    color: #888;
    font-size: 14px;
  }

  .rating-bars {
    flex: 1;
    max-width: 400px;
  }

  .rating-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .rating-bar-row .label {
    font-size: 13px;
    font-weight: 600;
    width: 40px;
  }

  .rating-bar-row .bar-bg {
    flex: 1;
    height: 10px;
    background: #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
  }

  .rating-bar-row .bar-fill {
    height: 100%;
    background: var(--yellow);
    border-radius: 6px;
  }

  .rating-bar-row .pct {
    font-size: 12px;
    color: #888;
    width: 30px;
    text-align: right;
  }

  .rating-highlights {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
  }

  .highlight-item {
    text-align: center;
    background: #fff;
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
  }

  .highlight-item .num {
    font-family: 'Baloo 2', cursive;
    font-size: 32px;
    font-weight: 800;
    color: var(--orange);
  }

  .highlight-item .label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
  }

  /* TESTIMONIALS GRID */
  .testimonials-section {
    padding: 80px 60px;
    background: var(--white);
  }

  .testimonials-section .section-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
    transition: transform .3s, box-shadow .3s;
    position: relative;
  }

  .testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
  }

  .testimonial-card.featured {
    background: var(--purple);
    color: #fff;
    grid-column: span 1;
  }

  .testimonial-card.large {
    grid-column: span 2;
    background: var(--maroon);
    color: #fff;
  }

  .quote-icon {
    font-size: 48px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
    font-weight: 900;
  }

  .testimonial-card.featured .quote-icon,
  .testimonial-card.large .quote-icon {
    color: rgba(255, 255, 255, .4);
  }

  .testimonial-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
  }

  .testimonial-card.featured p,
  .testimonial-card.large p {
    color: rgba(255, 255, 255, .85);
  }

  .stars {
    color: var(--yellow);
    font-size: 14px;
    margin-bottom: 16px;
  }

  .reviewer {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .reviewer .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    flex-shrink: 0;
  }

  .reviewer .avatar.c1 {
    background: #ffe8d6;
  }

  .reviewer .avatar.c2 {
    background: #e8f0ff;
  }

  .reviewer .avatar.c3 {
    background: #e8ffe8;
  }

  .reviewer .avatar.c4 {
    background: #ffe8f8;
  }

  .reviewer .avatar.c5 {
    background: #fff8e8;
  }

  .reviewer .avatar.c6 {
    background: #f0e8ff;
  }

  .reviewer .avatar.white {
    background: rgba(255, 255, 255, .2);
    color: #fff;
  }

  .reviewer-info h4 {
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 2px;
  }

  .reviewer-info .role {
    font-size: 13px;
    color: #999;
  }

  .testimonial-card.featured .reviewer-info .role,
  .testimonial-card.large .reviewer-info .role {
    color: rgba(255, 255, 255, .6);
  }

  .testimonials-section .cmn-heading {
    text-align: center;
  }

  .testimonials-section .cmn-heading {
    margin-bottom: 50px;
  }

  /* services-CSS */
  .inner-services .col-md-4 {
    margin-bottom: 80px;
  }

  /* GALLERY-BOX-CSS */
  .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .section-subtitle {
    color: #777;
    margin-bottom: 40px;
  }

  /* Grid */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  /* Item */
  .gallery-item {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  /* Image */
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    transition: 0.5s;
  }

  /* Hover Zoom */
  .gallery-item:hover img {
    transform: scale(1.1);
  }

  /* Overlay */
  .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 122, 0, 0.7), rgba(234, 179, 8, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
  }

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

  /* Icon */
  .gallery-overlay i {
    color: #fff;
    font-size: 24px;
    background: #000;
    padding: 15px;
    border-radius: 50%;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }

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


  /* contact-us-css */
  /* ── CONTACT INFO STRIP ── */
  .info-strip {
    background: var(--cream);
  }

  .info-strip-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  .info-card {
    background: #fff;
    border-radius: 20px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.07);
    transition: transform .25s, box-shadow .25s;
    position: relative;
    overflow: hidden;
  }

  .info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--orange);
  }

  .info-card:nth-child(2)::before {
    background: var(--green);
  }

  .info-card:nth-child(3)::before {
    background: var(--blue);
  }

  .info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
  }

  .info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
  }

  .info-card:nth-child(1) .info-icon {
    background: #fff4e8;
    color: var(--orange);
  }

  .info-card:nth-child(2) .info-icon {
    background: #edfbea;
    color: var(--green);
  }

  .info-card:nth-child(3) .info-icon {
    background: #e8f7fd;
    color: var(--blue);
  }

  .info-card h4 {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
  }

  .info-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
  }

  .info-card a {
    color: var(--orange);
    text-decoration: none;
    font-weight: 700;
  }

  /* ── MAIN SECTION ── */

  /* Left – text + fun deco */
  .contact-left .section-tag {
    font-size: 13px;
    font-weight: 800;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
  }

  .contact-left h2 {
    font-size: 38px;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .contact-left h2 span {
    color: var(--orange);
  }

  .contact-left p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .hours-box {
    background: var(--cream);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 30px;
  }

  .hours-box h5 {
    font-size: 16px;
    font-weight: 800;
    color: var(--maroon);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .hours-box ul {
    list-style: none;
  }

  .hours-box ul li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px dashed #e0d8cc;
    color: #555;
  }

  .hours-box ul li:last-child {
    border: none;
  }

  .hours-box ul li span {
    font-weight: 700;
    color: var(--green);
  }

  .social-row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
  }

  .social-row a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: transform .2s;
  }

  .social-row a:hover {
    transform: scale(1.15);
  }

  .social-row a.fb {
    background: #1877f2;
  }

  .social-row a.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  }

  .social-row a.li {
    background: #0a66c2;
  }

  .social-row a.pi {
    background: #e60023;
  }

  /* Right – form */
  .contact-form-wrap {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    position: relative;
  }

  .contact-form-wrap::after {
    content: '✦';
    position: absolute;
    top: -16px;
    right: 24px;
    font-size: 32px;
    color: var(--yellow);
  }

  .contact-form-wrap h3 {
    font-size: 22px;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 6px;
    font-family: 'Poppins', sans-serif;
  }

  .contact-form-wrap .sub-h {
    font-size: 13px;
    color: #888;
    margin-bottom: 28px;
  }

  /* .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; } */
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-family: 'Nunito', sans-serif;
    color: var(--dark);
    outline: none;
    transition: border-color .2s;
    background: #fafafa;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--orange);
    background: #fff;
  }

  .form-group textarea {
    resize: vertical;
    min-height: 110px;
  }

  .btn-submit {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    cursor: pointer;
    width: 100%;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .btn-submit:hover {
    background: var(--maroon);
    transform: scale(1.02);
  }

  /* ── MAP SECTION ── */
  .map-section {
    padding: 0 40px 70px;
    max-width: 1100px;
    margin: 0 auto;
  }

  .map-section h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
    text-align: center;
  }

  .map-section h3 span {
    color: var(--orange);
  }

  .map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    height: 380px;
  }

  .map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
  }

  .contact-us-page {
    padding: 80px 0;
  }

  .baner-obj-2 img {
    animation: floatY 4s ease-in-out infinite;
  }

  /* Animation */
  @keyframes floatY {
    0% {
      transform: translateY(0);
    }

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

    100% {
      transform: translateY(0);
    }

  }

  .baner-obj-1 img {
    animation: rotateObj 6s linear infinite;
  }

  @keyframes rotateObj {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .about-obj-4 {
    position: absolute;
    /* adjust based on your layout */
  }

  .about-obj-4 img {
    animation: floatPlane 4s ease-in-out infinite;
  }

  @keyframes floatPlane {
    0% {
      transform: translateY(0);
    }

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

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

  .about-obj-balloon img {
    animation: balloonFloat 6s ease-in-out infinite;
  }

  /* Animation */
  @keyframes balloonFloat {
    0% {
      transform: translateY(0) translateX(0);
    }

    25% {
      transform: translateY(-15px) translateX(5px);
    }

    50% {
      transform: translateY(-25px) translateX(0);
    }

    75% {
      transform: translateY(-15px) translateX(-5px);
    }

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

  .services-obj img {
    animation: floatRotateObj 7s ease-in-out infinite;
  }

  @keyframes floatRotateObj {
    0% {
      transform: translateY(0) rotate(0deg);
    }

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

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

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

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

  .cmn-heading h3 span img {
    display: inline-block;
    animation: rotateStar 6s linear infinite;
  }

  /* Animation */
  @keyframes rotateStar {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .banner-con h3 span img {
    display: inline-block;
    animation: rotateStar 6s linear infinite;
  }

  .banner-con h1 {
    animation: popIn 0.8s ease;
  }

  @keyframes popIn {
    0% {
      transform: scale(0.5);
      opacity: 0;
    }

    70% {
      transform: scale(1.1);
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .typing-text {
    width: fit-content;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #000;
    animation: typing 3s steps(30, end), blink 0.7s infinite;
  }

  /* Typing effect */
  @keyframes typing {
    from {
      width: 0;
    }

    to {
      width: 100%;
    }
  }

  /* Cursor blink */
  @keyframes blink {
    50% {
      border-color: transparent;
    }
  }

  /* initial hidden state */
  .cmn-heading h3,
  .cmn-heading h2,
  .cmn-heading p,
  .cmn-heading .dot-divider {
    opacity: 0;
    transform: translateY(30px);
  }

  /* animate when loaded */
  .cmn-heading h3 {
    animation: fadeUp 0.8s ease forwards;
  }

  .cmn-heading h2 {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
  }

  .cmn-heading p {
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
  }

  .cmn-heading .dot-divider {
    animation: scaleIn 0.8s ease forwards;
    animation-delay: 0.6s;
  }

  /* fade up animation */
  @keyframes fadeUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* divider animation */
  @keyframes scaleIn {
    0% {
      opacity: 0;
      transform: scaleX(0);
    }

    100% {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  .main-years-box {
    opacity: 0;
    transform: scale(0.5);
    animation: popBox 0.8s ease forwards;
  }

  @keyframes popBox {
    0% {
      opacity: 0;
      transform: scale(0.5);
    }

    70% {
      transform: scale(1.1);
    }

    100% {
      opacity: 1;
      transform: scale(1);
    }
  }


  /* services-details-page-css */
  /* DETAIL LAYOUT */
  .detail-wrap {
    padding: 80px 0;
  }

  .detail-wrap.reverse {
    direction: rtl;
  }

  .detail-wrap.reverse>* {
    direction: ltr;
  }

  .img-box {
    position: relative;
  }

  .img-box img {
    width: 100%;
    border-radius: 18px;
    height: 340px;
    object-fit: cover;
    display: block;
  }

  .age-pill {
    position: absolute;
    bottom: -16px;
    left: 20px;
    background: var(--maroon);
    color: #fff;
    border-radius: 30px;
    padding: 8px 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 13px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  }

  .info-tag {
    display: inline-block;
    background: #fef0e0;
    color: var(--orange);
    border-radius: 20px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 12px;
  }

  .info h2 span {
    color: var(--orange);
  }

  .info p {
    font-size: 17px;
    color: #000;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .info ul {
    list-style: none;
    margin-bottom: 24px;
  }

  .info ul li {
    font-size: 17px;
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .info ul li i {
    color: var(--orange);
    font-size: 13px;
  }

  .btn-enroll {
    background: var(--orange);
    color: #fff;
    border: none;
    padding: 11px 26px;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
    cursor: pointer;
    transition: background .2s;
  }

  .btn-enroll:hover {
    background: var(--maroon);
  }

  .detail-wrap ul {
    padding: 0;
  }

  /* pop-up-css */
  .form-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    width: 500px;
    text-align: center;
    position: relative;
    animation: popupFade 0.3s ease;
  }

  @keyframes popupFade {
    from {
      transform: scale(0.8);
      opacity: 0;
    }

    to {
      transform: scale(1);
      opacity: 1;
    }
  }

  .form-box input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .submit-btn {
    width: 100%;
    padding: 10px;
    background: orange;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
  }

  /* banner-h1-tag-animation */
  .banner-con h1 .line2 { color: var(--orange); }

.cursor {
  display: inline-block;
  width: 3px;
  height: 0.85em;
  background: var(--orange);
  margin-left: 2px;
  vertical-align: middle;
  border-radius: 2px;
  animation: blink 0.75s step-end infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}
#line1{
  color:#000;
}

.cmn-heading h2 {
  font-size: 55px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 900;
  opacity: 0;
  transform: translateY(30px);
  animation: h2SlideUp 0.7s cubic-bezier(.22,1,.36,1) forwards 0.3s;
}

.cmn-heading h2 {
  font-size: 55px;
  font-family: "Baloo 2", sans-serif;
  font-weight: 900;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1),
              transform 0.7s cubic-bezier(.22,1,.36,1);
}

.cmn-heading h2 span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(.22,1,.36,1) 0.25s,
              transform 0.7s cubic-bezier(.22,1,.36,1) 0.25s;
}

.cmn-heading h2.in-view {
  opacity: 1;
  transform: translateY(0);
}

.cmn-heading h2.in-view span {
  opacity: 1;
  transform: translateY(0);
}

.about-page .about-section{
  padding: 80px 0 280px 0;
}
.contact-main input{
    width:100%;
}
.contact-main textarea{
    width:100%;
}
.contact-main .dscf7-captcha-container{
    width:100%;
}

/* ---------------- */
.open-btn{
    display:block;
    margin:120px auto;
    padding:15px 35px;
    font-size:18px;
    background:#0d6efd;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
}

.open-btn:hover{
    background:#0b5ed7;
}

/* Popup Background */
.popup{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:9999;
}

/* Popup Box */
.popup-content{
    background:#fff;
    width:100%;
    max-width:550px;
    max-height:90vh;
    overflow-y:auto;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    animation:popup .3s ease;
    position:relative;
}

/* Header */
.popup-header{
    background:#0d6efd;
    color:#fff;
    padding:18px;
    text-align:center;
    position:sticky;
    top:0;
    z-index:10;
}

.popup-header h2{
    font-size:24px;
}

/* Close Button */
.close{
    position:absolute;
    top:15px;
    right:18px;
    color:#fff;
    font-size:30px;
    cursor:pointer;
    font-weight:bold;
}

.close:hover{
    color:#ffdddd;
}

/* Form */
form{
    padding:25px;
}

.form-group{
    margin-bottom:18px;
}

label{
    display:block;
    font-weight:bold;
    margin-bottom:8px;
}

input,
textarea{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

input:focus,
textarea:focus{
    border-color:#0d6efd;
    box-shadow:0 0 5px rgba(13,110,253,.25);
}

textarea{
    resize:vertical;
    min-height:90px;
}

/* Submit Button */
.submit-btn{
    width:100%;
    padding:14px;
    background:#28a745;
    color:#fff;
    border:none;
    border-radius:6px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.submit-btn:hover{
    background:#218838;
}

/* Scrollbar */
.popup-content::-webkit-scrollbar{
    width:8px;
}

.popup-content::-webkit-scrollbar-thumb{
    background:#0d6efd;
    border-radius:20px;
}

/* Animation */
@keyframes popup{
    from{
        transform:scale(.8);
        opacity:0;
    }
    to{
        transform:scale(1);
        opacity:1;
    }
}

/* Mobile */
@media(max-width:600px){

.popup-header h2{
    font-size:20px;
}

form{
    padding:18px;
}

}
/* Fixed Button */
.aj-book-btn{
    position:fixed;
    top:50%;
    right: -84px;
    transform:translateY(-50%) rotate(-90deg);
    background:#0d6efd;
    color:#fff;
    padding:15px 35px;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    border-radius:10px 10px 0 0;
    cursor:pointer;
    transition:.3s;
    z-index:99999;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
}

.aj-book-btn:hover{
/*     right:-55px; */
    background:#0056d2;
}

/* Popup */
.aj-popup-overlay{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}
.aj-popup-box form{
    padding:0 !important;
}

.aj-popup-overlay.active{
    display:flex;
}

.aj-popup-box{
    width:550px;
    max-width:95%;
    max-height:90vh;
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    animation:popup .3s ease;
}

@keyframes popup{
from{
transform:scale(.8);
opacity:0;
}
to{
transform:scale(1);
opacity:1;
}
}

.aj-popup-header{
    background:#0d6efd;
    color:#fff;
    padding:18px;
    text-align:center;
    font-size:30px;
    font-weight:700;
    position:relative;
}

.aj-close-btn{
    position:absolute;
    right:18px;
    top:10px;
    font-size:34px;
    cursor:pointer;
}

.aj-popup-body{
    padding:25px;
    overflow-y:auto;
    max-height:75vh;
}

.aj-form-group{
    margin-bottom:18px;
}

.aj-form-group label{
    display:block;
    font-weight:700;
    margin-bottom:8px;
}

.aj-input,
.aj-textarea{
    width:100%;
    border:1px solid #ccc;
    border-radius:6px;
    padding:12px;
    font-size:16px;
}

.aj-textarea{
    resize:vertical;
    height:120px;
}

.aj-submit-btn{
    width:100%;
    background:#28a745;
    color:#fff;
    border:none;
    padding:15px;
    font-size:20px;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
}

.aj-submit-btn:hover{
    background:#218838;
}

@media(max-width:600px){

.aj-book-btn{
font-size:16px;
padding:12px 28px;
right:-60px;
}

.aj-popup-header{
font-size:24px;
}

}

.spinner{
    width:16px;
    height:16px;
    border:2px solid rgba(255,255,255,.4);
    border-top:2px solid #fff;
    border-radius:50%;
    display:inline-block;
    animation:spin .8s linear infinite;
}

@keyframes spin{
    to{
        transform:rotate(360deg);
    }
}
