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

    body {
      font-family: 'Inter', sans-serif;
      background-color: #ffffff;
      color: #1a2a1f;
      scroll-behavior: smooth;
      line-height: 1.5;
      overflow-x: hidden;
    }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-track {
      background: #e8f0e5;
    }
    ::-webkit-scrollbar-thumb {
      background: #1e6b3b;
      border-radius: 10px;
    }

    /* Typography */
    h1, h2, h3, h4, .logo, .nav-links, .btn {
      font-family: 'Space Grotesk', monospace;
      font-weight: 600;
    }

    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 6%;
    }

    /* Glassmorphism Cards */
    .glass-card {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      border-radius: 2rem;
      border: 1px solid rgba(30, 107, 59, 0.2);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
      transition: all 0.3s ease;
    }

    /* Header Sticky Nav */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      padding: 0.6rem 0;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(30, 107, 59, 0.15);
    }
    header.scrolled {
      padding: 0.3rem 0;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .logo {
      line-height: 0;
    }
    .logo img {
      height: 75px;
      width: auto;
      transition: 0.2s;
    }
    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      color: #1a3a1f;
      font-weight: 500;
      transition: 0.2s;
      font-size: 0.95rem;
      letter-spacing: -0.2px;
      text-transform: uppercase;
    }
    .nav-links a:hover {
      color: #1e6b3b;
    }
    .partner-btn {
      background: #1e6b3b;
      color: white !important;
      padding: 0.6rem 1.5rem;
      border-radius: 40px;
      font-weight: 600;
      transition: 0.2s;
    }
    .partner-btn:hover {
      background: #0f502c;
      transform: translateY(-2px);
    }
    .menu-toggle {
      display: none;
      font-size: 1.6rem;
      cursor: pointer;
      color: #1a3a1f;
    }

    /* Hero Slider Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      background: linear-gradient(135deg, #f5faf4 0%, #e6f0e3 100%);
      overflow: hidden;
      padding-top: 100px;
    }
    .hero-slider {
      width: 100%;
      position: relative;
    }
    .slide {
      display: none;
      animation: fadeUp 0.6s ease forwards;
    }
    .slide.active {
      display: block;
    }
    .slide-content {
      max-width: 700px;
    }
    .hero-title {
      font-size: clamp(2.8rem, 7vw, 4.8rem);
      line-height: 1.2;
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: #0a2e1a;
    }
    .hero-title span {
      color: #1e6b3b;
      background: linear-gradient(120deg, #1e6b3b, #2c8e50);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }
    .hero-desc {
      font-size: 1.2rem;
      color: #2c4a2a;
      margin-bottom: 2rem;
      max-width: 550px;
    }
    .btn-group {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .btn {
      padding: 0.9rem 2.2rem;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: 0.25s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
    }
    .btn-primary {
      background: #1e6b3b;
      color: white;
      box-shadow: 0 6px 14px rgba(30, 107, 59, 0.3);
    }
    .btn-primary:hover {
      background: #0f502c;
      transform: translateY(-3px);
    }
    .btn-outline {
      border: 2px solid #1e6b3b;
      color: #1e6b3b;
      background: transparent;
    }
    .btn-outline:hover {
      background: rgba(30, 107, 59, 0.08);
      transform: translateY(-3px);
    }
    .slider-controls {
      margin-top: 2rem;
      display: flex;
      gap: 0.8rem;
    }
    .slider-dot {
      width: 40px;
      height: 4px;
      background: #bdd9b0;
      border-radius: 4px;
      cursor: pointer;
      transition: 0.2s;
    }
    .slider-dot.active {
      background: #1e6b3b;
      width: 60px;
    }

    /* Sections */
    section {
      padding: 90px 0;
    }
    .section-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 700;
      margin-bottom: 1rem;
      color: #0a2e1a;
    }
    .section-sub {
      color: #1e6b3b;
      text-transform: uppercase;
      font-size: 0.8rem;
      letter-spacing: 3px;
      font-weight: 600;
      margin-bottom: 1rem;
    }
    .grid-2, .grid-3, .grid-4 {
      display: grid;
      gap: 2rem;
      margin-top: 3rem;
    }
    .grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
    
    .service-card, .product-card {
      background: white;
      border-radius: 1.8rem;
      padding: 2rem;
      border: 1px solid #e2ecd9;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    }
    .service-card:hover, .product-card:hover {
      transform: translateY(-6px);
      border-color: #1e6b3b;
      box-shadow: 0 20px 30px rgba(30, 107, 59, 0.08);
    }
    .card-icon {
      font-size: 2.5rem;
      color: #1e6b3b;
      margin-bottom: 1.2rem;
    }
    .card-title {
      font-size: 1.5rem;
      margin-bottom: 0.8rem;
      color: #0a2e1a;
    }
    
    /* CTA Section (Green Gradient) */
    .cta-section {
      background: linear-gradient(105deg, #0f462a, #1e6b3b);
      border-radius: 3rem;
      color: white;
      text-align: center;
      padding: 4rem 2rem;
    }
    .cta-section h2 {
      font-size: 2.4rem;
      margin-bottom: 1rem;
    }
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .btn-light {
      background: white;
      color: #1e6b3b;
    }
    .btn-light:hover {
      background: #eef6ea;
    }
    
    /* Location badges */
    .location-badge {
      background: #f0f7ec;
      padding: 0.6rem 1.2rem;
      border-radius: 60px;
      display: inline-block;
      margin: 0.4rem;
      font-weight: 500;
    }
    
    /* Footer */
    footer {
      background: #0a2414;
      color: #cfe5c5;
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 3rem;
    }
    .footer-links a {
      color: #bcddae;
      text-decoration: none;
      display: block;
      margin-bottom: 0.6rem;
      transition: 0.2s;
    }
    .footer-links a:hover { color: white; }
    .social-icons a {
      color: #bcddae;
      font-size: 1.3rem;
      margin-right: 1rem;
      transition: 0.2s;
    }
    .social-icons a:hover { color: white; }
    
    /* Responsive */
    @media (max-width: 850px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 75%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.8rem;
        transition: 0.3s;
        z-index: 999;
        box-shadow: 4px 0 20px rgba(0,0,0,0.1);
      }
      .nav-links.active {
        left: 0;
      }
      section {
        padding: 60px 0;
      }
      .container {
        padding: 0 5%;
      }
    }
    @keyframes fadeUp {
      0% { opacity: 0; transform: translateY(20px); }
      100% { opacity: 1; transform: translateY(0); }
    }
    img {
      max-width: 100%;
    }
    .text-green { color: #1e6b3b; }
    .bg-soft-green { background: #f0f7ec; }
    .footer-links h4{ margin-bottom:20px;text-transform: uppercase;}
    
    
    
  /* Hero Slider Grid Layout with Image */
  .hero-slider {
    position: relative;
  }
  
  .hero a{
min-width: 200px;
  text-align: center;
  display: inline-block;
  }
  
  .slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
  }
  
  .slide-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .slide-image img {
    max-width: 100%;
    height: auto;
    border-radius: 2rem;
    box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
  }
  
  .slide-image img:hover {
    transform: scale(1.02);
  }
  
  /* Responsive: Stack on mobile */
  @media (max-width: 850px) {
    .slide-grid {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 1.5rem;
    }
    
  .hero .slider-controls ,   .hero .btn-group{
  justify-content: center;
}
    
    .slide-image {
      order: 2;
    }
    
    .slide-image img {
      max-width: 80%;
    }
  }
  
  /* Optional: Add subtle animation for image */
  @keyframes fadeSlideUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .slide.active .slide-image img {
    animation: fadeSlideUp 0.6s ease forwards;
  }
  
  .h1{
      display:none;
  }
  
 .w250{
  width: 250px;
  text-align: center;
  display: block;
  }