
    :root {
      --dark-green: #1d794c;
      --light-green: #2a9451;
      --white: #ffffff;
      --grey: #f5f5f5;
      --black: #000000;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Roboto', sans-serif;
      background: var(--white);
      color: var(--dark-green);
    }

    header {
      background: var(--white);
      color: var(--dark-green);
      text-align: center;
      padding: 20px;
    }

    header img {
      height: 100px;
    }

    nav {
      background: var(--light-green);
      padding: 10px;
      text-align: center;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    nav a {
      color: var(--white);
      margin: 10px;
      text-decoration: none;
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      position: relative;
      transition: color 0.3s ease;
    }

    nav a:hover {
      color: var(--black);
    }

    /* HERO SECTION */
  .hero {
  background: url("/BG2.jpg") no-repeat center center;
  background-size: cover;
  background-color: #1d794c;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

    .hero h1 {
      font-size: 6rem;
      color: var(--light-green);
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
      font-family: 'Poppins', sans-serif;
      animation: fadeInDown 1s ease-in-out;
    }

    .hero p {
      color: var(--white);
      font-size: 1.5rem;
      margin: 10px 0;
      animation: fadeInUp 1.2s ease-in-out;
    }

    .hero .btn {
      background: var(--light-green);
      padding: 12px 28px;
      color: white;
      margin: 10px;
      font-weight: bold;
      border-radius: 5px;
      font-size: 1.2rem;
      text-decoration: none;
      transition: 0.3s;
    }

    .hero .btn:hover {
      background: var(--dark-green);
    }

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

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

    .section {
      padding: 60px 20px;
      text-align: center;
    }

    .section h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: (--dark-green);
    }

  #about p{
    font-size: 1.5rem;
  }
    /* Classes Section */
    .classes-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .card {
      background: var(--white);
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      width: 280px;
      text-align: center;
      transition: transform 0.3s;
    }

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

    .card h3 {
      text-decoration: underline;
      color: var(--light-green);
      font-size: 1.6rem;
    }
    .card ul li{
      text-align: start;
    }

    /* Pricing Section */
    .discount-note {
      font-size: 1.2rem;
      color: #e63946;
      margin-bottom: 25px;
      font-weight: bold;
    }

    .pricing-table {
      width: 90%;
      max-width: 1000px;
      margin: 0 auto;
      border-collapse: collapse;
    }

    .pricing-table th, .pricing-table td {
      border: 1px solid #ddd;
      padding: 12px;
      text-align: center;
    }

    .pricing-table th {
      background: var(--light-green);
      color: white;
    }

    .pricing-table td {
      background: var(--grey);
    }

    .old-price {
      text-decoration: line-through;
      color: #888;
      font-size: 14px;
    }

    .new-price {
      color: var(--dark-green);
      font-weight: bold;
      font-size: 16px;
    }

    /* Gallery */
    .gallery {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
    }

    .gallery img {
      border-radius: 10px;
      width: 300px;
      height: 200px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .gallery img:hover {
      transform: scale(1.05);
    }

    /* Testimonials */
    #testimonials {
      background: var(--light-green);
      color: var(--white);
    }
    .testimonials {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      max-width: 900px;
      margin: 0 auto;
    }

    .testimonial {
      background: var(--white);
      color: var(--dark-green);
      padding: 20px;
      border-radius: 10px;
      width: 280px;
      text-align: center;
    }

    /* Contact */
    #contact {
      background: var(--dark-green);
      color: var(--white);
    }

    /* WhatsApp Floating Button */
    #whatsapp-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background: #25d366;
      color: white;
      font-size: 24px;
      padding: 12px 16px;
      border-radius: 50%;
      text-align: center;
      text-decoration: none;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
      z-index: 1000;
    }

    #whatsapp-btn:hover { background: #20b955; }

@media only screen and (min-width: 300px) and (max-width: 767px){
   .hero h1{
    font-size: 3rem;
   }
   .hero p{
    font-size: 1rem;
   }
}


/* Footer Styles */
footer {
  background: var(--dark-green);
  color: var(--white);
  text-align: center;
  padding: 32px 10px 20px 10px;
  font-size: 1.1rem;
  /* margin-top: 40px; */
  letter-spacing: 0.02em;
  box-shadow: 0 -2px 16px rgba(0,0,0,0.07);
}

footer a {
  color: #f9d923;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

footer a:hover {
  color: #fffbe7;
  text-decoration: underline;
}

footer p {
  margin: 8px 0;
}

