/* ==========================================
   RESET & GLOBAL STYLES
   ========================================== */
   
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* ==========================================
   HORIZONTAL OVERFLOW PREVENTION FIX
   ========================================== */
html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #333333;
  background-color: #fcfcfc;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure body doesn't create horizontal scrollbars due to 100vw */
html, body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* Ensures wrappers contain off-canvas elements without breaking layout */
/* Update this section in your CSS */
.hero-slider,
.site-footer,
section {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure main-header keeps overflow visible so dropdowns can spill outside */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; 
  background-color: #ffffff; 
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08); 
  transition: all 0.3s ease;
  overflow: visible !important; 
}

.main-header.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

/* Header Container Alignment */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

header, .navbar, .site-header, .main-header {
  position: relative;
  z-index: 9999; /* Boosted z-index */
}

/* ==========================================
   TOP UTILITY BAR
   ========================================== */
/* .top-bar {
  background-color: #333333;
  color: #ffffff;
  font-size: 0.85rem;
  padding: 0.4rem 0;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  gap: 1.5rem;
}

.top-contacts a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-links {
  display: flex;
  gap: 1.5rem;
}

.top-links a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}

.top-links a:hover,
.top-contacts a:hover {
  opacity: 0.8;
} */

/* ==========================================
   MAIN HEADER
   ========================================== */
/* ==========================================
   GLOBAL RESET FOR FIXED POSITIONING
   ========================================== */
html, body {
  overflow-x: clip; /* Prevents side-scrolling without breaking position: fixed */
  margin: 0;
  padding: 0;
}

/* Offset Body Content so Header Doesn't Cover Content */
body {
  padding-top: 80px;
}

/* ==========================================
   FIXED STICKY HEADER
   ========================================== */
/* ==========================================
   GLOBAL RESET FOR STICKY POSITIONING
   ========================================== */
html, body {
  overflow-x: clip; /* Prevents horizontal scrollbars while preserving sticky context */
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ==========================================
   TOP BAR (Scrolls away with page)
   ========================================== */
.top-bar {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contacts {
  display: flex;
  gap: 1.5rem;
}

.top-contacts a {
  color: #e0e0e0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
}

.top-contacts a:hover {
  color: #0073bc;
}

/* ==========================================
   MAIN HEADER (Sticky on scroll)
   ========================================== */
.main-header {
  position: -webkit-sticky;
  position: sticky !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 99999 !important;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Brand Logo */
.brand-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ==========================================
   DESKTOP NAVIGATION MENU
   ========================================== */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.drawer-header {
  display: none;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #444444;
  font-weight: 500;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0073bc;
}

.dropdown-arrow {
  font-size: 0.7rem;
}

/* Dropdown Submenu */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  min-width: 230px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  border: 1px solid #eeeeee;
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100000;
}

.dropdown-menu li a {
  padding: 0.6rem 1.2rem;
  font-size: 0.88rem;
  color: #444444;
  border-bottom: 1px solid #f7f7f7;
  display: block;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #0073bc;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Actions & Badges */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-enquiry {
  background-color: #0073bc;
  color: #ffffff;
  padding: 0.55rem 1.4rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-enquiry:hover {
  background-color: #005a93;
}

.make-in-india-badge img {
  height: 60px;
  width: auto;
  display: block;
}

.hamburger-btn,
.menu-overlay {
  display: none;
}

/* ==========================================
   MOBILE & TABLET RESPONSIVE (<= 991px)
   ========================================== */
@media screen and (max-width: 991px) {
  /* Top Bar Adjustments */
  .top-bar {
    font-size: 0.78rem;
    padding: 6px 0;
  }

  .top-contacts {
    justify-content: center;
    width: 100%;
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  /* Header Container Adjustments */
  .header-container {
    height: 70px;
  }

  .brand-logo img {
    height: 40px;
  }

  /* Hamburger Icon */
  .hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100001;
  }

  .hamburger-btn .bar {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
  }

  /* Off-Canvas Navigation Drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -310px;
    width: 290px;
    height: 100vh;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    gap: 0;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100002;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Mobile Drawer Header */
  .drawer-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: #f4f6f8;
    border-bottom: 1px solid #e0e0e0;
    box-sizing: border-box;
  }

  .drawer-title {
    font-weight: bold;
    color: #333333;
    font-size: 1.1rem;
  }

  .nav-close-btn {
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #666666;
    cursor: pointer;
  }

  /* Nav Links for Mobile Drawer */
  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }

  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links a {
    padding: 0.9rem 1.5rem;
    width: 100%;
    justify-content: space-between;
    font-size: 0.95rem;
    box-sizing: border-box;
  }

  /* Mobile Accordion Submenu */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background-color: #f9f9f9;
    display: none;
    padding: 0;
    width: 100%;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .dropdown-menu li a {
    padding-left: 2.5rem;
  }

  /* Mobile Actions Section */
  .header-actions {
    width: 100%;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    align-items: stretch;
    box-sizing: border-box;
  }

  .btn-enquiry {
    text-align: center;
    display: block;
    width: 100%;
  }

  .make-in-india-badge {
    display: flex;
    justify-content: center;
  }

  .make-in-india-badge img {
    height: 48px;
  }

  /* Dark Overlay Screen Tint */
  .menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100001;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

/* Small Screen Phones (<= 480px) */
@media screen and (max-width: 480px) {
  .top-contacts {
    font-size: 0.72rem;
    gap: 0.5rem;
  }
  
  .brand-logo img {
    height: 35px;
  }
}

/* ==========================================
   HERO SLIDER STYLES (FULL-WIDTH IMAGE)
   ========================================== */
/* --- Force Full Edge-To-Edge Viewport Width --- */
.hero-slider {
  position: relative;
  width: 100vw !important;
  max-width: 100vw !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  padding: 0 !important;
  overflow: hidden;
  box-sizing: border-box;
}

.slider-wrapper, 
.slider-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}



/* --- Slide Layout & Images --- */
.slider-container {
  position: relative;
  height: 85vh;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content Container (Keeps text inside normal margins while image stays full-width) */
.hero-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  box-sizing: border-box;
}

.hero-content {
  max-width: 650px;
  color: #ffffff;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-orange {
  background-color: #e4dd2c;
  color: #1f2326;
}

.btn-white {
  background-color: #ffffff;
  color: #1f2326;
}

/* Navigation Arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

/* Mobile & Tablet Adjustments */
@media (max-width: 992px) {
  .slider-container { height: 450px; }
  .hero-title { font-size: 34px; }
}

@media (max-width: 576px) {
  .slider-container { height: 380px; }
  .hero-title { font-size: 24px; margin-bottom: 10px; }
  .hero-description { font-size: 13px; margin-bottom: 18px; }
  .btn { padding: 10px 18px; font-size: 12px; }
}

/* ==========================================
   FEATURES SECTION (CENTER ALIGNED)
   ========================================== */
.features-section {
  width: 100%;
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
}

.features-container {
  width: 100%;
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
}

.feature-card {
  padding: 3rem 2rem;
  border-right: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  align-items: center;    /* Center horizontally */
  text-align: center;      /* Center all text content */
  background-color: #ffffff;
}

.feature-card:last-child {
  border-right: none;
}

.feature-icon {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center; /* Center icon inside container */
}

/* Icon Colors */
.icon-blue { color: #38bdf8; }
.icon-dark { color: #1e293b; }
.icon-yellow { color: #f59e0b; }
.icon-coral { color: #f43f5e; }

.feature-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.3;
  width: 100%;
}

.feature-num {
  font-weight: 800;
  margin-right: 0.25rem;
}

.feature-desc {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  max-width: 260px; /* Keeps text centered with balanced lines */
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================== */

/* Tablet View (2x2 Grid) */
@media screen and (max-width: 991px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .feature-card:nth-child(2n) {
    border-right: none;
  }

  .feature-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Mobile View (Single Column Stack) */
@media screen and (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .feature-card:last-child {
    border-bottom: none;
  }
}


/* ==========================================
   MAIN CATAGORY SECTION 
   ========================================== */

.products-section {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.section-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: #333333;
  margin-bottom: 2.5rem;
  line-height: 1.4;
}

/* Grid Layout (4 columns desktop, 2 tablet, 1 mobile) */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

/* Product Card */
.product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

/* ==========================================
   2. SLIDESHOW CONTAINER & SMOOTH SLIDE
   ========================================== */
.slideshow-container {
  width: 100%;
  height: 160px;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  background-color: #ffffff; /* Clean white background fixes line artifacts */
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease-in-out;
  background-color: #ffffff;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border: none;
  outline: none;
}

/* ==========================================
   3. TYPOGRAPHY & BUTTON STYLES
   ========================================== */
.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0073bc;
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-range {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background-color: #0073bc;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.65rem 1.2rem;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}

.btn-range:hover {
  background-color: #005a93;
}

.btn-range span {
  font-size: 1rem;
  line-height: 1;
}

/* ==========================================
   4. RESPONSIVE BREAKPOINTS
   ========================================== */
@media screen and (max-width: 991px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .section-title {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 576px) {
  .products-section {
    padding: 2rem 1rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-card {
    padding: 1.25rem 1rem;
  }

  .section-title {
    font-size: 1.15rem;
  }
}






/* ==========================================
   consumables-section STYLES
   ========================================== */

.consumables-section {
  width: 100%;
  padding: 3rem 1rem;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header & Subtitle */
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2b303a;
  margin-bottom: 0.5rem;
}

.yellow-underline {
  width: 60px;
  height: 4px;
  background-color: #f1c40f;
  margin: 0.5rem auto 1.25rem;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

/* ==========================================
   CAROUSEL CONTAINER & NAVIGATION
   ========================================== */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-track-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 1.5rem;
}

/* Product Card Styling */
.product-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b303a;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-img-box {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.btn-price {
  background-color: #0073bc;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  letter-spacing: 0.5px;
}

.btn-price:hover {
  background-color: #005a93;
}

/* Yellow Square Navigation Buttons */
.nav-btn {
  background-color: #f1c40f;
  color: #ffffff;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  flex-shrink: 0;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.nav-btn:hover {
  background-color: #d4ac0d;
}

.wc-prev-btn {
  margin-right: 12px;
}

.wc-next-btn {
  margin-left: 12px;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
@media screen and (max-width: 991px) {
  .product-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    flex: 0 0 100%;
  }

  .nav-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}



/* STAINLESS STEEL PIPE CSS  */

  .ssp-product-carousel-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    padding: 3rem 1rem;
  }

  .ssp-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .ssp-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #2b303a;
    margin-bottom: 0.5rem;
  }

  .ssp-yellow-underline {
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 0 auto 15px auto;
    border-radius: 2px;
  }

  .ssp-section-subtitle {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
  }

  .ssp-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .ssp-carousel-track-container {
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    cursor: grab;
  }

  .ssp-carousel-track-container:active {
    cursor: grabbing;
  }

  .ssp-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 1.5rem;
  }

  .ssp-product-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.75rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .ssp-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
  }

  .ssp-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ssp-card-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
  }

  .ssp-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .ssp-btn-price {
    background-color: #0073bc;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 20px;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
  }

  .ssp-btn-price:hover {
    background-color: #ffc107;
    color: #222;
  }

  .ssp-next-btn {
    margin-left: 12px;
  }

  .ssp-prev-btn {
    margin-right: 12px;
  }

  @media (max-width: 992px) {
    .ssp-product-card {
      flex: 0 0 calc(50% - 10px);
    }
  }

  @media (max-width: 576px) {
    .ssp-product-card {
      flex: 0 0 100%;
    }
  }


/* ==========================================
   HERO BANNER STYLING
   ========================================== */
.me-hero-banner-section {
  width: 100%;
  /* Optional: Matches the dark background of your banner if the screen is wider than the max-width */
  background-color: #0c0908; 
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.me-banner-wrapper {
  width: 100%;
  /* Optional limit to prevent it from stretching too much on ultra-wide monitors (e.g., 1920px) */
  max-width: 1920px; 
  display: block;
}

.me-responsive-banner {
  width: 100%;
  height: auto;
  display: block;
  /* Ensures the image scales down smoothly without losing its proportions */
  object-fit: cover; 
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS (Optional)
   ========================================== */
@media screen and (max-width: 768px) {
  /* For mobile devices, you might want a minimum height so it doesn't get too thin, 
     though this will crop the edges. Remove min-height if you want the full image 
     to always be visible, just scaled down. */
  .me-responsive-banner {
    min-height: 200px;
    object-fit: cover; 
    object-position: center; /* Keeps the most important center part of the banner in view */
  }
}


/* ==========================================
   gas-equipment-section
   ========================================== */

.gas-equipment-section {
  width: 100%;
  padding: 3rem 1rem;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Section Header */
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2b303a;
  margin-bottom: 0.5rem;
}

.yellow-underline {
  width: 60px;
  height: 4px;
  background-color: #f1c40f;
  margin: 0.5rem auto 1.25rem;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}

/* ==========================================
   CAROUSEL CONTAINER & NAVIGATION
   ========================================== */

.carousel-track-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  gap: 1.5rem;
}

/* Product Card Styling */
.product-card {
  /* Exactly 3 cards visible at once: (100% - gap) / 3 */
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b303a;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.card-img-box {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.btn-price {
  background-color: #0073bc;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 20px;
  transition: background-color 0.2s ease;
  letter-spacing: 0.5px;
}

.btn-price:hover {
  background-color: #005a93;
}

/* Yellow Navigation Arrow Buttons */
.nav-btn {
  background-color: #f1c40f;
  color: #ffffff;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  flex-shrink: 0;
  border-radius: 2px;
  transition: background-color 0.2s ease;
}

.nav-btn:hover {
  background-color: #d4ac0d;
}

.prev-btn {
  margin-right: 12px;
}

.next-btn {
  margin-left: 12px;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */
@media screen and (max-width: 991px) {
  .product-card {
    flex: 0 0 calc((100% - 1.5rem) / 2); /* 2 cards visible on tablet */
  }
}

@media screen and (max-width: 600px) {
  .product-card {
    flex: 0 0 100%; /* 1 card visible on mobile */
  }

  .nav-btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}


 /* NUT, BOLT & WASHER SECTION CSS */

  .nbw-product-carousel-section {
    padding: 60px 0;
    background-color: #f9f9f9;
    padding: 3rem 1rem;
  }

  .nbw-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  .nbw-section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 800;
    color: #2b303a;
    margin-bottom: 0.5rem;
  }
  

  .nbw-yellow-underline {
    width: 60px;
    height: 4px;
    background-color: #ffc107;
    margin: 0 auto 15px auto;
    border-radius: 2px;
  }

  .nbw-section-subtitle {
     text-align: center;
      max-width: 900px;
      margin: 0 auto 2.5rem;
      font-size: 0.95rem;
      color: #555555;
      line-height: 1.6;
  }

  .nbw-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  .nbw-carousel-track-container {
    overflow: hidden;
    width: 100%;
    margin: 0 10px;
  }

  .nbw-carousel-track {
    display: flex;
    transition: transform 0.4s ease-in-out;
    gap: 1.5rem;
  }

  .nbw-product-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.75rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }

  .nbw-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
  }

  .nbw-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nbw-card-img-box {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 15px;
    border-radius: 4px;
  }

  .nbw-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
  }

  .nbw-btn-price {
    background-color: #0073bc;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.65rem 1.5rem;
    border-radius: 20px;
    transition: background-color 0.2s ease;
    letter-spacing: 0.5px;
  }

  .nbw-btn-price:hover {
    background-color: #ffc107;
    color: #222;
  }

  

  @media (max-width: 992px) {
    .nbw-product-card {
      flex: 0 0 calc(50% - 10px);
    }
  }

  @media (max-width: 576px) {
    .nbw-product-card {
      flex: 0 0 100%;
    }
  }

/* Why Us Section */
.mokkshdha-reasons-section {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Light Grey Outer Box with Rounded Corners */
.mokkshdha-reasons-card {
  width: 100%;
  max-width: 1100px;
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

/* Heading */
.mokkshdha-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #2b303a;
  margin-bottom: 2.5rem;
}

/* Grid Layout (3 Columns Desktop) */
.mokkshdha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.5rem;
  align-items: center;
}

/* Individual Feature Item */
.mokkshdha-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Yellow Icon Styling */
.mokkshdha-icon {
  color: #ffd700; /* Distinct bright yellow */
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Feature Text */
.mokkshdha-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1a202c;
  line-height: 1.3;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet View (2 Columns) */
@media screen and (max-width: 991px) {
  .mokkshdha-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1rem;
  }
  
  .mokkshdha-reasons-card {
    padding: 2rem 1.5rem;
  }

  .mokkshdha-title {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

/* Mobile View (1 Column) */
@media screen and (max-width: 600px) {
  .mokkshdha-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mokkshdha-reasons-card {
    padding: 1.5rem 1rem;
  }

  .mokkshdha-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .mokkshdha-icon {
    font-size: 1.4rem;
  }

  .mokkshdha-text {
    font-size: 0.95rem;
  }
}


/* ==========================================
   electric-accessories-section
   ========================================== */
.section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2b303a;
  margin-bottom: 0.5rem;
}

.yellow-underline {
  width: 60px;
  height: 4px;
  background-color: #f1c40f;
  margin: 0.5rem auto 1.25rem;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
}



.carousel-track-container {
  width: 100%;
  overflow: hidden;
  padding: 10px 0;
  cursor: grab;
}

.carousel-track-container:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.carousel-track.animated {
  transition: transform 0.35s ease-out;
}

.product-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 1.75rem 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  user-select: none;
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2b303a;
  min-height: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-img-box {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.btn-price {
  background-color: #0073bc;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 20px;
}

.btn-price:hover {
  background-color: #005a93;
}

.nav-btn {
  background-color: #f1c40f;
  color: #ffffff;
  border: none;
  width: 28px;
  height: 28px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  flex-shrink: 0;
  border-radius: 2px;
}

.nav-btn:hover {
  background-color: #d4ac0d;
}

.prev-btn { margin-right: 12px; }
.next-btn { margin-left: 12px; }

@media screen and (max-width: 991px) {
  .product-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
}

@media screen and (max-width: 600px) {
  .product-card { flex: 0 0 100%; }
}


/* mokkshdha about Section */

.mokkshdha-about-section {
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* Light Grey Outer Box with Border */
.mokkshdha-about-card {
  width: 100%;
  max-width: 1100px;
  background-color: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 3.5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

/* Title Styling */
.mokkshdha-about-title {
  color: #0073bc; /* Brand Blue */
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 1.25rem;
}

/* Paragraph Styling */
.mokkshdha-about-text {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 850px;
  margin-bottom: 2rem;
}

/* Pill-shaped Yellow Button */
.btn-know-more {
  background-color: #f1c40f; /* Brand Yellow */
  color: #2b303a;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-know-more:hover {
  background-color: #e0b60d;
  transform: translateY(-1px);
}

.btn-know-more i {
  font-size: 1rem;
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet View */
@media screen and (max-width: 991px) {
  .mokkshdha-about-card {
    padding: 2.5rem 1.5rem;
  }

  .mokkshdha-about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .mokkshdha-about-text {
    font-size: 0.98rem;
    margin-bottom: 1.75rem;
  }
}

/* Mobile View */
@media screen and (max-width: 600px) {
  .mokkshdha-about-card {
    padding: 2rem 1rem;
    border-radius: 6px;
  }

  .mokkshdha-about-title {
    font-size: 1.5rem;
  }

  .mokkshdha-about-text {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .btn-know-more {
    font-size: 0.8rem;
    padding: 0.65rem 1.5rem;
  }
}


/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet View (2 Columns x 2 Rows) */
@media screen and (max-width: 991px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card {
    padding: 2.5rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
  }

  /* Adjust vertical borders for 2x2 grid */
  .feature-card:nth-child(2n) {
    border-right: none;
  }

  .feature-card:nth-last-child(-n+2) {
    border-bottom: none;
  }
}

/* Mobile View (1 Column Stacked) */
@media screen and (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 2rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .feature-card:last-child {
    border-bottom: none;
  }

  .feature-icon {
    font-size: 2.3rem;
    margin-bottom: 1.25rem;
  }

  .feature-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }

  .feature-desc {
    font-size: 0.88rem;
  }
}





/* ==========================================
   FOOTER BASE STYLES
   ========================================== */

.site-footer {
  width: 100%;
  background-color: #ffffff;
  color: #333333;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  position: relative;
  border-top: 1px solid #e2e8f0;
}

.footer-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* 4-Column Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

/* Column Headings & Yellow Underline Bar */
.footer-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2b303a;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.yellow-bar {
  width: 40px;
  height: 3px;
  background-color: #f1c40f;
  margin-bottom: 1.5rem;
  border-radius: 2px;
}

/* Links List */
.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.9rem;
}

.footer-links a {
  text-decoration: none;
  color: #4a5568;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #0073bc;
}

/* Circular Blue Arrow Bullet Icon */
.link-icon {
  background-color: #0073bc;
  color: #ffffff;
  font-size: 0.55rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.65rem;
  flex-shrink: 0;
}

/* Column 4: Brand Logo & Social Buttons */
.footer-logo img {
  max-width: 190px;
  height: auto;
  margin-bottom: 1.25rem;
}

.social-tagline {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  max-width: 250px;
}

.social-icons {
  display: flex;
  gap: 0.65rem;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.social-btn.youtube { background-color: #e62117; }
.social-btn.facebook { background-color: #3b5998; }
.social-btn.instagram { background-color: #262626; }
.social-btn.linkedin { background-color: #0077b5; }

/* Divider & Copyright Section */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #e2e8f0;
  margin-bottom: 1.5rem;
}

.footer-bottom {
  text-align: center;
}

.copyright {
  font-size: 0.9rem;
  color: #2b303a;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.developer {
  font-size: 0.75rem;
  color: #718096;
}

/* Floating Action Buttons */
.floating-btn {
  position: fixed;
  right: 20px;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn {
  bottom: 75px;
  width: 48px;
  height: 48px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 1.8rem;
}

.scroll-top-btn {
  bottom: 20px;
  width: 32px;
  height: 32px;
  background-color: #0073bc;
  color: #ffffff;
  font-size: 1rem;
  border-radius: 2px; /* Square shape as seen in reference */
}

/* ==========================================
   RESPONSIVE BREAKPOINTS
   ========================================== */

/* Tablet View (2 Columns x 2 Rows) */
@media screen and (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }

  .site-footer {
    padding-top: 2.5rem;
  }
}

/* Mobile View (Stacked 1 Column) */
@media screen and (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-col {
    text-align: left;
  }

  .social-tagline {
    max-width: 100%;
  }

  .whatsapp-btn {
    width: 42px;
    height: 42px;
    font-size: 1.5rem;
    bottom: 65px;
    right: 15px;
  }

  .scroll-top-btn {
    right: 15px;
    bottom: 15px;
  }
}

/* welding consumable page css starts here  */

/* 1. Remove space/margin after menu bar and top of section */


/* 2. Banner Main Container */
.page-banner {
  position: relative !important;
  width: 100%;
  margin-top: 0 !important; /* Eliminates space above banner */
  padding: 45px 15px; /* Vertical padding controls height */
  overflow: hidden;
  box-sizing: border-box;
  text-align: center;
}

/* 3. Image stretched as full background */
.page-banner .banner-img {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* 4. Dark Blue Overlay (Darkens image like reference) */
.page-banner .banner-overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 32, 59, 0.88); /* Deep navy blue tint */
  z-index: 2;
}

/* 5. Text Container (Layered above overlay) */
.page-banner .banner-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: 1200px;
  margin: 0 auto;
}

/* 6. Main Heading */
.page-banner .banner-title {
  color: #ffffff !important;
  font-family: Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 6px 0 !important;
  line-height: 1.3;
}

/* 7. Subtitle */
.page-banner .banner-subtitle {
  color: #ffffff !important;
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-banner {
    padding: 25px 10px;
  }
  .page-banner .banner-title {
    font-size: 17px;
  }
  .page-banner .banner-subtitle {
    font-size: 13px;
  }
}

.wc-product-grid {
  display: flex;
  flex-wrap: wrap;
  
  justify-content: center;
  margin-top: 30px;
 
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.wc-product-card {
  flex: 1 1 300px;
  max-width: 380px;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wc-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}



/* ==========================================
   4. RESPONSIVE BREAKPOINTS
   ========================================== */
@media screen and (max-width: 991px) {
  .wc-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  
}

@media screen and (max-width: 576px) {
  

  .wc-products-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .wc-product-card {
    padding: 1.25rem 1rem;
  }

  
}

/* PPE Section Container */
.ppe-accessories-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.ppe-accessories-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Titles */
.ppe-accessories-section .section-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  color: #2b303a;
  margin-bottom: 0.5rem;
}

.ppe-accessories-section .yellow-underline {
  width: 60px;
  height: 3px;
  background-color: #f39c12;
  margin-bottom: 15px;
}

.ppe-accessories-section .section-subtitle {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Carousel Layout */
.ppe-accessories-section .ppe-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.ppe-accessories-section .ppe-carousel-track-container {
  width: 100%;
  overflow: hidden;
  padding: 15px 0; /* Extra vertical padding for smooth shadow/card lift on hover */
  cursor: grab;
}

.ppe-accessories-section .ppe-carousel-track-container:active {
  cursor: grabbing;
}

.ppe-accessories-section .ppe-carousel-track {
  display: flex;
  gap: 20px;
  will-change: transform;
}

/* Card Styling & Hover Animation */
.ppe-accessories-section .ppe-product-card {
  flex: 0 0 calc(33.333% - 14px);
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 25px 20px 20px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  user-select: none;
  /* Card Hover Transition */
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ppe-accessories-section .ppe-product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.ppe-accessories-section .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
  margin-bottom: 20px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.3;
}

.ppe-accessories-section .card-img-box {
  height: 180px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  overflow: hidden;
}

.ppe-accessories-section .card-img-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.3s ease;
}

/* Image slight zoom on card hover */
.ppe-accessories-section .ppe-product-card:hover .card-img-box img {
  transform: scale(1.05);
}

/* "GET BEST PRICE" Pill Button Style & Hover Animation */
.ppe-accessories-section .btn-price {
  display: inline-block;
  background-color: #0073bd;
  color: #ffffff;
  text-decoration: none;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  text-transform: uppercase;
  /* Button Hover Transition */
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.ppe-accessories-section .btn-price:hover {
  background-color: #005a96;
  color: #ffffff;
  transform: scale(1.04);
  box-shadow: 0 4px 12px rgba(0, 115, 189, 0.3);
}

/* Yellow Square Navigation Arrow Buttons & Hover Animation */
.ppe-accessories-section .ppe-nav-btn {
  background-color: #eab308;
  border: none;
  color: #ffffff;
  font-size: 14px;
  width: 32px;
  height: 38px;
  border-radius: 3px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  outline: none;
  /* Arrow Button Transition */
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.ppe-accessories-section .ppe-nav-btn:hover {
  background-color: #ca8a04;
}

.ppe-accessories-section .ppe-prev-btn {
  margin-right: 15px;
}

.ppe-accessories-section .ppe-prev-btn:hover {
  transform: translateX(-2px);
}

.ppe-accessories-section .ppe-next-btn {
  margin-left: 15px;
}

.ppe-accessories-section .ppe-next-btn:hover {
  transform: translateX(2px);
}

/* Responsiveness */
@media (max-width: 992px) {
  .ppe-accessories-section .ppe-product-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 576px) {
  .ppe-accessories-section .ppe-product-card {
    flex: 0 0 100%;
  }

  .ppe-accessories-section .ppe-prev-btn {
    margin-right: 8px;
  }

  .ppe-accessories-section .ppe-next-btn {
    margin-left: 8px;
  }
}

/* Container section styling */
.info-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif; /* Clean standard font */
}

/* Section Title */
.info-section>.section-title {
  color: #0b629e; /* Professional steel blue shade matching the image */
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.3;
  text-align: left !important;
}

/* Light Grey Underline Accent */
.info-section .divider {
  width: 80px;
  height: 4px;
  background-color: #d1d5db; /* Light grey bar */
  margin-bottom: 25px;
  border-radius: 2px;
}

/* Paragraph Text Styling */
.info-section .paragraph {
  color: #4a5568; /* Charcoal grey for comfortable reading */
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 22px;
  text-align: justify; /* Aligns edges evenly */
}

/* Highlighted / Bold text inside paragraphs */
.info-section .paragraph strong {
  color: #2d3748; /* Slightly darker shade for emphasized terms */
  font-weight: 700;
}

/* Responsive design for tablets and mobile */
@media (max-width: 768px) {
  .info-section {
    padding: 25px 15px;
  }
  
  .info-section>.section-title {
    font-size: 20px;
  }

  .info-section .paragraph {
    font-size: 14px;
    text-align: left; /* Better readability on small screens */
  }
}

/* Contact Us Section Layout */
.contact-us-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  color: #333333;
}

.contact-us-section .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Main Section Heading */
.contact-us-section .main-heading {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #0b629e;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}

/* Two-Column Grid */
.contact-us-section .contact-wrapper {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Left Column: Info Styling */
.contact-us-section .contact-info {
  flex: 1;
}

.contact-us-section .info-block {
  margin-bottom: 24px;
}

.contact-us-section .info-block h3 {
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b;
  margin: 0 0 6px 0;
}

.contact-us-section .info-block p {
  font-size: 15px;
  color: #555555;
  margin: 0 0 4px 0;
  line-height: 1.5;
}

.contact-us-section .info-block a {
  color: #555555;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-us-section .info-block a:hover {
  color: #0b629e;
}

/* Right Column: Form Container Styling */
.contact-us-section .contact-form-container {
  flex: 1;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 35px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.contact-us-section .contact-form-container h2 {
  font-size: 22px;
  font-weight: 700;
  color: #0b629e;
  margin-top: 0;
  margin-bottom: 25px;
}

/* Form Controls */
.contact-us-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-us-section .form-row {
  display: flex;
  gap: 15px;
}

.contact-us-section .form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.contact-us-section .form-group.full-width {
  width: 100%;
}

.contact-us-section .form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
  margin-bottom: 6px;
}

.contact-us-section .form-group input,
.contact-us-section .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  background-color: #ffffff;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-us-section .form-group input:focus,
.contact-us-section .form-group textarea:focus {
  border-color: #0b629e;
  box-shadow: 0 0 0 3px rgba(11, 98, 158, 0.15);
}

.contact-us-section .form-group textarea {
  resize: vertical;
}

/* Submit Button */
.contact-us-section .submit-btn {
  background-color: #0073bd;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 50px;
  cursor: pointer;
  align-self: flex-start;
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-transform: uppercase;
}

.contact-us-section .submit-btn:hover {
  background-color: #005a96;
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 115, 189, 0.3);
}

/* Responsive Styles */
@media (max-width: 850px) {
  .contact-us-section .contact-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .contact-us-section .contact-info,
  .contact-us-section .contact-form-container {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .contact-us-section .form-row {
    flex-direction: column;
    gap: 18px;
  }

  .contact-us-section .submit-btn {
    width: 100%;
  }
}

/* pop-up form starts */

/* General Trigger Button Style */
.open-popup-btn {
  background-color: #0073bd;
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.open-popup-btn:hover {
  background-color: #005a96;
  transform: translateY(-2px);
}

/* Modal Dark Background Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 15px;
  box-sizing: border-box;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal Main Box */
.popup-modal {
  position: relative;
  background-color: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.popup-overlay.active .popup-modal {
  transform: scale(1);
}

/* Close ('X') Button */
.popup-modal .close-btn {
  position: absolute;
  top: 6px;
  right: 12px;
  background: transparent;
  border: none;
  font-size: 26px;
  font-weight: 700;
  color: #2b2b2b;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.popup-modal .close-btn:hover {
  color: #000000;
  transform: scale(1.15);
}

/* Decorative Yellow Top Banner */
.popup-header-graphic {
  height: 55px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fef08a 100%);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 80% 100%, 0 40%);
}

/* Decorative Yellow Bottom Banner */
.popup-footer-graphic {
  height: 55px;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 50%, #fef08a 100%);
  clip-path: polygon(20% 0, 100% 60%, 100% 100%, 0 100%, 0 40%);
  margin-top: 10px;
}

/* Inner Form Wrapper */
.popup-content {
  padding: 0 30px;
  text-align: center;
  margin-top: -35px; /* Pulls avatar up into header space */
  z-index: 2;
}

/* Center Avatar Circle */
.avatar-box {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffbb00;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 3px solid #ffffff;
  overflow: hidden;
}

.avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Headings */
.popup-title {
  font-size: 24px;
  font-weight: 700;
  color: #232323;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px;
}

.popup-subtitle {
  font-size: 14px;
  color: #666666;
  margin: 0 0 20px 0;
}

/* Form & Inputs */
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.popup-form .form-group input,
.popup-form .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 18px;
  font-size: 14px;
  border: 1px solid #d1d5db;
  border-radius: 25px; /* Pill Shape */
  outline: none;
  color: #333333;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.popup-form .form-group textarea {
  border-radius: 18px;
  resize: none;
}

.popup-form .form-group input::placeholder,
.popup-form .form-group textarea::placeholder {
  color: #9ca3af;
}

.popup-form .form-group input:focus,
.popup-form .form-group textarea:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Bright Blue Submit Button */
.submit-popup-btn {
  background-color: #0d6efd;
  color: #ffffff;
  border: none;
  padding: 11px 0;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
}

.submit-popup-btn:hover {
  background-color: #0b5ed7;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.submit-popup-btn:active {
  transform: scale(0.98);
}

/* Mobile Responsiveness */
@media (max-width: 480px) {
  .popup-modal {
    max-width: 100%;
  }

  .popup-content {
    padding: 0 20px;
  }

  .popup-title {
    font-size: 21px;
  }

  .popup-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
  }
}

/* pop-up form end  */