/* HARPAL THEME COLORS */
:root {
  --red: #b11b1b;
  --yellow: #ffd100;
  --brown: #8c4a12;
  --green: #3a863d;
}

/* GENERAL */
body {
  font-family: "Poppins", sans-serif; line-height: 1.2;
}

.section-title {
  font-weight: 700;
  color: var(--red);
}
.btn-yellow {
  background-color: var(--yellow);
  color: #000;
  font-weight: 600;
}
.btn-yellow:hover {
  background-color: #f3c200;
  color: #000;
}
.btn-red {
  background-color: var(--red);
  color: #fff;
  font-weight: 600;
}
.btn-red:hover {
  background-color: #911616;
  color: #fff;
}



/*  Topbar */

.topbar {
  background: linear-gradient(90deg, #a80000 0%, #b11b1b 40%, #ff7b00 100%);
  color: white;
  font-size: 17px;
  padding: 6px 0;
}
.topbar a {
  transition: color 0.3s ease; color:#fff; text-decoration: none;
}
.topbar a:hover {
  color: var(--yellow);
}

.list-unstyled a{color:#fff; text-decoration:none;}



/* 🔸 Navbar */
.logo {
  height: 85px;
}
.nav-link {
  color: #222;
  font-weight: 500;
  transition: color 0.3s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--red);
}
.dropdown-menu {
  border-radius: 8px;
  border: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.dropdown-item:hover {
  background-color: var(--red);
  color: white;
}

/* 🔸 Offcanvas Menu */
.offcanvas {
  background-color: #fff8f8;
}
.offcanvas .nav-link {
  color: var(--red);
  border-bottom: 1px solid #ffe5e5;
  padding: 10px 0;
}
.offcanvas .nav-link:hover {
  color: var(--orange);
}




/* Hero Slider (Only Images) */
.hero-slider img {
  width: 100%;

  object-fit: cover;
}

/* Optional: Customize arrow buttons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  width: 45px;
  height: 45px;
}






/* 🌶️ Our Spices Collection — Premium Center-Aligned Design */
.spices-collection {
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Heading */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  letter-spacing: 0.5px;
}

/* Gradient line under heading */
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin: 15px auto 25px;
  border-radius: 4px;
}

/* Subtitle */
.section-subtitle {
  color: #222;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Spice Card Design */
.spice-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid #f2f2f2;
  text-align: center;
  height: 100%;
}

.spice-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  border-color: #b30000;
}



/* Text */
.spice-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #b30000;
  margin-bottom: 10px; margin-top: 20px;
}

.spice-card p {
  color: #222;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer */
.spice-footer p {
  color: #222;
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title { font-size: 1.6rem; }
  .section-subtitle { font-size: 1rem; }
  .spice-card { padding: 20px; }
  .spice-card img { width: 80px; height: 80px; }
}







.healthy-products {
  background: linear-gradient(180deg, #fff8f0 0%, #f5e2c8 100%);
  padding: 80px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  color: #3a2a1a;
}

.healthy-products h2 {
  font-size: 2rem;
  color: #7a3e1d;
  margin-bottom: 10px;
}

.healthy-products h3 {
  font-size: 1.5rem;
  color: #a45a2a;
  margin-bottom: 20px;
}

.healthy-products .intro {
  font-size: 1rem;
  color: #5b4634;
  max-width: 700px;
  margin: 0 auto 50px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.product-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

.product-card h4 {
  color: #7a3e1d;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.product-card p {
  color: #4d3b2a;
  font-size: 0.95rem;
}

.cta-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 35px;
  background: #7a3e1d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #a45a2a;
}








/* 🏭 Quality Assurance Section — Harpal Premium Style */
.quality-section {
  background: linear-gradient(135deg, #fff 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Optional subtle pattern overlay */
.quality-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.04;
  z-index: 0;
}

/* Content Area */
.quality-content {
  position: relative;
  z-index: 1;
  color: #333;
}

.quality-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

/* Gradient line under heading */
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin-bottom: 25px;
  border-radius: 4px;
}

.quality-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 15px;
}

/* Image */
.quality-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.quality-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .quality-content h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .quality-content p {
    text-align: center;
  }
  .quality-img {
    margin-bottom: 30px;
  }
}






/* 🌍 Global Reach Section — Harpal Premium Look */
.global-reach {
  background: linear-gradient(135deg, #fff8f2 0%, #ffebd9 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* optional pattern overlay */
.global-reach::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.04;
  z-index: 0;
}

/* Content */
.global-content {
  position: relative;
  z-index: 1;
}

.global-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

/* Gradient line under heading */
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin-bottom: 25px;
  border-radius: 4px;
}

.global-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
}

/* Image */
.global-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.global-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .global-content h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .global-content p {
    text-align: center;
  }
  .global-img {
    margin-top: 30px;
  }
}









/* 🏨 Institutional & Bulk Supply Section — Harpal Professional Look */
.bulk-supply {
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Optional pattern overlay */
.bulk-supply::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.04;
  z-index: 0;
}

/* Content Styling */
.bulk-content {
  position: relative;
  z-index: 1;
}

.bulk-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

/* Gradient line under heading */
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin-bottom: 25px;
  border-radius: 4px;
}

.bulk-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 15px;
}

/* Image */
.bulk-img img {
  width: 100%;

  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.bulk-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .bulk-content h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .bulk-content p {
    text-align: center;
  }
  .bulk-img {
    margin-bottom: 30px;
  }
}








/* 🌿 The Sources of Our Spices — Natural Elegant Look */
.spice-sources {
  background: linear-gradient(135deg, #fffdf6 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle texture overlay (optional) */
.spice-sources::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-leaf.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
}

/* Text Content */
.source-content {
  position: relative;
  z-index: 1;
}

.source-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

/* Gradient line (brand theme) */
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin-bottom: 25px;
  border-radius: 4px;
}

.source-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 15px;
}

/* Right Side Image */
.source-img img {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.source-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .source-content h2 {
    text-align: center;
    font-size: 1.8rem;
  }
  .source-content p {
    text-align: center;
  }
  .source-img {
    margin-top: 30px;
  }
}





/* 🚚 Our Service Promise - 4+2 Layout */
.service-promise-modern {
  background: linear-gradient(135deg, #fffaf3 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background glow */
.service-promise-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255,123,0,0.05) 0%, transparent 70%);
  z-index: 0;
}

/* Heading */
.service-promise-modern h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

/* Gradient line */
.heading-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin: 15px auto 25px;
  border-radius: 3px;
}

/* Intro text */
.intro-text {
  font-size: 1.1rem;
  color: #222;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Top grid (4 boxes) */
.service-grid-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 40px;
  position: relative;
  z-index: 1;
}

/* Bottom grid (2 boxes, centered) */
.service-grid-bottom {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* Service card */
.service-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  padding: 25px 20px;
  border: 1px solid rgba(255,123,0,0.15);
  transition: all 0.3s ease;
  max-width: 345px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  border-color: #b30000;
}

/* Icon style */
.service-card i {
  font-size: 2.3rem;
  color: #b30000;
  margin-bottom: 12px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.service-card:hover i {
  color: #ff7b00;
  transform: scale(1.15);
}

/* Text */
.service-card p {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .service-promise-modern h2 {
    font-size: 1.7rem;
  }
  .intro-text {
    font-size: 1rem;
  }
  .service-card {
    max-width: 100%;
  }
}











.brand-footer {
  background: linear-gradient(180deg, #7a3e1d 0%, #4e2a12 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
}

.brand-footer h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.brand-footer p {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.8;
  color: #f5e2c8;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #7a3e1d;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background: #a45a2a;
  color: #fff;
}

.footer-btn i {
  font-size: 1.1rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #f3dcbf;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .footer-btn {
    width: 100%;
    justify-content: center;
  }
}









/* 🔸 Hero Section (Overlay Slider) */
.hero-section {
  background-color: #fff;
}
.hero-img {
  height: 400px;
  object-fit: cover;
  filter: brightness(70%);
}
.carousel-caption {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  background:  rgba(0, 0, 0, 0.6);
  max-width: 500px; padding:20px;
}
.carousel-caption h2 {
  font-size: 2rem;
  line-height: 1.3;
  color: #fff;
}
.carousel-caption p {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #f1f1f1;
}
.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
}
.carousel-indicators .active {
  background-color: #ffd100;
}

/* 🔸 Right Banner Cards */
.banner-card {
  height: 49%;
}
.banner-card img {
  height: 100%;
  width: 100%;

  transition: transform 0.5s ease;
}
.banner-card:hover img {
  transform: scale(1.05);
}
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.banner-overlay h5 {
  font-size: 1.1rem;
  line-height: 1.4;
}
.banner-overlay a:hover {
  color: #ffd100;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .banner-card {
    height: auto;
  }
  .carousel-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
  }
  .carousel-caption h2 {
    font-size: 1.5rem;
  }
}







/* 🌿 Modern Harpal Welcome Section */
.welcome-modern {
    background: linear-gradient(180deg, #fff 0%, #fff 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

/* optional soft background pattern */
.welcome-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png'); /* optional */
  opacity: 0.05;
  background-repeat: repeat;
  z-index: 0;
}

.welcome-content {
  font-size: 16px; /* increased from default */
  line-height: 1.6;
}

.welcome-content h3.subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: #b30000;
}

/* Button */
.explore-btn {
  background: linear-gradient(90deg, #b30000, #ff7b00);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 35px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(179,0,0,0.25);
  transition: all 0.3s ease;
}

.explore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(179,0,0,0.35);
}

/* Image Styling */
.welcome-img img {
  width: 100%;}
/* 🌶️ Our Spices Collection — Premium Center-Aligned Design */
.spices-collection {
  background: linear-gradient(180deg, #fffdf9 0%, #fff 100%);
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Heading */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  letter-spacing: 0.5px;
}

/* Gradient line under heading */
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin: 15px auto 25px;
  border-radius: 4px;
}

/* Subtitle */
.section-subtitle {
  color: #222;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 40px;
}







.welcome-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .welcome-content h2 { font-size: 1.7rem; text-align: center; }
  .welcome-content .subtitle { text-align: center; border: none; padding-left: 0; }
  .welcome-content p { text-align: center; }
  .explore-btn { display: block; margin: 20px auto; }
  .welcome-img { margin-bottom: 40px; }
}








/* ✨ Harpal Promise - Minimal Premium Style */
.harpal-promise-modern {
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

/* Decorative saffron glow background */
.harpal-promise-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 123, 0, 0.07) 0%, transparent 70%);
  z-index: 0;
}

/* Centered box */
.promise-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  padding: 60px 50px;
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
  border-top: 5px solid #ff7b00;
}

.promise-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-top-color: #b30000;
}

/* Heading */
.promise-box h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #b30000;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Accent line */
.heading-line {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin: 20px auto 25px;
  border-radius: 3px;
}

/* Paragraph */
.promise-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #222;
  margin-bottom: 20px;
}

/* Tagline */
.brand-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff7b00;
  font-style: italic;
  margin-top: 15px;
}

/* Hover animation */
.promise-box:hover .brand-tagline {
  color: #b30000;
  transition: color 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .promise-box {
    padding: 40px 25px;
  }
  .promise-box h2 {
    font-size: 1.5rem;
  }
  .brand-tagline {
    font-size: 1rem;
  }
}



/* Fixed Call & WhatsApp Buttons */
.fixed-buttons {
  position: fixed;
  left: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common button styling */
.fixed-buttons a {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Call button */
.call-btn {
  background: linear-gradient(135deg, #ff7b00, #b30000);
}

/* WhatsApp button */
.whatsapp-btn {
  background: #25D366;
}

/* Hover effects */
.fixed-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
}

/* Responsive - adjust position */
@media (max-width: 768px) {
  .fixed-buttons {
    left: 10px;
    bottom: 80px;
  }
  .fixed-buttons a {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }
}


/* 🔝 Back to Top Button */
#backToTopBtn {
  position: fixed;
  right: 25px;           /* Left side placement */
  bottom: 25px;
  z-index: 9999;
  background: linear-gradient(135deg, #b30000, #ff7b00);
  color: #fff;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

#backToTopBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  background: linear-gradient(135deg, #ff7b00, #b30000);
}

/* Responsive */
@media (max-width: 768px) {
  #backToTopBtn {
    left: 15px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
  }
}










/*  Harpal Factory Section - Light Version */
.factory-showcase {
  width: 100%;
background: linear-gradient(180deg, #fff8f0 0%, #f5e2c8 100%);;
  overflow: hidden;
}

/* Left Text Area */
.text-content {

  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  text-align: left;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.factory-info {
  max-width: 500px;
}

.factory-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  border-radius: 3px;
  margin-bottom: 25px;
}

.factory-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #222;
}

/* CTA Button */
.cta-btn {
  background: linear-gradient(90deg, #b30000, #ff7b00);
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 35px;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(179,0,0,0.3);
}

/* Right Slider */
.factory-slider img {
  width: 100%;
  height: auto; /* 👈 Auto height according to image */
  display: block;
  object-fit: contain; /* no cropping */
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  width: 35px;
  height: 35px;
}

/* Responsive */
@media (max-width: 992px) {
  .text-content {
    padding: 60px 30px;
    text-align: center;
    border: none;
  }
  .factory-info h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 768px) {
  .factory-info p {
    font-size: 0.95rem;
  }
  .cta-btn {
    padding: 10px 25px;
  }
}




/* 🧭 About Us Breadcrumb Section */
.breadcrumb-section {
  background: linear-gradient(135deg, #fff8f2 0%, #ffffff 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Optional subtle background pattern */
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
}

/* Heading */
.breadcrumb-section h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #b30000;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
}

/* Breadcrumb Styling */
.breadcrumb {
  background: none;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  z-index: 1;
}

.breadcrumb-item a {
  color: #b30000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #ff7b00;
}

.breadcrumb-item.active {
  color: #444;
  font-weight: 500;
}

/* Divider */
.breadcrumb-item + .breadcrumb-item::before {
  color: #888;
  content: "/";
}

/* Responsive */
@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 60px 0 40px;
  }
  .breadcrumb-section h1 {
    font-size: 1.8rem;
  }
}











/* Recipes / Blogs Section */
.recipes-blogs {
  background: linear-gradient(135deg, #fffdf9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.recipes-blogs::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none; /* ✅ ADD THIS LINE */
}


/* Heading */
.recipes-blogs h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
}

.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  border-radius: 3px;
  margin: 15px auto 25px;
}

.section-intro {
 
  margin: 0 auto;
  font-size: 1.05rem;
  color: #444;
  line-height: 1.8;
}

/* Blog Cards */
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

/* Content */
.blog-content {
  padding: 25px;
  flex-grow: 1;
}

.blog-content h4 {
  font-size: 1.2rem;
  color: #b30000;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-content p {
  color: #555;
  line-height: 1.7;
  font-size: 0.98rem;
  margin-bottom: 15px;
}

.read-more {
  color: #ff7b00;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  color: #b30000;
}

/* Responsive */
@media (max-width: 768px) {
  .recipes-blogs h2 {
    font-size: 1.7rem;
  }
  .section-intro {
    font-size: 1rem;
  }
}








/*  Distributor / Wholesale Section */
.distributor-section {
  background: linear-gradient(135deg, #fffdf9 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Subtle pattern overlay */
.distributor-section::before {
  content: "";
  position: absolute;
  inset: 0;

  background-repeat: repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

/* Content */
.distributor-content {
  position: relative;
  z-index: 1;
  color: #333;
}

.distributor-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
  margin-bottom: 15px;
}

.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  border-radius: 3px;
  margin-bottom: 25px;
}

.distributor-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.distributor-content strong {
  color: #b30000;
}

.distributor-content em {
  color: #ff7b00;
  font-style: normal;
}

/* CTA Button */
.distributor-btn {
  display: inline-block;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(179, 0, 0, 0.2);
}

.distributor-btn:hover {
  background: linear-gradient(90deg, #ff7b00, #b30000);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(179, 0, 0, 0.3);
}

/* Right Image */
.distributor-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.distributor-img img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
  .distributor-content {
    text-align: center;
  }
  .distributor-content h2 {
    font-size: 1.8rem;
  }
  .distributor-img {
    text-align: center;
  }
}




/* Contact Details + Enquiry Form */
.contact-details {

  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Optional subtle texture */
.contact-details::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('images/pattern-light.png');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.05;
  z-index: 0;
  pointer-events: none;
}

/* Section Heading */
.contact-details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #b30000;
}

.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  border-radius: 3px;
  margin: 15px auto 25px;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

/* Contact Boxes */
.contact-box {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.contact-box i {
  font-size: 2.5rem;
  color: #ff7b00;
  margin-bottom: 15px;
}

.contact-box h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b30000;
  margin-bottom: 10px;
}

.contact-box p, 
.contact-box a {
  color: #444;
  font-size: 1.05rem;
  margin: 5px 0;
  text-decoration: none;
}

.contact-box a:hover {
  color: #b30000;
}

/* Enquiry Form */
.enquiry-form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  text-align: left;
}

.enquiry-form h3 {
  color: #b30000;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.enquiry-form p {
  color: #555;
  text-align: center;
  margin-bottom: 25px;
}

/* Form Inputs */
.form-control {
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #ff7b00;
  box-shadow: 0 0 8px rgba(255, 123, 0, 0.3);
  outline: none;
}

/* Submit Button */
.submit-btn {
  background: linear-gradient(90deg, #b30000, #ff7b00);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  padding: 12px 40px;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(179, 0, 0, 0.25);
}

.submit-btn:hover {
  background: linear-gradient(90deg, #ff7b00, #b30000);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(179, 0, 0, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-details h2 {
    font-size: 1.7rem;
  }
  .contact-box {
    padding: 25px 20px;
  }
  .enquiry-form {
    padding: 30px 20px;
  }
}


.basic-spices-hero {
  background: linear-gradient(135deg, #fffdf9, #ffffff);
}
.basic-spices-hero h1 {
  color: #b30000;
  font-weight: 700;
}
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin: 15px auto 25px;
  border-radius: 3px;
}
.basic-spices-hero p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

/* Product Rows */
.spices-detail h2, .spices-detail h3 {
  color: #b30000;
  font-weight: 700;
  margin-bottom: 10px;
}
.spices-detail p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
}
.spices-detail ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  color: #555;
  font-size: 0.98rem;
}
.spices-detail ul li {
  margin-bottom: 8px;
}
.spices-detail i {
  color: #ff7b00;
  margin-right: 8px;
}
.spices-detail img {
  transition: transform 0.4s ease; padding:20px;
}
.spices-detail img:hover {
  transform: scale(1.05);
}

/* Why Choose */
.why-harpal {
  background: linear-gradient(135deg, #fff8f3, #ffffff);
}
.why-harpal h2 {
  color: #b30000;
  font-weight: 700;
}
.why-list {
  list-style: none;
  padding: 0;
  margin-top: 25px;
  color: #444;
  font-size: 1.05rem;
  line-height: 2;
}
.why-list i {
  color: #ff7b00;
  margin-right: 10px;
}

/* Export */
.export-section {
  background: #fffdf8;
}
.export-section h2 {
  color: #b30000;
  font-weight: 700;
}
.export-section i {
  color: #ff7b00;
  margin-right: 6px;
}
.export-section p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}






.spices-hero {
  background: linear-gradient(135deg, #fffdf9, #ffffff);
}
.spices-hero h1 {
  color: #b30000;
  font-weight: 700;
}
.heading-line {
  width: 90px;
  height: 3px;
  background: linear-gradient(90deg, #b30000, #ff7b00);
  margin: 15px auto 25px;
  border-radius: 3px;
}
.spices-hero p {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  line-height: 1.8;
}

/* Product rows */
.spice-list h2, .spice-list h3 {
  color: #b30000;
  font-weight: 700;
  margin-bottom: 10px;
}
.spice-list p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.8;
}
.spice-list ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  color: #555;
  font-size: 0.98rem;
}
.spice-list ul li {
  margin-bottom: 8px;
}
.spice-list i {
  color: #ff7b00;
  margin-right: 8px;
}
.spice-list img {
  transition: transform 0.4s ease; padding:20px;
}
.spice-list img:hover {
  transform: scale(1.05);
}










.powder-spice-section {
  background: linear-gradient(90deg, #fffaf3 0%, #fef5e7 100%);
  color: #3a2a1e;
  font-family: "Poppins", sans-serif;
}

.spice-img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.heading-line {
  width: 90px;
  height: 4px;
  background-color: #c47a24;
  border-radius: 2px;
  margin: 10px 0 20px 0;
}

.powder-spice-section h2 {
  font-weight: 700;
  color: #4c2c00;
  font-size: 1.9rem;
}

.powder-spice-section h3 {
  margin-top: 25px;
  font-weight: 600;
  color: #d07b1a;
}

.powder-spice-section h5 {
  color: #aa5b10;
  margin-top: 20px;
  font-weight: 600;
}

.powder-spice-section ul {
  margin-left: 20px;
  list-style-type: "🌿 ";
  line-height: 1.8;
}

.powder-spice-section p {
  line-height: 1.8;
  text-align: justify;
}

@media (max-width: 768px) {
  .powder-spice-section .row {
    flex-direction: column-reverse;
  }

  .spice-img {
    max-width: 320px;
    margin: 0 auto 25px;
  }

  .powder-spice-section h2 {
    font-size: 1.5rem;
  }
}
.spice-detailed-section {

  font-family: 'Poppins', sans-serif;
  color: #3b2a1d;
}

.section-intro h2 {
  font-weight: 700;

}

.section-intro .line {
  width: 100px;
  height: 3px;
  background: #d09444;
  margin: 10px auto 25px;
  border-radius: 2px;
}

.section-intro p {

  margin: auto;
  font-size: 1rem;
  line-height: 1.9;
}

/* Row */
.spice-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* Image */
.spice-image {
  flex: 1 1 45%;
}

.spice-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Content */
.spice-content {
  flex: 1 1 55%;
}

.spice-content h3 {
  color: #a35c15;
  font-weight: 600;
  margin-bottom: 15px;
}

.spice-content h5 {
  color: #b15c1d;
  margin-top: 20px;
  font-weight: 600;
}

.spice-content p {
  line-height: 1.8;
  text-align: justify;
}

.highlight-block {
  background: #fff5e4;
  padding: 15px 20px;
  border-left: 4px solid #c77b1c;
  border-radius: 10px;
  margin: 25px 0;
}

.two-col-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 25px;
}

.spice-content ul {
  margin-left: 20px;
  list-style-type: "🌿 ";
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 992px) {
  .spice-row {
    flex-direction: column;
  }
  .spice-image img {
    max-width: 100%;
  }
}


.garlic-full {

  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #3e2e1f;
}

.garlic-banner img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.garlic-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.garlic-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #53341a;
  border-bottom: 3px solid #d4a35a;
  display: inline-block;
  padding-bottom: 6px;
}

.garlic-text h3 {
  color: #8b4513;
  margin-top: 30px;
  font-size: 20px;
}

.garlic-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.garlic-text ul {
  list-style: none;
  padding-left: 0;
}

.garlic-text ul li::before {
  content: "🌿 ";
}

@media (max-width: 768px) {
  .garlic-text h2 {
    font-size: 24px;
  }
}
.garlic-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.details-left,
.details-right {
  flex: 1;
  min-width: 350px;
}

.feature-box {
  background: #fffdf8;
  border: 1px solid #f3e3c5;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #8b4513;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0b76f;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 18px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.feature-box ul li::before {
  content: "🌿 ";
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .garlic-details {
    flex-direction: column;
  }
}











.onion-full {
  background: #fffaf6;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #3e2e1f;
}

.onion-banner img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.onion-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.onion-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #53341a;
  border-bottom: 3px solid #e5b86f;
  display: inline-block;
  padding-bottom: 6px;
}

.onion-text h3 {
  color: #8b4513;
  margin-top: 30px;
  font-size: 20px;
}

.onion-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.onion-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.details-left,
.details-right {
  flex: 1;
  min-width: 350px;
}

.feature-box {
  background: #fffdf8;
  border: 1px solid #f3e3c5;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #8b4513;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0b76f;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 18px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.feature-box ul li::before {
  content: "🧅 ";
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .onion-details {
    flex-direction: column;
  }

  .onion-text h2 {
    font-size: 24px;
  }
}









.black-salt-full {
  background: #fdfcfa;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #2e2e2e;
}

.black-salt-banner img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); padding:30px;
}

.black-salt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.black-salt-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #4b3b31;
  border-bottom: 3px solid #d7a77a;
  display: inline-block;
  padding-bottom: 6px;
}

.black-salt-text h3 {
  color: #7a4c25;
  margin-top: 30px;
  font-size: 20px;
}

.black-salt-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
}

.black-salt-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.details-left,
.details-right {
  flex: 1;
  min-width: 350px;
}

.feature-box {
  background: #fffdf8;
  border: 1px solid #f1e1cc;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #7a4c25;
  margin-bottom: 15px;
  border-bottom: 2px solid #e0b76f;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 18px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.feature-box ul li::before {
  content: "🧂 ";
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .black-salt-details {
    flex-direction: column;
  }

  .black-salt-text h2 {
    font-size: 24px;
  }
}




.rock-salt-full {
  background: #fffafc;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #3a2d2b;
}

.rock-salt-banner img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.rock-salt-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.rock-salt-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #663d2f;
  border-bottom: 3px solid #e8b1a4;
  display: inline-block;
  padding-bottom: 6px;
}

.rock-salt-text h3 {
  color: #8b4e3c;
  margin-top: 30px;
  font-size: 20px;
}

.rock-salt-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #454545;
}

.rock-salt-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.details-left,
.details-right {
  flex: 1;
  min-width: 350px;
}

.feature-box {
  background: #fffdf9;
  border: 1px solid #f2ddd8;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #8b4e3c;
  margin-bottom: 15px;
  border-bottom: 2px solid #e8b1a4;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 18px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
}

.feature-box ul li::before {
  content: "💠 ";
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .rock-salt-details {
    flex-direction: column;
  }

  .rock-salt-text h2 {
    font-size: 24px;
  }
}
.clove-powder-full {
  background: #fffaf6;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #3c2f2b;
}

.clove-banner img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.clove-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.clove-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #5a2f1e;
  border-bottom: 3px solid #d7a77a;
  display: inline-block;
  padding-bottom: 6px;
}

.clove-text h3 {
  color: #8b4e3c;
  margin-top: 30px;
  font-size: 20px;
}

.clove-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #464646;
}

.clove-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.details-left,
.details-right {
  flex: 1;
  min-width: 350px;
}

.feature-box {
  background: #fffdf9;
  border: 1px solid #f1dfcf;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #8b4e3c;
  margin-bottom: 15px;
  border-bottom: 2px solid #e4b487;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 18px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  position: relative;
  padding-left: 28px;
}

.feature-box ul li::before {
  content: "💠";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #8b4e3c;
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .clove-details {
    flex-direction: column;
  }

  .clove-text h2 {
    font-size: 24px;
  }
}





.cinnamon-powder-full {
  background: #fff9f4;
  padding-bottom: 60px;
  font-family: "Poppins", sans-serif;
  color: #3c2f2b;
}

.cinnamon-banner img {
  width: 100%;
  height: auto;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.cinnamon-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.cinnamon-text h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #5a3522;
  border-bottom: 3px solid #e0b187;
  display: inline-block;
  padding-bottom: 6px;
}

.cinnamon-text h3 {
  color: #8b4e3c;
  margin-top: 30px;
  font-size: 20px;
}

.cinnamon-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #454545;
}

.cinnamon-details {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.details-left,
.details-right {
  flex: 1;
  min-width: 350px;
}

.feature-box {
  background: #fffdf9;
  border: 1px solid #f1d8c5;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.feature-box h3 {
  color: #8b4e3c;
  margin-bottom: 15px;
  border-bottom: 2px solid #e4b487;
  display: inline-block;
  padding-bottom: 5px;
  font-size: 18px;
}

.feature-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.feature-box ul li {
  color: #444;
  font-size: 15px;
  line-height: 1.8;
  position: relative;
  padding-left: 28px;
}

.feature-box ul li::before {
  content: "💠";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #8b4e3c;
}

.feature-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .cinnamon-details {
    flex-direction: column;
  }

  .cinnamon-text h2 {
    font-size: 24px;
  }
}








/* 🌿 Section: Intro */
.special-spices-intro {
  background: linear-gradient(180deg, #fffaf3 0%, #fff4e3 100%);
  text-align: center;
  padding: 80px 20px 60px;
  border-bottom: 2px solid #f3dcc0;
}

.special-content {
  max-width: 900px;
  margin: 0 auto;
}

.special-content h2 {
  font-size: 34px;
  color: #7b3f00;
  font-weight: 700;
  margin-bottom: 20px;
}

.decorative-line {
  width: 90px;
  height: 3px;
  background: #d9a869;
  margin: 0 auto 25px;
  border-radius: 2px;
}

.special-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #4a3b2a;
}

/* 🍛 Section: Biryani Full Width */
.biryani-full {
  background-color: #fffdf9;
  padding-bottom: 70px;
}

.biryani-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 4px solid #e4b97c;
}

.biryani-content {
  max-width: 1000px;
  margin: 60px auto 30px;
  padding: 0 20px;
  text-align: justify;
}

.biryani-content h2 {
  color: #7b3f00;
  font-size: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.biryani-content p {
  color: #463f3a;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 16.5px;
}

.biryani-content h3 {
  color: #a35623;
  margin-top: 25px;
  font-size: 20px;
}

/* 💠 Grid Details */
.biryani-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 50px auto 0;
  padding: 0 20px;
}

.details-box {
  background: #fffaf3;
  border: 1px solid #f0d6b9;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.details-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.details-box h3 {
  color: #a35623;
  margin-bottom: 15px;
  border-bottom: 2px solid #e4b97c;
  display: inline-block;
  padding-bottom: 4px;
}

.details-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.details-box ul li {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  padding-left: 25px;
  position: relative;
}

.details-box ul li::before {
  content: "💠";
  position: absolute;
  left: 0;
  top: 0;
  color: #a35623;
  font-size: 15px;
}

.details-box p {
  color: #555;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .biryani-content h2 {
    font-size: 26px;
  }
  .biryani-content p {
    font-size: 15.5px;
  }
}




/* Dark Footer */
.brand-footer {
  background-color: #111;
  color: #fff;
  font-size: 15px;
  line-height: 1.8;
}

.brand-footer h4,
.brand-footer h5 {
  color: #f5b342;
}

.brand-footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color 0.3s ease;
}

.brand-footer .footer-links a:hover {
  color: #f5b342;
}

/* 🌐 Social Icons */
.brand-footer .social-links a {
  font-size: 1.4rem;
  margin-right: 12px;
  display: inline-block;
  transition: transform 0.3s ease; padding: 0px 9px; background:#fff;
    border-radius: 30px;
}

.brand-footer .social-links a:hover {
  transform: scale(1.2);
}

/* Social Media Colors */
.social-links a.facebook { color: #1877f2; }       /* Facebook Blue */
.social-links a.instagram { color: #E1306C; }      /* Instagram Pink */
.social-links a.linkedin { color: #0a66c2; }       /* LinkedIn Blue */
.social-links a.youtube { color: #ff0000; }        /* YouTube Red */
.social-links a.twitter { color: #1DA1F2; }        /* Twitter Blue */

/* Download Button */
.footer-btn {
  background: #c1272d;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.footer-btn:hover {
  background: #f5b342;
  color: #111;
}

/* Footer Bottom Line */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
/* 🌸 Fix for small-screen top header layout */
@media (max-width: 768px) {
  /* Make topbar stack neatly */
  .topbar .container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
  }

  .topbar {
    font-size: 14px;
    line-height: 1.4;
    padding: 6px 10px;
  }

  .topbar i,
  .topbar a {
    display: inline-block;
    margin: 2px 5px;
  }

  /* Logo smaller */
  .logo {
    height: 55px;
    max-width: 150px;
  }

  /* Navbar toggler clean alignment */
  .navbar {
    padding: 6px 0;
  }

  .navbar-toggler {
    border: none;
    outline: none;
    box-shadow: none !important;
  }

  .navbar-toggler i {
    font-size: 1.8rem;
    color: var(--red);
  }

  /* Fix dropdown visibility */
  .offcanvas {
    width: 260px;
  }

  /* Reduce spacing inside mobile menu */
  .offcanvas-body .nav-link {
    padding: 10px 0;
    font-size: 15px;
  }
}

/* 🔹 Extra small screens (like 344px) */
@media (max-width: 400px) {
  .topbar {
    font-size: 13px;
  }

  .topbar .container {
    gap: 2px;
  }

  .logo {
    height: 48px;
  }

  .navbar-toggler i {
    font-size: 1.6rem;
  }

  .offcanvas {
    width: 230px;
  }
}
