  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
  }

  body {
      background: #f7faf7;
      color: #222;
      line-height: 1.6;
      padding: 0;
      margin: 0;
      box-sizing: border-box;
  }

  :root {
      --main-green: #06402B;
  }

  /* Base Container */
  .container {
      width: 100%;
      padding-right: 15px;
      padding-left: 15px;
      margin-right: auto;
      margin-left: auto;
  }

  /* Small devices (Mobile) */
  @media (min-width: 576px) {
      .container {
          max-width: 540px;
      }
  }

  /* Tablets */
  @media (min-width: 768px) {
      .container {
          max-width: 720px;
      }
  }

  /* Small Laptops */
  @media (min-width: 992px) {
      .container {
          max-width: 960px;
      }
  }

  /* Desktop */
  @media (min-width: 1200px) {
      .container {
          max-width: 1140px;
      }
  }

  /* Large Desktop */
  @media (min-width: 1400px) {
      .container {
          max-width: 1320px;
      }
  }

  /* =====================================================
                        HEADER SECTION
        ===================================================== */

  header {
         position: fixed;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #f0f0f0;
    z-index: 99;
    padding: 5px 0;

      z-index: 99;
  }

  .about-image {
      overflow: hidden;
      border-radius: 50% 50% 0px 50%;
  }

  .position-relative-area {
      position: relative;
  }

  .mission-vision-icon {
      position: absolute;
      right: 24px;
      top: 10px;
      max-width: 119px;
      opacity: 0.2;
  }

  /* LOGO */

  .logo {
      display: flex;
      align-items: center;
      height: 100%;
  }


  .logo img {
      height: auto;
      max-width: 92px;
      position: relative;
      top: 0;
  }




  /* NAVIGATION */

  nav ul {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 40px;
  }

  nav ul li {
      position: relative;
  }

  nav ul li a {
      text-decoration: none;
      color: #222;
      font-weight: 600;
      font-size: 15px;
      padding: 8px 0;
      display: inline-block;
      transition: 0.3s;
  }

  nav ul li a:hover {
      color: var(--main-green);
  }

  /* DROPDOWN */

  .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 200px;
      border-radius: 8px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      display: block;
      /* Important */
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: 0.3s ease;
  }



  .dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  /*.dropdown-menu li a {
            padding: 10px 20px;
            display: block;
            font-size: 14px;
            font-weight: 500;
            transition: 0.3s;
        }

            .dropdown-menu li a:hover {
                background: #f4f8f6;
                color: var(--main-green);
            }*/

  /* DROPDOWN LINKS */
  .dropdown-menu li {
      display: block;
      /* Important */
      width: 100%;
  }

  .dropdown-menu li a {
          display: block;
    padding: 5px 20px;
    text-decoration: none;
    color: #0c0c0c;
    font-size: 17px !important;
    font-weight: 400 !important;
  }

  /* Hover Effect */
  .dropdown-menu li a:hover {
      background: #f3f7f4;
  }

  /* HEADER BUTTONS */

  .header-buttons {
      display: flex;
      gap: 12px;
  }

  .login-btn {
      border: 2px solid var(--main-green);
      padding: 7px 20px;
      border-radius: 25px;
      color: var(--main-green);
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
  }

  .login-btn:hover {
      background: var(--main-green);
      color: #fff;
  }

  .signup-btn {
      background: var(--main-green);
      padding: 8px 22px;
      border-radius: 25px;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
  }

  .signup-btn:hover {
      background: #042e1f;
  }

  .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
  }

  .mobile-buttons {
      display: none;
  }


  /* =====================================================
                        HERO SLIDER
        ===================================================== */

  .hero-slider {
      position: relative;
      overflow: hidden;
      padding-top: 96px;
  }

  .slider {
      position: relative;
      width: 100%;
      height: 90vh;
  }

  .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: 1s ease-in-out;
  }

  .slide.active {
      opacity: 1;
  }

  .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomEffect 10s infinite alternate;
  }



  .slide-overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(6, 64, 43, 0.85));
  }

  .slide-content {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      max-width: 520px;
      color: #fff;
      background: rgba(0, 0, 0, 0.25);
      padding: 25px 35px;
      border-radius: 12px;
      backdrop-filter: blur(4px);
  }

  .slide-content {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      color: white;
      max-width: 520px;
      z-index: 2;
      background: rgba(0, 0, 0, 0.25);
      padding: 25px 35px;
      border-radius: 12px;
      backdrop-filter: blur(4px);
  }

  .slide-content h1 {
      font-size: 48px;
      margin-bottom: 10px;
      color: #ffffff;
      text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  }

  /*.slide-content h2 {
                        font-size: 42px;
                        font-weight: 700;
                        margin-bottom: 15px;
                    }*/

  .slide-content h2 {
      font-size: 42px;
      font-weight: 700;
      color: #0c7b37;
      background: linear-gradient(90deg, #0c7b37, #ffffff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 15px;
  }


  /*.slide-content p {
                        font-size: 18px;
                        margin-bottom: 25px;
                    }*/
  .slide-content p {
      font-size: 18px;
      margin-bottom: 25px;
      color: #f5f5f5;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
  }


  .hero-btn {
      display: inline-block;
      background: var(--main-green);
      color: #fff;
      padding: 12px 30px;
      border-radius: 30px;
      text-decoration: none;
      transition: 0.3s;
  }

  .hero-btn:hover {
      background: #00d084;
  }

  .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgb(101 100 100 / 49%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      backdrop-filter: blur(5px);
      transition: 0.3s;
      z-index: 10;
  }

  .arrow:hover {
      background: #06402B;
  }

  .arrow i {
      color: white;
      font-size: 20px;
  }

  .arrow.left {
      left: 20px;
  }

  .arrow.right {
      right: 20px;
  }

  /* Dots */
  .dots {
      position: absolute;
      bottom: 0;
      width: 100%;
      text-align: center;
      left: 48px;
  }

  .dots span {
      height: 12px;
      width: 12px;
      background: white;
      display: inline-block;
      border-radius: 50%;
      margin: 0 6px;
      cursor: pointer;
      opacity: 0.5;
      transition: 0.3s;
  }

  .dots span.active {
      opacity: 1;
      background: #00d084;
  }


  /* =====================================================
                        FOOTER
        ===================================================== */

  footer {
      background: var(--main-green);
      color: #fff;
      padding: 70px 0px 20px;
  }

  .footer-container {
      max-width: 1200px;
      margin: auto;
  }

  .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
  }

  .footer-column h3 {
      margin-bottom: 18px;
      font-size: 20px;
      font-weight: 600;
  }

  .footer-column p {
      font-size: 14px;
      line-height: 1.7;
      color: #d8e6df;
  }

  .footer-column a {
      display: block;
      text-decoration: none;
      color: #d8e6df;
      margin-bottom: 10px;
      font-size: 14px;
      transition: 0.3s;
  }

  .footer-column a:hover {
      color: #fff;
      padding-left: 5px;
  }

  .footer-contact span {
      display: block;
      margin-bottom: 12px;
      font-size: 14px;
  }

  .social-icons {
      margin-top: 15px;
  }

  .social-icons a {
      display: inline-block;
      background: #0a5a3a;
      border-radius: 6px;
      color: white;
      transition: .3s;
      font-size: 18px;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
  }

  .footer-column-about h3 {
      margin-bottom: 18px;
      font-size: 20px;
      font-weight: 600;
  }

  .social-icons a:hover {
      background: #ffffff;
      color: #06402B;
  }

  .footer-column a:hover i {
      padding: 0 !important;
  }

  .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      font-size: 13px;
      color: #d8e6df;
  }


  .footer-contact:hover {
      transform: translateY(-5px);
  }



  .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
      transition: 0.3s;
  }




  .contact-item p {
      margin: 0;
      font-size: 15px;
      line-height: 1.6;
  }

  /* Full Screen Loader */
  #loader {
      position: fixed;
      width: 100%;
      height: 100%;
      background: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 9999;
  }

  /* Center Box */
  .loader-box {
      text-align: center;
      position: relative;
  }

  /* Logo */
  .loader-box img {
      width: 140px;
      margin-bottom: 15px;
  }

  /* Loading Text */
  .loading-text {
      font-size: 18px;
      color: #2e7d32;
      /* Green theme */
      letter-spacing: 1px;
  }

  /* Animated Dots */
  .dot::after {
      content: "";
      animation: dots 1.5s steps(4, end) infinite;
  }

  @keyframes dots {
      0% {
          content: "";
      }

      25% {
          content: ".";
      }

      50% {
          content: "..";
      }

      75% {
          content: "...";
      }

      100% {
          content: "";
      }
  }



  /* =====================================================
                        MOBILE RESPONSIVE
        ===================================================== */

  @media(max-width:768px) {

      /*header {
                padding: 10px 20px;
            }*/







      nav ul {
          position: absolute;
          top: 80px;
          left: 0;
          width: 100%;
          background: #fff;
          flex-direction: column;
          gap: 20px;
          padding: 25px 0;
          display: none;
          box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
      }

      nav ul.show {
          display: flex;
      }

      .dropdown-menu {
          position: static;
          box-shadow: none;
          opacity: 1;
          visibility: visible;
          transform: none;
          display: none;
      }

      .dropdown.active .dropdown-menu {
          display: block;
      }

      .header-buttons {
          display: none;
      }

      .mobile-buttons {
          display: flex;
          flex-direction: column;
          gap: 10px;
          margin-top: 10px;
      }

      .menu-toggle {
          display: block;
      }

  }

  /* =========================
   PROFESSIONAL MOBILE FIX
========================= */

  /* ===== SAFE MOBILE FIX ===== */


  @media(max-width:768px) {

      .slider {
          height: auto;
      }

      .slide {
          position: relative;
          opacity: 1 !important;
          display: none;
      }

      .slide.active {
          display: block;
      }

      .slide img {
          width: 100%;
          height: auto;
          object-fit: cover;
          animation: none;
      }
  }





  /* ================= GENERAL SECTION ================= */



  .section-title {
      text-align: center;
      font-size: 34px;
      margin-bottom: 40px;
      color: #0c7b37;
  }

  /* ================= ABOUT ================= */

  .about {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
      align-items: center;
  }

  .about img {
      width: 420px;
      border-radius: 12px;
  }

  .about-text {
      flex: 1;
  }

  .about-premium {
      padding: 100px 40px;
      background: #ffffff;
  }

  .about-container {
      display: flex;
      gap: 60px;
      align-items: center;
      flex-wrap: wrap;
  }

  /*.about-image img {
            width: 420px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }*/
  .about-image img {
      width: 100%;
      max-width: 420px;
      height: auto;
  }


  .about-content {
      flex: 1;
  }

  .about-tag {
      background: #e8f5e9;
      color: #0c7b37;
      padding: 6px 18px;
      border-radius: 25px;
      font-size: 13px;
  }

  .about-content h2 {
      font-size: 36px;
      margin: 15px 0;
      color: #0c7b37;
  }

  .about-highlights {
      display: flex;
      gap: 25px;
      margin-top: 25px;
      flex-wrap: wrap;
  }

  .highlight-box {
      background: #f3f8f3;
      padding: 18px 25px;
      border-radius: 12px;
      text-align: center;
      transition: 0.3s;
  }

  .highlight-box:hover {
      transform: translateY(-5px);
  }

  .highlight-box h4 {
      color: #0c7b37;
      font-size: 22px;
  }

  /* ================= MISSION VISION ================= */

  .mv-premium {
      padding: 80px 0px;
      background: linear-gradient(to right, #f3f8f3, #ffffff);
  }

  .mv-container {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
  }

  .mv-card {
         flex: 1;
    background: white;
    padding: 40px 15px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
  }

  .mv-card:hover {
      transform: translateY(-8px);
  }

  .mv-card h3 {
      color: #0c7b37;
      margin-bottom: 15px;
  }

  /* ================= EDUCATION ================= */

  .premium-section {
      padding: 80px 40px;
      background: #f3f8f3;
  }

  .premium-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
  }

  .premium-card {
      background: white;
      border-radius: 15px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: 0.4s;
  }

  .premium-card:hover {
      transform: translateY(-8px);
  }

  .premium-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
  }

  .premium-content {
      padding: 20px;
  }

  .premium-content h3 {
      color: #0c7b37;
      margin-bottom: 10px;
  }

  /* ================= PRODUCT HERO ================= */

  .product-hero {
        padding: 80px 0px;
    background: linear-gradient(to right, #eef8ef, #ffffff);
  }

  .product-container {
      display: flex;
      gap: 60px;
      align-items: center;
      flex-wrap: wrap;
  }

  .product-image {
      flex: 1;
      text-align: center;
      position: relative;
  }

  .product-image img {
      width: 575px;
      transition: 0.5s;
      border-radius: 30px 30px 0px 30px;
  }



  .offer-badge {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      background: #ff5722;
      color: white;
      padding: 8px 18px;
      border-radius: 30px;
      font-weight: 600;
  }

  .product-info {
      flex: 1.2;
  }

  .product-tag {
      background: #0c7b37;
      color: white;
      padding: 6px 18px;
      border-radius: 25px;
      font-size: 13px;
  }

  .product-info h2 {
      font-size: 38px;
      margin: 15px 0;
      color: #0c7b37;
  }

  .product-desc {
      margin-bottom: 25px;
  }

  .product-benefits {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
      margin-bottom: 25px;
  }

  .benefit-box {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 20px 30px;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      font-family: 'Segoe UI', sans-serif;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
  }


  .benefit-box:hover {
      transform: translateY(-5px);
      border-color: #06402b;
  }

  .price-box span {
      color: #ff5722;
      font-size: 32px;
      font-weight: 700;
  }

  .product-buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      margin-top: 20px;
  }

  .buy-btn {
      background: #0c7b37;
      color: white;
      padding: 14px 30px;
      border-radius: 35px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
  }

  .buy-btn:hover {
      background: #095a27;
  }

  .learn-btn {
      border: 2px solid #0c7b37;
      color: #0c7b37;
      padding: 14px 30px;
      border-radius: 35px;
      text-decoration: none;
      font-weight: 600;
  }

  .agri-content h2{
        font-size: 34px;
    color: rgb(15, 81, 50);
    margin-bottom: 15px;
    line-height: 1.3;
  }
  .social-content h2{
        font-size: 34px;
    color: rgb(15, 81, 50);
    margin-bottom: 15px;
    line-height: 1.3;
  }


  /* Tablet View */
  @media (max-width: 992px) {

      .about-container {
          gap: 30px;
      }

      .about-content h2 {
          font-size: 28px;
      }

      .about-image img {
          width: 100%;
          max-width: 100%;
      }
  }


  /* Mobile View */
  @media (max-width: 768px) {

      .about-premium {
          padding: 60px 0px;
      }

      .about-container {
          flex-direction: column;
          text-align: center;
      }

      .about-image img {
          width: 100%;
          max-width: 100%;
          margin: auto;
      }

      .about-content h2 {
          font-size: 24px;
      }

      .about-highlights {
          justify-content: center;
      }

      .highlight-box {
             width: 100%;
        max-width: 100%;
      }
  }
.menu-toggle {
    position: fixed; /* Taaki scroll karne par bhi wahi rahe */
    top: 20px;
    right: 20px;
    z-index: 1001; /* Menu (999) se zyada hona chahiye */
    cursor: pointer;
    font-size: 30px;
    color: #333; /* Background ke hisaab se color change karein */
    transition: transform 0.3s ease;
}
nav ul.show ~ .menu-toggle {
    color: #000; 
}
/* Mobile Menu Container */
@media (max-width: 768px) {
    #menu {
        display: none; /* Default hidden */
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95); /* Glassmorphism effect */
        backdrop-filter: blur(10px);
        padding-top: 80px;
        z-index: 999;        padding-left: 20px;
                padding-right: 20px;
        transition: all 0.4s ease-in-out;
    }
    .mv-container{
        flex-direction: column;
    }

    /* Jab Menu Show hoga */
    nav ul.show {
        display: flex !important;
        animation: slideDown 0.5s forwards;
    }

    /* Menu Links Styling */
    #menu li {
        margin: 0;
        opacity: 0; /* Animation ke liye */
        transform: translateY(20px);
                width: 100%;
    }

    /* Links animation delay (Stagger effect) */
    nav ul.show li {
        animation: fadeInUp 0.4s forwards ease-out;
    }
    nav ul.show li:nth-child(1) { animation-delay: 0.1s; }
    nav ul.show li:nth-child(2) { animation-delay: 0.2s; }
    nav ul.show li:nth-child(3) { animation-delay: 0.3s; }
    /* ...isi tarah baki links ke liye */

    #menu li a {
        font-size: 1.2rem;
        font-weight: 600;
        text-decoration: none;
        letter-spacing: 1px;
    }

    /* Mobile Buttons (Login/Signup) Styling */
    .mobile-buttons {
        margin-top: 30px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .login-btn, .signup-btn {
        border-radius: 25px;
        text-align: center;
        width: 100%;
    }

    /* Animations */
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-100%); }
        to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeInUp {
        to { opacity: 1; transform: translateY(0); }
    }
}
  /* Small Mobile */
  @media (max-width: 480px) {
.left-image img{
    margin-bottom: 20px;
}

      .about-content h2 {
          font-size: 22px;
      }

      .about-tag {
          font-size: 12px;
          padding: 5px 14px;
      }

      .highlight-box {
          padding: 15px;
      }

      .highlight-box h4 {
          font-size: 18px;
      }
  }

  /* ========================= */
  /* WELLNESS SECTION */
  /* ========================= */

  .wellness-section {
      padding: 60px 0;
      background: #e9efec;
      font-family: 'Poppins', sans-serif;
  }

.nav-base{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

  .wellness-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 50px;
      align-items: center;
  }

  /* LEFT IMAGE */
  .left-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 20px;
  }

  /* RIGHT SIDE */
  .badge {
      display: inline-block;
      background: #0f5132;
      color: #fff;
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 13px;
      margin-bottom: 15px;
  }

  .right-content h2 {
      font-size: 34px;
      color: #0f5132;
      margin-bottom: 15px;
      line-height: 1.3;
  }

  .description {
      color: #555;
      line-height: 1.6;
      margin-bottom: 25px;
  }

  /* ========================= */
  /* SLIDER */
  /* ========================= */

  .card-slider {
      overflow: hidden;
      margin-bottom: 30px;
  }

  .slider-wrapper {
      display: flex;
      gap: 20px;
      transition: transform 0.5s ease;
  }

  .card {
      flex-shrink: 0;
      width: calc(50% - 10px);
      background: #fff;
      padding: 18px;
      border-radius: 16px;
      box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  }

  .card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 12px;
  }

  .card h4 {
      color: #0f5132;
      font-size: 16px;
      margin-bottom: 8px;
  }

  .card p {
      font-size: 13px;
      color: #666;
  }

  .card:hover {
      transform: translateY(-5px);
  }

  /* BUTTON */
  .main-btn {
      background: #0f5132;
      color: #fff;
      padding: 12px 28px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      font-size: 15px;
      transition: 0.3s;
  }

  .main-btn:hover {
      background: #0c3f28;
  }

  /* ========================= */
  /* RESPONSIVE */
  /* ========================= */

  @media (max-width: 992px) {

     

      .left-image img {
          height: auto;
      }

      .right-content h2 {
          font-size: 26px;
      }

      .card {
          width: 100%;
      }
  }

  @media (max-width: 768px) {

    

      .wellness-grid {
        display: block;
          grid-template-columns: 1fr;
          gap: 25px;
      }

      .left-image {
          order: 1;
      }

      .right-content {
          order: 0;
          padding: 0;
      }

      .left-image img {
          height: auto;
          border-radius: 16px;
      }

      .right-content h2 {
          font-size: 22px;
          line-height: 1.3;
      }

      .description {
          font-size: 14px;
          margin-bottom: 20px;
      }

      /* SLIDER MOBILE */
      .card-slider {
          margin-bottom: 20px;
      }

      .slider-wrapper {
          gap: 15px;
      }

      .card {
          width: 100% !important;
          padding: 15px;
      }

      .card img {
          height: 360px;
          object-fit: cover;
      }

      /* BUTTON FIX */
      .main-btn {
          width: 100%;
          display: block;
          text-align: center;
          padding: 14px 20px;
          margin-top: 5px;
      }
  }

  @media (max-width: 576px) {

      .wellness-section {
          padding: 40px 0;
      }

      .right-content h2 {
          font-size: 22px;
      }

      .main-btn {
          width: 100%;
      }
  }

  /* ================= AGRICULTURE SECTION ================= */

  .agri-section {
      padding: 80px 0;
      background: #f8faf7;
  }

  .agri-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
  }

  .agri-content {
      flex: 1;
  }

  .agri-image {
      flex: 1;
  }

  .agri-image img {
      width: 100%;
      border-radius: 20px;
      display: block;
  }

  /* Mobile View */
  @media (max-width: 991px) {

      .agri-grid {
          flex-direction: column;
      }

      .agri-image,
      .agri-content {
          width: 100%;
      }
  }

  /* ================= SOCIAL SECTION ================= */

  .social-section {
      padding: 80px 0;
      background: #ffffff;
  }

  .social-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
  }

  .social-content {
      flex: 1;
  }

  .social-image {
      flex: 1;
  }

  .social-image img {
      width: 100%;
      border-radius: 20px;
      display: block;
  }

  /* Reverse only for desktop */
  .social-grid.reverse {
      flex-direction: row-reverse;
  }

  /* Mobile Fix */
  @media (max-width: 991px) {

      .social-grid,
      .social-grid.reverse {
          flex-direction: column;
      }

      .social-image,
      .social-content {
          width: 100%;
      }

      img {
          max-width: 100%;
          height: auto;
      }

      .about-image {
    overflow: hidden;
    border-radius: 10%;
}
.mission-vision-icon {
    position: relative;
    right: 0;
    top: -16px;
    max-width: 73px;
    opacity: 1;
}
.product-container{
    display: block;
}
.product-image{
    margin-bottom: 20px;
}
.product-info h2 {
    font-size: 22px;
    color: #0c7b37;
    margin-top: 20px;
    margin-bottom: 0;
}
.agri-content h2{
          font-size: 20px;
      color: #0f5132;
      margin-bottom: 15px;
      line-height: 1.3;
}
.social-content h2{
        font-size: 20px;
      color: #0f5132;
      margin-bottom: 15px;
      line-height: 1.3;
}
.offer-badge{
        bottom: -8px;
    left: 50%;
    top: auto;
}
  }