
{
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }
    header,
    footer {
        background: #2e7d32;
        color: #fff;
        padding: 1rem;
    }
    nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    nav img {
        height: 60px;
    }
    nav ul {
        list-style: none;
        display: flex;
        gap: 1rem;
    }
    nav ul li a {
        color: white;
        text-decoration: none;
        padding: 0.5rem 1rem;
    }
    nav ul li a:hover {
        background: #0055aa;
        border-radius: 4px;
    }

    .banner {
       
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        text-shadow: 1px 1px 3px black;
        font-size: 2rem;
        text-align: center;
    }



.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255, 0, 0, 0.4); /* 🔴 Red with 40% opacity */
    z-index: 0;
	opacity:0.2;
}

.banner * {
    position: relative;
    z-index: 2;
}

    .about-section {
        display: flex;
        flex-wrap: wrap;
        padding: 2rem;
        background: #f9f9f9;
    }
    .about-section img {
        width: 100%;
        max-width: 400px;
        margin-right: 2rem;
        border-radius: 10px;
    }
    .about-section .text {
        max-width: 600px;
    }
    .products-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 2rem;
        background: #b3e3c6;
    }
    .product {
        border: 1px solid #ccc;
        padding: 1rem;
        text-align: center;
        background: #fff;
        border-radius: 8px;
        transition: transform 0.3s ease;
    }
    .product:hover {
        transform: scale(1.03);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    .product img {
        max-width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .product h3 {
        margin: 1rem 0 0.5rem;
        font-size: 1.1rem;
    }
    .product-buttons a {
        margin: 0.3rem;
        padding: 0.5rem 1rem;
        background: #003366;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        display: inline-block;
        transition: background 0.3s;
    }
    .product-buttons a:hover {
        background: #0055aa;
    }
    .whatsapp-fixed {
        position: fixed;
        bottom: 80px;
        right: 20px;
        background: #25d366;
        color: white;
        padding: 12px 16px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 20px;
        z-index: 1000;
    }
    .enquiry-form {
        text-align: center;
        padding: 2rem;
        background: #eef;
    }
    .enquiry-form form {
        max-width: 600px;
        margin: auto;
        display: none;
        background: white;
        padding: 2rem;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }
    .enquiry-form form input,
    .enquiry-form form textarea {
        width: 100%;
        margin: 0.5rem 0;
        padding: 0.75rem;
        border: 1px solid #ccc;
        border-radius: 4px;
    }
    .enquiry-form form button {
        background: #003366;
        color: white;
        padding: 0.75rem 2rem;
        border: none;
        border-radius: 4px;
    }
    .seo-content {
        padding: 2rem;
        background: #f4f4f4;
        font-size: 1rem;
    }
    footer p {
        text-align: center;
    }
    @media (max-width: 768px) {
        nav ul {
            flex-direction: column;
            width: 100%;
        }
        .about-section {
            flex-direction: column;
            align-items: center;
        }
        .about-section img {
            margin: 0 0 1rem;
        }
    }

    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #2e7d32;
        color: white;

        position: relative;
        flex-wrap: wrap;
    }

    .logo img {
        height: 60px;
    }

    .nav-links {
        list-style: none;
        display: flex;
        gap: 1rem;
        font-weight: 700;
    }

    .nav-links li a {
        color: white;
        text-decoration: none;
        padding: 0.6rem 1rem;
        display: block;
    }

    .nav-links li a:hover {
        background: #0055aa;
        border-radius: 4px;
    }

    .hamburger {
        display: none;
        font-size: 28px;
        cursor: pointer;
        color: white;
    }

    /* Responsive styles */
    #menu-toggle {
        display: none;
    }

    @media (max-width: 768px) {
        .hamburger {
            display: block;
        }

        .nav-links {
            flex-direction: column;
            width: 100%;
            display: none;
            background: #003366;
            margin-top: 1rem;
        }

        .nav-links li {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        #menu-toggle:checked + .hamburger + .nav-links {
            display: flex;
        }
    }

    .nav {
        position: sticky;
        top: 0;
        z-index: 999;
    }


   
      .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
      }
      .service-card {
        background: #e4f9cf;
        border-radius: 14px;
        padding: 25px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        border: 1px solid #d9f2e5;
      }
      .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.15);
        border-color: #a7e0cb;
      }
      .service-card h3 {
        color: #0d3b2e;
        font-size: 20px;
        margin-bottom: 12px;
      }
      .service-card p {
        color: #444;
        line-height: 1.6;
        font-size: 15px;
      }
      .cta-button {
        background-color: #0d3b2e;
        color: #fff;
        font-size: 18px;
        padding: 12px 28px;
        border-radius: 8px;
        text-decoration: none;
        display: inline-block;
        margin-top: 40px;
        transition: background 0.3s ease;
      }
      .cta-button:hover {
        background-color: #0a2c22;
      }
    
  
  
  .sticky-header {
  position: sticky;
  top: 0;
  z-index: 999;
}

  
  


  .cta-flex {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  .cta-btn {
    text-decoration: none;
    color: white;
    padding: 0.9rem 1.6rem;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    transition: background 0.3s ease;
    display: inline-block;
  }
  .dark-btn {
    background-color: #003366;
  }
  .dark-btn:hover {
    background-color: #0055aa;
  }
  .whatsapp-btn {
    background-color: #25D366;
  }
  .whatsapp-btn:hover {
    background-color: #1ebe5c;
  }

  @media (max-width: 600px) {
    .cta-btn {
      width: 100%;
      text-align: center;
    }
  }





  .products-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Updated from 250px to 300px */
  gap: 20px;
  padding: 40px 20px;
  background: #ffe5d4
  }
  .product {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
  }
  .product:hover {
    transform: translateY(-5px);
  }
  .product img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
  background-color: transparent; /* Or match card background */
  display: block;
}
  .product h3 {
    font-size: 1.1rem;
    margin: 10px 0;
    color: #003366;
  }
  .product-buttons a {
    display: inline-block;
    margin: 6px 6px 0;
    padding: 8px 14px;
    border-radius: 6px;
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }
  .product-buttons a:hover {
    opacity: 0.85;
  }
  .product-buttons a:nth-child(1) { background: #1ebe5c; }
  .product-buttons a:nth-child(2) { background: #25D366; }
  .product-buttons a:nth-child(3) { background: #ff6600; }

  /* Popup Form Styles */
  .popup-form {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    justify-content: center;
    align-items: center;
  }
  .popup-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
  }
  .popup-content h3 {
    color: #003366;
    margin-bottom: 20px;
  }
  .popup-content input, .popup-content textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
  }
  .popup-content button {
    background: #003366;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
  }
  .close-popup {
    position: absolute;
    top: 10px; right: 14px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
  }

