    * {
      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 */
    .slider {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
    }

    /* Content inside slide */
    .slide-content {
      position: absolute;
      top: 50%;
      left: 10%;
      transform: translateY(-50%);
      color: #fff;
      max-width: 600px;
    }

    .slide-content h1 {
      font-size: 48px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .slide-content p {
      font-size: 18px;
      margin-bottom: 20px;
    }

    .buttons {
      display: flex;
      gap: 15px;
    }

    .btn {
      padding: 10px 20px;
      border: none;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 25px;
      transition: 0.3s;
    }

    .btn-yellow {
      background: #ffd700;
      color: #000;
    }

    .btn-yellow:hover {
      background: #ffb700;
    }

    .btn-white {
      background: #fff;
      color: #000;
    }

    .btn-white:hover {
      background: #ddd;
    }

    /* Navigation Dots */
    .dots {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
    }

    .dot {
      width: 12px;
      height: 12px;
      background: #fff;
      border-radius: 50%;
      cursor: pointer;
      opacity: 0.6;
    }

    .dot.active {
      opacity: 1;
      background: #ffd700;
    }





    section {
      padding: 60px 10%;
      position: relative;
    }

    /* Section 1 - Welcome */
    .welcome {
      text-align: center;
      background: #a5cca6;
      position: relative;
    }

    .welcome h1 {
      font-size: 60px;
      color: #4caf50;
      font-weight: 700;
    }

    .welcome p {
      font-size: 20px;
      margin: 15px 0;
      color: #666;
    }

    .welcome .tagline {
      font-size: 16px;
      color: #e53935;
      margin-top: 10px;
      font-weight: bold;
    }

    .welcome .iso {
      font-size: 18px;
      color: #0288d1;
      margin-top: 5px;
    }

    /* Section 2 - Mission */
    .mission {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      gap: 40px;
      background-color: #e9efc7;
    }

    .mission img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .mission h2 {
      font-size: 36px;
      color: #2e7d32;
      margin-bottom: 20px;
    }

    .mission p {
      font-size: 18px;
      color: #555;
      margin-bottom: 20px;
    }

    .mission strong {
      color: #000;
    }

    .mission button {
      padding: 12px 24px;
      border: 2px solid #2e7d32;
      background: transparent;
      color: #2e7d32;
      font-size: 16px;
      font-weight: 600;
      border-radius: 30px;
      cursor: pointer;
      transition: 0.3s;
    }

    .mission button:hover {
      background: #2e7d32;
      color: #fff;
    }

    /* Section 3 - Call to Action */
    .cta {
      text-align: center;
      background: linear-gradient(135deg, #4caf50, #81c784);
      color: #fff;
      border-radius: 15px;
      padding: 60px 30px;
      margin-top: 50px;
    }

    .cta h2 {
      font-size: 40px;
      margin-bottom: 20px;
    }

    .cta p {
      font-size: 20px;
      margin-bottom: 30px;
    }

    .cta button {
      padding: 14px 30px;
      background: #fff;
      color: #2e7d32;
      border: none;
      border-radius: 30px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s;
    }

    .cta button:hover {
      background: #f1f1f1;
    }
    






     .vision-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      max-width: 1520px;
      width: 100%;
      margin: 60px auto;
      padding: 40px 20px;
      border-radius: 20px;
      background: linear-gradient(135deg, #4caf50, #2196f3);
    }

    .vision-card {
      background: rgba(255, 255, 255, 0.95);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .vision-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
    }

    .vision-card i {
      font-size: 45px;
      margin-bottom: 15px;
      display: block;
      animation: floatIcon 3s ease-in-out infinite;
    }

    @keyframes floatIcon {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }

    .vision-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: #222;
    }

    .vision-card p {
      font-size: 15px;
      color: #444;
      line-height: 1.6;
    }

    /* Unique colors for icons */
    .card1 i { color: #2e7d32; }   /* Green */
    .card2 i { color: #1565c0; }   /* Blue */
    .card3 i { color: #ef6c00; }   /* Orange */



    .section {
  background: url('img/back1.png') no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);/* Adjust value for lightness */
  z-index: 1;
}

.section > * {
  position: relative;
  z-index: 2; /* keeps content above overlay */
}


    .cards {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 30px;
      max-width: 1300px;
      margin: auto;
    }

    .row {
      display: flex;
      gap: 30px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .row.center {
      justify-content: center; /* keeps 3 cards centered */
    }

    .card {
      width: 280px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0,0,0,0.3);
      backdrop-filter: blur(8px);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      position: relative;
    }

    .card img {
      width: 100%;
      height: 376px;
      object-fit: cover;
      border-bottom: 4px solid #4CAF50;
    }

    .card-content {
      padding: 20px;
      color: #fff;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .card-content h3 {
      font-size: 20px;
      margin-bottom: 10px;
      font-weight: bold;
      color: #ffd700;
    }

    .card-content p {
      font-size: 14px;
      line-height: 1.5;
    }

    .card:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 12px 30px rgba(0,0,0,0.5);
    }

    /* Gradient hover effect */
    .card::before {
      content: "";
      position: absolute;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(120deg, rgba(76, 175, 80, 0.8), rgba(0, 188, 212, 0.8));
      transition: top 0.5s ease;
      z-index: 1;
    }

    .card:hover::before {
      top: 0;
    }
    .header {
      text-align: center;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .header h2 {
      font-size: 40px;
      color: #00c853;
      margin-bottom: 15px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .header h3 {
      font-size: 28px;
      color: #00c853;
      margin-bottom: 15px;
    }

    .header p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 25px;
      color: #2ebe6a;
    }

    .btn {
      display: inline-block;
      padding: 12px 30px;
      border: 2px solid #00c853;
      border-radius: 30px;
      background: linear-gradient(135deg, #d71e24, #e8eebc);
      color: #fff;
      font-size: 16px;
      text-decoration: none;
      transition: all 0.3s ease;
      font-weight: bold;
    }

    .btn:hover {
      background: transparent;
      color: #00c853;
      transform: scale(1.05);
      box-shadow: 0 0 10px rgba(0, 200, 83, 0.6);
    }




       /* ==== Stats Section Only ==== */
    .stats-section {
      position: relative;
      background: url('img/tractor-field-ai-generated.jpg') no-repeat center/cover;
      padding: 80px 20px;
      color: white;
      font-family: 'Poppins', sans-serif;
    }

    .stats-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.65);
      z-index: 0;
    }

    .stats-container {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 25px;
      max-width: 1200px;
      margin: auto;
      text-align: center;
    }

    .stat-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(8px);
      padding: 30px 20px;
      border-radius: 20px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: scale(1.07);
    }

    .stat-card i {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
    }

    .stat-card h2 {
      font-size: 42px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .stat-card p {
      font-size: 14px;
      letter-spacing: 1px;
      opacity: 0.9;
    }

    /* Colors */
    .stats-section .yellow { color: #facc15; }
    .stats-section .green { color: #22c55e; }
    .stats-section .blue { color: #3b82f6; }
    .stats-section .pink { color: #ec4899; }




        /* ==== Our Expertise Section Only ==== */
    .expertise-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      background: linear-gradient(135deg, #16a34a, #15803d);
      padding: 60px 40px;
      color: white;
      font-family: Arial, sans-serif;
      gap: 30px;
    }

    .expertise-left img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .expertise-right h2 {
      font-size: 36px;
      font-weight: bold;
      margin-bottom: 15px;
      color: #facc15;
    }

    .expertise-right p {
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 25px;
      color: #f0fdf4;
    }

    .expertise-feature {
      margin-bottom: 20px;
      background: rgba(255, 255, 255, 0.1);
      padding: 15px;
      border-radius: 12px;
      transition: transform 0.3s ease;
    }

    .expertise-feature:hover {
      transform: translateY(-5px);
    }

    .expertise-feature h3 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 5px;
      color: #fff;
    }

    .expertise-feature p {
      font-size: 14px;
      color: #e5e7eb;
      margin: 0;
    }

    .contact-btn {
      display: inline-block;
      margin-top: 25px;
      background: #facc15;
      color: #1f2937;
      font-weight: bold;
      padding: 12px 20px;
      border-radius: 50px;
      text-decoration: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.25);
      transition: background 0.3s ease;
    }

    .contact-btn:hover {
      background: #eab308;
    }

    @media(max-width: 900px) {
      .expertise-section {
        grid-template-columns: 1fr;
        text-align: center;
      }
    }






     .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;
  }