/* =====================================================
   KUSUM GROUP FOODS - Complete Organized Stylesheet
   Version: 2.0 (Organized & Optimized)
   ===================================================== */

/* =====================================================
   1. CSS VARIABLES (Root)
   ===================================================== */
:root {
  /* Brand Colors */
  --brand: #7c181a;
  --maroon: #7a1f1f;
  --gold: #c9a44b;
  --cream: #fff7e6;
  
  /* Theme Colors */
  --theme-color: #60bb48;
  --grn-color: #01713e;
  
  /* Text Colors */
  --text: #0f1621;
  --muted: #666;
  --dark: #222;
  --link: #111827;
  
  /* Utility Colors */
  --white: #fff;
  --border: #e5e7eb;
}

/* =====================================================
   2. BASE & RESET STYLES
   ===================================================== */
*,
::after,
::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: var(--text);
}

p {
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 22px;
  color: var(--text);
}

a {
  display: block;
  text-decoration: none;
  color: var(--text);
}

ul,
li {
  padding: 0;
  margin: 0;
  list-style: none;
}

/* =====================================================
   3. HEADER STYLES
   ===================================================== */
header {
  position: relative;
  z-index: 99999;
}

/* Top Header Bar */
.top-header {
  width: 100%;
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

.top-contact {
  width: 100%;
  display: flex;
}

.top-contact a {
  margin-right: 25px;
  display: flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.top-contact a:last-child {
  margin-right: 0;
}

.top-contact a i {
  margin-right: 7px;
}

.gst_no_wrapper {
  font-size: 13px;
  font-weight: 600;
}

.inquiry-btn {
  display: flex;
  justify-content: end;
  width: 100%;
}

.inquiry-btn a {
  width: 100px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
}

/* Navigation Header */
.nav-header {
  width: 100%;
  position: sticky;
  top: 0;
  border-bottom: 1px solid var(--border);
}

.brand-container {
  width: 100%;
}

.brand-container a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 80px;
}

.logo p {
  width: calc(100% - 92px);
  font-size: 31px;
  line-height: 35px;
  font-weight: 600;
  color: var(--grn-color);
}

.logo p small {
  font-size: 13px;
  display: block;
  line-height: 15px;
  font-weight: 600;
  color: var(--text);
}

/* Desktop Navigation */
.navigation ul.menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.navigation ul.menu li {
  list-style-type: none;
  position: relative;
  margin-left: 42px;
}

.navigation ul.menu li.active {
  position: relative;
}

.navigation ul.menu li::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  height: 2px;
  width: 100%;
  transform: translateX(-50%);
  background: var(--brand);
  scale: 0;
  transition: all 0.3s;
}

.navigation ul.menu li.active::before,
.navigation ul.menu li:hover::before {
  left: 0;
  scale: 1;
  transform: translateX(0);
}

.navigation ul.menu li a {
  font-size: 16px;
  font-weight: 500;
  color: var(--link);
  padding: 30px 0;
}

.navigation ul.menu li.active a,
.navigation ul.menu li:hover a {
  color: var(--brand);
}

/* Dropdown Sub-menu */
ul.sub-menu {
  position: absolute;
  top: 150%;
  left: 0;
  width: 200px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  transition: ease-in 0.5s;
  visibility: hidden;
  opacity: 0;
  background: #FFF;
}

.navigation ul.menu li.has-child:hover ul.sub-menu {
  top: 105%;
  visibility: visible;
  opacity: 1;
}

.navigation ul.sub-menu li {
  border-bottom: 1px solid var(--border);
  margin-left: 0;
}

ul.sub-menu li:last-child {
  border: none;
}

.navigation ul.sub-menu li a {
  padding: 10px 12px;
}

.navigation ul.sub-menu li::before {
  bottom: 0;
}

/* =====================================================
   4. MOBILE NAVIGATION
   ===================================================== */
.mobile-nav-container {
  display: none;
}

.body-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  z-index: 91;
}

.body-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =====================================================
   5. HOME PAGE - SLIDER
   ===================================================== */
.slider-img-wrapper {
  width: 100%;
  height: 650px;
  overflow: hidden;
}

.slider-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =====================================================
   6. HOME PAGE - QUALITY CHECK SECTION
   ===================================================== */
.quality_check {
  width: 100%;
}

.quality_check .container-fluid {
  padding: 0;
}

.quality_check-wrapper {
  display: flex;
  gap: 2px;
}

.quality_check-wrapper .col {
  position: relative;
}

.qualilty-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 340px;
}

.qualilty-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    0deg,
    rgb(255 249 186) -3%,
    rgb(255 255 255 / 48%) 38%,
    rgb(255 255 255 / 0%) 52%
  );
}

.qualilty-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quality-title {
  font-weight: 600;
  margin: 10px auto 15px;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 16px;
  color: #0a0202;
  padding-bottom: 30px;
}

.quality-title span {
  display: block;
  font-size: 62px;
  font-weight: 600;
  margin: 14px 0 0;
  color: #7c181a;
}

/* =====================================================
   7. COMMON - SECTION TITLES
   ===================================================== */
.section-title {
  width: 100%;
  color: var(--brand);
  font-size: 26px;
  font-weight: 700;
}

.section-title span {
  display: block;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sect-sub-text {
  width: 100%;
  font-size: 18px;
  color: var(--text);
  margin: 10px auto;
  line-height: 25px;
}

/* =====================================================
   8. HOME PAGE - ABOUT US SECTION
   ===================================================== */
.about-us-section {
  width: 100%;
  padding: 50px 0 0;
}

.about-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--grn-color);
}

.about-content p {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 26px;
  color: var(--muted);
}

.about-text-truncated {
  max-height: 234px;
  overflow: hidden;
  position: relative;
}

.about-text-truncated::after {
  content: '...';
  position: absolute;
  bottom: 0;
  right: 0;
  padding-left: 20px;
  background: linear-gradient(to right, transparent, #fff 40%);
  font-weight: 700;
  font-size: 18px;
  color: var(--muted);
}

.about-btn-group {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.learn-more-btn {
  background: transparent !important;
  color: var(--brand) !important;
  border: 2px solid var(--brand);
}

.learn-more-btn:hover {
  background: var(--brand) !important;
  color: var(--white) !important;
}

.about-read-more-link {
  color: var(--brand);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.about-read-more-link:hover {
  text-decoration: underline;
  color: #5a1717;
}

/* About Lightbox */
.about-lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-lightbox-overlay.active {
  display: flex;
}

.about-lightbox {
  background: #fff;
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
}

.about-lightbox h3 {
  font-size: 22px;
  color: var(--brand);
  margin-bottom: 15px;
  padding-right: 30px;
}

.about-lightbox-body p {
  font-size: 15px;
  line-height: 26px;
  color: var(--muted);
  margin-bottom: 10px;
}

.about-lightbox-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
  line-height: 1;
}

.about-lightbox-close:hover {
  color: var(--brand);
}

.about-object-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-img {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-wrapper {
  width: 180px;
  border-radius: 10px;
  border: 1px solid #207f2c;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #e3ffb6;
  position: absolute;
  left: 15px;
  bottom: 15px;
}

.expertise-box {
  width: 50px;
}

.expertise-box img {
  width: 100%;
}

.expertise-title {
  text-align: center;
  margin-top: 8px;
}

.expertise-title h4 {
  font-size: 12px;
  font-weight: 700;
  width: 100%;
}

.expertise-title span {
  font-size: 40px;
  display: block;
  font-weight: 300;
  margin-bottom: 0px;
  color: var(--grn-color);
}

.read-more-btn-1 {
  width: 130px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  font-size: 15px;
  border-radius: 4px;
  margin-top: 30px;
}

/* =====================================================
   9. HOME PAGE - PRODUCTS SECTION
   ===================================================== */
.product {
  padding: 0 0 100px;
  background: #fffbd4;
}

.product .col-md-4 {
  position: relative;
}

.product .col-md-4::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  border-top: 1px solid var(--brand);
}

.product .col-md-4:after {
  content: "";
  position: absolute;
  top: 25px;
  bottom: 25px;
  right: 0px;
  border-right: 1px solid var(--brand);
}

.product .col-md-4:nth-child(3n + 0):after {
  display: none;
}

.prpduct-card {
  padding: 15px;
}

.product-image-wrapper {
  overflow: hidden;
}

.product-title {
  width: 100%;
}

.product-title h3 a {
  display: block;
  text-align: center;
  margin-top: 25px;
  font-size: 18px;
  font-weight: 700;
}

.product-short-text {
  width: 100%;
  padding: 0 15px;
  text-align: center;
}

.product-short-text p {
  font-size: 15px;
  line-height: 22px;
  color: var(--text);
}

.product-details-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--brand);
  margin-top: 15px;
  font-weight: 700;
}

.product-details-btn i {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  color: var(--white);
  background: var(--brand);
}

/* =====================================================
   10. HOME PAGE - WHY CHOOSE US SECTION
   ===================================================== */
.why-choose-section {
  padding: 100px 0;
  margin: 80px 0 0;
  background: linear-gradient(180deg, #fdf8f0 0%,#fffbd4 100%);
  position: relative;
  overflow: hidden;
}

/* Decorative Background Pattern */
.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(124, 24, 26, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(201, 164, 75, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(124, 24, 26, 0.02) 0%, transparent 70%);
  pointer-events: none;
}

/* Top Wave Border */
.why-choose-section::after {
  content: '';
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, 
    var(--brand) 0%, 
    var(--gold) 25%, 
    var(--brand) 50%, 
    var(--gold) 75%, 
    var(--brand) 100%);
}

/* Floating Grain Decorations */
.why-choose-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.floating-grain {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 164, 75, 0.15) 0%, rgba(201, 164, 75, 0.05) 100%);
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: floatGrain 8s ease-in-out infinite;
}

.floating-grain.grain-1 {
  top: 15%;
  left: 5%;
  animation-delay: 0s;
}

.floating-grain.grain-2 {
  top: 60%;
  right: 8%;
  width: 40px;
  height: 40px;
  animation-delay: -3s;
}

.floating-grain.grain-3 {
  bottom: 20%;
  left: 15%;
  width: 50px;
  height: 50px;
  animation-delay: -5s;
}

@keyframes floatGrain {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.9;
  }
}

/* Section Title Styling */
.why-choose-section .section-title {
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.why-choose-section .section-title span {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
}

.why-choose-section .section-title span::before,
.why-choose-section .section-title span::after {
  content: '●';
  font-size: 6px;
  vertical-align: middle;
  margin: 0 10px;
  color: var(--brand);
}

.why-choose-section .sect-sub-text {
  color: #666;
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  row-gap: 25px;
}

/* Card Styling */
.why-choose-card {
  background: #ffffff;
  border-radius: 0;
  padding: 40px 28px 35px;
  text-align: center;
  box-shadow: none;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  height: 100%;
  margin-bottom: 30px;
  border: 1px solid #7c181a;
  position: relative;
  overflow: hidden;
}

/* Card Number Badge */
.why-choose-number {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 42px;
  font-weight: 800;
  color: rgba(124, 24, 26, 0.06);
  line-height: 1;
  transition: all 0.4s ease;
}

.why-choose-card:hover .why-choose-number {
  color: rgba(201, 164, 75, 0.15);
  transform: scale(1.1);
}

/* Top Gradient Border */
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 50%, var(--brand) 100%);
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

/* Bottom Glow Effect */
.why-choose-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100px;
  background: radial-gradient(ellipse, rgba(201, 164, 75, 0.2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.why-choose-card:hover {
  transform: translateY(-15px);
  box-shadow: none;
  border-color: #7c181a;
}

.why-choose-card:hover::before {
  transform: scaleX(0);
  animation: none;
}

.why-choose-card:hover::after {
  opacity: 1;
}

@keyframes gradientMove {
  0% { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* Icon Container */
.why-choose-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 28px;
  background: linear-gradient(145deg, var(--brand) 0%, #9a2224 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  box-shadow: 
    0 8px 25px rgba(124, 24, 26, 0.3),
    inset 0 -3px 10px rgba(0, 0, 0, 0.2);
}

/* Rotating Border on Icon */
.why-choose-icon::before {
  content: '';
  position: absolute;
  width: 110%;
  height: 110%;
  border-radius: 50%;
  border: 2px dashed var(--gold);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.5s ease;
}

/* Pulse Ring */
.why-choose-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: none;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(145deg, var(--gold) 0%, #d4a84b 100%);
  box-shadow: 
    0 12px 35px rgba(201, 164, 75, 0.4),
    inset 0 -3px 10px rgba(0, 0, 0, 0.15);
}

.why-choose-card:hover .why-choose-icon::before {
  opacity: 1;
  transform: scale(1);
  animation: rotateBorder 8s linear infinite;
}

.why-choose-card:hover .why-choose-icon::after {
  animation: pulseRing 1.5s ease-out infinite;
}

@keyframes rotateBorder {
  0% { transform: scale(1) rotate(0deg); }
  100% { transform: scale(1) rotate(360deg); }
}

@keyframes pulseRing {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Icon */
.why-choose-icon i {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.why-choose-card:hover .why-choose-icon i {
  transform: scale(1.15);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Title */
.why-choose-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 15px;
  transition: all 0.3s ease;
  line-height: 1.3;
  position: relative;
}

.why-choose-card:hover .why-choose-title {
  color: #5a1515;
}

/* Description */
.why-choose-desc {
  font-size: 14px;
  line-height: 1.75;
  color: #666666;
  margin: 0;
  position: relative;
}

/* Highlighted Card (Our Promise) */
.why-choose-card-highlight {
  background: linear-gradient(145deg, var(--brand) 0%, #8a1c1e 50%, #6d1517 100%);
  border: none;
  box-shadow: none;
}

.why-choose-card-highlight::before {
  background: linear-gradient(90deg, var(--gold) 0%, #e6c165 50%, var(--gold) 100%);
  height: 5px;
}

.why-choose-card-highlight .why-choose-number {
  color: rgba(255, 255, 255, 0.1);
}

.why-choose-card-highlight:hover .why-choose-number {
  color: rgba(201, 164, 75, 0.25);
}

.why-choose-card-highlight .why-choose-icon {
  background: linear-gradient(145deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 -3px 10px rgba(0, 0, 0, 0.05);
}

.why-choose-card-highlight .why-choose-icon i {
  color: var(--brand);
}

.why-choose-card-highlight:hover .why-choose-icon {
  background: linear-gradient(145deg, var(--gold) 0%, #d4a84b 100%);
}

.why-choose-card-highlight:hover .why-choose-icon i {
  color: #ffffff;
}

.why-choose-card-highlight .why-choose-title {
  color: #ffffff;
}

.why-choose-card-highlight:hover .why-choose-title {
  color: var(--gold);
}

.why-choose-card-highlight .why-choose-desc {
  color: rgba(255, 255, 255, 0.9);
}

.why-choose-card-highlight:hover {
  box-shadow: none;
}

/* Staggered Animation Delays */
.why-choose-grid .col-lg-4:nth-child(1) .why-choose-card { transition-delay: 0.05s; }
.why-choose-grid .col-lg-4:nth-child(2) .why-choose-card { transition-delay: 0.1s; }
.why-choose-grid .col-lg-4:nth-child(3) .why-choose-card { transition-delay: 0.15s; }
.why-choose-grid .col-lg-4:nth-child(4) .why-choose-card { transition-delay: 0.2s; }
.why-choose-grid .col-lg-4:nth-child(5) .why-choose-card { transition-delay: 0.25s; }
.why-choose-grid .col-lg-4:nth-child(6) .why-choose-card { transition-delay: 0.3s; }

/* =====================================================
   11. HOME PAGE - FACTORY SECTION
   ===================================================== */
.factory {
  padding: 80px 0 100px;
  background: url(../images/adelik.webp) no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.factory::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(251deg, rgb(0 141 255 / 66%) 0%, rgb(0 255 200 / 70%) 100%);
}

.factory_footer {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
}

.factory_footer svg {
  transform: rotateX(165deg) scaleX(-1) translate(10%, 0px);
  width: 120%;
  height: 60px;
}

.factory_footer svg path {
  fill: #ffffff;
}

.factory_footer svg path.elementor-shape-fill-1 {
  fill: #000862;
}

.factory_footer svg path.elementor-shape-fill-2 {
  fill: #35dfc5;
}

/* Factory Section Heading */
.factory-heading-wrapper {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.factory-section-tag {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 8px;
}

.factory-common-btn {
  margin-top: 30px;
  margin-bottom: 20px;
}

.factory-section-title {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.factory-section-sub {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(255,255,255,0.9);
  margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

/* Adelik View Product Button */
.adelik-view-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #0c297e, #1a5dba);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}
.adelik-view-btn:hover {
  background: linear-gradient(135deg, #1a5dba, #0c297e);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(12,41,126,0.4);
}
.adelik-view-btn i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}
.adelik-view-btn:hover i {
  transform: translateX(4px);
}

.pavingtext {
  width: 30vw;
  position: relative;
  border-radius: 4px;
  background: #eff2f5;
  z-index: 1;
  height: 30vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pavingtext h3 {
  position: relative;
  z-index: 2;
  width: 100%;
  font-size: 17px;
  color: #073d68;
}

.pavingtext h3 span {
  position: relative;
  z-index: 2;
  font-size: 25px;
  margin-top: 20px;
  display: block;
  color: #0c297e;
  font-weight: bold;
}

.pavingtext:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  border: 2px solid #fff;
  scale: 1.03;
  top: 0;
  left: 0;
  border-radius: 4px;
  z-index: 0;
}

.pave-box-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.pav-img-box {
  position: relative;
  z-index: 2;
  height: 14vw;
}

.pav-img-box img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: auto !important;
}

.pave-box-wrapper img {
  width: 15vw;
  padding: 0 30px;
}

.adelik-main-slide {
  justify-content: center;
  align-items: center;
  padding-bottom: 15px;
}

.adelik-bottle-img {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.adelik-bottle-img img {
  width: auto !important;
  max-width: 80%;
  max-height: 200px;
  object-fit: contain;
  padding: 0 !important;
}

.adelik-logo-sm {
  width: 8vw !important;
  max-width: 100px;
  padding: 0 !important;
  margin-bottom: 5px;
}

.adelik-main-slide h3 {
  margin-top: 0 !important;
}

.adelik-main-slide h3 span {
  font-size: 16px !important;
}

.box-1 {
  padding: 30px 0;
}

/* =====================================================
   12. HOME PAGE - SLICK SLIDER
   ===================================================== */
.slick .pavebox {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 36px;
  position: relative;
  text-align: center;
  transform: translate(0, 0) scale(0.4);
  transition: all 0.4s ease;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-size: 40vw 40vh;
}

.slick-slide.lt2 .pavebox {
  transform: translate(10%, 0) scale(0.5);
}

.slick-slide.lt1 .pavebox {
  opacity: 0.8;
  transform: translate(5%, 0) scale(0.5);
}

.slick-slide.gt1 .pavebox {
  opacity: 0.8;
  transform: translate(-5%, 0) scale(0.5);
}

.slick-slide.gt2 .pavebox {
  transform: translate(-10%, 0) scale(0.5);
}

.slick-slide.slick-center .pavebox {
  z-index: 1;
  transform: scale(1);
  opacity: 1;
}

.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  appearance: none;
  margin-top: -10px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  color: transparent;
  outline: none;
  z-index: 100;
}

.slick-prev {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 15px 0;
  border-color: transparent var(--theme-color) transparent transparent;
  left: 30px;
}

.slick-next {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 15px;
  border-color: transparent transparent transparent var(--theme-color);
  right: 30px;
}

.main-wrapper-box {
  position: relative;
  width: 100%;
}

.slick-prev.slick-arrow:hover {
  background: none;
}

/* =====================================================
   13. HOME PAGE - MAP SECTION
   ===================================================== */
.where-do-we-serve {
  padding: 70px 0;
}

#bihar-spots .split {
  display: flex;
  gap: 16px;
  align-items: stretch;
}

#bihar-spots .side {
  flex: 0 0 260px;
}

#bihar-spots .mapwrap {
  flex: 1;
  min-height: 520px;
}

#mapL {
  height: 520px;
  width: 100%;
  border: 1px solid #e9eef7;
  border-radius: 12px;
}

#bihar-spots .tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #f2fbef;
  border: 1px solid #f2fbef;
  border-radius: 12px;
  padding: 0.75rem;
  max-height: 520px;
  overflow: auto;
  position: sticky;
  top: 0;
}

#bihar-spots .tab {
  width: 100%;
  text-align: left;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--grn-color);
  background: #fff;
  color: var(--theme-color);
  font-weight: 600;
  cursor: pointer;
  transition: 0.18s;
}

#bihar-spots .tab:hover {
  background: #f2fbef;
}

#bihar-spots .tab.active {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}

/* Map Markers */
.leaflet-div-icon.big-pin {
  background: transparent;
  border: 0;
}

.big-pin .pin {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2bb24c;
  border: 4px solid #fff;
  box-shadow: 0 0 0 3px rgba(43, 178, 76, 0.28);
}

.big-pin .pin:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 14px solid #2bb24c;
}

.big-pin .pulse {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border: 3px solid #2bb24c;
  border-radius: 50%;
  opacity: 0.5;
  animation: pinPulse 1.6s ease-out infinite;
}

@keyframes pinPulse {
  0% { transform: scale(0.4); opacity: 0.6; }
  70% { transform: scale(2.3); opacity: 0.05; }
  100% { transform: scale(0.4); opacity: 0; }
}

.leaflet-tooltip.spot-tt {
  background: #121212;
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 0.6rem 0.8rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.leaflet-tooltip.spot-tt:before {
  border-top-color: #121212;
}

.spot-tt .tt-title {
  font-weight: 700;
  margin: 0 0 2px;
}

.spot-tt .tt-sub {
  opacity: 0.9;
  font-weight: 500;
}

/* =====================================================
   14. HOME PAGE - MARQUEE SWIPER
   ===================================================== */
.marqueeSwiper {
  padding: 120px 0 40px;
  cursor: grab;
}

.marqueeSwiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.marqueeSwiper:active {
  cursor: grabbing;
}

.marqueeSwiper .swiper-slide {
  width: clamp(180px, 25vw, 260px);
}

.map-card {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid var(--border);
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker {
  width: 64px;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.marker img {
  width: 100%;
}

.place-name {
  font-size: 22px;
  font-weight: 700;
  margin: 10px 0;
  text-align: center;
}

.place-name span {
  display: block;
  font-size: 30px;
  font-weight: 300;
  color: var(--grn-color);
  margin-top: 15px;
}

/* =====================================================
   15. HOME PAGE - CTA SECTION
   ===================================================== */
.cta {
  width: 100%;
  height: 300px;
  background: url(../images/cta_bg.jpg) no-repeat;
  background-size: cover;
  background-position: center center;
  margin-top: 100px;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(251deg, rgb(67 1 1 / 61%) 0%, rgb(247 212 86 / 71%) 100%);
  width: 100%;
}

.cta-inner {
  position: relative;
  width: 100%;
  justify-content: flex-end;
}

.products-image {
  width: 730px;
  position: absolute;
  left: -71px;
  top: -153px;
}

.products-image img {
  width: 100%;
}

.cta-text-wrapper {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
}

.cta-text {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-text h3 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  width: 100%;
}

.cta-btn {
  display: block;
  width: 180px;
  height: 50px;
  margin-top: 15px;
  background: var(--brand);
  text-align: center;
  line-height: 50px;
  text-decoration: none;
  color: var(--white);
  font-weight: 700;
  border-radius: 4px;
}

.our-process {
  padding: 0 0 70px;
}

/* =====================================================
   16. FOOTER
   ===================================================== */
.footer {
  width: 100%;
  padding: 70px 0 0;
  background: #fcf5d9;
}

.footer-item.about img {
  width: 150px;
}

.footer-item.about p {
  color: var(--text);
  font-size: 16px;
  line-height: 30px;
  max-width: 550px;
}

.widget-title {
  color: var(--brand);
  margin-bottom: 15px;
}

.footer-item.link ul li {
  margin: 15px 0;
}

.footer-item.contact li {
  display: flex;
  margin: 17px 0;
}

.icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  border: 1px dashed var(--brand);
  font-size: 18px;
}

.content {
  width: calc(100% - 60px);
}

.content strong {
  display: block;
}

.widget.social ul {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.widget.social ul li a {
  font-size: 24px;
}

.footer-bottom {
  padding: 10px 0;
  background: var(--brand);
}

.footer-bottom p {
  margin-bottom: 0;
  color: var(--white);
}

.footer-bottom p a {
  display: inline-block;
  color: #e3ffb6;
  font-weight: 600;
}

.text-end ul {
  display: flex;
  justify-content: end;
}

.text-end ul li a {
  color: var(--white);
  margin-left: 12px;
}

.text-end ul li a:hover {
  color: #fcf5d9;
}

/* =====================================================
   17. COMPANY PROFILE PAGE
   ===================================================== */
.btn-primary {
  background-color: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 500;
  min-height: 44px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #5a1717;
  border-color: #5a1717;
  transform: translateY(-1px);
}

.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(122, 31, 31, 0.3);
  outline: none;
}

.inner-banner {
  background: linear-gradient(135deg, var(--maroon) 0%, #5a1717 100%);
  min-height: 240px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.inner-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.inner-banner.product_details {
  min-height: 60px;
}

.inner-banner.product_details::before {
  display: none;
}

ul.bread-crum {
  display: flex;
}

ul.bread-crum li {
  padding: 0 15px;
  position: relative;
}

ul.bread-crum li:first-child {
  padding-left: 0;
}

ul.bread-crum li:last-child {
  padding-right: 0;
}

ul.bread-crum li::after {
  content: '/';
  color: #FFFFFF;
  position: absolute;
  right: 0;
  top: 0;
}

ul.bread-crum li:last-child:after {
  display: none;
}

ul.bread-crum li a {
  display: block;
  color: #FFF;
}

.product-description img {
  width: 100%;
}

.inner-banner__content {
  position: relative;
  z-index: 2;
}

.inner-banner__title {
  color: var(--white);
  margin: 0;
}

.inner-banner__silhouette {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
  width: 120px;
  height: 120px;
}

.about-mvv {
  background-color: var(--cream);
  padding: 5rem 0;
}

.about-mvv__info {
  background: var(--white);
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
}

.about-mvv__highlight {
  background: var(--gold);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.about-mvv__timeline {
  position: relative;
}

.about-mvv__timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2.5rem;
}

.about-mvv__timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--gold);
}

.about-mvv__timeline-icon {
  position: absolute;
  left: -0.75rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.certs {
  padding: 4rem 0;
}

.certs__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.certs__item {
  background: var(--white);
  border: 2px solid #e9ecef;
  border-radius: 0;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.certs__item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: none;
}

.certs__item:focus {
  outline: 2px solid var(--maroon);
  outline-offset: 2px;
}

.certs__icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.certs__name {
  font-weight: 600;
  font-size: 14px;
}

/* CTA Band (Merged) */
.cta-band {
  background: var(--maroon);
  padding: 3rem 0;
  text-align: center;
}

.cta-band__title,
.cta-band h3 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-band__subtitle,
.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-size: 18px;
  opacity: 0.9;
}

.cta-band__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-light {
  border-color: var(--white);
  color: var(--white);
  border-radius: 4px;
  padding: 12px 24px;
  font-weight: 500;
  min-height: 44px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--maroon);
}

.btn-outline-light:focus {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
  outline: none;
}

.btn-cta {
  background-color: var(--gold);
  color: var(--dark);
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background-color: #b8934a;
  transform: translateY(-2px);
  color: var(--dark);
}

:where([class^="ri-"])::before {
  content: "\f3c2";
}

/* =====================================================
   18. HOW IT WORKS PAGE
   ===================================================== */
.process-section {
  padding: 5rem 0;
  background-color: var(--cream);
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 60px;
  left: 8.33%;
  right: 8.33%;
  height: 2px;
  background-color: var(--gold);
  z-index: 1;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  z-index: 2;
  min-height: 44px;
}

.step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.5rem;
}

.step-description {
  font-size: 0.9rem;
  color: var(--dark);
  max-width: 150px;
}

.visual-strip {
  padding: 3rem 0;
  background-color: var(--white);
}

.image-collage {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: flex-start;
}

.collage-item {
  flex: 1;
  max-width: 300px;
}

.collage-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.image-caption {
  text-align: center;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.trust-section {
  padding: 2rem 0;
  background-color: var(--cream);
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 120px;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background-color: var(--maroon);
  color: var(--white);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.trust-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--maroon);
}

.btn-custom {
  background-color: var(--maroon);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  min-height: 44px;
  min-width: 44px;
}

.btn-custom:hover {
  background-color: #5a1717;
  color: var(--white);
}

.btn-custom:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.infrastructure-section {
  position: relative;
  color: var(--white);
}

.stats-overlay {
  background: rgba(122, 31, 31, 0.85);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-item i {
  color: var(--white);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  font-weight: 500;
}

.hygiene-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hygiene-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.hygiene-info p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgb(226, 223, 223);
}

.distribution-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3rem 0;
  padding: 0 2rem;
}

.flow-step {
  text-align: center;
  flex: 1;
  position: relative;
}

.flow-icon {
  width: 64px;
  height: 64px;
  background-color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 2px solid var(--maroon);
}

.flow-symbol {
  font-size: 1.75rem;
}

.flow-label {
  font-weight: 500;
  color: var(--maroon);
}

.flow-connector {
  flex: 0.5;
  height: 2px;
  background-color: var(--gold);
  position: relative;
}

.flow-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--gold);
}

.support-info {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--cream);
  border-radius: 8px;
}

.support-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--maroon);
  font-weight: 500;
}

.support-icon {
  font-size: 1.25rem;
}

.product-card img{
  width: 100%;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* =====================================================
   19. CONTACT US PAGE
   ===================================================== */
.main-contact-section {
  padding: 4rem 0;
  background-color: var(--white);
}

.quick-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: var(--cream);
  border-radius: 0;
  transition: transform 0.2s ease;
}

.quick-contact-item:hover {
  transform: translateY(-2px);
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-info h5 {
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.contact-info p {
  color: var(--dark);
  margin: 0;
  font-size: 0.95rem;
}

.contact-form {
  background-color: var(--cream);
  padding: 2.5rem;
  border-radius: 0;
  box-shadow: none;
}

.form-label {
  color: var(--maroon);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-control,
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.2rem rgba(201, 164, 75, 0.25);
  outline: none;
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.form-control.is-valid {
  border-color: #28a745;
}

.btn-submit {
  background-color: var(--maroon);
  color: var(--white);
  border: none;
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  background-color: #5a1717;
  transform: translateY(-1px);
}

.btn-submit:focus {
  box-shadow: 0 0 0 0.2rem rgba(122, 31, 31, 0.25);
  outline: none;
}

.consent-checkbox {
  margin-top: 1.5rem;
}

.form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(201, 164, 75, 0.25);
}

.map-address-section {
  background-color: var(--cream);
  padding: 4rem 0;
}

.map-container {
  height: 400px;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 3rem;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

.address-block {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 0;
  box-shadow: none;
}

.address-block h4 {
  color: var(--maroon);
  font-weight: 700;
  margin-bottom: 1rem;
}

.address-block p {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}

.gst-info {
  background-color: var(--cream);
  padding: 1rem;
  border-radius: 0;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--dark);
}

/* Messages (Merged) */
.success-message,
.error-message {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: none;
}

.success-message {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.error-message {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.product-description p {
  margin-top: 15px;
  font-size: 14px;
  color: #212121;
}

.related-product-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.related-product-item p {
  color: #777777;
}

.related-product-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.related-product-wrapper {
  width: 150px;
}

.related-product-wrapper a {
  display: block;
}

.related-product-image {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #ddd5ce;
}

.related-product-wrapper a img {
  width: 100%;
}

/* =====================================================
   20. TERMS & PRIVACY PAGES
   ===================================================== */
.rqgulations {
  padding: 60px 0 80px;
  background-color: #fdf6ea;
}

.rqgulations .page-content {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  padding: 40px 36px;
  margin: 0 auto;
  border: 1px solid #f0e0c7;
}

.rqgulations .page-content h1,
.rqgulations .page-content h2,
.rqgulations .page-content h3,
.rqgulations .page-content h4 {
  color: #7a1c1c;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

.rqgulations .page-content h1 {
  font-size: 30px;
  margin-bottom: 20px;
}

.rqgulations .page-content h2 {
  font-size: 24px;
  margin-top: 28px;
  border-left: 4px solid #c7832b;
  padding-left: 12px;
}

.rqgulations .page-content h3 {
  font-size: 20px;
  margin-top: 20px;
}

.rqgulations .page-content p {
  color: #444444;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.rqgulations .page-content ul,
.rqgulations .page-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.rqgulations .page-content li {
  color: #454545;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.rqgulations .page-content a {
  color: #b02a2a;
  text-decoration: none;
  font-weight: 600;
}

.rqgulations .page-content a:hover {
  text-decoration: underline;
}

.rqgulations .page-content .meta {
  font-size: 13px;
  color: #777777;
  margin-bottom: 20px;
}

/* =====================================================
   20.1 COMPANY PROFILE - ADDITIONAL STYLES
   ===================================================== */

/* Tagline Text */
.tagline-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Capabilities Section */
.capabilities-section {
  padding: 5rem 0;
  background-color: var(--white);
}

.capabilities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.capability-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fdf6ea;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 164, 75, 0.2);
  min-width: 280px;
  max-width: 350px;
  flex: 1 1 300px;
}

.capability-item:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: var(--gold);
}

.capability-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.capability-text {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.5;
  font-weight: 500;
}

/* Who We Serve Section */
.serve-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fdf6ea 0%, #fff9e8 100%);
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.serve-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.serve-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
}

.serve-icon {
  width: 70px;
  height: 70px;
  background: var(--maroon);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.25rem;
}

.serve-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.serve-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Closing Tagline Section */
.closing-tagline {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--cream) 0%, #fff7e6 100%);
  text-align: center;
}

.closing-tagline .tagline {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--maroon);
  font-style: italic;
  margin: 0;
  line-height: 1.4;
}

/* Responsive for Company Profile Additional */
@media (max-width: 768px) {
  .tagline-text {
    font-size: 1.1rem;
  }
  
  .capabilities-section {
    padding: 3rem 0;
  }
  
  .capabilities-grid {
    gap: 1rem;
  }
  
  .capability-item {
    padding: 1rem 1.25rem;
    min-width: 100%;
    max-width: 100%;
    flex: 1 1 100%;
  }
  
  .capability-icon {
    width: 45px;
    height: 45px;
    min-width: 45px;
    font-size: 1.1rem;
  }
  
  .capability-text {
    font-size: 0.9rem;
  }
  
  .serve-section {
    padding: 3rem 0;
  }
  
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .serve-item {
    padding: 1.5rem 1rem;
  }
  
  .serve-icon {
    width: 55px;
    height: 55px;
    font-size: 1.4rem;
  }
  
  .serve-label {
    font-size: 0.95rem;
  }
  
  .serve-desc {
    font-size: 0.8rem;
  }
  
  .closing-tagline {
    padding: 2.5rem 0;
  }
  
  .closing-tagline .tagline {
    font-size: 1.35rem;
  }
}

@media (max-width: 576px) {
  .serve-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
  
  .serve-item {
    padding: 1.25rem 1rem;
  }
  
  .serve-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .serve-label {
    font-size: 0.9rem;
  }
  
  .closing-tagline .tagline {
    font-size: 1.15rem;
  }
}

/* =====================================================
   21. RESPONSIVE - 1199px and below
   ===================================================== */
@media (max-width: 1199px) {
  .navigation ul.menu li { margin-left: 30px; }
  .navigation ul.menu li a { font-size: 15px; }
  .navigation ul.sub-menu li { margin-left: 0; }
  .why-choose-section { padding: 80px 0; margin: 60px 0; }
  .why-choose-card { padding: 35px 22px 30px; }
  .why-choose-icon { width: 80px; height: 80px; }
  .why-choose-icon i { font-size: 32px; }
  .why-choose-title { font-size: 18px; }
  .why-choose-number { font-size: 36px; }
}

/* =====================================================
   22. RESPONSIVE - 991px and below (Tablet)
   ===================================================== */
@media (max-width: 991px) {
  .nav-header { display: none; }
  .mobile-nav-container { display: block; }
  .mobile-header { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .menu-btn-box { display: flex; justify-content: end; }
  .mob-menu { width: 40px; height: 35px; border: 1px solid; justify-content: center; display: flex; align-items: center; font-size: 27px; color: #7c181a; border-radius: 4px; }
  .mob-nav { width: 320px; height: 100vh; position: fixed; right: 0; top: 0; background: var(--white); z-index: 99; box-shadow: -3px 0 11px rgba(0, 0, 0, 0.5); transform: translateX(130%); opacity: 0; visibility: hidden; transition: ease-in 0.3s; }
  .mob-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
  .mobile-navigation { width: 100%; }
  .mobile-navigation li { list-style: none; padding: 5px 15px; }
  .mobile-navigation li:first-child { padding-top: 10px; }
  .mobile-navigation li.active a, .mobile-navigation li:hover a { color: var(--brand); }
  .mob-nav-header { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; border-bottom: 1px solid var(--border); }
  .mob-nav-header .logo { width: 70px; }
  a.btn.close { width: 40px; height: 35px; border: 1px solid; justify-content: center; display: flex; align-items: center; font-size: 34px; color: #7c181a; border-radius: 4px; }
  a.btn.close span { display: block; line-height: 34px; margin-top: -4px; padding: 0; }
  body.no-scroll { overflow: hidden; }
  .mob-has-child > a { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
  .mob-has-child > a i { transition: transform 0.25s ease; }
  .mob-has-child.is-open > a i { transform: rotate(180deg); }
  .mob-sub-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 0; margin-left: 0; }
  .mob-sub-menu li { margin: 0; padding: 0 0; }
  .mob-sub-menu li a { padding: 5px 5px; font-size: 0.95rem; }
  .mobile-contacts { position: absolute; left: 0; bottom: 30px; padding: 0 15px; display: flex; flex-wrap: wrap; gap: 11px; }
  .contact-wrapper { width: 100%; display: flex; align-items: center; }
  .ct-icon-box { width: 20px; height: 20px; background: var(--brand); display: flex; align-items: center; justify-content: center; border-radius: 30px; font-size: 9px; color: var(--white); margin-right: 11px; }
  .contact-wrapper a { font-size: 16px; }
  #bihar-spots .split { flex-direction: column; }
  #bihar-spots .side { flex: 0 0 auto; }
  #bihar-spots .tabs { max-height: none; flex-direction: row; flex-wrap: wrap; }
  #mapL { height: 420px; }
  .rqgulations .page-content { padding: 28px 20px; border-radius: 12px; }
  .rqgulations .page-content h1 { font-size: 24px; }
  .rqgulations .page-content h2 { font-size: 20px; }
  .why-choose-section { padding: 70px 0; margin: 50px 0; }
  .why-choose-section .sect-sub-text { margin-bottom: 45px; }
  .why-choose-card { margin-bottom: 25px; }
  .floating-grain { display: none; }
}

/* =====================================================
   23. RESPONSIVE - 768px and below
   ===================================================== */
@media (max-width: 768px) {
  .inner-banner { min-height: 160px; padding: 2rem 0; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  p { font-size: 16px; }
  .inner-banner__silhouette { display: none; }
  .about-mvv { padding: 3rem 0; }
  .about-mvv__timeline-item { padding-left: 2.5rem; }
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band__buttons { flex-direction: column; align-items: center; }
  .cta-band__buttons .btn { width: 100%; max-width: 280px; }
  .timeline { flex-direction: column; align-items: stretch; gap: 2rem; }
  .timeline::before { display: none; }
  .timeline-step { flex-direction: row; text-align: left; align-items: center; padding: 1rem; background-color: var(--white); border-radius: 0; box-shadow: none; position: relative; }
  .timeline-step::before { content: ""; position: absolute; left: 30px; bottom: -1rem; width: 2px; height: 1rem; background-color: var(--gold); }
  .timeline-step:last-child::before { display: none; }
  .step-icon { margin-bottom: 0; margin-right: 1rem; flex-shrink: 0; }
  .step-content { flex: 1; }
  .step-description { max-width: none; }
  .image-collage { flex-direction: column; align-items: center; }
  .collage-item { max-width: 100%; }
  .collage-image { height: 300px; }
  .trust-indicators { gap: 1.5rem; }
  .trust-item { min-width: 100px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .flow-container { flex-direction: column; gap: 1.5rem; padding: 0; }
  .flow-connector { width: 2px; height: 24px; }
  .flow-connector::after { right: auto; left: 50%; top: unset; bottom: -8px; transform: translateX(-50%); border-top: 10px solid var(--gold); border-bottom: none; border-left: 6px solid transparent; border-right: 6px solid transparent; }
  .support-list { flex-direction: column; gap: 1.5rem; }
  .banner-section { height: 140px; }
  .banner-title { font-size: 1.75rem; }
  .main-contact-section { padding: 2.5rem 0; }
  .contact-form { padding: 1.5rem; margin-top: 2rem; }
  .quick-contact-item { margin-bottom: 1.5rem; }
  .map-container { height: 300px; margin-bottom: 2rem; }
  .map-address-section { padding: 2.5rem 0; }
  .cta-band { padding: 2rem 0; }
  body { font-size: 15px; }
}

/* =====================================================
   24. RESPONSIVE - 767px and below
   ===================================================== */
@media (max-width: 767px) {
  .top-header { display: none; }
  .why-choose-section { padding: 60px 0; margin: 40px 0; }
  .why-choose-section .section-title { font-size: 24px; }
  .why-choose-section .section-title span { font-size: 11px; letter-spacing: 2px; }
  .why-choose-section .section-title span::before, .why-choose-section .section-title span::after { margin: 0 6px; }
  .why-choose-section .sect-sub-text { font-size: 14px; margin-bottom: 35px; }
  .why-choose-card { padding: 30px 20px 25px; margin-bottom: 20px; border-radius: 0; }
  .why-choose-icon { width: 70px; height: 70px; margin-bottom: 22px; }
  .why-choose-icon i { font-size: 28px; }
  .why-choose-title { font-size: 17px; margin-bottom: 12px; }
  .why-choose-desc { font-size: 13px; }
  .why-choose-number { font-size: 32px; top: 12px; right: 12px; }
}

/* =====================================================
   25. RESPONSIVE - 576px and below
   ===================================================== */
@media (max-width: 576px) {
  .certs__grid { grid-template-columns: 1fr; }
  .banner-title { font-size: 1.5rem; }
  .contact-form { padding: 1rem; }
  .address-block { padding: 1.5rem; }
  body { font-size: 14px; }
  .inner-banner.product_details { padding: 24px 0; }
  .rqgulations { padding: 40px 0 60px; }
  .rqgulations .page-content { padding: 22px 16px; box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04); }
  .why-choose-section { padding: 50px 0; margin: 30px 0; }
  .why-choose-section::after { height: 4px; }
  .why-choose-grid .col-sm-6 { width: 100%; }
  .why-choose-card { padding: 28px 18px 22px; margin-bottom: 18px; border-radius: 0; }
  .why-choose-icon { width: 65px; height: 65px; }
  .why-choose-icon i { font-size: 26px; }
  .why-choose-title { font-size: 16px; }
  .why-choose-number { font-size: 28px; }
}

/* =====================================================
   26. RESPONSIVE - 480px and below
   ===================================================== */
@media (max-width: 480px) {
  .inner-banner h1 { font-size: 1.75rem; }
  .section-title { font-size: 1.5rem; }
  .trust-indicators { gap: 1rem; }
}

/* =====================================================
   27. RESPONSIVE - 450px and below (Mobile)
   ===================================================== */
@media (max-width: 450px) {
  .slider-img-wrapper { height: 160px; }
  .slider-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
  .swiper-button-next:after, .swiper-button-prev:after { font-size: 30px; color: var(--border); }
  .qualilty-box { height: auto; }
  .quality_check-wrapper { flex-wrap: wrap; }
  .quality_check-wrapper .col { position: relative; flex: none; width: 49%; }
  .quality-title { font-size: 13px; padding-bottom: 0; }
  .quality-title span { font-size: 28px; }
  .about-us-section { padding: 30px 0 30px; }
  .section-title { font-size: 18px; }
  .section-title span { font-size: 16px; margin-bottom: 0; }
  .about-content h3 { font-size: 16px; }
  .about-content p { font-size: 13px; line-height: 20px; }
  .read-more-btn-1 { width: 110px; height: 36px; font-size: 13px; border-radius: 4px; margin-top: 5px; margin-bottom: 15px; }
  .expertise-wrapper { width: 90%; left: 50%; display: flex; flex-direction: row; position: absolute; transform: translateX(-50%); bottom: -50px; padding: 0; }
  .product { padding: 30px 0 100px; }
  .product .col-md-4:after { display: none; }
  .sect-sub-text { width: 100%; font-size: 14px; margin: 10px auto; line-height: 20px; }
  .pt-sm-0 { padding-top: 0 !important; }
  .factory { padding: 30px 0 60px; }
  .factory-heading-wrapper { margin-bottom: 20px; padding: 0 15px; }
  .factory-section-title { font-size: 22px; }
  .factory-section-sub { font-size: 13px; }
  .adelik-view-btn { padding: 8px 18px; font-size: 13px; }
  .pavingtext { width: 100% !important; position: relative; border-radius: 4px; background: #eaf3fb; z-index: 1; height: auto !important; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; padding: 20px 0; }
  .pavingtext::before { border-radius: 4px; }
  .pav-img-box { z-index: 2; height: 150px; }
  .pave-box-wrapper img { width: 100%; padding: 0 30px; }
  .pavingtext h3 span { position: relative; z-index: 2; font-size: 20px; margin-top: 20px; display: block; color: #0c297e; font-weight: bold; }
  .map-card { padding: 10px; }
  .place-name { font-size: 16px; }
  .place-name span { font-size: 18px; }
  .marqueeSwiper { padding: 90px 0 10px; }
  .cta { height: auto !important; }
  .cta-inner { width: auto !important; }
  .cta-text-wrapper { width: 100%; height: 142px; display: flex; align-items: center; }
  .products-image { width: 100%; max-width: 250px; position: absolute; left: 50%; top: -130px; transform: translateX(-50%); padding: 0 15px; }
  .cta-text h3 { color: #fff; font-size: 22px; font-weight: 700; width: 100%; text-align: center; }
  .cta-btn { display: block; width: 130px; height: 40px; margin-top: 9px; background: var(--brand); text-align: center; line-height: 40px; text-decoration: none; color: var(--white); font-weight: 700; border-radius: 4px; font-size: 14px; }
  .footer-item.about { display: flex; align-items: flex-start; justify-content: center; gap: 20px; }
  .footer-item.about p { color: var(--text); font-size: 14px; line-height: 21px; text-align: justify; }
  .footer-item.about img { width: 100px; }
  .widget.social ul { display: flex; gap: 15px; margin-top: 14px; margin-bottom: 30px; }
  .footer-bottom p { margin-bottom: 0; color: var(--white); text-align: center; font-size: 12px; }
  .text-end ul { display: flex; justify-content: center; margin-top: 10px; }
  .why-choose-section { padding: 45px 0; margin: 25px 0; }
  .why-choose-section .section-title { font-size: 20px; }
  .why-choose-section .section-title span { font-size: 10px; }
  .why-choose-section .sect-sub-text { font-size: 13px; margin-bottom: 28px; }
  .why-choose-card { padding: 25px 15px 20px; margin-bottom: 15px; }
  .why-choose-icon { width: 60px; height: 60px; margin-bottom: 18px; }
  .why-choose-icon i { font-size: 24px; }
  .why-choose-title { font-size: 15px; margin-bottom: 10px; }
  .why-choose-desc { font-size: 12px; line-height: 1.65; }
  .why-choose-number { font-size: 24px; top: 10px; right: 10px; }
}

/* =====================================================
   28. RESPONSIVE - Desktop (992px and above)
   ===================================================== */
@media (min-width: 992px) {
  .banner-section { height: 200px; }
  .banner-title { font-size: 2.5rem; }
  body { font-size: 18px; }
}

/* =====================================================
   END OF STYLESHEET
   ===================================================== */