body {
    background: #04070f;
    color: #ffffff;
  }
  
  /* ================= HERO ================= */
  .crop-hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background:
      linear-gradient(rgba(4,8,20,0.85), rgba(4,8,20,0.4)),
      url('/images/cherrytreebg.jpg') center / cover no-repeat;
    border-bottom: 4px solid #2171ff;
  }
  
  .hero-badge {
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(33,113,255,0.15);
    color: #6fb2ff;
    display: inline-block;
    margin-bottom: 18px;
  }
  
  .crop-hero-section h1 {
    font-size: clamp(48px, 6vw, 76px);
  }
  
  .hero-desc {
    max-width: 720px;
    margin: 20px auto 0;
    color: rgba(255,255,255,0.8);
  }
  
  /* ================= DESCRIPTION ================= */
  .crop-description-section {
    padding: 130px 0;
    background: linear-gradient(135deg, #04060a, #0b1a34);
  }
  
  .image-wrap img {
    width: 100%;
    border-radius: 26px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.7);
  }
  
  .content-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 26px;
    padding: 45px;
  }
  
  .section-label {
    color: #6fb2ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
    margin-top: 25px;
  }
  
  .feature-list li {
    margin-bottom: 12px;
  }
  
  .feature-list i {
    color: #6fb2ff;
    margin-right: 10px;
  }
  
  /* ================= AFFECTED ================= */
  .affected-section {
    padding: 130px 0;
    background: #040912;
    border-top: 4px solid #2171ff;
    border-bottom: 4px solid #2171ff;
  }
  
  .pest-card {
    background: rgba(255,255,255,0.04);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s ease;
  }
  
  .pest-card {
    background: rgba(255,255,255,0.04);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.4s ease;
  }
  
  .pest-card img {
    width: 100%;
    height: 320px;
    
  }


  @media (max-width:768px){
    .pest-card img{
      width: 100%;
      height: 300px !important;
    }
  }
  
  .pest-card h4 {
    padding: 20px;
  }
  
  .pest-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(90,150,255,0.35);
  }
  
  /* ================= SOLUTION ================= */
  .solution-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #02040a, #081a2f);
  }
  
  .solution-device {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 30px;
    text-align: center;
  }
  
  .solution-device img {
    max-width: 100%;
  }
  
  .solution-points div {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
  }
  
  .solution-points i {
    color: #6fb2ff;
    margin-right: 10px;
  }
  