/* ===============================================
   DISEASE CONTROL PAGE - PREMIUM GLASSMORPHIC
   =============================================== */

   :root {
    --primary-blue: #2471ff;
    --dark-blue: #0e2041;
    --light-blue: #6984b6;
    --glass-light: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 15px 45px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 25px 60px rgba(0, 0, 0, 0.4);
  }
  
  /* ================= GLOBAL STYLES ================= */
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Sora', sans-serif;
    color: var(--text-white);
    overflow-x: hidden;
    background: linear-gradient(135deg, #000000, #0e2041);
  }

  /* ================= NAVBAR ADDITIONS ================= */
  
  .btn-login {
    padding: 8px 24px !important;
    border-radius: 50px;
    background: linear-gradient(135deg, #2471ff, #6984b6);
    color: var(--text-white) !important;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(36, 113, 255, 0.4);
  }
  
  /* ================= HERO SECTION ================= */
  
  .disease-hero-section {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background: 
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('https://images.unsplash.com/photo-1625246333195-78d9c38ad449?w=1600') 
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }


  .disease-hero-section1 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('/images/narrow-pathway-middle-grassy-field-blue-sky.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }
   .disease-hero-section2 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('/images/low-angle-shot-windmills-with-sunrise-clear-purple-sky-background.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }
     .disease-hero-section3 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('/images/one-man-spraying-water-growing-plants-generated-by-ai.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }
     .disease-hero-section4 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('/images/path-through-vast-green-valley-sunny-day.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }
     .disease-hero-section5 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('/images/products.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }


  .disease-hero-section6 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5,10,7,0.85), rgba(5,10,7,0.25)),
      url('/images/smart-sensors.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }
      .disease-hero-section7 {
    position: relative;
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5, 10, 7, 0.438), rgba(5,10,7,0.25)),
      url('/images/lotrap.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }
        .disease-hero-section8 {
    position: relative;
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5, 10, 7, 0.438), rgba(5,10,7,0.25)),
      url('/images/comingsoon.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }

  .disease-hero-section9 {
    position: relative;
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 80px;
    background:
      linear-gradient(to right, rgba(5, 10, 7, 0.438), rgba(5,10,7,0.25)),
      url('/images/comingsoon.jpg')
      center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
  }


  
  .disease-hero-content h1 {
    font-size: 64px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-white);
  }

  .hero-subtitle {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-blue);
    letter-spacing: 1px;
  }

  /* ================= INTRO SECTION ================= */
  
  .disease-intro-section {
    position: relative;
    padding: 100px 0;
    background-image: url('/images/f38449d949b744a8ae5cb79029f8165d.jpg');
    background-position: center;
    background-size: cover;
    overflow: hidden;
    border-top: 4px solid #2471ff;
    border-bottom: 4px solid #2471ff;
  }
  
  /* Overlay */
  .disease-intro-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.75),
      rgba(14, 32, 65, 0.8)
    );
    z-index: 1;
  }
  
  /* Content above overlay */
  .disease-intro-section > * {
    position: relative;
    z-index: 2;
  }
  

  .intro-title {
    font-size: 42px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 30px;
    text-align: center;
    color: #336bd6;
  }

  .intro-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  /* ================= SECTION DIVIDER ================= */
  
  .section-divider {
    padding: 60px 0;
    background: linear-gradient(135deg, #000000, #0e2041);
  }
  
  .premium-hr {
    border: none;
    height: 1px;
    background: linear-gradient(
      to right, 
      transparent, 
      rgba(36, 113, 255, 0.5), 
      transparent
    );
    margin: 0;
  }
  
  /* ================= FEATURES SECTION ================= */
  
  .disease-features-section {
    position: relative;
    padding: 100px 0;
    background-image: url('/images/Aesthetic-Farm-Wallpaper-HD.jpg');
    background-position: center;
    background-size: cover;
    overflow: hidden;
    border-bottom: 3px solid #3370dc;
  }
  
  /* Overlay */
  .disease-features-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.75),
      rgba(14, 32, 65, 0.75)
    );
    z-index: 1;
  }
  
  /* Ensure content stays above overlay */
  .disease-features-section > * {
    position: relative;
    z-index: 2;
  }
  
  .section-header {
    margin-bottom: 70px;
  }

  .section-intro-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  /* Feature Cards */
  .feature-card {
    height: 100%;
    padding: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, rgba(36, 113, 255, 0.25), rgba(36, 113, 255, 0.15));
    border-color: rgba(36, 113, 255, 0.4);
  }
  
  .feature-card-header {
    padding: 40px 35px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .feature-icon-large {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(36, 113, 255, 0.3), rgba(36, 113, 255, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border: 1px solid rgba(36, 113, 255, 0.4);
  }
  
  .feature-icon-large i {
    font-size: 36px;
    color: var(--primary-blue);
  }
  
  .feature-card-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0;
  }
  
  .feature-card-body {
    padding: 30px 35px;
    flex: 1;
  }
  
  .feature-card-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  .disease-explorer-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #05070d, #0e2041) !important;
    color: #fff;
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
  }
  
  .disease-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
  }
  
  /* SIDEBAR */
  .disease-sidebar {
    background: #0c142b;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 26px;
  }
  
  .disease-sidebar h3 {
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .category-list {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
  }
  
  .category-list li {
    padding: 12px 14px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cdd6ff;
    transition: 0.25s;
  }
  
  .category-list li:hover,
  .category-list li.active {
    background: #18224a;
    color: #ffffff;
  }
  
  .disease-sidebar label {
    font-size: 13px;
    opacity: 0.7;
    display: block;
    margin-bottom: 6px;
  }
  
  .disease-sidebar select {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    background: #111a36;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 18px;
  }
  
  .search-box {
    position: relative;
  }
  
  .search-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    opacity: 0.6;
  }
  
  .search-box input {
    width: 100%;
    padding: 12px 12px 12px 36px;
    border-radius: 10px;
    background: #111a36;
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
  }
  
  /* ===============================
   RESPONSIVE — TABLET
================================ */
@media (max-width: 1024px) {
  .disease-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }
}

/* ===============================
   RESPONSIVE — MOBILE
================================ */
@media (max-width: 768px) {

  .disease-explorer-section {
    padding: 80px 16px;
    background-attachment: scroll !important; /* iOS fix */
  }

  .disease-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Sidebar becomes top filter panel */
  .disease-sidebar {
    padding: 18px;
    border-radius: 16px;
  }

  .disease-sidebar h3 {
    font-size: 18px;
  }

  /* Categories wrap into multiple lines instead of scrolling */
  .category-list {
    display: flex;
    flex-wrap: wrap;       /* wrap to multiple lines */
    gap: 8px;              /* spacing between categories */
    padding: 0;
    margin-bottom: 20px;
    overflow: visible;     /* prevent horizontal scroll */
  }

  .category-list li {
    flex: 1 1 auto;        /* grow/shrink to fit multiple per line */
    min-width: calc(50% - 8px); /* 2 per line on mobile */
    text-align: center;
    padding: 10px 12px;
    font-size: 14px;
  }

  /* Inputs touch-friendly */
  .disease-sidebar select,
  .search-box input {
    padding: 14px;
    font-size: 15px;
  }

  .search-box i {
    left: 14px;
  }

  .search-box input {
    padding-left: 40px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES
================================ */
@media (max-width: 480px) {

  .disease-explorer-section {
    padding: 70px 12px;
  }

  .disease-sidebar {
    padding: 16px;
  }

  .disease-sidebar h3 {
    font-size: 16px;
  }

  .category-list li {
    min-width: calc(100% - 8px); /* 1 per line */
    font-size: 13px;
    padding: 8px 10px;
  }
}

  /* CONTENT */
  .disease-content h2 {
    font-size: 28px;
    margin-bottom: 26px;
  }
  
  .disease-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .disease-card {
    background: #101a33;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.3s;
  }
  
  .disease-card:hover {
    transform: translateY(-6px);
  }
  
  .disease-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .disease-card-content {
    padding: 16px;
  }
  
  .disease-card-content h4 {
    font-size: 17px;
    margin-bottom: 6px;
  }
  
  .disease-card-content span {
    font-size: 14px;
    opacity: 0.75;
  }
  


  .disease-benefits-section{
    background: linear-gradient(135deg, #05070d, #0e2041) !important;
    background: linear-gradient(135deg, #05070d, #0e2041) !important;
    color: #fff;
    background-attachment: fixed !important;
    background-position: center !important;
    background-size: cover !important;
    padding-bottom: 50px;
    
  }


/* Flip Card Container */
.flip-card {
    perspective: 1500px;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 420px;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
    border-radius: 26px;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Front and Back sides */
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    backface-visibility: hidden;
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  
  .flip-card-front::before,
  .flip-card-back::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
    z-index: 1;
  }
  
  /* Back rotated */
  .flip-card-back {
    transform: rotateY(180deg);
  }
  
  /* Glass Tags */
  .benefit-tags {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    z-index: 2;
  }
  
  .benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
  }
  
  .benefit-tag i {
    font-size: 13px;
    color: #9fb4ff;
  }
  
  .benefit-card-large:hover .benefit-tag {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
  }
  
  /* Benefit Content */
  .benefit-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px;
    z-index: 2;
    color: #fff;
  }
  
  .benefit-content h3 {
    font-size: 26px;
    font-weight: 600;
    color: #2171ff;
    margin-bottom: 14px;
  }
  
  .benefit-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
  }
  
  /* Back images */
  .bg-timing-back { background-image: url('/images/Spraying-conditions-1.png'); }
  .bg-chemical-back { background-image: url('/images/Infection-chance.png'); }
  .bg-prevention-back { background-image: url('/images/Frame-1870.png'); }
  .bg-research-back { background-image: url('/images/research-back.jpg'); }
  
  /* Original front images */
  .bg-timing { background-image: url('/images/spraying.jpg'); }
  .bg-chemical { background-image: url('/images/insecticide-canister-wheat-field_23-2148233470.avif'); }
  .bg-prevention { background-image: url('/images/669e45c9d5f9e11cd72e2ff3_post1-small.webp'); }
  .bg-research { background-image: url('/images/e7760125-800px-wm.jpg'); }
    
  
  /* ================= CONTACT SECTION ================= */
  
  .disease-contact-section {
    padding: 140px 0;
    background: linear-gradient(135deg, #000000, #0e2041);
    border-top: 4px solid #2471ff;
  }

  .section-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 30px;
  }

  .section-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 60px;
  }
  
  /* Contact Form */
  .contact-form-container {
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: var(--shadow-strong);
  }
  
  .form-group-custom {
    margin-bottom: 25px;
  }
  
  .form-group-custom label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  
  .form-control-custom {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--text-white);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'Sora', sans-serif;
  }
  
  .form-control-custom:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(36, 113, 255, 0.15);
  }
  
  .form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  textarea.form-control-custom {
    resize: vertical;
    min-height: 120px;
  }
  
  select.form-control-custom {
    cursor: pointer;
  }
  
  .disease-btn-submit {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2471ff, #6984b6);
    color: var(--text-white);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.8px;
    border: none;
    transition: all 0.35s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
  }
  
  .disease-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(36, 113, 255, 0.5);
  }
  
  /* ================= FOOTER ================= */
  
  .disease-footer {
    background: rgba(0, 0, 0, 0.9);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-section {
    margin-bottom: 30px;
  }
  
  .footer-brand {
    font-size: 26px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
  }
  
  .footer-brand i {
    color: var(--primary-blue);
  }
  
  .footer-social {
    display: flex;
    gap: 12px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
    text-decoration: none;
  }
  
  .footer-social a:hover {
    background: linear-gradient(135deg, rgba(36, 113, 255, 0.4), rgba(36, 113, 255, 0.2));
    border-color: var(--primary-blue);
    transform: translateY(-3px);
  }
  
  .footer-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-blue);
    transform: translateX(5px);
  }
  
  .footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
  }

  .footer-links-inline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
  }

  .footer-links-inline a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .footer-links-inline a:hover {
    color: var(--primary-blue);
  }

  .footer-links-inline .separator {
    margin: 0 10px;
  }
  
  /* ================= RESPONSIVE DESIGN ================= */
  
  @media (max-width: 991px) {
    .disease-hero-content h1 {
      font-size: 48px;
    }

    .hero-subtitle {
      font-size: 26px;
    }

    .intro-title {
      font-size: 36px;
    }

    .intro-description {
      font-size: 16px;
    }
  
    .section-title {
      font-size: 36px;
    }
  
    .disease-features-section,
    .disease-benefits-section,
    .disease-catalog-section,
    .disease-intro-section,
    .disease-contact-section {
      padding: 100px 0;
    }
  
    .section-divider {
      padding: 40px 0;
    }
  
    .contact-form-container {
      padding: 40px 30px;
    }
  }
  
  @media (max-width: 767px) {
    .disease-hero-section {
      min-height: auto;
      padding-top: 140px;
      padding-bottom: 60px;
    }
  
    .disease-hero-content h1 {
      font-size: 36px;
    }

    .hero-subtitle {
      font-size: 22px;
    }

    .intro-title {
      font-size: 28px;
    }

    .intro-description {
      font-size: 15px;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .section-description {
      font-size: 15px;
    }
  
    .disease-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
  
    .contact-form-container {
      padding: 30px 20px;
    }
  
    .disease-features-section,
    .disease-benefits-section,
    .disease-catalog-section,
    .disease-intro-section,
    .disease-contact-section {
      padding: 80px 0;
    }
  
    .section-header {
      margin-bottom: 50px;
    }

    .benefit-card-large {
      padding: 40px 30px;
    }
  }
  
  @media (max-width: 575px) {
    .disease-hero-content h1 {
      font-size: 32px;
      letter-spacing: 1px;
    }

    .hero-subtitle {
      font-size: 20px;
    }

    .intro-title {
      font-size: 24px;
    }
  
    .section-title {
      font-size: 24px;
    }
  
    .feature-card-header,
    .feature-card-body {
      padding: 25px 20px;
    }
  
    .crop-card-header {
      padding: 25px 20px;
    }
  
    .crop-card-body {
      padding: 20px;
    }
  
    .benefit-card-large {
      padding: 35px 25px;
    }

    .benefit-card-large h3 {
      font-size: 22px;
    }

    .benefit-card-large p {
      font-size: 15px;
    }
  
    .footer-bottom {
      text-align: center;
    }
  
    .footer-links-inline {
      text-align: center;
      margin-top: 10px;
    }
  }


















  .research-validation-section {
    position: relative;
    padding: 140px 0;
    background-image: url('/images/scientists-and-plants-800x533.jpg'); /* change image path */
    background-size: cover;
    background-position: center;

    overflow: hidden;
    border-top: 4px solid #2471ff;
  }
  
  /* OVERLAY */
  .research-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(3, 7, 18, 0.85),
      rgba(14, 32, 65, 0.85)
    );
    z-index: 1;
  }
  
  /* CONTENT */
  .research-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: left;
  }
  
  .research-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #ffffff;
  }
  
  .research-content p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 18px;
  }
  
  .research-content strong {
    color: #9fb4ff;
  }
  






