
    :root {
      /* Primary - Fresh Green */
      --teal: #60b15f;
      --teal-dark: #4a9149;
      --teal-light: #e8f5e9;
      --teal-glow: rgba(96, 177, 95, 0.4);
      /* Secondary - Deep Blue */
      --coral: #214578;
      --coral-dark: #1a3760;
      --coral-light: #e8eef6;
      /* Accent - Soft Golden Yellow */
      --yellow: #FFD166;
      --yellow-light: #FFF4D6;
      /* Tertiary - Soft Sky Blue */
      --purple: #6BA3D6;
      --purple-light: #EAF2FA;
      /* Keep green for variety */
      --green: #60b15f;
      --green-light: #e8f5e9;
      /* Dark tones - based on blue */
      --navy: #214578;
      --navy-light: #2d5a8a;
      --white: #FFFFFF;
      --cream: #F8FAFB;
      --text-dark: #1a3760;
      --text-medium: #4a6382;
      --text-light: #6b849e;
      /* Accent colors */
      --lime: #60b15f;
      --lime-light: #e8f5e9;
      --deep-blue: #214578;
      --deep-blue-light: #e8eef6;
      --red: #E85A5A;
      --red-light: #FEE8E8;
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--white);
      color: var(--text-dark);
      line-height: 1.7;
      overflow-x: hidden;
      cursor: none;
    }

    /* Scroll Progress Bar */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      width: 0%;
      height: 4px;
      background: linear-gradient(90deg, var(--teal), var(--coral), var(--yellow), var(--teal));
      background-size: 300% 100%;
      z-index: 10001;
      transition: width 0.1s ease-out;
      animation: gradientShift 3s ease infinite;
    }

    @keyframes gradientShift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    /* Custom Cursor */
    .cursor {
      width: 20px;
      height: 20px;
      border: 2px solid var(--teal);
      border-radius: 50%;
      position: fixed;
      pointer-events: none;
      z-index: 10000;
      transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
      transform: translate(-50%, -50%);
    }

    .cursor.hovering {
      transform: translate(-50%, -50%) scale(1.5);
      background: rgba(58, 175, 169, 0.2);
      border-color: var(--coral);
    }

    /* Sparkle Trail */
    .sparkle {
      position: fixed;
      pointer-events: none;
      z-index: 9999;
      animation: sparkleAnim 0.8s ease-out forwards;
    }

    @keyframes sparkleAnim {
      0% { opacity: 1; transform: scale(1) rotate(0deg); }
      100% { opacity: 0; transform: scale(0) rotate(180deg) translateY(20px); }
    }

    /* Sticky Floating CTA */
    .floating-cta {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      opacity: 0;
      transform: translateY(20px) scale(0.9);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
    }

    .floating-cta.visible {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .floating-cta a {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 1.75rem;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      color: white;
      text-decoration: none;
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      font-size: 1rem;
      border-radius: 50px;
      box-shadow: 0 10px 40px var(--teal-glow), 0 0 0 0 rgba(58, 175, 169, 0.4);
      animation: pulseGlow 2s ease-in-out infinite;
      cursor: none;
    }

    @keyframes pulseGlow {
      0%, 100% { box-shadow: 0 10px 40px var(--teal-glow), 0 0 0 0 rgba(58, 175, 169, 0.4); }
      50% { box-shadow: 0 10px 40px var(--teal-glow), 0 0 0 10px rgba(58, 175, 169, 0); }
    }

    .floating-cta a:hover {
      transform: scale(1.05);
    }

    h1, h2, h3, h4 {
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      line-height: 1.2;
    }

    /* Navigation */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 1rem 2rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    nav.scrolled {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(20px);
      box-shadow: 0 4px 30px rgba(23, 37, 42, 0.1);
      padding: 0.5rem 2rem;
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: transform 0.3s ease;
      font-family: 'Baloo 2', cursive;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--navy);
    }

    .logo:hover {
      transform: scale(1.02);
    }

    .logo .the {
      color: var(--navy);
    }

    .logo .preschool {
      color: var(--teal);
    }

    .logo .place {
      color: var(--navy);
    }

    nav.scrolled .logo {
      font-size: 1.35rem;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      list-style: none;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--navy);
      font-weight: 700;
      font-size: 0.95rem;
      position: relative;
      transition: color 0.3s ease;
      cursor: none;
    }

    .nav-links a:not(.nav-cta):hover {
      color: var(--teal);
    }

    .nav-links a:not(.nav-cta)::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 50%;
      width: 0;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
      transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      transform: translateX(-50%);
    }

    .nav-links a:not(.nav-cta):hover::after {
      width: 100%;
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      color: white !important;
      padding: 0.85rem 1.75rem;
      border-radius: 50px;
      box-shadow: 0 4px 15px var(--teal-glow);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-cta:hover {
      box-shadow: 0 8px 30px var(--teal-glow);
      transform: translateY(-2px);
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 10px;
      z-index: 1001;
    }

    .mobile-menu span {
      width: 30px;
      height: 3px;
      background: var(--navy);
      border-radius: 3px;
    }

    /* Magnetic Button */
    .magnetic-btn {
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 6rem 2rem 4rem;
      position: relative;
      overflow: hidden;
      background: var(--cream);
    }

    /* Animated Background Blobs */
    .hero-bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-bg-shape {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      opacity: 0.5;
      animation: morphBg 20s ease-in-out infinite;
    }

    .hero-bg-shape:nth-child(1) {
      width: 600px;
      height: 600px;
      background: var(--teal-light);
      top: -20%;
      right: -10%;
    }

    .hero-bg-shape:nth-child(2) {
      width: 500px;
      height: 500px;
      background: var(--coral-light);
      bottom: -15%;
      left: -10%;
      animation-delay: -5s;
    }

    .hero-bg-shape:nth-child(3) {
      width: 400px;
      height: 400px;
      background: var(--yellow-light);
      top: 50%;
      left: 30%;
      animation-delay: -10s;
    }

    @keyframes morphBg {
      0%, 100% { transform: translate(0, 0) scale(1); }
      25% { transform: translate(30px, -30px) scale(1.05); }
      50% { transform: translate(-20px, 20px) scale(0.95); }
      75% { transform: translate(20px, 10px) scale(1.02); }
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      opacity: 1;
    }

    .hero-badge-top {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      padding: 0.6rem 1.25rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--teal);
      margin-bottom: 1.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      opacity: 0;
      animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
    }

    @keyframes fadeSlideUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .hero-badge-top .wave {
      display: inline-block;
      animation: wave 1s ease-in-out infinite;
      transform-origin: 70% 70%;
    }

    @keyframes wave {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(20deg); }
      75% { transform: rotate(-10deg); }
    }

    /* Split Text Animation */
    .hero-content h1 {
      font-size: clamp(2.75rem, 5vw, 4rem);
      color: var(--navy);
      margin-bottom: 1rem;
      line-height: 1.15;
    }

    .split-text {
      display: inline-block;
      overflow: hidden;
    }

    .split-text .word {
      display: inline-block;
      transform: translateY(100%);
      opacity: 0;
      animation: wordSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    .split-text .word:nth-child(1) { animation-delay: 0.3s; }
    .split-text .word:nth-child(2) { animation-delay: 0.4s; }
    .split-text .word:nth-child(3) { animation-delay: 0.5s; }
    .split-text .word:nth-child(4) { animation-delay: 0.6s; }
    .split-text .word:nth-child(5) { animation-delay: 0.7s; }
    .split-text .word:nth-child(6) { animation-delay: 0.8s; }

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

    .highlight-box {
      position: relative;
      color: var(--teal);
      display: inline-block;
    }

    .highlight-box::before {
      content: '';
      position: absolute;
      bottom: 5px;
      left: -5px;
      right: -5px;
      height: 35%;
      background: var(--yellow);
      z-index: -1;
      border-radius: 4px;
      transform: skewX(-3deg) scaleX(0);
      transform-origin: left;
      animation: highlightReveal 0.5s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
    }

    @keyframes highlightReveal {
      to { transform: skewX(-3deg) scaleX(1); }
    }

    .hero-tagline {
      font-family: 'Nunito', sans-serif;
      font-style: italic;
      font-size: 1.4rem;
      color: var(--teal);
      margin-bottom: 1.5rem;
      font-weight: 600;
      opacity: 0;
      animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.9s forwards;
    }

    .hero-content > p {
      font-size: 1.15rem;
      color: var(--text-medium);
      margin-bottom: 2.5rem;
      max-width: 520px;
      line-height: 1.8;
      opacity: 0;
      animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1s forwards;
    }

    .hero-buttons {
      display: flex;
      gap: 1.25rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 1.1s forwards;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1.1rem 2.25rem;
      border-radius: 50px;
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      font-size: 1.05rem;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: none;
      border: none;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      color: white;
      box-shadow: 0 8px 30px var(--teal-glow);
    }

    .btn-primary::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
      transition: left 0.6s ease;
    }

    .btn-primary:hover::before {
      left: 100%;
    }

    .btn-primary:hover {
      box-shadow: 0 15px 40px var(--teal-glow);
      transform: translateY(-3px);
    }

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

    .btn-primary:hover .btn-arrow {
      transform: translateX(5px);
    }

    .btn-secondary {
      background: white;
      color: var(--teal);
      border: 3px solid var(--teal);
      box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .btn-secondary:hover {
      background: var(--teal);
      color: white;
      box-shadow: 0 10px 30px var(--teal-glow);
      transform: translateY(-3px);
    }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      opacity: 0;
      animation: fadeSlideRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    }

    @keyframes fadeSlideRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .hero-image-wrapper {
      position: relative;
      perspective: 1000px;
    }

    .hero-image-container {
      position: relative;
      border-radius: 30px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(23, 37, 42, 0.15);
      transform-style: preserve-3d;
      transition: transform 0.3s ease;
    }

    .hero-image {
      width: 100%;
      height: 480px;
      object-fit: cover;
      display: block;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      position: relative;
    }

    .hero-video-container {
      width: 100%;
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      background: var(--navy);
      border-radius: 30px;
    }
.hidden {
      display: none !important;
    }
    .hero-video-container iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
    }

    /* 3D Tilt Glare Effect */
    .tilt-glare {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, transparent 50%, transparent 100%);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      border-radius: 30px;
    }

    /* Wave Divider */
    .wave-divider {
      position: relative;
      height: 100px;
      overflow: hidden;
    }

    .wave-divider svg {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
    }

    .wave-divider.flip svg {
      top: 0;
      bottom: auto;
      transform: scaleY(-1);
    }

    /* Stats Section */
    .stats {
      background: var(--navy);
      padding: 5rem 2rem;
      position: relative;
      overflow: hidden;
    }

    .stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233AAFA9' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .stats-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    .stat-item {
      text-align: center;
      padding: 2rem 1rem;
      border-radius: 24px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(58, 175, 169, 0.2);
      transition: all 0.4s ease;
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .stat-item:hover {
      background: rgba(58, 175, 169, 0.1);
      border-color: var(--teal);
    }

    .stat-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      display: block;
    }

    .stat-number {
      font-family: 'Baloo 2', cursive;
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--yellow) 0%, var(--coral) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1;
    }

    .stat-label {
      color: rgba(255,255,255,0.8);
      font-weight: 700;
      font-size: 1rem;
      margin-top: 0.5rem;
    }

    /* Section Styling */
    .section-header {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 4rem;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: linear-gradient(135deg, var(--teal-light) 0%, white 100%);
      color: var(--teal-dark);
      padding: 0.6rem 1.5rem;
      border-radius: 50px;
      font-weight: 800;
      font-size: 0.85rem;
      margin-bottom: 1.25rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(58, 175, 169, 0.15);
    }

    .section-header h2 {
      font-size: clamp(2.25rem, 4vw, 3rem);
      color: var(--navy);
      margin-bottom: 1rem;
    }

    /* Split Text for Section Headers */
    .section-header h2 .char {
      display: inline-block;
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-header h2.animate .char {
      opacity: 1;
      transform: translateY(0);
    }

    .section-header p {
      color: var(--text-medium);
      font-size: 1.15rem;
      line-height: 1.8;
    }

    /* Image Reveal Animation */
    .image-reveal {
      position: relative;
      overflow: hidden;
    }

    .image-reveal::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--teal);
      transform: scaleX(1);
      transform-origin: right;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 2;
    }

    .image-reveal.revealed::after {
      transform: scaleX(0);
    }

    .image-reveal img,
    .image-reveal .placeholder-image {
      transform: scale(1.2);
      transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .image-reveal.revealed img,
    .image-reveal.revealed .placeholder-image {
      transform: scale(1);
    }

    /* 3D Tilt Card */
    .tilt-card {
      transform-style: preserve-3d;
      perspective: 1000px;
    }

    .tilt-card-inner {
      transition: transform 0.3s ease;
      transform-style: preserve-3d;
    }

    .tilt-card .card-glare {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
      border-radius: inherit;
    }

    /* Philosophy Section */
    .philosophy {
      padding: 7rem 2rem;
      background: var(--white);
    }

    .philosophy-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .philosophy-card {
      background: linear-gradient(180deg, var(--cream) 0%, white 100%);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
    }

    .philosophy-card .card-glare {
      border-radius: 24px;
    }

    .philosophy-card:hover {
      border-color: var(--teal);
      box-shadow: 0 30px 60px rgba(23, 37, 42, 0.12);
    }

    .philosophy-icon {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 3rem;
      margin: 0 auto 2rem;
      transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

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

    .philosophy-card:nth-child(1) .philosophy-icon { background: linear-gradient(135deg, var(--teal-light), var(--teal)); color: white; }
    .philosophy-card:nth-child(2) .philosophy-icon { background: linear-gradient(135deg, var(--coral-light), var(--coral)); color: white; }
    .philosophy-card:nth-child(3) .philosophy-icon { background: linear-gradient(135deg, var(--yellow-light), var(--yellow)); color: var(--navy); }

    .philosophy-card h3 {
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .philosophy-card p {
      color: var(--text-medium);
      font-size: 1.02rem;
      line-height: 1.8;
    }

    /* About Section */
    .about {
      padding: 7rem 2rem;
      background: linear-gradient(180deg, var(--teal-light) 0%, var(--cream) 100%);
      position: relative;
      overflow: hidden;
    }

    .about-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 6rem;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-img-main {
      width: 100%;
      height: 550px;
      border-radius: 30px;
      background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
      box-shadow: 0 30px 60px rgba(58, 175, 169, 0.25);
      overflow: hidden;
      position: relative;
    }

    .about-img-main img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-img-main::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--teal);
      border-radius: 30px;
      transform: scaleX(1);
      transform-origin: right;
      transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
      z-index: 2;
    }

    .about-img-main.revealed::after {
      transform: scaleX(0);
    }

    .about-img-accent {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 180px;
      height: 180px;
      border-radius: 24px;
      background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      border: 6px solid white;
      box-shadow: 0 20px 50px rgba(232, 139, 122, 0.35);
      z-index: 3;
      opacity: 0;
      transform: scale(0.8);
      transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s;
    }

    .about-img-main.revealed + .about-img-accent,
    .about-image.revealed .about-img-accent {
      opacity: 1;
      transform: scale(1);
    }

    .about-content .section-tag {
      background: linear-gradient(135deg, var(--coral-light) 0%, white 100%);
      color: var(--coral-dark);
    }

    .about-content h2 {
      font-size: clamp(2rem, 4vw, 2.75rem);
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    .about-content > p {
      color: var(--text-medium);
      font-size: 1.08rem;
      margin-bottom: 1.5rem;
      line-height: 1.9;
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin: 2.5rem 0;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.25rem;
      background: white;
      border-radius: 16px;
      border: 2px solid var(--teal-light);
      transition: all 0.3s ease;
      transform-style: preserve-3d;
    }

    .about-feature:hover {
      transform: translateX(10px);
      border-color: var(--teal);
      box-shadow: 0 10px 30px rgba(58, 175, 169, 0.15);
    }

    .about-feature-icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--teal-light), var(--teal));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .about-feature span {
      font-weight: 700;
      color: var(--navy);
      font-size: 0.98rem;
    }

    /* Teachers Section */
    .teachers {
      padding: 7rem 2rem;
      background: var(--white);
    }

    .teachers-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.75rem;
    }

    .teacher-card {
      background: var(--cream);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 3px solid transparent;
      position: relative;
    }

    .teacher-card .card-glare {
      border-radius: 24px;
    }

    .teacher-card:hover {
      border-color: var(--teal);
      box-shadow: 0 30px 60px rgba(23, 37, 42, 0.15);
    }

    .teacher-image {
      height: 220px;
      position: relative;
      overflow: hidden;
    }

    .teacher-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .teacher-image::after {
      display: none;
    }

    .teacher-card:hover .teacher-image::after {
      display: none;
    }

    .teacher-card:nth-child(1) .teacher-image { background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 100%); }
    .teacher-card:nth-child(2) .teacher-image { background: linear-gradient(135deg, var(--coral-light) 0%, var(--coral) 100%); }
    .teacher-card:nth-child(3) .teacher-image { background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 100%); }
    .teacher-card:nth-child(4) .teacher-image { background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%); }
    .teacher-card:nth-child(5) .teacher-image { background: linear-gradient(135deg, var(--lime-light) 0%, var(--lime) 100%); }

    .teacher-info {
      padding: 1.5rem;
    }

    .teacher-info h3 {
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 0.25rem;
    }

    .teacher-role {
      color: var(--teal);
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 0.75rem;
      display: block;
    }

    .teacher-info p {
      color: var(--text-medium);
      font-size: 0.9rem;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      line-height: 1.6;
    }

    /* Programs Section */
    .programs {
      padding: 7rem 2rem;
      background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
    }

    .programs-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .program-tabs {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .program-tab {
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-family: 'Baloo 2', cursive;
      font-weight: 700;
      font-size: 1.05rem;
      border: 3px solid var(--teal);
      background: transparent;
      color: var(--teal);
      cursor: none;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .program-tab:hover,
    .program-tab.active {
      background: var(--teal);
      color: white;
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .pricing-card {
      background: white;
      border-radius: 24px;
      padding: 3rem 2.5rem;
      text-align: center;
      position: relative;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 3px solid var(--teal-light);
    }

    .pricing-card .card-glare {
      border-radius: 24px;
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--teal), var(--coral), var(--yellow));
    }

    .pricing-card:hover {
      box-shadow: 0 30px 70px rgba(23, 37, 42, 0.12);
    }

    .pricing-card.featured {
      background: linear-gradient(180deg, var(--teal) 0%, var(--teal-dark) 100%);
      border-color: var(--teal);
      color: white;
      transform: scale(1.05);
      z-index: 2;
    }

    .pricing-card.featured::before {
      background: linear-gradient(90deg, var(--yellow), var(--coral), var(--yellow));
    }

    .pricing-card.featured .pricing-price,
    .pricing-card.featured .pricing-title,
    .pricing-card.featured .pricing-age,
    .pricing-card.featured li {
      color: white;
    }

    .pricing-badge {
      position: absolute;
      top: 2rem;
      right: -3rem;
      background: var(--yellow);
      color: var(--navy);
      padding: 0.6rem 4rem;
      font-size: 0.75rem;
      font-weight: 800;
      transform: rotate(45deg);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .pricing-title {
      font-family: 'Baloo 2', cursive;
      font-size: 1.6rem;
      color: var(--navy);
      margin-bottom: 0.5rem;
    }

    .pricing-age {
      color: var(--text-medium);
      font-size: 0.95rem;
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .pricing-price {
      font-family: 'Baloo 2', cursive;
      font-size: 4rem;
      font-weight: 800;
      color: var(--teal);
      margin-bottom: 0.5rem;
      line-height: 1;
    }

    .pricing-price span {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-light);
    }

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

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

    .pricing-card li {
      padding: 0.85rem 0;
      border-bottom: 1px solid rgba(58, 175, 169, 0.15);
      display: flex;
      align-items: center;
      gap: 0.85rem;
      font-size: 0.95rem;
      color: var(--text-medium);
    }

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

    .pricing-card li:last-child {
      border: none;
    }

    .pricing-card li::before {
      content: '✓';
      width: 26px;
      height: 26px;
      background: linear-gradient(135deg, var(--teal-light), var(--teal));
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      font-weight: bold;
      flex-shrink: 0;
    }

    .pricing-card.featured li::before {
      background: rgba(255,255,255,0.2);
    }

    .pricing-card .btn {
      width: 100%;
      justify-content: center;
      margin-top: 0.5rem;
    }

    .pricing-card.featured .btn-primary {
      background: white;
      color: var(--teal);
    }

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

    .pricing-note {
      text-align: center;
      margin-top: 3rem;
      padding: 2rem;
      background: linear-gradient(135deg, var(--yellow-light) 0%, white 100%);
      border-radius: 20px;
    }

    .pricing-note p {
      color: var(--text-medium);
      font-size: 1.02rem;
    }

    .pricing-note strong {
      color: var(--navy);
    }

    /* What to Expect */
    .expect {
      padding: 7rem 2rem;
      background: var(--white);
    }

    .expect-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
    }

    .expect-card {
      background: var(--cream);
      border-radius: 24px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      border: 3px solid transparent;
    }

    .expect-card .card-glare {
      border-radius: 24px;
    }

    .expect-card:hover {
      border-color: var(--teal);
      box-shadow: 0 25px 60px rgba(23, 37, 42, 0.1);
    }

    .expect-image {
      height: 200px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      position: relative;
      overflow: hidden;
    }

    .expect-card:nth-child(1) .expect-image { background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 60%); }
    .expect-card:nth-child(2) .expect-image { background: linear-gradient(135deg, var(--coral-light) 0%, var(--coral) 60%); }
    .expect-card:nth-child(3) .expect-image { background: linear-gradient(135deg, var(--yellow-light) 0%, var(--yellow) 60%); }

    .expect-content {
      padding: 2.5rem;
    }

    .expect-content h3 {
      font-size: 1.5rem;
      color: var(--navy);
      margin-bottom: 1rem;
    }

    .expect-content p {
      color: var(--text-medium);
      font-size: 1rem;
      line-height: 1.8;
    }

    /* Locations */
    .locations {
      padding: 7rem 2rem;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .locations::before {
      content: '';
      position: absolute;
      inset: 0;
      background: 
        radial-gradient(circle at 20% 80%, rgba(58, 175, 169, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(232, 139, 122, 0.1) 0%, transparent 50%);
    }

    .locations .section-header h2,
    .locations .section-header p {
      color: white;
    }

    .locations .section-header p {
      opacity: 0.8;
    }

    .locations .section-tag {
      background: rgba(58, 175, 169, 0.2);
      color: var(--teal);
    }

    .locations-grid {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1.5rem;
      position: relative;
      z-index: 1;
    }

    .location-card {
      background: rgba(255,255,255,0.03);
      border: 2px solid rgba(58, 175, 169, 0.25);
      border-radius: 20px;
      padding: 2rem 1.5rem;
      transition: all 0.4s ease;
      text-align: center;
    }

    .location-card:hover {
      border-color: var(--teal);
      background: rgba(58, 175, 169, 0.1);
      box-shadow: 0 20px 50px rgba(58, 175, 169, 0.2);
    }

    .location-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      margin: 0 auto 1.25rem;
      box-shadow: 0 10px 30px var(--teal-glow);
      transition: transform 0.4s ease;
    }

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

    .location-card h3 {
      font-size: 1.15rem;
      color: white;
      margin-bottom: 0.5rem;
    }

    .location-card p {
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
      line-height: 1.5;
    }

    /* Testimonials */
    .testimonials {
      padding: 7rem 2rem;
      background: linear-gradient(135deg, var(--coral-light) 0%, var(--cream) 50%, var(--teal-light) 100%);
      position: relative;
      overflow: hidden;
    }

    .testimonials::before {
      content: '"';
      position: absolute;
      top: 2rem;
      left: 5%;
      font-size: 25rem;
      font-family: Georgia, serif;
      color: var(--teal);
      opacity: 0.06;
      line-height: 1;
    }

    .testimonials-grid {
      max-width: 1300px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2.5rem;
      position: relative;
      z-index: 1;
    }

    .testimonial-card {
      background: white;
      border-radius: 24px;
      padding: 3rem;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 15px 50px rgba(23, 37, 42, 0.08);
      border: 3px solid transparent;
    }

    .testimonial-card .card-glare {
      border-radius: 24px;
    }

    .testimonial-card:hover {
      border-color: var(--teal);
      box-shadow: 0 25px 70px rgba(23, 37, 42, 0.12);
    }

    .testimonial-stars {
      color: var(--yellow);
      font-size: 1.35rem;
      margin-bottom: 1.25rem;
      letter-spacing: 4px;
    }

    .testimonial-text {
      color: var(--text-medium);
      font-size: 1.05rem;
      line-height: 1.9;
      margin-bottom: 2rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .testimonial-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.75rem;
    }

    .testimonial-card:nth-child(1) .testimonial-avatar { background: var(--teal-light); }
    .testimonial-card:nth-child(2) .testimonial-avatar { background: var(--coral-light); }
    .testimonial-card:nth-child(3) .testimonial-avatar { background: var(--yellow-light); }

    .testimonial-author h4 {
      font-size: 1.1rem;
      color: var(--navy);
    }

    .testimonial-author p {
      font-size: 0.88rem;
      color: var(--text-light);
    }

    /* Contact Section */
    .contact {
      padding: 7rem 2rem;
      background: var(--white);
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-info h2 {
      font-size: 2.5rem;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }

    .contact-info > p {
      color: var(--text-medium);
      font-size: 1.1rem;
      margin-bottom: 2.5rem;
      line-height: 1.8;
    }

    .contact-methods {
      display: flex;
      flex-direction: column;
      gap: 1.25rem;
    }

    .contact-method {
      display: flex;
      align-items: center;
      gap: 1.25rem;
      padding: 1.5rem;
      background: linear-gradient(135deg, var(--teal-light) 0%, white 100%);
      border-radius: 20px;
      transition: all 0.4s ease;
      border: 2px solid transparent;
    }

    .contact-method:hover {
      transform: translateX(10px);
      border-color: var(--teal);
      box-shadow: 0 10px 30px rgba(58, 175, 169, 0.15);
    }

    .contact-method-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--teal), var(--teal-dark));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      box-shadow: 0 8px 25px var(--teal-glow);
    }

    .contact-method h4 {
      font-size: 0.85rem;
      color: var(--teal-dark);
      font-weight: 700;
      margin-bottom: 0.25rem;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .contact-method p {
      color: var(--navy);
      font-weight: 700;
      font-size: 1.08rem;
    }

    .contact-form {
      background: linear-gradient(180deg, var(--cream) 0%, white 100%);
      border-radius: 24px;
      padding: 3rem;
      border: 3px solid var(--teal-light);
      box-shadow: 0 20px 60px rgba(23, 37, 42, 0.08);
    }

    .contact-form h3 {
      font-size: 1.75rem;
      color: var(--navy);
      margin-bottom: 2rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 0.6rem;
      font-size: 0.95rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 1.1rem 1.35rem;
      border: 3px solid #E2E8F0;
      border-radius: 16px;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      transition: all 0.3s ease;
      background: white;
      cursor: none;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--teal);
      box-shadow: 0 0 0 5px rgba(58, 175, 169, 0.12);
    }

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

    .contact-form .btn {
      width: 100%;
      justify-content: center;
      padding: 1.25rem;
      font-size: 1.1rem;
    }

    /* Footer */
    footer {
      background: var(--navy);
      color: white;
      padding: 5rem 2rem 2rem;
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, var(--teal), var(--coral), var(--yellow), var(--teal));
      background-size: 300% 100%;
      animation: gradientMove 8s linear infinite;
    }

    @keyframes gradientMove {
      0% { background-position: 0% 50%; }
      100% { background-position: 300% 50%; }
    }

    .footer-container {
      max-width: 1400px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 4rem;
      margin-bottom: 4rem;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.7);
      font-size: 1rem;
      line-height: 1.8;
      max-width: 320px;
      margin-top: 1.25rem;
    }

    .footer-logo {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      font-weight: 800;
      color: white;
    }

    .footer-logo .coral {
      color: var(--teal);
    }

    .footer-logo .accent {
      color: var(--yellow);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .footer-social a {
      width: 50px;
      height: 50px;
      border-radius: 16px;
      background: rgba(58, 175, 169, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.35rem;
      transition: all 0.4s ease;
      cursor: none;
    }

    .footer-social a:hover {
      background: var(--teal);
      transform: translateY(-5px);
    }

    .footer-column h4 {
      font-family: 'Baloo 2', cursive;
      font-size: 1.25rem;
      margin-bottom: 1.75rem;
      color: white;
    }

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

    .footer-column li {
      margin-bottom: 1rem;
    }

    .footer-column a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1rem;
      cursor: none;
    }

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

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-bottom p {
      color: rgba(255,255,255,0.5);
      font-size: 0.95rem;
    }

    .footer-tagline {
      font-style: italic;
      color: var(--teal) !important;
      font-weight: 600;
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .teachers-grid { grid-template-columns: repeat(3, 1fr); }
      .locations-grid { grid-template-columns: repeat(3, 1fr); }
      .nav-links { gap: 1.5rem; }
      .nav-links a { font-size: 0.85rem; }
      .nav-cta { padding: 0.7rem 1.25rem; font-size: 0.85rem; white-space: nowrap; }
    }

    /* Mobile Navigation Styles */
    .nav-links.nav-open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 0 !important;
      left: 0 !important;
      right: 0 !important;
      bottom: 0 !important;
      width: 100vw;
      height: 100vh;
      background: #ffffff;
      justify-content: center;
      align-items: center;
      gap: 2rem;
      z-index: 9998;
      animation: fadeIn 0.3s ease;
      overflow-y: auto;
      padding: 80px 20px 40px;
    }

    .mobile-menu.active {
      position: fixed !important;
      z-index: 9999;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    .nav-links.nav-open a {
      font-size: 1.5rem;
    }

    .nav-links.nav-open .nav-cta {
      margin-top: 1rem;
    }

    .mobile-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    .mobile-menu span {
      transition: all 0.3s ease;
    }

    @media (max-width: 1024px) {
      .nav-links:not(.nav-open) { display: none; }
      .mobile-menu { display: flex; }

      body { cursor: auto; }
      .cursor { display: none; }
      .floating-cta { display: none; }

      .hero-container { grid-template-columns: 1fr; text-align: center; }
      .hero-content > p { margin: 0 auto 2.5rem; }
      .hero-buttons { justify-content: center; }
      .hero-visual {
        max-width: 100%;
        width: 100%;
        margin: 2rem auto 0;
        opacity: 1;
        animation: none;
      }
      .hero-video-container {
        border-radius: 20px;
      }
      
      .about-container { grid-template-columns: 1fr; }
      .about-image { max-width: 500px; margin: 0 auto; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .contact-container { grid-template-columns: 1fr; }
      .pricing-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
      .pricing-card.featured { transform: none; }

      a, button, input, textarea, select { cursor: auto; }
    }

    @media (max-width: 768px) {
      .stats-container { grid-template-columns: repeat(2, 1fr); }
      .philosophy-grid { grid-template-columns: 1fr; }
      .about-features { grid-template-columns: 1fr; }
      .teachers-grid { grid-template-columns: repeat(2, 1fr); }
      .expect-grid { grid-template-columns: 1fr; }
      .locations-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr; text-align: center; }
      .footer-brand p { max-width: 100%; }
      .footer-social { justify-content: center; }
      .footer-bottom { justify-content: center; text-align: center; }
      
    }

    @media (max-width: 480px) {
      .hero { padding: 5rem 1rem 3rem; }
      .stats-container { grid-template-columns: 1fr; }
      .about-img-accent { width: 120px; height: 120px; font-size: 3rem; right: -10px; bottom: -15px; }
      .teachers-grid { grid-template-columns: 1fr; }
      .locations-grid { grid-template-columns: 1fr; }
      
      
    }

    /* Scroll Animations */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-left.active {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
    }
