:root {
    --primary-green: #A0C85B;
    --secondary-green: #B7E86E;
    --light-grey: #A9A9A9;
    --dark-blue: rgba(17, 24, 39, 0.85);
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --border-glow: rgba(160, 200, 91, 0.2);
  }
  
  body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: #0E0E0E;
    color: var(--white);
    scroll-behavior: smooth;
  }
  
  /* Landing Page */
  .landing-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    text-align: center;
    min-height: 80vh;
  }
  
  .landing-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--primary-green));
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradient-shine 6s linear infinite, fadeInUp 1s forwards;
    letter-spacing: 0.2em;
    text-shadow: 0 0 20px rgba(160, 200, 91, 0.6);
    opacity: 0;
    transform: translateY(30px);
  }
  
  .landing-subtitle,
  .landing-description,
  .landing-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
  }
  
  .landing-subtitle {
    font-size: 1.5rem;
    color: var(--primary-green);
    animation-delay: 0.6s;
    margin: 1rem 0;
    letter-spacing: 0.1em;
  }
  
  .landing-description {
    max-width: 680px;
    margin: 1rem auto 2rem;
    font-size: 1.1rem;
    color: var(--light-grey);
    line-height: 1.75;
    animation-delay: 0.9s;
  }
  
  .landing-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    animation-delay: 1.2s;
  }
  
  .landing-button {
    padding: 0.75rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
  }
  
  .primary-btn {
    background: linear-gradient(135deg, #4DAA67, var(--secondary-green));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(76, 175, 80, 0.2);
  }
  
  .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
  }
  
  .secondary-btn {
    background: var(--glass-bg);
    color: var(--white);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(6px);
  }
  
  .secondary-btn:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-green);
    box-shadow: 0 6px 15px rgba(169, 200, 91, 0.3);
  }
  
  /* Testimonials Section */
  .testimonials-section {
    max-width: 900px;
    padding: 4rem 1rem;
    text-align: center;
    margin: 0 auto;
    animation: fadeInUp 1s forwards 1.5s;
  }
  
  .testimonials-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.2em;
  }
  
  .testimonials-title::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
    box-shadow: 0 0 10px var(--primary-green);
  }
  
  .testimonials-carousel {
    position: relative;
    perspective: 1000px;
    min-height: 180px;
  }
  
  .testimonial-slide {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.7), var(--dark-blue));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(160, 200, 91, 0.2);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: absolute;
    padding: 1.5rem;
    opacity: 0;
    transform: translateZ(-100px) scale(0.6);
    transition: all 0.5s ease;
  }
  
  .testimonial-slide.active {
    opacity: 1;
    transform: translateZ(0) scale(1.05);
    z-index: 10;
    animation: pulse-glow 3s ease-in-out infinite;
  }
  
  .testimonial-slide.prev,
  .testimonial-slide.next {
    opacity: 0.6;
    transform: translateZ(-50px) scale(0.85);
    filter: brightness(0.7);
    z-index: 5;
  }
  
  .testimonial-content {
    color: var(--light-grey);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  
  .testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-green);
  }
  
  .author-name {
    font-weight: 600;
    font-size: 1rem;
  }
  
  .testimonial-rating {
    font-size: 0.9rem;
    font-weight: bold;
    animation: green-glow-pulse 2s infinite alternate;
  }
  
  /* Carousel Controls */
  .carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 12px;
  }
  
  .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(169, 200, 91, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-dot.active,
  .carousel-dot:hover {
    transform: scale(1.2);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes gradient-shine {
    0% {
      background-position: 0%;
    }
    100% {
      background-position: 200%;
    }
  }
  
  @keyframes pulse-glow {
    0% {
      box-shadow: 0 0 10px rgba(160, 200, 91, 0.2);
    }
    50% {
      box-shadow: 0 0 25px rgba(160, 200, 91, 0.4);
    }
    100% {
      box-shadow: 0 0 10px rgba(160, 200, 91, 0.2);
    }
  }
  
  @keyframes green-glow-pulse {
    from {
      text-shadow: 0 0 4px rgba(50, 205, 50, 0.5);
    }
    to {
      text-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .landing-buttons {
      flex-direction: column;
    }
  
    .testimonial-slide {
      font-size: 0.9rem;
    }
  
    .landing-title {
      font-size: 2.5rem;
    }
  }
  