 :root {
      --primary: #02330f;    /* Updated to darker green */
      --primary-dark: #011b08; /* Darker version for hover states */
      --gold: #FFD700;       /* Gold color */
      --gold-dark: #D4AF37;  /* Darker gold for accents */
      --white: #ffffff;
      --light: #f8f9fa;
      --dark: #212529;
      --text: #2b2d42;
      --text-light: #6c757d;
      --gradient: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
      --glass: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --glass-shadow: rgba(0, 0, 0, 0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      line-height: 1.6;
      background: url('background.jpg') center/cover no-repeat fixed;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: -1;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Glassmorphism effect utility classes */
    .glass {
      background: var(--glass);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 32px 0 var(--glass-shadow);
    }

    /* Header & Navigation */
    header {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: var(--shadow);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo img {
      height: 50px;
      width: auto;
    }

    .logo-text {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      color: var(--primary);
      font-size: 1.5rem;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 500;
      position: relative;
      transition: var(--transition);
    }

    .nav-links a:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: var(--transition);
    }

    .nav-links a:hover {
      color: var(--primary);
    }

    .nav-links a:hover:after {
      width: 100%;
    }

    .nav-cta {
      background: var(--primary);
      color: var(--white);
      padding: 8px 20px;
      border-radius: 50px;
      transition: var(--transition);
    }

    .nav-cta:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(2, 51, 15, 0.3);
    }
    

    .nav-cta:hover:after {
      display: none;
    }

    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--primary);
    }

    /* Hero Section */
    .hero {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    .hero-content {
      display: flex;
      align-items: center;
      gap: 40px;
      position: relative;
      z-index: 2;
    }

    .hero-text {
      flex: 1;
      color: var(--white);
    }

    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
    }

    .hero-image img {
      max-width: 100%;
      height: auto;
      border-radius: 20px;
      box-shadow: var(--shadow);
      transform: perspective(800px) rotateY(-10deg);
      transition: transform 0.5s ease;
      border: 3px solid var(--gold);
    }

    .hero-image img:hover {
      transform: perspective(800px) rotateY(0);
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .hero p {
      font-size: 1.1rem;
      margin-bottom: 30px;
      opacity: 0.9;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 25px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: var(--shadow);
    }

    .btn-primary {
      background: var(--gold);
      color: var(--primary);
    }

    .btn-primary:hover {
      background: var(--gold-dark);
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.2);
      color: var(--white);
      backdrop-filter: blur(10px);
      border: 1px solid var(--gold);
    }

    .btn-secondary:hover {
      background: rgba(255, 215, 0, 0.3);
      transform: translateY(-3px);
    }

    /* Hero glass panel */
    .hero-panel {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px;
      border: 1px solid rgba(255, 215, 0, 0.3);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      max-width: 600px;
    }

    /* Features Section */
    .features {
      padding: 80px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 50px;
      color: var(--white);
    }

    .section-title h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--white);
      margin-bottom: 15px;
    }

    .section-title p {
      color: rgba(255, 255, 255, 0.8);
      max-width: 700px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .feature-card {
      background: rgba(255, 255, 255, 0.9);
      border-radius: 15px;
      padding: 30px;
      border: 2px solid var(--primary);
      transition: var(--transition);
      text-align: center;
      color: var(--text);
    }

    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      border-color: var(--gold);
    }

    .feature-icon {
      width: 70px;
      height: 70px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 1.8rem;
      color: var(--gold);
      border: 2px solid var(--gold);
    }

    .feature-card h3 {
      margin-bottom: 15px;
      color: var(--primary);
    }

/* Stats Section */
.stats {
  padding: 60px 0;
  color: var(--white);
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
}

.stat-label {
  font-size: 1.1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: rgba(248, 249, 250, 0.95);
  position: relative;
  overflow: hidden;
}

.testimonials .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials .section-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.testimonials .section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.testimonials .section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Testimonial Carousel */
.testimonial-carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.testimonial-card {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  border-top: 5px solid var(--primary);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.testimonial-card:before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.1;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-rating {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.testimonial-text {
  margin-bottom: 25px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.author-image {
  width: 180px;
  height: 150px;
  border-radius: 8%;
  object-fit: cover;
  border: 3px solid var(--primary);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-image {
  transform: scale(1.05);
}

.author-details {
  text-align: center;
}

.author-details h4 {
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.author-details p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.author-role {
  color: var(--primary);
  font-weight: 500;
}

/* Carousel Controls */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  gap: 20px;
}

.carousel-btn {
  background: var(--primary);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials .section-title h2 {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  .stats {
  padding: 60px 0;
  color: var(--white);
  position: relative;
}
}


@media (max-width: 480px) {
  .testimonials .section-title h2 {
    font-size: 1.8rem;
  }
  
  .testimonial-card {
    padding: 25px 15px;
  }
  
  .author-image {
    width: 70px;
    height: 70px;
  }
  .stats {
  padding: 60px 0;
  color: var(--white);
  position: relative;
}
}

    /* CTA Section */
    .cta {
      padding: 80px 0;
      background: var(--white);
      text-align: center;
    }

    .cta-content {
      max-width: 800px;
      margin: 0 auto;
    }

    .cta h2 {
      font-family: 'Playfair Display', serif;
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .cta p {
      margin-bottom: 30px;
      color: var(--text-light);
    }

    /* Footer Wave */
    .footer-wave {
      position: absolute;
      top: -60px;
      left: 0;
      width: 100%;
      overflow: hidden;
      line-height: 0;
    }

    .footer-wave svg {
      position: relative;
      display: block;
      width: calc(100% + 1.3px);
      height: 60px;
    }

    .footer-wave .shape-fill {
      fill: var(--primary);
    }

    /* Footer */
    footer {
      background: var(--primary);
      color: var(--white);
      padding: 80px 0 30px;
      position: relative;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-col h3 {
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      color: var(--gold);
    }

    .footer-col h3:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 2px;
      background: var(--gold);
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--gold);
      padding-left: 5px;
    }

    /* Social Links */
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      flex-wrap: wrap;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      transition: var(--transition);
      font-size: 1.2rem;
      position: relative;
    }

    .social-links a.instagram {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    }

    .social-links a.tiktok {
      background: #000000;
    }

    .social-links a:hover {
      transform: translateY(-3px) scale(1.1);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .social-links a::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: -35px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--dark);
      color: var(--white);
      padding: 5px 10px;
      border-radius: 4px;
      font-size: 0.8rem;
      white-space: nowrap;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .social-links a:hover::after {
      opacity: 1;
      visibility: visible;
      bottom: -30px;
    }

    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-buttons {
        justify-content: center;
      }
      
      .hero-image img {
        transform: none;
        margin-top: 30px;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        text-align: center;
      }
      
      .nav-links.active {
        display: flex;
      }
      
      .hamburger {
        display: block;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }

      .hero-panel {
        padding: 25px;
      }

      .footer-grid {
        gap: 50px;
      }

      .social-links {
        justify-content: center;
      }

      .social-links a::after {
        display: none;
      }
    }

    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .btn {
        width: 100%;
        justify-content: center;
      }
      
      .hero-buttons {
        flex-direction: column;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-col h3:after {
        left: 50%;
        transform: translateX(-50%);
      }

      .social-links {
        justify-content: center;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .fade-in {
      animation: fadeIn 1s ease forwards;
    }
    
    .delay-1 { animation-delay: 0.2s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.6s; }