/* ============================
   GLOBAL CSS RESET
============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================
   ROOT VARIABLES (THEME)
============================ */
:root {
  /* Leather-inspired palette */
  --primary-color: #8b5a2b;   /* Rich leather brown */
  --secondary-color: #c4a484; /* Tan / suede */
  --dark-color: #1f1b16;      /* Almost black brown */
  --light-color: #f5f1ec;     /* Warm off-white */
  --white-color: #ffffff;

  /* Typography */
  --font-primary: 'Poppins', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  /* Effects */
  --border-radius: 8px;
  --transition-fast: all 0.3s ease;
}


/* ============================
   BODY & HTML
============================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background-color: var(--white-color);
  color: var(--dark-color);
  line-height: 1.7;
  font-size: 16px;
}

/* ============================
   TYPOGRAPHY
============================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
  color: var(--dark-color);
}

p {
  margin-bottom: 15px;
  color: #555;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-color);
}

/* ============================
   IMAGES
============================ */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ============================
   BUTTONS
============================ */
.btn-custom {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 10px 25px;
  border-radius: var(--border-radius);
  border: none;
  font-size: 15px;
  transition: var(--transition-fast);
}

.btn-custom:hover {
  background-color: #0b5ed7;
  color: var(--white-color);
}

/* ============================
   SECTIONS (GLOBAL)
============================ */
/* section {
  padding: 80px 0;
} */

/* ============================
   UTILITIES
============================ */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-light {
  background-color: var(--light-color) !important;
}

.shadow-sm {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.radius {
  border-radius: var(--border-radius);
}

/* ============================
   CONTAINER FIX
============================ */
.container {
  max-width: 1200px;
}

/* ============================
   SCROLLBAR (OPTIONAL – MODERN LOOK)
============================ */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

/* ============================
   COMMON TALL SECTION BG
============================ */
.section-bg {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(
      rgba(245, 241, 235, 0.96),
      rgba(245, 241, 235, 0.96)
    ),
    url("../images/backgrounds/section-bg.jpg");
  background-size: cover;
  background-position: center;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(139, 90, 43, 0.08),
    transparent 70%
  );
}

.section-bg > .container {
  position: relative;
  z-index: 1;
}



/* ============================
   TOP BAR
============================ */
.top-bar {
  background-color: var(--dark-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 8px 0;
}

.top-contact a {
  color: var(--white-color);
  margin-right: 10px;
  font-size: 14px;
}

.top-contact i {
  color: var(--primary-color);
  margin-right: 5px;
}

.top-contact span {
  margin: 0 8px;
  color: #aaa;
}

/* Marquee */
.top-bar marquee {
  color: var(--white-color);
  font-weight: 500;
}

/* ============================
   SOCIAL ICONS
============================ */
.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 8px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  transition: all 0.3s ease;
  font-size: 14px;
}

.top-social a:hover {
  background-color: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-2px);
}


/* ============================
   NAVBAR BRAND
============================ */
.navbar-brand {
  font-size: 22px;
  color: var(--dark-color);
}

.brand-highlight {
  color: var(--primary-color);
}

/* ============================
   NAV LINKS
============================ */
.navbar .nav-link {
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

/* Active & Hover */
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--primary-color);
}

/* ============================
   CONTACT NAV BUTTON
============================ */
.nav-contact-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 6px 16px 6px 6px;
  border-radius: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid var(--dark-color);
}

/* Icon Box */
.nav-contact-btn .icon-box {
  width: 32px;
  height: 32px;
  background-color: var(--white-color);
  color: var(--dark-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  margin-right: 10px;
  transition: all 0.3s ease;
}

/* Hover Effect */
.nav-contact-btn:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white-color);
}

.nav-contact-btn:hover .icon-box {
  background-color: var(--dark-color);
  color: var(--white-color);
}

/* ============================
   STICKY NAVBAR
============================ */
/* .main-header {
  position: relative;
  width: 100%;
  transition: all 0.35s ease;
  z-index: 999;
}


.main-header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  animation: slideDown 0.35s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
} */

/* ============================
   STICKY NAVBAR FIX (MOBILE)
============================ */

html, body {
    overflow-x: hidden;
}

.main-header {
    position: relative;
    width: 100%;
    max-width: 100%;
    transition: all 0.35s ease;
    z-index: 999;
}

/* When sticky */
.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    background-color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: slideDown 0.35s ease forwards;
    overflow-x: hidden;
}

/* Container fix */
.main-header .container {
    padding-left: 15px;
    padding-right: 15px;
}

/* Mobile safety */
@media (max-width: 991px) {
    .main-header,
    .main-header.sticky {
        width: 100vw;
        overflow-x: hidden;
    }
}

/* Slide animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}



/* ============================
   PAGE BANNER – COMMON 
============================ */
.page-banner {
  position: relative;
  padding: 130px 0 110px;
  color: #ffffff;
  overflow: hidden;
}

.banner-bg {
  background: linear-gradient(
      rgba(32, 22, 18, 0.78),
      rgba(32, 22, 18, 0.88)
    ),
    url("../images/banner/banner.jpg") center center / cover no-repeat;
}

/* Title */
.page-banner h1 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

/* Subtitle */
.page-banner p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* Breadcrumb */
.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin-top: 20px;
}

.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a {
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
}

.page-banner .breadcrumb-item.active {
  color: var(--accent-color);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    padding: 100px 0 90px;
  }

  .page-banner h1 {
    font-size: 34px;
  }
}



/* ============================
   CONTACT INFO (UPDATED)
============================ */
.contact-info {
  background-color: var(--light-color);
  padding: 80px 0;
}

/* Section Heading */
.section-title {
  font-size: 36px;
  font-weight: 600;
  color: var(--dark-color);
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Card */
.contact-card {
  background-color: var(--white-color);
  padding: 45px 30px;
  text-align: center;
  border-radius: var(--border-radius);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Decorative top line */
.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.35s ease;
}

/* Icon wrapper */
.icon-wrap {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.icon-wrap i {
  font-size: 30px;
  color: var(--primary-color);
}

/* Text */
.contact-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p {
  color: #555;
  margin: 0;
  font-size: 15px;
}

/* Hover Effects */
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

.contact-card:hover::before {
  transform: scaleX(1);
}

.contact-card:hover .icon-wrap {
  background-color: var(--primary-color);
}

.contact-card:hover .icon-wrap i {
  color: var(--white-color);
}


/* ============================
   MODERN CONTACT PANEL
============================ */
.contact-form-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg, var(--light-color), #fff); */
}

/* LEFT PANEL */
.contact-info-panel {
  background-color: var(--dark-color);
  color: var(--white-color);
  padding: 50px;
  border-radius: var(--border-radius);
  height: 100%;
}

.panel-tag {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 6px 14px;
  font-size: 13px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.contact-info-panel h2 {
  font-size: 30px;
  margin-bottom: 15px;
  color: #ddd;
}

.contact-info-panel p {
  color: #ddd;
}

.info-points {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.info-points li {
  margin-bottom: 12px;
  font-size: 15px;
}

.info-points i {
  color: var(--secondary-color);
  margin-right: 8px;
}

.info-highlight {
  margin-top: 30px;
  background-color: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 8px;
}

/* RIGHT FORM */
.modern-form-box {
  background-color: var(--white-color);
  padding: 50px;
  border-radius: var(--border-radius);
  box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.modern-form-box h4 {
  font-weight: 600;
}

.form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 25px;
}

/* Inputs */
.input-group-text {
  background-color: var(--light-color);
  border: 1px solid #ddd;
  color: var(--primary-color);
}

.form-control,
.form-select {
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: none;
}

/* Button */
.btn-custom {
  padding: 14px;
  font-size: 15px;
}


/* ============================
   CERTIFICATION INTRO SECTION
============================ */
.cert-intro {
  padding: 80px 0;
  background: linear-gradient(
      180deg,
      #faf8f6 0%,
      #ffffff 100%
  );
}

.cert-intro .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 15px;
  position: relative;
}

.cert-intro .section-tag::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  margin: 8px auto 0;
}

.cert-intro h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.cert-intro p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  max-width: 760px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .cert-intro h2 {
    font-size: 30px;
  }
}

/* ============================
   CERTIFICATIONS GRID
============================ */
.certifications-grid {
  padding: 80px 0;
  background: var(--light-color);
}

.cert-card {
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 14px;
  height: 100%;
  position: relative;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Soft top accent line */
.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  transform: translateX(-50%);
  border-radius: 2px;
}

.cert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

/* Icon container */
.cert-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  background: #faf7f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-icon img {
  max-height: 45px;
  width: auto;
}

/* Title */
.cert-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--dark-color);
}

/* Description */
.cert-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* Scope badge */
.cert-scope {
  display: inline-block;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(110, 75, 55, 0.08);
  color: var(--accent-color);
  font-weight: 500;
}

/* ============================
   PRODUCT STANDARDS & TESTING
============================ */
.product-standards {
  padding: 80px 0;
  background: #ffffff;
}

.product-standards .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.product-standards h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.standards-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
  max-width: 520px;
}

/* List styling */
.standards-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.standards-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  padding: 12px 0;
  color: #333;
  border-bottom: 1px solid #eee;
}

.standards-list li:last-child {
  border-bottom: none;
}

.standards-list i {
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 3px;
}

/* Image wrapper */
.standards-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.standards-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .product-standards h3 {
    font-size: 28px;
  }

  .standards-intro {
    max-width: 100%;
  }
}

/* ============================
   ETHICAL & RESPONSIBLE SECTION
============================ */
.ethical-section {
  padding: 80px 0;
}

.ethical-section .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.ethical-section h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark-color);
}

.ethical-intro {
  font-size: 15.5px;
  line-height: 1.7;
  color: #555;
  max-width: 720px;
  margin: 0 auto 45px;
}

/* Ethical points grid */
.ethical-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.ethical-item {
  background: #fff;
  padding: 22px 20px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.ethical-item i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.ethical-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .ethical-section h3 {
    font-size: 28px;
  }
}

/* ============================
   CERTIFICATIONS FAQ
============================ */
.cert-faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.cert-faq h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-color);
}

.custom-accordion .accordion-item {
  background: #fff;
  border: none;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.custom-accordion .accordion-button {
  font-size: 16px;
  font-weight: 600;
  padding: 20px 24px;
  background: #fff;
  color: var(--dark-color);
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: var(--accent-soft);
  color: var(--dark-color);
  box-shadow: none;
}

.custom-accordion .accordion-button::after {
  background-size: 14px;
}

.custom-accordion .accordion-body {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  padding: 22px 24px;
  background-color: #fff;
}

.custom-accordion .accordion-button:focus {
  box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
  .cert-faq h3 {
    font-size: 26px;
  }
}

/* ============================
   PRODUCT INTRO – MODERN
============================ */
.product-intro {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}

.product-intro h2 {
  font-weight: 700;
  font-size: 38px;
  color: var(--dark-color);
  margin-bottom: 18px;
}

.product-intro p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

/* Badge */
.intro-badge {
  display: inline-block;
  padding: 8px 20px;
  margin-bottom: 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-color);
  border: 1px solid rgba(139, 90, 43, 0.35);
  border-radius: 30px;
  background: #fff;
}

/* Divider */
.intro-divider {
  width: 70px;
  height: 3px;
  background: var(--primary-color);
  margin: 22px auto;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-intro {
    padding: 70px 0;
  }

  .product-intro h2 {
    font-size: 30px;
  }

  .product-intro p {
    font-size: 16px;
  }
}


/* ============================
   PRODUCT CARDS (PREMIUM)
============================ */
.product-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.product-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.product-content {
  padding: 25px;
}

.product-content h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.product-content p {
  font-size: 15px;
  color: #666;
  margin-bottom: 15px;
}

.product-link {
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
}

.product-link:hover {
  text-decoration: underline;
}


/* ============================
   PRODUCT FEATURES – PREMIUM
============================ */
.product-features {
  padding: 80px 0;
}

/* Section Heading */
.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Feature Box */
.feature-box {
  background: #fff;
  padding: 45px 30px;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.12);
}

/* Icon */
.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(139, 90, 43, 0.12);
}

.feature-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

/* Text */
.feature-box h6 {
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 12px;
  color: var(--dark-color);
}

.feature-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .feature-box {
    padding: 35px 25px;
  }
}

/* ============================
   PRODUCT CUSTOMIZATION – OEM
============================ */
.product-customization {
  padding: 80px 0;
}

/* Tag */
.section-tag {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 15px;
  background: rgba(139, 90, 43, 0.12);
  color: var(--primary-color);
  font-weight: 500;
}

/* Text */
.section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Points */
.customization-points .point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}

.customization-points i {
  color: var(--primary-color);
  font-size: 18px;
  margin-top: 3px;
}

/* Image */
.customization-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.customization-image img {
  width: 100%;
  transition: transform 0.6s ease;
}

.customization-image:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .product-customization {
    padding: 70px 0;
  }

  .section-title {
    text-align: center !important;
  }
}


/* ============================
   PRODUCT CERTIFICATIONS PANEL
============================ */
.product-certifications {
  padding: 80px 0;
}

/* Certification badges */
.certification-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.certification-badges span {
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  background: #fff;
  border: 1px solid #ddd;
  color: #333;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Outline button */
.btn-custom-outline {
  padding: 12px 36px;
  border-radius: 30px;
  font-weight: 500;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-custom-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Mobile */
@media (max-width: 768px) {
  .product-certifications {
    padding: 70px 0;
  }

  .certification-badges {
    gap: 10px;
  }
}


/* ============================
   COMMON PAGE INTRO SECTION
============================ */

.about-intro {
    padding: 80px 0;
    background-color: #ffffff; /* same bg used in other page intros */
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.about-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
    max-width: 820px;
    margin: 0 auto;
}

.about-intro p strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================
   ABOUT – MANUFACTURING
============================ */

.about-manufacturing {
    padding: 80px 0;
}

.about-manufacturing h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.about-manufacturing .section-lead {
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-manufacturing p {
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Points List */
.manufacturing-points {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.manufacturing-points li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-color);
}

.manufacturing-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Image Styling */
.manufacturing-image {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.manufacturing-image img {
    transition: transform 0.6s ease;
}

.manufacturing-image:hover img {
    transform: scale(1.05);
}

/* ============================
   ABOUT – PRODUCT PORTFOLIO
============================ */

.about-products {
    padding: 80px 0;
}

.about-products .section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.about-products .section-header p {
    max-width: 780px;
    margin: 0 auto 35px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Product Tags */
.product-tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.product-tag {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    background-color: #ffffff;
    color: var(--heading-color);
    border: 1px solid rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    cursor: default;
}

/* Hover Effect */
.product-tag:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* ============================
   ABOUT – QUALITY & COMPLIANCE
============================ */

.about-quality {
    padding: 80px 0;
}

.about-quality .section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 14px;
}

.about-quality .section-header p {
    max-width: 820px;
    margin: 0 auto 40px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
}

/* Certification Badges */
.cert-badges-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    transition: all 0.35s ease;
}

/* Icon Style */
.cert-badge i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Hover Effect */
.cert-badge:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.cert-badge:hover i {
    color: #ffffff;
}

/* ============================
   ABOUT – ETHICAL PRACTICES
============================ */

.about-ethics {
    padding: 80px 0;
}

.about-ethics .section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 14px;
}

.about-ethics .section-header p {
    max-width: 820px;
    margin: 0 auto 42px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
}

/* Ethics Points */
.ethics-points-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.ethics-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    background-color: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    font-weight: 500;
    color: var(--heading-color);
    transition: all 0.35s ease;
}

/* Icon Style */
.ethics-point i {
    font-size: 18px;
    color: var(--primary-color);
}

/* Hover Effect */
.ethics-point:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.ethics-point:hover i {
    color: #ffffff;
}


/* ============================
   ABOUT – WHY CHOOSE US
============================ */

.about-why {
    padding: 80px 0;
}

.about-why .section-header h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}

.about-why .section-header p {
    max-width: 820px;
    margin: 0 auto 45px;
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-color);
}

/* Why Box */
.why-box {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.08);
    height: 100%;
    transition: all 0.35s ease;
}

.why-box i {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: inline-block;
}

.why-box h6 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.why-box p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-color);
}

/* Hover Effect */
.why-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

/* ============================
   ABOUT – CTA SECTION
============================ */

.about-cta {
    padding: 80px 0;
    background: #ffffff;
}

.cta-box {
    max-width: 850px;
    margin: 0 auto;
}

.about-cta h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}

.about-cta p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.95;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 34px;
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.35s ease;
}

/* Button Hover */
.cta-btn:hover {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    transform: translateY(-3px);
}

.cta-btn i {
    font-size: 16px;
}


/* ================================================== Product Details Page ======================================= */

/* ============================
   CATEGORY OVERVIEW SECTION
============================ */

.category-overview {
    padding: 80px 0px;
    position: relative;
}

/* Soft divider effect */
.category-overview::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--primary-color),
        transparent
    );
    opacity: 0.6;
}

/* Title */
.category-overview .category-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 22px;
    line-height: 1.25;
}

/* Description */
.category-overview .category-description {
    font-size: 16.5px;
    line-height: 1.9;
    color: var(--text-color);
    max-width: 820px;
    margin: 0 auto;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .category-overview {
        padding: 70px 0 80px;
    }

    .category-overview .category-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .category-overview {
        padding: 60px 0 70px;
    }

    .category-overview .category-title {
        font-size: 26px;
    }

    .category-overview .category-description {
        font-size: 15.5px;
    }
}


/* ============================
   CATEGORY PROCESS SECTION
============================ */

.category-process {
    padding: 100px 0;
    background: #f8f9fb;
}

/* Intro text */
.category-process .section-intro {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text-color);
    max-width: 760px;
    margin: 0 auto;
}

/* Process box */
.process-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 30px;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

/* Hover effect */
.process-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 55px rgba(0,0,0,0.12);
}

/* Icons */
.process-box i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: inline-block;
}

/* Titles */
.process-box h6 {
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 12px;
}

/* Text */
.process-box p {
    font-size: 14.8px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .category-process {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .process-box {
        padding: 32px 24px;
    }
}

/* ============================
   PRODUCT GRID SECTION
============================ */

.product-grid {
    padding: 80px 0;
}

/* ============================
   FILTER BAR
============================ */

.product-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    padding: 10px 26px;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #ffffff;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.35s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

/* ============================
   PRODUCT CARD
============================ */

.product-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    transition: all 0.45s ease;
}

/* Hover lift */
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 60px rgba(0,0,0,0.14);
}

/* ============================
   IMAGE
============================ */

.product-image {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* ============================
   CONTENT
============================ */

.product-info {
    padding: 26px;
}

.product-info h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--heading-color);
}

/* Feature list */
.product-info ul {
    list-style: none;
    padding: 0;
    margin-bottom: 18px;
}

.product-info ul li {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 6px;
    padding-left: 14px;
    position: relative;
}

.product-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 18px;
}

/* ============================
   CTA
============================ */

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.35s ease;
}

.product-cta i {
    transition: transform 0.35s ease;
}

.product-card:hover .product-cta i {
    transform: translateX(6px);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .product-grid {
        padding: 80px 0;
    }

    .product-image {
        height: 230px;
    }
}

@media (max-width: 576px) {
    .product-image {
        height: 210px;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* MODAL BASE */
.product-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.product-modal.active {
    display: block;
}

/* OVERLAY */
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

/* CONTENT */
.modal-content {
    position: relative;
    max-width: 900px;
    margin: 6vh auto;
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    z-index: 2;
    animation: scaleIn 0.35s ease;
}

/* CLOSE */
.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}

/* BODY */
.modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

.modal-image img {
    width: 100%;
    border-radius: 14px;
}

.modal-info h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.modal-info p {
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.modal-info ul {
    list-style: none;
    padding: 0;
}

.modal-info ul li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 6px;
}

.modal-info ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ANIMATION */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
}

/* =================================================== Home page ====================================================== */

.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.hero-slides {
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease, transform 1.2s ease;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 15px;
    margin-left: 8%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-content p {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #caa45c;
    color: #000;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #b18c45;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

/* INDICATORS */
.hero-indicators {
    position: absolute;
    right: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.hero-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicators .indicator.active {
    height: 28px;
    border-radius: 10px;
    background: #caa45c;
}

/* =========== Trust Bar ============ */
.trust-bar {
    padding: 80px 0;
}

/* CARD */
.trust-item {
    background: #ffffff;
    padding: 35px 20px;
    border-radius: 18px;
    height: 100%;
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.06),
        0 1px 0 rgba(255, 255, 255, 0.6) inset;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* ACCENT LINE */
.trust-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #caa45c, #e6c37a);
    opacity: 0;
    transition: opacity 0.35s ease;
}

/* ICON */
.trust-item i {
    font-size: 40px;
    color: #caa45c;
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.35s ease;
}

/* TITLE */
.trust-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f1f1f;
}

/* SUBTEXT */
.trust-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    letter-spacing: 0.2px;
}

/* HOVER EFFECT */
.trust-item:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 45px rgba(0, 0, 0, 0.12);
}

.trust-item:hover i {
    transform: scale(1.12);
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item {
    animation: trustFadeUp 0.8s ease forwards;
    opacity: 0;
}

.trust-item:nth-child(1) { animation-delay: 0.1s; }
.trust-item:nth-child(2) { animation-delay: 0.2s; }
.trust-item:nth-child(3) { animation-delay: 0.3s; }
.trust-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes trustFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-item::after {
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    top: 50%;
    left: 50%;
    background: radial-gradient(
        circle,
        rgba(202, 164, 92, 0.18) 0%,
        rgba(202, 164, 92, 0.12) 25%,
        rgba(202, 164, 92, 0.06) 45%,
        transparent 70%
    );
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.trust-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* ============================
   HOME ABOUT SECTION
============================ */

.home-about {
    padding: 110px 0;
    position: relative;
}

/* Title */
.about-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 22px;
    color: var(--heading-color);
}

/* Paragraphs */
.about-text {
    font-size: 16.5px;
    line-height: 1.85;
    color: var(--text-color);
    margin-bottom: 18px;
    text-align: justify;
}

/* Highlights */
.about-highlights {
    display: flex;
    gap: 30px;
    margin: 35px 0 40px;
    flex-wrap: wrap;
}

.highlight-item strong {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.highlight-item span {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background-color: var(--primary-color);
    padding: 14px 34px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.about-btn i {
    font-size: 15px;
    transition: transform 0.35s ease;
}

.about-btn:hover {
    background-color: #000000;
}

.about-btn:hover i {
    transform: translateX(5px);
}

/* Image */
.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0,0,0,0.18);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .home-about {
        padding: 80px 0;
    }

    .about-title {
        font-size: 32px;
    }

    .about-highlights {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .about-title {
        font-size: 28px;
    }
}

/* ============================
   HOME PRODUCT CATEGORIES
============================ */

.home-categories {
    padding: 80px 0;
}

/* CATEGORY CARD */
.category-card {
    position: relative;
    display: block;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 25px 55px rgba(0,0,0,0.18);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

/* Hover lift */
.category-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 45px 80px rgba(0,0,0,0.28);
}

/* Image */
.category-image {
    width: 100%;
    height: 100%;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Zoom image */
.category-card:hover img {
    transform: scale(1.12);
}

/* Overlay */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    transition: all 0.4s ease;
}

/* Text */
.category-overlay h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.category-overlay span {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .category-card {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .category-card {
        height: 260px;
    }

    .category-overlay {
        padding: 22px;
    }
}

/* =============================================== Industries ================================================== */
/* Slider Container */
.industries-slider {
    overflow: hidden;
    position: relative;
}

/* Track */
.industries-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollIndustries 35s linear infinite;
}

/* Pause on hover */
.industries-slider:hover .industries-track {
    animation-play-state: paused;
}

/* Keyframes */
@keyframes scrollIndustries {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Industry Card */
.industry-card {
    min-width: 260px;
    height: 180px;
    background: #ffffff;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

/* Hover Effect */
.industry-card:hover {
    /* transform: translateY(-10px) scale(1.03); */
    box-shadow: 0 30px 60px rgba(202,164,92,0.25);
}

/* Title */
.industry-card h5 {
    margin-top: 15px;
    font-size: 18px;
    font-weight: 700;
}

/* SVG Line Icon */
.icon-line {
    width: 46px;
    height: 46px;
    fill: none;
    stroke: #caa45c;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    animation: drawIcon 1.5s ease forwards;
}

/* Icon Draw Animation */
@keyframes drawIcon {
    to {
        stroke-dashoffset: 0;
    }
}

/* ============================
   MANUFACTURING SECTION (NO BG)
============================ */

.manufacturing-section {
    padding: 80px 0;
    background: #ffffff;
}

/* ============================
   CAPABILITY LIST
============================ */

.capability-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.capability-list li {
    position: relative;
    padding-left: 30px;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
}

.capability-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
}

/* ============================
   STATS
============================ */

.capability-stats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.stat-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px 26px;
    min-width: 170px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.stat-box h3 {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Hover Lift */
.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(202,164,92,0.25);
}

/* ============================
   VISUAL
============================ */

.manufacturing-visual {
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 35px 70px rgba(0,0,0,0.2);
}

.manufacturing-visual img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

/* Image Hover Zoom */
.manufacturing-visual:hover img {
    transform: scale(1.07);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 991px) {
    .manufacturing-section {
        padding: 80px 0;
    }

    .capability-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .stat-box {
        min-width: 140px;
        padding: 20px;
    }
}

/* ============================
   QUALITY SECTION (BG)
============================ */

.quality-section {
    padding: 80px 0;
}

/* ============================
   QUALITY CARD
============================ */

.quality-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Soft Glow */
.quality-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at top,
        rgba(202,164,92,0.25),
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.quality-card:hover::after {
    opacity: 1;
}

/* Icon */
.quality-card i {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: inline-block;
    transition: transform 0.4s ease;
}

/* Title */
.quality-card h6 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Text */
.quality-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Hover Lift */
.quality-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(202,164,92,0.25);
}

.quality-card:hover i {
    transform: scale(1.15);
}

/* ============================
   TRUST STRIP
============================ */

.quality-trust-strip {
    background: #ffffff;
    border-radius: 60px;
    padding: 22px 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    box-shadow: 0 18px 45px rgba(0,0,0,0.1);
}

.quality-trust-strip span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    position: relative;
    padding-left: 18px;
}

.quality-trust-strip span::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .quality-section {
        padding: 80px 0;
    }

    .quality-trust-strip {
        border-radius: 24px;
        padding: 18px;
        gap: 18px;
    }
}

/* ============================
   FEATURED PRODUCTS
============================ */

.featured-products {
    padding: 80px 0;
}

/* ============================
   CARD
============================ */

.featured-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
}

/* Badge */
.featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    z-index: 2;
}

.featured-badge.featured-alt {
    background: #111;
}

/* Image */
.featured-image {
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Info */
.featured-info {
    padding: 26px 24px 30px;
}

.featured-info h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 18px;
}

/* CTA */
.featured-cta {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.featured-cta i {
    transition: transform 0.3s ease;
}

.featured-cta:hover i {
    transform: translateX(6px);
}

/* Hover Effects */
.featured-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 70px rgba(202,164,92,0.25);
}

.featured-card:hover img {
    transform: scale(1.08);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .featured-products {
        padding: 80px 0;
    }

    .featured-image img {
        height: 220px;
    }
}


/* ============================
   TESTIMONIALS
============================ */

.testimonials {
    padding: 90px 0px;
}

/* ============================
   MARQUEE WRAPPER
============================ */

.testimonial-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0 80px;
}

/* ============================
   TRACK
============================ */

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: testimonialScroll 40s linear infinite;
}

/* Pause on hover */
.testimonial-marquee:hover .testimonial-track {
    animation-play-state: paused;
}

/* ============================
   CARD
============================ */

.testimonial-card {
    min-width: 360px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 22px;
    padding: 42px 32px;
    text-align: center;
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 35px 70px rgba(202,164,92,0.25);
}

/* ============================
   STARS
============================ */

.stars {
    font-size: 18px;
    letter-spacing: 2px;
    color: #caa45c;
    margin-bottom: 18px;
}

/* ============================
   TEXT
============================ */

.testimonial-text {
    font-size: 15px;
    line-height: 1.75;
    color: #555;
    margin-bottom: 28px;
}

/* ============================
   CLIENT LOGO
============================ */

.client-logo img {
    max-height: 40px;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover .client-logo img {
    opacity: 1;
}

/* ============================
   CLIENT INFO
============================ */

.client-info h6 {
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
}

.client-info span {
    font-size: 13px;
    color: #777;
}

/* ============================
   KEYFRAMES
============================ */

@keyframes testimonialScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
        padding: 35px 26px;
    }
}

/* ============================
   WHY CHOOSE US
============================ */

.why-choose-us {
    padding: 80px 0;
}

/* ============================
   CARD
============================ */

.choose-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px 30px;
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 65px rgba(202,164,92,0.25);
}

/* ============================
   ICON
============================ */

.choose-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 18px;
    display: inline-block;
}

/* ============================
   TEXT
============================ */

.choose-card h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .why-choose-us {
        padding: 75px 0;
    }

    .choose-card {
        padding: 32px 24px;
    }
}

/* ============================
   GLOBAL EXPORT & LOGISTICS
============================ */

.export-logistics {
    padding: 90px 0;
    position: relative;
}

/* ============================
   CONTENT
============================ */

.export-content h4 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #1f1f1f;
}

.export-content p {
    font-size: 15.5px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 22px;
}

/* ============================
   LIST
============================ */

.export-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 12px;
    color: #333;
}

.export-list i {
    color: #caa45c;
    font-size: 18px;
    margin-top: 2px;
}

/* ============================
   STATS
============================ */

.export-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.export-stat {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

.export-stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(202,164,92,0.25);
}

.export-stat h3 {
    font-size: 36px;
    font-weight: 800;
    color: #caa45c;
    margin-bottom: 6px;
}

.export-stat p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 991px) {
    .export-logistics {
        padding: 80px 0;
    }

    .export-stats {
        margin-top: 40px;
    }
}

/* ============================
   MAIN FOOTER
============================ */

.main-footer {
    background: #121212;
    padding: 90px 0 70px;
    color: #cccccc;
}

/* Headings */
.main-footer h4,
.main-footer h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 22px;
}

/* ============================
   ABOUT
============================ */

.footer-about h4 {
    font-size: 24px;
}

.footer-about p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #bdbdbd;
    max-width: 90%;
}

/* ============================
   LINKS
============================ */

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 14.5px;
    color: #bdbdbd;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: #caa45c;
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-links ul li a:hover::after {
    width: 100%;
}

/* ============================
   CONTACT
============================ */

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}

.footer-contact ul li {
    font-size: 14.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bdbdbd;
}

.footer-contact i {
    color: #caa45c;
    font-size: 16px;
}

/* ============================
   SOCIAL
============================ */

.footer-social {
    display: flex;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.35s ease;
}

.footer-social a:hover {
    background: #caa45c;
    color: #121212;
    transform: translateY(-4px);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 991px) {
    .main-footer {
        padding: 80px 0 60px;
    }
}


/* ============================
   CONTACT INTRO
============================ */

.contact-intro {
    padding: 80px 0px;
    position: relative;
}


.contact-intro .container {
    position: relative;
    z-index: 2;
}



/* Heading */
.contact-intro h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.contact-intro h2 span {
    color: var(--primary-color);
    position: relative;
}

/* subtle underline accent */
.contact-intro h2 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        to right,
        var(--primary-color),
        transparent
    );
}

/* Paragraph */
.contact-intro p {
    font-size: 16px;
    line-height: 1.75;
    color: #555;
    max-width: 720px;
    margin: 0 auto 45px;
}

/* ============================
   HIGHLIGHTS
============================ */

.intro-highlights {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.intro-highlights div {
    position: relative;
    padding: 25px 30px;
    border-radius: 16px;
    background: #ffffff;
    min-width: 180px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
}

/* Hover lift */
.intro-highlights div:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 65px rgba(202,164,92,0.25);
}

/* Number */
.intro-highlights strong {
    font-size: 30px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 6px;
}

/* Label */
.intro-highlights span {
    font-size: 14px;
    font-weight: 500;
    color: #666;
}

/* Divider accent */
.intro-highlights div::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    width: 26px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 3px;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.intro-highlights div:hover::after {
    opacity: 1;
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 768px) {
    .contact-intro {
        padding: 90px 0 70px;
    }

    .contact-intro h2 {
        font-size: 32px;
    }

    .intro-highlights {
        gap: 25px;
    }

    .intro-highlights div {
        min-width: 100%;
        max-width: 320px;
    }
}

/* ============================
   CONTACT CORE
============================ */

.contact-core {
    padding: 80px 0;
    position: relative;
}

.contact-core .container {
    position: relative;
    z-index: 2;
}

/* ============================
   LEFT PANEL – DETAILS
============================ */

.contact-details {
    background: #ffffff;
    border-radius: 22px;
    padding: 45px 40px;
    height: 100%;
    box-shadow: 0 25px 55px rgba(0,0,0,0.08);
}

.contact-details h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--heading-color);
}

.details-intro {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
}

/* ============================
   DETAIL BLOCK
============================ */

.detail-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.detail-block:last-child {
    border-bottom: none;
}

.detail-block i {
    font-size: 26px;
    color: var(--primary-color);
    background: rgba(202,164,92,0.12);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-block h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.detail-block p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ============================
   RIGHT PANEL – FORM
============================ */

.contact-form-box {
    background: #ffffff;
    border-radius: 22px;
    padding: 50px 45px;
    height: 100%;
    box-shadow: 0 30px 65px rgba(0,0,0,0.1);
}

.contact-form-box h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--heading-color);
}

.form-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

/* Inputs */
.contact-form-box .form-control,
.contact-form-box .form-select {
    border-radius: 14px;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(202,164,92,0.15);
}

/* Textarea */
.contact-form-box textarea {
    resize: none;
}

/* Submit Button */
.contact-form-box .btn-custom {
    padding: 15px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        #b8934e
    );
    border: none;
    color: #ffffff;
    transition: all 0.35s ease;
}

.contact-form-box .btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(202,164,92,0.4);
}

/* ============================
   RESPONSIVE
============================ */

@media (max-width: 992px) {
    .contact-core {
        padding: 90px 0;
    }

    .contact-details,
    .contact-form-box {
        padding: 40px 32px;
    }
}

@media (max-width: 576px) {
    .contact-details,
    .contact-form-box {
        padding: 32px 26px;
    }

    .detail-block {
        gap: 14px;
    }

    .detail-block i {
        width: 44px;
        height: 44px;
        font-size: 22px;
    }
}


.btn-products {
    display: inline-block;
    padding: 14px 36px;
    background-color: #111;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-products:hover {
    background-color: #c9a24d; /* premium leather tone */
    color: #111;
}


.category-card {
    position: relative;
    overflow: hidden;
}

.category-hover-icon {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
}

.category-hover-icon span {
    width: 60px;
    height: 60px;
    border: 2px solid #fff;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    line-height: 56px;
    text-align: center;
    font-weight: 300;
    transition: all 0.3s ease;
}

.category-card:hover .category-hover-icon {
    opacity: 1;
}

.category-card:hover .category-hover-icon span {
    transform: scale(1.1);
}

/* ====================================================
    PRODUCT LIST
======================================================= */

.product-search {
    padding: 40px 0;
}

.product-search .container {
    max-width: 700px;
}

.product-search input {
    width: 100%;
    padding: 16px 56px 16px 22px;
    font-size: 16px;
    border-radius: 50px; /* full pill shape */
    border: 1px solid #e0e0e0;
    background-color: #fff;
    color: #222;
    outline: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

/* Focus State */
.product-search input:focus {
    border-color: #c9a24d;
    box-shadow: 0 10px 28px rgba(201, 162, 77, 0.18);
}

/* Placeholder */
.product-search input::placeholder {
    color: #999;
    font-weight: 400;
}

/* Optional right-side icon space */
.product-search input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23999'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M21 21l-4.35-4.35m1.6-5.15a7 7 0 11-14 0 7 7 0 0114 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .product-search input {
        font-size: 15px;
        padding: 14px 48px 14px 18px;
    }
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    transition: transform .3s ease;
}
.product-card:hover { transform: translateY(-6px); }

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-image-wrap {
    position: relative;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .3s ease;
}

.product-image-wrap:hover .product-overlay {
    opacity: 1;
}

.product-overlay button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: none;
    color: #fff;
    font-size: 22px;
}

.product-info {
    padding: 16px;
    text-align: center;
}
.product-info a {
    display: inline-block;
    margin-top: 8px;
    color: #c9a24d;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.product-modal {
    max-width: 1000px;
    width: 95%;
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    position: relative;
}

.close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
}

/* Header */
.product-modal-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.product-sku {
    font-size: 14px;
    color: #777;
}

/* Body Layout */
.product-modal-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
}

/* Gallery */
.product-modal-gallery .main-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 12px;
}
.thumbnail-row {
    display: flex;
    gap: 10px;
}
.thumbnail-row img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 6px;
    border: 2px solid transparent;
}
.thumbnail-row img:hover {
    border-color: #c9a24d;
}

/* Details */
.product-description {
    margin-bottom: 18px;
    color: #444;
}
.product-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.product-specs li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Sections */
.product-usage,
.product-certifications {
    margin-bottom: 15px;
}
.product-usage span,
.product-certifications span {
    font-size: 14px;
    color: #555;
}

/* Actions */
.product-actions {
    margin-top: 25px;
}
.btn-enquire {
    padding: 14px 36px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
}
.btn-enquire:hover {
    background: #c9a24d;
    color: #111;
}

/* Responsive */
@media (max-width: 768px) {
    .product-modal-body {
        grid-template-columns: 1fr;
    }
}


/* ===== ENQUIRY MODAL ===== */
.enquiry-modal {
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    animation: fadeInUp .4s ease;
}

.enquiry-modal h3 {
    margin-bottom: 5px;
    font-weight: 600;
}

.enquiry-modal p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Close button */
.enquiry-modal .close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 22px;
    cursor: pointer;
}

/* Form */
.enquiry-modal .form-group {
    margin-bottom: 14px;
}

.enquiry-modal input,
.enquiry-modal textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.enquiry-modal input:focus,
.enquiry-modal textarea:focus {
    outline: none;
    border-color: #c9a24d;
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #c9a24d;
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: .3s;
}

.btn-submit:hover {
    background: #b08d3f;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .nav-link.active {
    color: #c9a24d !important;
    font-weight: 600;
    position: relative;
}

.navbar .nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #c9a24d;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.enquiry-modal {
    background: #fff;
    width: 100%;
    max-width: 480px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.enquiry-modal .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* ===== FORM ===== */
.form-group { margin-bottom: 14px; }

.enquiry-modal input,
.enquiry-modal textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* ===== BUTTON + LOADER ===== */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: #c9a24d;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.btn-loader {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    display: none;
    animation: spin 1s linear infinite;
    margin: auto;
}

.btn-submit.loading .btn-text { display: none; }
.btn-submit.loading .btn-loader { display: inline-block; }

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ===== MODAL OVERLAY ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* ===== MODAL BOX ===== */
.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    border-radius: 8px;
    padding: 25px;
    position: relative;
    animation: modalFade 0.3s ease;
}

/* ===== PRODUCT MODAL SPECIFIC ===== */
.product-modal {
    max-width: 1000px;
}

/* ===== CLOSE BUTTON ===== */
.modal .close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 26px;
    cursor: pointer;
}

/* ===== ANIMATION ===== */
@keyframes modalFade {
    from {
        transform: translateY(-20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.product-gallery .main-image {
    width: 100%;
    border-radius: 8px;
}

.thumb-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumb-row img {
    width: 70px;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 4px;
}

.product-info-box .sku {
    display: block;
    color: #777;
    margin-bottom: 10px;
}

.highlights {
    padding-left: 18px;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table th,
.spec-table td {
    border: 1px solid #e2e2e2;
    padding: 12px;
}

.enquiry-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}


/* ============================
   MEGA MENU
============================ */

.mega-dropdown {
    position: static;
}

/* Wrapper */
.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
    padding: 40px 0;
}

/* Show on hover */
.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Inner container */
.mega-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 0 20px;
}

/* Column */
.mega-column h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
    position: relative;
}

.mega-column h6::after {
    content: "";
    width: 35px;
    height: 2px;
    background: #caa45c;
    display: block;
    margin-top: 6px;
}

/* Links */
.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 10px;
}

.mega-column ul li a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mega-column ul li a:hover {
    color: #caa45c;
    padding-left: 6px;
}

/* ============================
   MEGA MENU – SCROLLABLE
============================ */

.mega-menu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    padding: 35px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.35s ease;
    z-index: 999;
}

.mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Scroll container */
.mega-scroll {
    max-height: 420px;                 /* FIXED HEIGHT */
    overflow-y: auto;
    padding-right: 10px;
}

/* Grid layout – dynamic safe */
.mega-container {
    max-width: 1250px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 35px;
    padding: 0 25px;
}

/* Custom scrollbar */
.mega-scroll::-webkit-scrollbar {
    width: 6px;
}

.mega-scroll::-webkit-scrollbar-thumb {
    background: #caa45c;
    border-radius: 10px;
}

.mega-scroll::-webkit-scrollbar-track {
    background: #f2f2f2;
}

/* Column title */
.mega-column h6 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #111;
    position: relative;
}

.mega-column h6::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #caa45c;
    display: block;
    margin-top: 6px;
}

/* Links */
.mega-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-column ul li {
    margin-bottom: 9px;
}

.mega-column ul li a {
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mega-column ul li a:hover {
    color: #caa45c;
    padding-left: 6px;
}


/* SweetAlert above all modals */
.swal2-container {
    z-index: 99999 !important;
}

.product-gallery {
    text-align: center;
}

.main-image {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.thumb-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumb:hover {
    border-color: #000;
}

.thumb.active {
    border-color: #000;
}