
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  overflow-x:hidden;
  background:#bab887b3;
}

/* ================= NAVBAR ================= */
nav{
  position:fixed;
  top:0;
  left:0;
  width:99%;
  height:90px;
  padding:15px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.25);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.logo img{
  height:75px;
}
     .banner-text h1 {
      color: #15156A;
    font-size: 20px; 
    /* font-weight: bold; */
    margin: 0 0 15px;
    height:10px

     }

/* Hamburger */
.hamburger{
  display:flex;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#000;
  border-radius:2px;
}

/* Nav Links */
.nav-links{
  position:absolute;
  top:85px;
  right:30px;
  background:#ffffff99;
  width:220px;
  border-radius:12px;
  display:none;
  flex-direction:column;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.nav-links a{
  padding:14px 18px;
  text-decoration:none;
  font-weight:bold;
  color:#15156A;
}

.nav-links a:hover{
  background:rgba(0,0,0,0.05);
}

.nav-links.active{
  display:flex;
}

/* ================= HERO SECTION ================= */
.hero{
  width:100%;
  height:70vh;
  background:url("image/herbs-spices-seeds-rice-feed-animal-himalayan-salt-pakistan.jpg") center/cover no-repeat;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero h1{
  font-size:clamp(4rem, 6vw, 4.5rem);
  color:#fafafafd;
  letter-spacing:2px;
  
  /* background:rgba(0,0,0,0.4); */
  padding:18px 45px;
  border-radius:14px;
}

/* ================= SECTION (WHITE) ================= */
.section{
  max-width:1200px;
  margin:auto;
  padding:70px 20px;
}

.section h2{
  font-size:2.2rem;
  color:#15156A;
  margin-bottom:25px;
  text-align:center;
}

.section p{
  font-size:1.05rem;
  margin-bottom:20px;
  text-align:justify;
  color:#333;
}

/* ================= LIGHT BLUE SECTION ================= */
.section-light{
  background:#eaf6ff; /* light blue */
  padding:70px 20px;
}

.section-light .content{
  max-width:1200px;
  margin:auto;
}

.section-light h2{
  font-size:2.2rem;
  color:#15156A;
  margin-bottom:25px;
  text-align:center;
}

.section-light p{
  font-size:1.05rem;
  margin-bottom:20px;
  text-align:justify;
  color:#222;
}
.footer {
  background-color: #bab887b3;
  color: #15156A;
  padding: 50px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-section h2 {
  margin-bottom: 15px;
}

.footer-section p {
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-section a {
  color: #15156A;
  text-decoration: none;
}

.footer-section iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
}

.footer-section form input,
.footer-section form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 5px;
}

.footer-section form button {
  background-color: #025DDB;
  color: rgb(0, 0, 0);
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
}

.footer-section form button:hover {
  background-color: #bab887b3;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0px;
}
 .footer-column h3 {
      font-size: 1.3rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background: white;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      transition: all 0.3s;
    }

    .footer-links a:hover {
      color: #ffffff;
      padding-left: 5px;
    }



/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero{
    height:70vh;
  }

  nav{
    padding:15px 20px;
  }
}

@media(max-width:480px){
  .hero{
    height:60vh;
  }

  .hero h1{
    padding:14px 28px;
  }
 /* =========================
   Tablet View (≤ 992px)
========================= */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer {
    padding: 40px 20px;
  }
}


/* =========================
   Mobile View (≤ 768px)
========================= */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-section iframe {
    height: 180px;
  }

  .footer-section form input,
  .footer-section form textarea {
    font-size: 14px;
  }

  .footer-section form button {
    width: 100%;
  }

  .footer-column h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}


/* =========================
   Small Mobile (≤ 480px)
========================= */
@media (max-width: 480px) {
  .footer {
    padding: 30px 15px;
  }

  .footer-section h2,
  .footer-column h3 {
    font-size: 1.1rem;
  }

  .footer-section p,
  .footer-links a {
    font-size: 14px;
  }
}

}

/* Responsive Fixes */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  overflow-x: hidden;
}

.slider-container {
  width: 100%;
  margin: auto;
  padding: 10px;
}

.product-slider .slick-slide {
  padding: 5px;
}

.product-slider img {
  width: 100%;
  border-radius: 10px;
}

.slick-dots {
  bottom: -25px;
}

@media (max-width: 1024px) {
  .product-slider .slick-slide {
    padding: 4px;
  }
}

@media (max-width: 768px) {
  .row {
    display: block !important;
  }
  .col {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .slick-dots {
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .product-slider img {
    border-radius: 6px;
  }
}

/* ---------------------------
   Navbar Adjustments
--------------------------- */
@media (max-width: 1200px) {
  nav {
    padding: 20px 30px;
    height: 75px;
  }
  .banner-text h1 {
    font-size: 15px;
  }
  .logo img {
    height: 60px;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 15px 25px;
    height: 70px;
  }
  .banner-text h1 {
    font-size: 16px;
    text-align: center;
  }
  .logo img {
    height: 55px;
  }
}

/* ---------------------------
   Mobile Navbar Fix
--------------------------- */
@media (max-width: 1200px) {
 .banner-text h1 {
      color: #15156A;
    font-size: 14px; 
    /* font-weight: bold; */
    margin: 0 0 15px;
    height:10px

     }
    }


@media (max-width: 700px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 15px;
  }

  .banner-text h1 {
    font-size: 10px;
    line-height: 1.0;
    margin: 10px 0;
  }

  .logo img {
    height: 30px;
  }

  .hamburger {
    align-self: flex-start;
  }

  .nav-links {
    width: auto;
    position: static;
    box-shadow: none;
  }

  .nav-links a {
    text-align: justify;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  nav {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    height: 50px;
    padding: 8px;
  }

  .banner-text h1 {
    font-size: 0px;
    font-weight: bold;
    line-height: 1.0;
    margin: -30px;
    margin-right: 32px;
    padding: 0 15px;
  }

  .logo img {
    height: 35px;
    align-self: flex-end;
    margin-right: 360px;
  }

  .hamburger {
    align-self: flex-end;
    margin-top: -35px;
  }

  .nav-links {
    width: auto;
    position: static;
    box-shadow: none;
  }

  .nav-links a {
    text-align: justify;
    padding: 10px;
  }
}

/* ===== PREMIUM UI UPGRADE ===== */
body {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  background: #f8f9fb;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Card Style */
.product-slider .slick-slide {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.3s ease;
}

.product-slider .slick-slide:hover {
  transform: translateY(-5px);
}

/* Buttons */
button, .btn {
  border-radius: 25px;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border: none;
  transition: 0.3s;
}

button:hover {
  background: #0b5ed7;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 85svh;
  background-image: url("image/herbs-spices-seeds-rice-feed-animal-himalayan-salt-pakistan.jpg"); 
  background-size: 100% 100%; 
  background-position: center; 
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    min-height: 60svh;
    background-position: center top;
  }
}

@media (max-width: 480px) {
  .hero {
    width: 100%;
    height: 30svh;
    background-size: 100% 100%; /* Forces image to stretch to the edges */
    background-repeat: no-repeat; 
  }
}

@media (max-width: 932px) and (orientation: landscape) {
  .hero {
    height: 80svh; 
    background-size: 100% 100%; 
    background-position: center;
    background-repeat: no-repeat;
  }
}

@media (max-width: 480px) {
  .hero {
    background-image: url("image/mob-herbs-spices-seeds-rice-feed-animal-himalayan-salt.jpg"); 
    min-height: 30svh;
    
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Prevents horizontal wiggle */
}

body {
  min-height: 100dvh;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
