 * { margin: 0; padding: 0; box-sizing: border-box; }
    body, html { height: 100%; font-family: 'Poppins', sans-serif; }

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: translate(-50%, -50%);
      z-index: -1;
      opacity: 100%;
    }

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 1;
    }

    .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      z-index: 2;
      padding: 0 20px;
      width: 100%;
      max-width: 600px;
    }

    .hero-content h1 {
      font-family: 'Montserrat', sans-serif;
      font-size: 3rem;
      margin-bottom: 15px;
      line-height: 1.2;
    }

    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 25px;
      line-height: 1.4;
    }

    .hero-content .btn {
      padding: 12px 35px;
      font-size: 1rem;
      margin: 5px;
      background-color: #4CAF50;
      border: none;
      border-radius: 50px; /* pill-shaped */
      color: white;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .hero-content .btn:hover {
      background-color: #45a049;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    }

    @media (max-width: 768px) {
      .hero-content h1 { font-size: 2rem; }
      .hero-content p { font-size: 0.95rem; }
      .hero-content .btn { padding: 10px 25px; font-size: 0.9rem; }
    }

    @media (max-width: 480px) {
      .hero-content h1 { font-size: 1.6rem; }
      .hero-content p { font-size: 0.85rem; }
    }

   

.about-section {
  background:linear-gradient(180deg,#ecfff0 0%, #f6fff7 100%);
  padding: 80px 20px;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1 1 400px;
}

.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.about-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-content .btn {
  padding: 12px 30px;
  background: #4CAF50;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.about-content .btn:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .about-container { gap: 40px; }
}

@media (max-width: 768px) {
  .about-container { flex-direction: column-reverse; text-align: center; }
  .about-image, .about-content { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  .about-content h2 { font-size: 2rem; }
  .about-content p { font-size: 0.95rem; }
  .about-content .btn { padding: 10px 25px; font-size: 0.9rem; }
}
/* NAVBAR BASE */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 60px;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #4ade80, #15803d, #065f46);
  background-size: 300% 300%;
  animation: gradientFlow 8s ease infinite;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* Animated Gradient */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Faded Bottom */
.navbar::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 20px;
/* background: linear-gradient(to bottom, rgba(232, 228, 228, 0.933), transparent);*/
}

/* Brand Name */
.brand {
  font-family: 'cinzel', serif;
  font-size: 2rem;
  color: white;
  letter-spacing: 1px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
  transition: transform 0.4s ease, text-shadow 0.4s ease;

}
.brand:hover {
  transform: scale(1.05);
  text-shadow: 0 0 15px rgba(255,255,255,0.7);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
}
.nav-links a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: white;
  transition: width 0.3s ease;
}
.nav-links a:hover::after {
  width: 100%;
}
.nav-links a:hover {
  color: #f0fdf4;
}

/* Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 2000;
}
.menu-toggle span {
  background: white;
  height: 3px;
  width: 25px;
  border-radius: 2px;
  transform-origin: center;
  transition: all 0.5s ease-in-out;
}


/* Toggle Morph Animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(90deg) translateY(-8px);
}
.menu-toggle.active span:nth-child(2) {
  transform: rotate(90deg);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(90deg) translateY(8px);
}


/* MOBILE MENU */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #4ade80, #15803d, #065f46);
    background-size: 300% 300%;
    animation: gradientFlow 8s ease infinite;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.68,-0.55,0.27,1.55), opacity 0.4s ease;
  }
  .nav-links.show {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    opacity: 0;
    transform: translateY(20px);
    animation: linkStagger 0.5s ease forwards;
  }
  .nav-links.show a:nth-child(1) { animation-delay: 0.2s; }
  .nav-links.show a:nth-child(2) { animation-delay: 0.4s; }
  .nav-links.show a:nth-child(3) { animation-delay: 0.6s; }
  .nav-links.show a:nth-child(4) { animation-delay: 0.8s; }

  @keyframes linkStagger {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .menu-toggle {
    display: flex;
  }
}
/* === Nature Background Animation for Mobile Menu === */
.nav-links.show::before {
  content: "";
  position: absolute;
  inset: 0; /* cover full menu */
  background: url("footer.jpg") no-repeat center center/cover;
  opacity: 0.4; /* adjust transparency */
  z-index: -1; /* behind menu items */
}

.nav-links {
  display: flex;
  gap: 20px;

  padding: 10px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
}

.nav-links a:hover {
  
  border-radius: 4px;
}

/* Dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}

/* Dropdown menu hidden by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color:white;
  min-width: 160px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.15);
  border-radius: 6px;
  z-index: 1;
}

/* Dropdown links */
.dropdown-content a {
  color: black;
  padding: 10px 17 px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #e9ecef;
  border-radius: 4px;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;

}
.footer {
      position: relative;
      background: #000;
      color: #fff;
      text-align: center;
      overflow: hidden;
    }

    .footer-img {
      width: 100%;
      height: 250px; /* default height */
      display: block;
      object-fit: cover;
      opacity: 0.6; /* updated opacity */
    }

    .footer-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 20px;
    }

    .footer h2 {
      margin-bottom: 10px;
      font-size: 26px;
      font-weight: bold;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-bottom: 15px;
    }

    .footer-links a {
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: #00ff88;
    }

    .social-icons {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
    }

    .social-icons a {
      color: #fff;
      font-size: 22px;
      transition: transform 0.3s, color 0.3s;
    }

    .social-icons a:hover {
      transform: scale(1.2);
      color: #00ff88;
    }

    .footer-details {
      font-size: 14px;
      line-height: 1.6;
    }

    .footer-details p {
      margin: 4px 0;
    }

    .copyright {
      margin-top: 10px;
      font-size: 13px;
      opacity: 0.8;
    }

    /* Laptop/Desktop View - decrease image height */
    @media (min-width: 768px) {
      .footer-img {
        height: 350px; /* reduced size for larger screens */
      }
    }

    /* Responsive for small screens */
    @media (max-width: 600px) {
      .footer h2 {
        font-size: 20px;
      }
      .footer-links {
        gap: 10px;
      }
      .footer-links a {
        font-size: 14px;
      }
      .social-icons a {
        font-size: 18px;
      }
      .footer-details {
        font-size: 13px;
      }
    }
     .products-section {
      padding: 60px 20px;
      max-width: 1000px; /* clean width for desktop */
      margin: auto;
      text-align: center;
    }

    .products-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #1b5e20;
      font-weight: 700;
    }

    .products-section p {
      max-width: 700px;
      margin: 0 auto 50px;
      font-size: 1rem;
      color: #444;
      line-height: 1.6;
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr); /* 3 per row on desktop */
      gap: 30px;
      align-items: stretch;
    }

    .product-item {
      background: linear-gradient(135deg, #4ade80, #15803d, #065f46);
      border-radius: 25px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 15px 35px rgba(0,0,0,0.08);
      position: relative;
      opacity: 0;
      transform: translateY(40px);
      transition: all 0.6s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .product-item.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .product-icon {
      width: 80px;
      height: 80px;
      border-radius: 20px;
      background: #e8f5e9;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      transition: transform 0.4s, background 0.4s;
      flex-shrink: 0;
    }

    .product-icon i {
      font-size: 2.2rem;
      color: #041705;
    }

    .product-item:hover .product-icon {
      transform: scale(1.2) rotate(-5deg);
      background: #c8e6c9;
    }

    .product-content h3 {
      font-size: 1.3rem;
      margin-bottom: 10px;
      color: #1b5e20;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .product-content p {
      font-size: 0.9rem;
      color: #444;
      line-height: 1.5;
    }

    /* Tablet / Mobile: 2 columns */
    @media (max-width: 1024px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }
    }

    /* Small mobile: 2 columns still */
    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }
      .products-section h2 {
        font-size: 2rem;
      }
    }

    /* Very small screens: 1 column */
    @media (max-width: 400px) {
      .products-grid {
        grid-template-columns: 1fr;
      }
    }    







