      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        overflow-x: hidden;
           background: linear-gradient(135deg, #e0ffe0, #fffacd);
      }

      /* Navbar */
      nav {
        width: 100%;
        padding: 20px 60px;
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 10;
      }

      nav .logo {
        font-size: 30px;
        font-weight: 700;
        color: #4caf50;
        margin-right: 320px;
      }
  
      nav ul {
        list-style: none;
        display: flex;
        gap: 30px;
      }

      nav ul li a {
        text-decoration: none;
        font-size: 16px;
        color: #fff;
        transition: 0.3s;
      }

      nav ul li a:hover {
        color: #ffd700;
      }

      .slider {
        position: relative;
        height: 65vh;
        width: 100%;
        overflow: hidden;
      }

      .slide {
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
      }

      .slide::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
      }

      .slide-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #fff;
        text-align: center;
        max-width: 700px;
        z-index: 2;
      }

      .slide-content h1 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
      }

      .slide-content p {
        font-size: 20px;
        margin-bottom: 30px;
      }

      .btn {
        padding: 12px 30px;
        border: none;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        border-radius: 30px;
        transition: 0.3s;
      }

      .btn-yellow {
        background: #ffd700;
        color: #000;
      }

      .btn-yellow:hover {
        background: #ffb700;
      }

      .contact-section {
        padding: 80px 10%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: stretch;
      }
      
      .container {
      max-width: 1300px;
      margin: 0 auto;
    }

    .row {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 20px;
    }

    .row.last {
      justify-content: center;
    }

    .card {
      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      width: calc(20% - 20px);
      min-width: 200px;
      padding: 20px;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
      border: 3px solid transparent;
    }

    .card::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: linear-gradient(135deg, rgba(0,255,0,0.15), rgba(255,255,0,0.15));
      z-index: 0;
      transition: 0.4s ease-in-out;
      opacity: 0;
    }

    .card:hover::before {
      opacity: 1;
    }

    .card:hover {
      transform: translateY(-10px);
      border-color: limegreen;
      box-shadow: 0 10px 25px rgba(0, 150, 0, 0.2);
    }

    .card h3,
    .card p,
    .card button {
      position: relative;
      z-index: 1;
    }

    .card img {
      width: 62%;
      height: 150px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 15px;
    }

    .card h3 {
      margin-bottom: 10px;
      color: #222;
    }

    .card p {
      color: #555;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .card button {
      padding: 10px 16px;
      background: linear-gradient(to right, #00cc00, #ffcc00);
      border: none;
      color: #000;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .card button:hover {
      background: linear-gradient(to right, #00b300, #e6b800);
      transform: scale(1.05);
    }

    @media (max-width: 768px) {
      .row {
        flex-wrap: wrap;
        justify-content: center;
      }
      .card {
        width: calc(50% - 20px);
      }
    }

    @media (max-width: 480px) {
      .card {
        width: 100%;
      }
    }
          .footer {
    position: relative;
    background: url('img/img1.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: "Poppins", sans-serif;
  }
  .footer-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
  }
  .footer-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    z-index: 1;
  }
  /* .footer-col {
    flex: 1;
    margin: 15px;
    min-width: 220px;
  } */
  .footer-logo {
    max-width: 112px;
    margin-bottom: -23px;
  }
  .footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 2px solid #4caf50;
    display: inline-block;
    padding-bottom: 5px;
  }
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  .footer-links ul li {
    margin: 8px 0;
  }
  .footer-links ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
  }
  .footer-links ul li a:hover {
    color: #4caf50;
  }
  .footer-social .social-icons a {
    display: inline-block;
    margin-right: 10px;
  }
  .footer-social .social-icons img {
    width: 46px;
    transition: transform 0.3s;
  }
  .footer-social .social-icons img:hover {
    transform: scale(1.2);
  }
  .footer-bottom {
    position: relative;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.3);
    z-index: 1;
  }
  .products-title {
  text-align: center;       /* Center the title */
  font-size: 2.5rem;        /* Large font size */
  font-weight: 700;          /* Bold */
  color:  limegreen;           /* Dark blue-gray color */
  margin: 40px 0 20px 0;    /* Space above and below */
  font-family: 'Poppins', sans-serif; /* Match your cards font */
  text-transform: uppercase; /* Optional: uppercase letters */
  letter-spacing: 2px;       /* Slight spacing between letters */
}