  .product-card {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
    }

    .product-image-wrapper img {
        transition: transform 0.5s ease;
    }

    .product-card:hover .product-image-wrapper img {
        transform: scale(1.1);
    }

  

    .btn-custom {
        transition: all 0.3s ease;
         background-color: #1b5c92 !important;
    }

    .btn-custom:hover {
        background-color: #2680ca !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(107, 61, 61, 0.4);
    }

    .nav-link-item:hover {
        opacity: 1 !important;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .product-image-wrapper {
            height: 350px !important;
        }

        .product-name {
            font-size: 1.2rem !important;
        }

        .product-price {
            font-size: 1.2rem !important;
        }

        .product-description {
            font-size: 0.85rem !important;
        }
    }

    @media (max-width: 768px) {
        .product-image-wrapper {
            height: 320px !important;
        }

        .product-name {
            font-size: 1.1rem !important;
        }

        .product-price {
            font-size: 1.1rem !important;
        }

        .product-description {
            font-size: 0.8rem !important;
        }

        .color-swatch {
            width: 24px !important;
            height: 24px !important;
        }
    }


      /* PDF Links Hover */
    .pdf-link:hover {
        color: #5cb85c !important;
        text-decoration: underline !important;
    }

    .pdf-link svg {
        transition: transform 0.3s ease;
    }

    .pdf-link:hover svg {
        transform: translateX(5px);
    }

    /* Social Icons Hover */
    .social-icon:hover {
        transform: scale(1.15);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Image Hover Effects */
    .image-wrapper {
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .image-wrapper img {
        transition: transform 0.5s ease;
    }

    .image-wrapper:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
    }

    .image-wrapper:hover img {
        transform: scale(1.08);
    }

    /* Challenge Box Animation */
    .challenge-box {
        animation: fadeInDown 0.8s ease;
       
        background-color: #1111127c !important;
    }

    @keyframes fadeInDown {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Image Caption Hover */
    .image-caption h5 {
        transition: color 0.3s ease;
    }

    .image-wrapper:hover + .image-caption h5 {
        color: #5cb85c !important;
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .challenge-box {
            position: relative !important;
            max-width: 100% !important;
            margin-bottom: 2rem;
            top: 0 !important;
        }

        .images-grid .row {
            margin-top: 0 !important;
        }

        .main-heading {
            font-size: 2rem !important;
        }

        .image-wrapper {
            margin-top: 0 !important;
        }

        .col-md-6 .image-wrapper:last-child {
            margin-top: 0 !important;
        }
    }

    @media (max-width: 768px) {
        .main-heading {
            font-size: 1.8rem !important;
        }

        .description-text {
            font-size: 0.95rem !important;
        }

        .social-icons {
            flex-wrap: wrap;
        }

        .social-icon {
            width: 40px !important;
            height: 40px !important;
        }

        .image-wrapper {
            max-width: 100% !important;
            margin-left: 0 !important;
        }

        .image-caption {
            text-align: center !important;
            max-width: 100% !important;
            margin-left: 0 !important;
        }

        .challenge-title {
            font-size: 1.1rem !important;
        }

        .challenge-text {
            font-size: 0.85rem !important;
        }
    }

    @media (max-width: 576px) {
        .pdf-link {
            font-size: 0.85rem !important;
        }

        .pdf-link svg {
            width: 18px !important;
            height: 18px !important;
        }
    }



  .connectivity-intro-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  border-top: 4px solid var(--primary-blue);
  
}

.connectivity-intro-section .intro-title {
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 28px;
}

.connectivity-intro-section .intro-description {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.85);
  max-width: 900px;
  margin: 0 auto;
}

/* Image below paragraph */
.connectivity-intro-section .intro-image {
  display: block;
  width: 100%;
  max-width: 900px; /* matches paragraph width */
  margin: 40px auto 0;
  border-radius: 14px;
  object-fit: cover;
 
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
  .connectivity-hero-section {
    padding: 140px 0 70px;
  }
}

@media (max-width: 767px) {
  .connectivity-hero-section {
    padding: 120px 0 60px;
    background-attachment: scroll;
  }

  .connectivity-intro-section {
    padding: 80px 0;
  }

  .connectivity-intro-section .intro-image {
    margin-top: 30px;
    border-radius: 10px;
  }
}


.iotree-section {
  position: relative;
  min-height: 100vh;
  background:
    linear-gradient(rgba(5, 10, 7, 0.75), rgba(5, 10, 7, 0.75)),
    url('/images/lotrap.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

/* Content above overlay */
.iotree-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

/* Heading */
.iotree-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Description */
.iotree-text {
  font-size: 18px;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .iotree-title {
    font-size: 34px;
  }

  .iotree-text {
    font-size: 16px;
  }
}



.plantation-section {
  background: #ffffff;
  padding-top: 100px;
}

.plantation-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px 80px;
  text-align: center;
}

.plantation-heading {
  font-size: 38px;
  font-weight: 600;
  color: #111;
  margin-bottom: 30px;
}

.plantation-points p {
  font-size: 18px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

/* Image Section */
.plantation-image {
  width: 100%;
}

.plantation-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .plantation-heading {
    font-size: 28px;
  }

  .plantation-points p {
    font-size: 16px;
  }

  .plantation-section {
    padding-top: 70px;
  }
}




 @media (max-width: 1024px) {
    .pest-desktop-arrow {
      left: 10px !important;
      right: 10px !important;
    }
    
    #pestPrevBtn {
      left: 10px !important;
    }
    
    #pestNextBtn {
      right: 10px !important;
    }
  }

  @media (max-width: 768px) {
    .pest-frame > div {
      grid-template-columns: 1fr !important;
      gap: 0 !important;
    }
    
    .pest-frame > div > div:first-child {
      height: 350px !important;
    }
    
    .pest-frame > div > div:last-child {
      height: auto !important;
      padding: 30px 20px !important;
    }
    
    .pest-desktop-arrow {
      display: none !important;
    }
    
    .pest-mobile-arrows {
      display: flex !important;
    }

    h2 {
      font-size: 32px !important;
    }
    
    p {
      font-size: 16px !important;
    }
  }

  @media (max-width: 480px) {
    h2 {
      font-size: 28px !important;
    }
  }






   .service-block {
        transition: transform 0.3s ease;
    }

    .service-block:hover {
        transform: translateY(-5px);
    }

    .service-image img {
        transition: transform 0.5s ease;
    }

    .service-block:hover .service-image img {
        transform: scale(1.08);
    }

    .service-number {
        opacity: 0.6;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .service-block {
            padding-top: 0 !important;
            margin-bottom: 3rem;
        }

        .service-number {
            font-size: 5rem !important;
        }

        .service-title {
            font-size: 1.2rem !important;
        }

        .service-image {
            max-width: 100% !important;
            margin: 0 auto;
        }

        .service-image img {
            height: 280px !important;
        }
    }

    @media (max-width: 768px) {
        .service-number {
            font-size: 4rem !important;
        }

        .service-title {
            font-size: 1.1rem !important;
        }

        .service-description {
            max-width: 100% !important;
        }
    }

    /* Ensure center column is lower on desktop */
    @media (min-width: 993px) {
        .col-lg-4:nth-child(2) .service-block {
            padding-top: 120px;
        }
    }





    /* Responsive Styles */
  @media (max-width: 1024px) {
    .slider-card {
      min-width: calc(33.333% - 20px) !important;
    }
  }

  @media (max-width: 768px) {
    .slider-card {
      min-width: calc(100% - 40px) !important;
      margin-right: 20px !important;
      margin-left: 20px !important;
    }
    
    .desktop-arrow {
      display: none !important;
    }
    
    .mobile-arrows {
      display: flex !important;
    }

    h2 {
      font-size: 32px !important;
    }
  }

  @media (max-width: 480px) {
    h2 {
      font-size: 28px !important;
    }
  }



  .info-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.section-title {
  font-size:30px !important;
  font-weight: 600;
  color: #000000 !important;
  margin-bottom: 15px;
}

.section-text {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
  max-width: 450px;
}

.section-img {
  width: 100%;
  max-width: 420px;
  border-radius: 6px;
}


.farm-report {
  background: #ffffff;
  padding: 30px;
  max-width: 500px;
}

.farm-report h3 {
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.farm-report ul {
  padding-left: 18px;
  margin: 0;
}

.farm-report ul li {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 8px;
}
