@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ================= GLOBAL SAFETY FIX ================= */
* {
    box-sizing: border-box;
}

body {
                font-family: 'poppins',sans-serif;

    margin: 0;
    padding: 0;
    background: var(--vanilla-bg);
}

/* ================= FORCE PAGE FLOW RESET ================= */
main, section {
    width: 100%;
    display: block;
    position: relative;
}

/* ================= HERO FIX (MOST IMPORTANT) ================= */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;

    padding: 20px 5% 60px;
    margin: 0;

    background: linear-gradient(135deg, var(--dark-bg), var(--gold-dark));
    color: var(--text-light);

    min-height: auto;
    overflow: hidden;
}

/* ================= NAV FIX ================= */
.hero nav {
    position: relative !important;  /* 🔥 FORCE override */
    width: 100%;
    display: flex;
    justify-content: flex-end;
    padding: 10px 0;
}

/* NAV LIST */
.hero nav ul {
    display: flex;
    flex-wrap: wrap;  /* ✅ prevents overflow */
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ================= TEAM SECTION ISOLATION ================= */
.experienced-team {
  margin-top: 200px;
    width: 100%;
    display: block;
    position: relative;

    padding: 60px 5%;
    margin: 0;

    background: linear-gradient(
        to bottom right,
        var(--icecream-pink),
        var(--soft-honey-tint),
        var(--icecream-mint)
    );
}

/* FORCE STACKING INSIDE TEAM */
.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* ================= CARD SAFETY ================= */
.team-card {
    width: 220px;
    background: var(--icecream-pink);
    padding: 20px;
    border-radius: 15px;

    position: relative;
    z-index: 1; /* ✅ prevents overlap */
}

/* ================= IMAGE SAFETY ================= */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================= DROPDOWN FIX ================= */
.hero .dropdown-menu {
    position: absolute;
    z-index: 9999;
}

.hero .submenu {
    position: absolute;
    z-index: 9999;
}


/* LINKS */
.hero nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;

    padding: 6px 8px;
    transition: 0.3s;

    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

/* HOVER MAIN LINK */
.hero nav ul li a:hover {
    color: rgb(241, 241, 28);
    transform: translateY(-2px);
}

/* ================= DROPDOWN ================= */
.hero nav ul li {
    position: relative;
}


.hero .dropdown-menu {
    display: none;
    position: absolute;   /* ⭐ IMPORTANT (fix) */

    top: 100%;            /* nav ke just neeche */
    left: 0;

    min-width: 220px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);

    padding: 8px 0;
    z-index: 9999;
}




/* show dropdown */
.hero .dropdown:hover > .dropdown-menu {
    display: block;
}

/* dropdown items */
.hero .dropdown-menu li a {
    color: #2b1a0f;
    text-shadow: none;

    display: block;
    padding: 10px 15px;
}

/* ⭐ ICECREAM PINK HOVER */
.hero .dropdown-menu li a:hover {
    /* icecream pink */
      background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}





/* ================= SUBMENU ================= */
.hero .dropdown-sub {
    position: relative;
}

/* submenu box */
.hero .submenu {
    display: none;
    position: absolute;
    top: 0;
    right: auto;
left:100%;
    min-width: 200px;
    background: #fff;

    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* show submenu */
.hero .dropdown-sub:hover > .submenu {
    display: block;
}

/* submenu items */
.hero .submenu li a {
    display: block;
    padding: 10px 15px;
    color: #2b1a0f;
    text-shadow: none;
}

/* ⭐ ICECREAM PINK HOVER SUBMENU */
.hero .submenu li a:hover {
    /* icecream pink */
      background: #be5462;   /* icecream pink */
    color: #ffd700 !important;   /* strong gold yellow */

  color: rgb(241, 241, 28);
    transform: translateY(-2px);}




/* Hero Section */
.hero {
 
    justify-content: flex-start; /* text left, image right */
    padding: 13px 5%;
  background-image: url("../images/corn.jpg");
               background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url("../images/corn.jpg");

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    position: relative;
    display: flex;
    align-items: center;      /* vertical alignment fix */
    justify-content: space-between;

    min-height: 60vh;         /* controlled height */
    overflow: hidden;     
       /* ⭐ prevents topbar overlap */
         height: 700px;        /* jitna cut chahiye */
}

/* =========================================
   MOBILE RESPONSIVE ONLY
   LAPTOP / DESKTOP PAR KOI EFFECT NAHI
========================================= */

@media screen and (max-width: 900px) {

    /* HERO SECTION */
    .hero {

        display: flex;
        flex-direction: column;

        justify-content: center;
        align-items: center;

        text-align: center;

        height: auto;
        min-height: auto;

        padding: 120px 20px 353px;

        overflow: hidden;
    }

}


/* ================= DESKTOP (DEFAULT) ================= */
.hamburger {
    display: none;   /* 🔥 laptop me hide */
}



@media screen and (max-width: 900px) {

    /* ================= HAMBURGER ================= */
    .hamburger {

        display: flex;

        flex-direction: column;
        gap: 5px;

        cursor: pointer;

        position: absolute;

        top: -90px;
        right: -10px;

        z-index: 100000;
    }

    .hamburger span {

        width: 28px;
        height: 3px;

        background: #fff;

        border-radius: 5px;

        display: block;
    }

    /* ================= MENU ================= */
    .menu {

        position: fixed;

        top: 74px;
        left: -100%;

        width: 80%;
height: calc(100vh - 147px); /* 🔥 bottom space kam feel hoga */
        background: linear-gradient(135deg, #2b1a0f, #b8860b);

        display: flex;
        flex-direction: column;

        overflow-y: auto;

        transition: 0.3s ease;

        z-index: 100000;
        max-height: 67vh;   /* 👈 yaha control karo (try 60-70vh) */

        padding-top: 20px;
    }
    .menu.active {
        left: 0;
    }

/* Chrome, Edge, Safari */
.menu::-webkit-scrollbar {
    display: none;
}
    /* ================= MENU ITEMS ================= */
    .menu li {

        width: 100%;

        padding: 0;
        list-style: none;
    }

    /* ================= LINKS ================= */
    .menu li a {

        color: #fff;

        display: block;

        padding: 14px 18px;

        text-decoration: none;
    }

    /* ================= REMOVE DESKTOP HOVER ================= */
    .dropdown:hover > .dropdown-menu,
    .dropdown-sub:hover > .submenu {

        display: none !important;
    }

    /* ================= DROPDOWN ================= */
    .dropdown-menu {

        display: none;

        position: static !important;

        width: 100%;

        background: rgba(255,255,255,0.08);

        padding-left: 10px;

        box-shadow: none;

        border-radius: 0;
    }

    .dropdown > a::after{
        content:"▼";
        font-size:12px;
        margin-left:10px;
    }

    .dropdown-sub > a::after{
        content:"▶";
        font-size:12px;
        margin-left:10px;
    }

    .dropdown.open > .dropdown-menu {

        display: block !important;
    }

    /* ================= SUBMENU ================= */
    .submenu {

        display: none;

        position: static !important;

        width: 100%;

        margin-left: 0 !important;

        margin-top: 5px;

        padding-left: 15px;

        background: rgba(255,255,255,0.05);

        border-left: 2px solid rgba(255,255,255,0.3);

        box-shadow: none;
    }

    .dropdown-sub.open > .submenu {

        display: block !important;
    }
  }

@media screen and (max-width: 900px) {

  /* 🔥 FORCE RESET EVERYTHING RELATED TO SIDE POSITION */
  .dropdown-menu,
  .submenu {

    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;

    transform: none !important;

    width: 100% !important;

    float: none !important;
  }

  /* dropdown behavior */
  .dropdown.open > .dropdown-menu {
    display: block !important;
  }

  .dropdown-sub.open > .submenu {
    display: block !important;
  }

  /* remove any side effects */
  .hero .submenu {
    margin-left: 0 !important;
  }
}
/* REMOVE BOX */
.hero-content {
  
 position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* perfect center */

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    z-index: 2;
    margin-top: -20px;   /* 👈 top se gap control */

}

/* TEXT STYLE */
.hero-title {
  font-family: 'poppins','sans-sarif';
    font-size: 60px;
    color: #fcfbf8;
    text-align: center;

    /* DARK SHADOW (background readable banane ke liye) */
    text-shadow:
        0 0 5px rgba(0,0,0,0.8),
        0 0 10px rgba(49, 47, 47, 0.7),
        0 0 20px rgba(212,175,55,0.6),
        0 0 30px rgba(173,216,230,0.4);
}
/* ================= MOBILE RESPONSIVE ONLY ================= */
@media screen and (max-width: 768px) {

    .hero-content {

        top: 50%;                 /* 👈 mobile me neeche */
        left: 50%;

        transform: translate(-50%, -50%);

        width: 90%;
        padding: 0 15px;

        margin-top: 0;            /* desktop margin remove */

        text-align: center;
    }

    .hero-title {

        font-size: 34px;          /* mobile font size */
        line-height: 1.3;

        word-break: break-word;
    }

}


/* ===== SECTION BACKGROUND ===== */
.export-section {
  position: relative;
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
  overflow: hidden;

  background: linear-gradient(135deg, #fff8f0, #fff1dc);
}

/* ===== CURVED HALF CIRCLE BACKGROUND ===== */
.export-section::before {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;

  background: radial-gradient(circle at center, #ffd89b, #ffb347);

  top: -200px;
  right: -200px;

  border-radius: 50%;
  opacity: 0.25;

  z-index: 0;
}

.export-section::after {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  background: radial-gradient(circle at center, #ffe7c2, transparent);

  bottom: -200px;
  left: -200px;

  border-radius: 50%;
  opacity: 0.3;

  z-index: 0;
}

/* ===== CONTENT ABOVE BACKGROUND ===== */
/* MAIN CONTAINER */
.export-container {
  display: flex;
  flex-direction: row;   /* IMPORTANT */
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  max-width: 1100px;
  margin: auto;
}

/* MAIN TITLE */
.main-title {
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #3b2a14;

  margin-bottom: 40px;

  position: relative;
}

/* GOLD UNDERLINE */
.main-title::after {
  content: "";
  width: 90px;
  height: 4px;

  background: linear-gradient(90deg, #ffd700, #ffb347);

  display: block;
  margin: 10px auto 0;

  border-radius: 5px;
}
/* ===== LEFT IMAGE ===== */
.export-left {
  flex: 0 0 220px;
}

.export-left img {
  max-width: 1070px;
  height: 420px;

  object-fit: cover;

  border-radius: 16px;

  border: 5px solid #ffd89b;

  box-shadow: 0 12px 30px rgba(255, 180, 71, 0.25);

  transition: 0.3s ease;
}

.export-left img:hover {
  transform: scale(1.05);
}

/* ===== RIGHT CONTENT ===== */
.export-right {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
    border: 5px solid #ffd89b;

}


.export-right p {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3a2a;
  margin-bottom: 12px;
  font-weight: 700;
 


}
/* =================================================
   LAPTOP / DESKTOP STYLE
================================================= */

@media screen and (min-width: 769px) {

  .brochure-section {
    position: relative;

    height: 68vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

  }

  /* BLURRED BACKGROUND */
  .brochure-section::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100%;

    background: url('../images/cornseeds.jpg') center/cover no-repeat;

    filter: blur(4px);

    transform: scale(1.1);

    z-index: 0;
  }

  /* OVERLAY */
  .overlay {
    position: absolute;
    inset: 0;

    background: rgba(0, 0, 0, 0.15);
margin-top: 0px;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* CONTENT */
  .content {
    position: relative;
    z-index: 2;

    text-align: center;
    color: #fff;
  }

  .content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
  }

  /* BUTTONS */
  .buttons {
    display: flex;
    gap: 20px;

    justify-content: center;
    margin-top: 20px;
  }

  /* BUTTON STYLE */
  .btn {
    padding: 14px 30px;

    font-size: 16px;
    font-weight: 700;

    text-decoration: none;

    border-radius: 30px;
    border: 2px solid #fff;

    box-shadow: 0 6px 18px rgba(0,0,0,0.25);

    transition: 0.3s ease;

    position: relative;
    overflow: hidden;
  }

}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  
/* =================================================
   MOBILE ONLY FIX
   LAPTOP PAR KOI EFFECT NAHI
================================================= */


  .brochure-section {
    min-height: 100vh;
    height: 200px;

    padding: 60px 15px;

    overflow: hidden;
  }

  .brochure-section::before {
    width: 100%;
    height: 100%;
    background: url('../images/cornseeds.jpg') center/cover no-repeat;

    background-size: cover;
    background-position: center;

    transform: scale(1.05);
  }

}
/* DARK OVERLAY */
.overlay {

  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENT ABOVE */
.content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.content h1 {
  font-size: 42px;
  margin-bottom: 30px;
  font-weight: 700;
}
.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

/* COMMON BUTTON STYLE (ROUNDED CORNERS) */
.btn {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  border-radius: 30px; /* 👈 CORNER ROUND */
  border: 2px solid #fff;

  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: 0.3s ease;

  position: relative;
  overflow: hidden;
}

/* ICECREAM SOFT SHINE */
.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn:hover::after {
  left: 120%;
}

/* CORAL BUTTON */
.enquiry-btn {
  background: linear-gradient(135deg, coral, #ff7f50);
  color:black;
  text-decoration: none;
}

.enquiry-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateY(-3px);
}

/* YELLOW BUTTON */
.brochure-btn {
  background: linear-gradient(135deg, #ffd700, #ffcc00);
  color: #000;
  text-decoration:none;
}

.brochure-btn:hover {
  background: coral;
  color:black;
  transform: translateY(-3px);
}
/* ================= BROCHURE BUTTON FIX (MOBILE ONLY) ================= */
@media screen and (max-width: 768px) {

  .brochure-section {
    height: auto !important;
    padding: 50px 15px;
  }

  .content {
    width: 100%;
    padding: 0 10px;
  }

  .content h1 {
    font-size: 22px;
    line-height: 1.4;
  }

  /* BUTTON WRAPPER FIX */
  .buttons {
    display: flex;
    flex-direction: column;   /* 🔥 stack buttons */
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-top: 15px;
    width: 100%;
  }

  /* BUTTON SIZE FIX */
  .btn {
    width: 90%;              /* mobile friendly */
    max-width: 280px;

    font-size: 14px;
    padding: 12px 16px;

    text-align: center;
  }
}
.bulk-title {
  text-align: center;
  font-size: 24px;
  color: #3b2a14;
  font-weight: 700;
  margin-bottom: 10px;
margin-top: 10px;
}

.bulk-mail {
  text-align: center;
  font-size: 16px;
  color: #5a3d1a;

}

.bulk-mail span {
  font-weight: 600;
  color: #d4a017;

}

.bulk-mail span:hover {
  font-weight: 600;
  color: #d4a017;
  text-decoration: underline;

}
.clientele-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5fbff, #fff6e5);
  text-align: center;
  overflow: hidden; /* no scrollbar */
  margin-bottom: 40px;
    font-family: 'poppins','sans-sarif';
    color:goldenrod;
    font-size: 20px;
    
    text-shadow:
        0 0 10px rgba(212,175,55,0.7),
        0 0 20px rgba(173,216,230,0.4);
}

.clientele-grid {
  margin-top: 20px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: nowrap;
}

/* BOX */
.client-box {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid #ffe6b3;
  border-radius: 18px;
  padding: 15px;
  width: 200px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);

  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

/* IMAGE */
.client-box img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}

/* HOVER → LEFT MOVE */
.client-box:hover {
  transform: translateX(-20px) translateY(-6px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.25);
}

/* CLICK → MORE LEFT MOVE (STRONG EFFECT) */
.client-box:active {
  transform: translateX(-35px) scale(0.98);
}.product-title {
    text-align: center;
    margin: 20px;
    font-size: 30px;
    color: goldenrod;
    font-family: 'poppins','sans-sarif';

    text-shadow:
        0 0 10px rgba(212,175,55,0.7),
        0 0 20px rgba(173,216,230,0.4);
}
/* ================= SECTION ================= */
.about-section {
    overflow: visible;
    padding: 3.5rem 6%;
    background: linear-gradient(145deg, var(--icecream-pink), var(--vanilla-bg));
    position: relative;
    font-weight: 700;
    font-family: 'poppins','sans-sarif';
    color:black;
}

/* ================= SLIDER TRACK ================= */
.slider-track {
    display: flex;
    gap: 15px;
    animation: scrollLeft 15s linear infinite;
}
/* HOVER PE SLIDER STOP */
.about-section:hover .slider-track {
    animation-play-state: paused;
}
/* ================= CARD BOX ================= */
.img-box {
    max-width: 300px;
    flex: 0 0 auto;
    text-align: center;

    background: #fff;
    overflow: hidden;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* ================= IMAGE (FIXED) ================= */
.img-box img {
    width: 100%;
    height: 220px;
    object-fit: contain;   /* FULL image dikhe */
    background: #fff;
}

/* ================= TITLE ================= */
.img-box h3 {
    padding: 1rem;
    color: var(--gold-dark);
    font-size: 1.1rem;
}

/* ================= HOVER EFFECT ================= */
.img-box:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ================= GOLD BORDER EFFECT ================= */
.img-box::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    background: linear-gradient(145deg, var(--gold-light), transparent);

    -webkit-mask: linear-gradient(#fff 0 0) content-box,
                  linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* ================= AUTO SLIDE ================= */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .img-box {
        min-width: 200px;
    }

    .img-box img {
        height: 160px;
    }
}
/* =================================================
   MOBILE FIX ONLY
   LAPTOP / DESKTOP SAFE
================================================= */

@media screen and (max-width: 768px) {

  /* ===== BODY SAFE ===== */
  body {
    overflow-x: hidden;
  }

  /* ===== EXPORT SECTION ===== */
  .export-section {
    padding: 40px 12px;
    overflow: hidden;
  }

  .export-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;

    width: 100%;
    max-width: 100%;
  }

  .main-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  /* ===== LEFT IMAGE ===== */
  .export-left {
    width: 100%;
    flex: unset;
  }

  .export-left img {
    width: 100%;
    max-width: 100%;

    height: auto;

    display: block;
    margin: auto;

    object-fit: cover;
    border-radius: 14px;
  }

  /* ===== RIGHT CONTENT ===== */
  .export-right {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
  }

  .export-right p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    word-break: break-word;
  }

  /* ===== CIRCLE BACKGROUND SMALL ===== */
  .export-section::before {
    width: 180px;
    height: 180px;
    top: -80px;
    right: -80px;
  }

  .export-section::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
  }

  /* ===== BROCHURE ===== */
  .brochure-section {
    height: auto;
    padding: 60px 15px;
  }

  .content {
    width: 100%;
    padding: 0 10px;
  }

  .content h1 {
    font-size: 24px;
    line-height: 1.5;
  }

  /* ===== BUTTONS ===== */
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 260px;

    font-size: 14px;
    text-align: center;

    padding: 12px 16px;
  }

  /* ===== BULK ===== */
  .bulk-title {
    font-size: 20px;
    line-height: 1.4;
    padding: 0 10px;
  }

  .bulk-mail {
    font-size: 14px;
    line-height: 1.7;
    padding: 0 12px;
    word-break: break-word;
  }

/* =================================================
   CLIENTELE AUTO SLIDER MOBILE
   LAPTOP SAFE
================================================= */

@media screen and (max-width: 768px) {

  .clientele-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    margin-bottom: 30px;
    font-family: 'poppins','sans-sarif';
    color:goldenrod;
  }

  .clientele-section .h2
  {
    font-family: 'poppins','sans-sarif';
    color:goldenrod;
  }
  /* SLIDER TRACK */
  .clientele-grid {
    display: flex;
    align-items: center;
    gap: 15px;

    width: max-content;

    animation: mobileClientSlide 18s linear infinite;
  }

  /* CARD */
  .client-box {
    flex: 0 0 auto;

    width: 180px;
    height: 120px;

    padding: 15px;

    border-radius: 16px;
  }

  /* IMAGE */
  .client-box img {
    width: 100%;
    height: 70px;
    object-fit: contain;
  }

  /* HOVER STOP */
  .clientele-section:hover .clientele-grid {
    animation-play-state: paused;
  }

  /* CONTINUOUS LEFT MOVE */
  @keyframes mobileClientSlide {

    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }

  }

}


  /* ===== PRODUCT TITLE ===== */
  .product-title {
    font-size: 20px;
    line-height: 1.4;
    padding: 0 10px;
  }

  /* ===== ABOUT SECTION ===== */
  .about-section {
    padding: 2rem 12px;
    overflow: hidden;
  }

  /* ===== SLIDER ===== */
  .slider-track {
    gap: 10px;
  }

  .img-box {
    min-width: 170px;
    max-width: 170px;
  }

  .img-box img {
    width: 100%;
    height: 140px;

    object-fit: contain;
  }

  .img-box h3 {
    font-size: 13px;
    line-height: 1.4;
    padding: 10px;
    font-family: 'poppins','sans-sarif';
  }

}/* ================= OVERLAY MOBILE FIX (SAFE FOR LAPTOP) ================= */
@media screen and (max-width: 768px) {

  .brochure-section {
    position: relative !important;
    overflow: hidden !important;
  }

  /* BACKGROUND FIX */
  .brochure-section::before {
        background: url('../images/cornseeds.jpg') center/cover no-repeat;

    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    filter: blur(4px);
    transform: scale(1.1);
    z-index: 0;
  }

  /* DARK OVERLAY MUST BE VISIBLE */
  .overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15); /* 🔥 THIS FIXES VISIBILITY */

    z-index: 2;
    margin-top: 0;
  }

  /* CONTENT ABOVE OVERLAY */
  .content {
    position: relative;
    z-index: 3;

    width: 100%;
    text-align: center;
    padding: 0 15px;
  }

  .content h1 {
    font-size: 24px;
    line-height: 1.4;
    color: #fff;
  }

  /* BUTTONS SAFE */
  .buttons {
    position: relative;
    z-index: 3;
  }
}html, body {
  overflow-x: hidden;
}/* ================= MOBILE IMAGE FIX (BROCHURE SECTION) ================= */
@media screen and (max-width: 768px) {

  /* ❌ blur hatao mobile se */
  .brochure-section::before {
    filter: blur(3px) !important;  /* 🔥 light blur */

    transform: none !important;
    opacity: 1 !important;
  }

  /* ❌ agar overlay image ko dull kar raha hai to light karo */
  .overlay {
    background: rgba(0, 0, 0, 0.35) !important;
  }

  /* ✅ ensure background clearly visible */
  .brochure-section {
    background: url('../images/cornseeds.jpg') center/cover no-repeat !important;
  }

}