* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      overflow-x: hidden;
    }

    /* 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 Section */
    .slider {
      position: relative;
      height: 65vh;
      width: 100%;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
    }

    /* Dark overlay */
    .slide::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 40, 0, 0.5); /* greenish overlay for crop feel */
    }

    /* Content in center */
    .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: 50px;
      font-weight: 700;
      margin-bottom: 20px;
      color: #ffd700; /* Sugarcane golden highlight */
      text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    }

    .slide-content p {
      font-size: 20px;
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .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;
    }

      .container {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }

    /* Sidebar */
    .sidebar {
      background: #fff;
      border-radius: 12px;
      padding: 20px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      position: sticky;
      top: 20px;
      height: fit-content;
    }

    .sidebar img {
      width: 100%;
      border-radius: 10px;
      margin-bottom: 20px;
    }

    .sidebar h3 {
      font-size: 20px;
      margin-bottom: 15px;
      color: #2e7d32;
      border-left: 4px solid #4caf50;
      padding-left: 10px;
    }

    .sidebar ul {
      list-style: none;
    }

    .sidebar ul li {
      margin: 10px 0;
    }

    .sidebar ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: 0.3s;
      display: block;
      padding: 8px 12px;
      border-radius: 8px;
    }

    .sidebar ul li a:hover {
      background: #e8f5e9;
      color: #2e7d32;
    }

    /* Content */
    .content h2 {
      font-size: 26px;
      color: #2e7d32;
      margin-bottom: 15px;
      position: relative;
    }

    .content h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: #ffd700;
      margin-top: 6px;
      border-radius: 2px;
    }

    .section {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      margin-bottom: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.08);
      transition: 0.3s;
    }

    .section:hover {
      transform: translateY(-4px);
    }

    .section ul {
      margin-left: 20px;
      margin-top: 10px;
    }

    .section ul li {
      margin-bottom: 8px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .container {
        grid-template-columns: 1fr;
      }
      .sidebar {
        position: relative;
        top: unset;
      }
    }
    
     .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;
  }