/* Variable & Reset */
:root {
  --brand: #0038A5;
  --brand-dark: #002a80;
  --accent: #FFD400;
  --accent-hover: #eec600;
  --text-main: #0f172a;
  --text-muted: #64748b;
  --bg-body: #f8fafc;
  --bg-white: #ffffff;
  --radius: 8px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(2, 56, 165, 0.1), 0 4px 6px -2px rgba(2, 56, 165, 0.05);
  --max-width: 1200px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

}

h1,
h2,
h3 {
  color: #000000 !important;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
  /* Using clip instead of hidden to prevent breaking position: sticky */
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #0038A5;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0066FF;
}

/* Firefox Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #0038A5 #f1f1f1;
}

/* Modern Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Utility */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* Header-specific unique containers to avoid conflicts */
.topbar-container,
.secondary-container,
.menu-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* Home Page Section Wrappers — unique classes to avoid conflicts with .container */
.home-label-wrap,
.home-industries-wrap,
.home-products-wrap,
.home-etp-wrap,
.home-services-wrap,
.home-why-wrap,
.home-process-wrap,
.home-blog-wrap,
.home-features-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.btn-reset {
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--brand-dark);
  text-decoration: none;
}

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

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}

/* Sticky Header Wrapper - No longer used */
.sticky-header-wrapper {
  display: contents;
}

/* --- 2. ENHANCED TOP BAR --- */
.topbar {
  background: #f1f1f1;
  color: #0038A5;
  font-size: 0.8rem;
  padding: 0;
  position: relative;
  /* Restored to relative so it scrolls away */
  z-index: 10002;
  height: 50px;
  display: flex;
  align-items: center;
}

.topbar .topbar-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: 100%;
}

.top-left {
  display: flex;
  gap: 20px;
  justify-self: start;
}

.top-center {
  justify-self: center;
  text-align: center;
}

.top-right {
  display: flex;
  gap: 15px;
  justify-self: end;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
  font-weight: 500;
  align-items: center;
}

.top-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.top-links {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-links a {

  color: #0038A5;
  opacity: 0.9;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: opacity 0.2s;
}

.top-links a:hover {
  opacity: 1;


}

.blog-btn {
  background: #0038A5;
  color: white !important;
  padding: 8px 25px;
  /* Reduced from 12px 40px to fit 50px header */
  border-radius: 4px;
  font-size: 16px;
  /* Reduced from 18px */
  font-weight: 600;
  transition: background 0.2s;
}

.blog-btn:hover {
  background: #0066ff;
  text-decoration: none;
}

/* Ticker Animation */
.ticker-wrap {
  height: 30px;
  overflow: hidden;
  position: relative;
  width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ticker-list {
  animation: slideUp 15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  position: absolute;
  width: 100%;
  top: 0;
}

.ticker-item {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #0038A5;
  font-size: 0.8rem;
}

@keyframes slideUp {

  0%,
  16% {
    transform: translateY(0);
  }

  20%,
  36% {
    transform: translateY(-30px);
  }

  40%,
  56% {
    transform: translateY(-60px);
  }

  60%,
  76% {
    transform: translateY(-90px);
  }

  80%,
  96% {
    transform: translateY(-120px);
  }

  100% {
    transform: translateY(0);
  }
}

/* --- 3. SECONDARY BAR --- */
.secondary-bar {
  background: var(--bg-white);
  padding: 5px 0;
  /* Added vertical padding */
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  /* Changed to sticky */
  top: 0;
  /* Sticks to the very top when topbar scrolls away */
  left: 0;
  right: 0;
  z-index: 10001;
  margin: 0;
}

.secondary-bar .secondary-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  justify-self: start;
}

.logo-image {
  height: 80px;
  width: 170px;
  object-fit: contain;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--brand);
  border-radius: 8px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.logo-text {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brand);
  letter-spacing: -0.5px;
}

/* Search Bar */
.search-bar {
  justify-self: center;
  width: 100%;
  max-width: 1000px;
}

.search-form {
  position: relative;
  width: 100%;
}

.search-input-full {
  width: 100%;
  padding: 10px 185px 10px 15px;
  border: 1px solid #0038A5;
  border-radius: 6px;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
  background: #f8fafc;
  transition: all 0.2s;
}

.search-input-full:focus {
  border-color: var(--brand);
  border-width: 2px;
  box-shadow: 0 0 0 5px rgba(2, 56, 165, 0.1);
  background: white;
}

.search-btn-full {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: none;
  color: #0038A5;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
}

/* Secondary Actions */
.secondary-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-self: end;
}

.search-icon-mobile {
  display: none !important;
}

.action-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #0038A5;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.2s;
  min-width: 50px;
  position: relative;
}

.action-icon i {
  font-size: 1.2rem;
  margin-bottom: 3px;
}

.action-icon:hover {
  color: #0066FF;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: 10px;

  color: #000;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secondary-cta {
  background: #0038A5;
  color: white;
  font-weight: 600;
  padding: 16px 16px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: background 0.15s;
  font-size: 0.85rem;
  white-space: nowrap;
}

.secondary-cta:hover {
  background: #0066FF;
  text-decoration: none;
  color: white;
}

/* --- 4. MENU BAR --- */
.menu-bar {
  background: #0038A5;
  position: sticky;
  /* Changed to sticky */
  top: 90px;
  /* Offset to account for secondary-bar height (~90px) */
  left: 0;
  right: 0;
  z-index: 10000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  margin: 0;
  padding: 0;
}

.menu-bar .menu-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  position: relative;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 600;
  color: #FFFFFF;
  padding: 18px 18px;
  font-size: 1.1rem;
  border-radius: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 3px solid transparent;
}

.submenu-arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.nav-item.active .submenu-arrow {
  transform: rotate(180deg);
}

.mobile-info-bar {
  display: none;
  background: #0038A5;
  color: white;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-info-content {
  display: flex;
  white-space: nowrap;
  gap: 40px;
  animation: mobileTicker 15s linear infinite;
  width: max-content;
  padding-left: 20px;
}

.mobile-info-content span {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-info-content i {
  color: #fff;
  font-size: 0.9rem;
}

@keyframes mobileTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.33%);
  }
}

@media (max-width: 968px) {
  .mobile-info-bar {
    display: block;
    margin-top: 8px;
  }

  .category-features-section,
  .features-section,
  .breadcrumb {
    display: none !important;
  }
}

.mobile-only {
  display: none !important;
}

.mobile-menu-close {
  display: none !important;
}

.mobile-nav-logo {
  display: none;
}

.nav-link:hover,
.nav-link:focus,
.nav-item.active .nav-link {
  color: var(--brand);
  text-decoration: none;
  border-bottom-color: var(--brand);
  background: #f8fafc;
}

/* Enhanced Mega Menu */
.nav-item {
  position: static;
}

.nav-item.nav-item-relative {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 13%;
  transform: translateY(-10px);
  width: fit-content;
  max-width: 83%;
  background: white;
  border-radius: 0 0 12px 12px;
  /* padding: 10px; */
  box-shadow: var(--shadow-lg);
  border: 1px solid #e2e8f0;
  border-top: 4px solid var(--brand);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 400px;
  gap: 25px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
}

/* Hide mobile menu on desktop */
.mobile-submenu-list {
  display: none;
}

/* Show desktop menu on desktop */
.desktop-mega-menu {
  display: contents;
}

/* Simple mega menu without image (Markets, Customization, Resources) */
.mega-menu-simple {
  display: block;
  width: auto;
  min-width: 220px;
  max-width: 300px;
  left: 0;
  height: auto;
  padding: 10px 0;
  transform: translateY(-10px);
}

.mega-menu-simple .mm-col {
  height: auto;
}

.mega-menu-simple .mm-col ul {
  height: auto;
  min-height: unset;
}

.nav-item:hover .mega-menu-simple,
.nav-item:focus-within .mega-menu-simple {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Show menu on hover (Desktop) or focus-within */
.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mega menu with image - full width layout */
.mega-menu-with-image {
  position: fixed;
  left: 0;
  transform: translateY(-10px);
  width: var(--max-width);
  grid-template-columns: 1fr 1fr 1fr 400px;
  gap: 25px;
  padding: 30px;
}

.nav-item:hover .mega-menu-with-image,
.nav-item:focus-within .mega-menu-with-image {
  transform: translateY(0);
}

/* Enhanced Mega Menu Column Styles */
.mm-col {
  display: flex;
  flex-direction: column;
}

.mm-col h3 {
  font-size: 1.25rem;
  color: #0038A5;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  position: relative;
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.5px;
  display: inline-block;
  border-bottom: 5px solid #0038A5;
  width: fit-content;
  white-space: nowrap;
}

.mm-col h3::after {
  content: none;
}

.mm-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mm-col a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s var(--ease);
  position: relative;
  font-weight: 400;
  white-space: nowrap;
}

.mm-col a::before {
  content: '';
  width: 0;
  height: 0;
  transition: all 0.2s var(--ease);
}

.mm-col a:hover {
  color: var(--brand);
  transform: translateX(5px);
  text-decoration: none;
}

.mm-col a:hover::before {
  transform: none;
  color: var(--brand);
}


.mm-col ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style-type: none;
}

.mm-col li {
  margin: 0;
}

.mm-col a {
  color: var(--brand);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  padding: 8px 10px;
  transition: color 0.2s ease, transform 0.2s ease;
  font-weight: 600;
  position: relative;
}

.mm-col a:hover {
  color: var(--brand-dark);
  transform: translateX(8px);
  text-decoration: none;
}

.mm-col a:hover::before {
  transform: scale(1.3);
  color: var(--brand-dark);
}

/* "All" link styling */
.mm-col a.all-link {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #e2e8f0;
  color: #4b5563;
  font-weight: 600;
  display: flex;
  align-items: center;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mm-col a.all-link::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  margin-right: 10px;
  color: #9ca3af;
  transition: transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.mm-col a.all-link:hover {
  color: #0038A5;
}

.mm-col a.all-link:hover::before {
  transform: translateX(3px);
  color: #0038A5;
}

/* Two-column layout for Labels & Stickers */
.mm-col.double-col {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mm-col.double-col>div {
  display: flex;
  flex-direction: column;
}

/* Image Column in Mega Menu */
.mm-image-col {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  align-self: start;
  max-height: 320px;
}

.mm-image-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.mm-image-wrapper h3 {
  color: #0038A5;
  font-size: 1.1rem;
  margin: 0 0 10px 0;
  padding: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  border-bottom: none;
  width: 100%;
}

.mm-image-wrapper h3 span {
  color: #FFD400;
}

.mm-image-wrapper img {
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  border-radius: 8px;
}

.mm-cta-btn {
  display: inline-block;
  background: #FFD400;
  color: #0038A5;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  margin-top: auto;
}

.mm-cta-btn:hover {
  background: white;
  color: #0038A5;
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 212, 0, 0.4);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  z-index: 60;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.bar {
  width: 100%;
  height: 2px;
  background: #0038A5;
  transition: 0.3s;
  border-radius: 2px;
}

/* --- 5. HERO SECTION --- */
.hero {
  display: flex;
  min-height: auto;
  height: auto;
  margin-top: 0;
  /* Removed 140px offset since we are using sticky positioning */
}

/* Left Column - Primary Color Background */
.hero-left {
  flex: 1;
  background: #0038A5;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-left-content {
  max-width: 600px;
  animation: fadeIn 0.8s ease-out;
  margin-top: 10px;
  padding-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge {
  display: inline-block;
  background: #f1f1f1;
  color: #000000;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-left h1 {
  font-size: 2rem;
  line-height: 1.1;
  margin: 10px 0 15px 0;
  color: white !important;
  letter-spacing: -1px;
}

.hero-left p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 22px;
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 35px;
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #FFD700;
  color: #0038A5;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;


  display: inline-block;
}

.btn-primary:hover {
  background: white;
  border-color: var(--brand-dark);
  text-decoration: none;
  color: #0038A5;

  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
  background: white;
  color: #0038A5;

  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
  border: 1px solid
}

.btn-outline:hover {

  background: #FFD700;
  border: 0px;
  color: #0038A5;
  text-decoration: none;

}

/* Right Column - White Background with Image */
.hero-right {
  flex: 1;
  background: white;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-main-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.hero-visual {
  width: 100%;
  max-width: 600px;
  height: 100%;

  border-radius: 20px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.hero-visual-content {
  padding: 40px;
  text-align: center;
  background: white;
  border-bottom: 1px solid #f1f5f9;
}

.hero-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  color: #0038A5;
}

.hero-visual-content h3 {
  color: #0038A5;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-visual-content p {
  color: #666;
  font-size: 1rem;
  margin: 0;
}

.hero-image {
  flex: 1;
  background-image: url('images-home/packaging-collage.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    min-height: auto;
    margin-top: 0;
    /* Mobile pe secondary-bar relative position pe hai */
  }

  .hero-left {
    padding: 30px 25px;
  }

  .hero-right {
    padding: 0;
    min-height: 280px;
  }

  .hero-left h1 {
    font-size: 2.5rem;
  }

  .hero-visual {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 2rem;
  }

  .hero-left p {
    font-size: 1rem;
  }

  .btn-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline {
    text-align: center;
    width: 100%;
  }

  .hero-visual-content {
    padding: 30px;
  }
}

@media (max-width: 576px) {

  .hero-left {
    padding: 25px 20px;
  }

  .hero-right {
    padding: 0;
    min-height: 240px;
  }

  .hero-left h1 {
    font-size: 1.8rem;
  }

  .badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .hero-icon {
    font-size: 2.5rem;
  }
}

/* --- UPDATED LABEL POUCHES SECTION --- */
.label-pouches {
  background: white;
  padding: 80px 0;
}

.label-heading-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 40px;
  gap: 25px;
  padding: 0 80px;
}

.label-main-title {
  flex: 0 0 auto;
}

.label-main-title h2 {
  font-size: 2rem;
  color: #0038A5;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.label-subtitle {
  flex: 1;
  display: flex;
  align-items: center;
}

.label-subtitle h3 {
  font-size: 1.4rem;
  color: #000;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  font-weight: 400;
  border-left: 3px solid #0038A5;
  padding-left: 20px;
  white-space: nowrap;
}

.label-content {
  width: 100%;
}

.label-text-box {
  background: #f1f1f1;
  color: #000000;
  padding: 50px 60px;
  border-radius: 12px;

}

.label-text-box p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
  column-count: 1;
  column-gap: 40px;
}

/* --- RESPONSIVE STYLES FOR UPDATED LABEL POUCHES --- */
@media (max-width: 968px) {
  .label-heading-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .label-main-title {
    flex: 0 0 auto;
    width: 100%;
  }

  .label-main-title h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-left: 0;
  }

  .label-subtitle {
    flex: 0 0 auto;
    width: 100%;
  }

  .label-subtitle h3 {
    font-size: 1.5rem;
    border-left: none;
    border-top: 4px solid #0066FF;
    padding-left: 0;
    padding-top: 20px;
    margin: 0 auto;
    text-align: center;
    display: block;
  }

  .label-text-box {
    padding: 40px 30px;
  }

  .label-text-box p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .label-pouches {
    padding: 0px 0;
  }

  .label-heading-wrapper {
    padding: 0 5px;
    margin-bottom: 30px;
  }

  .label-main-title h2 {
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.1;
  }

  .label-subtitle h3 {
    font-size: 1.1rem;
    padding-top: 15px;
    white-space: normal;
    line-height: 1.4;
  }

  .label-text-box {
    padding: 25px 15px;
    border-radius: 20px;
    margin: 0;
  }

  .label-text-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: justify;
  }
}

@media (max-width: 480px) {
  .label-pouches {
    padding: 30px 0;
  }

  .label-heading-wrapper {
    padding: 0 5px;
    margin-bottom: 25px;
  }

  .label-main-title h2 {
    font-size: 2rem;
  }

  .label-subtitle h3 {
    font-size: 1rem;
    padding-top: 12px;
  }

  .label-text-box {
    padding: 20px 12px;
    margin: 0;
    border-radius: 18px;
  }

  .label-text-box p {
    font-size: 0.85rem;
    line-height: 1.55;
    text-align: justify;
  }
}

/* --- FEATURED PRODUCTS SECTION --- */
.featured-products {
  padding: 25px 0;
  background: #f8fafc;
}

.featured-header {
  text-align: center;
  margin-bottom: 20px;
}

.featured-header h2 {
  font-size: 1.8rem;
  color: #0038A5;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -1px;
}

.featured-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #000;
  margin: 0 0 30px 0;
  font-weight: 400;
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  background: white;
  border: 2px solid #e2e8f0;
  color: #0038A5;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  border-color: #0038A5;
  box-shadow: 0 4px 12px rgba(2, 56, 165, 0.1);
}

.tab-btn.active {
  background: #0038A5;
  color: white;
  border-color: #0038A5;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  display: none;
  max-width: 100%;
}

.products-grid.active {
  display: grid;
}

.product-card {
  background: transparent;
  border: none;
  padding: 0;
  text-align: center;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image-box {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #a8c8ff 0%, #7fb3ff 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  padding: 0;
  position: relative;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.customize-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 20px;
}

.product-card:hover .customize-overlay {
  opacity: 1;
}

.customize-btn {
  background: #ffffff;
  color: #333;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: none;
}

.product-card:hover .customize-btn {
  background: #0038A5;
  color: white;
  transform: scale(1.05);
}

.product-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .featured-products {
    padding: 60px 0;
  }

  .featured-header h2 {
    font-size: 2rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .product-tabs {
    gap: 12px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .featured-products {
    padding: 50px 0;
  }

  .featured-header h2 {
    font-size: 1.75rem;
  }

  .featured-header p {
    font-size: 1rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-card img {
    height: 150px;
  }

  .product-card h4 {
    font-size: 0.9rem;
    margin: 12px 10px;
  }
}

@media (max-width: 480px) {
  .featured-products {
    padding: 40px 0;
  }

  .featured-header h2 {
    font-size: 1.5rem;
  }

  .featured-header p {
    font-size: 0.95rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .product-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    padding: 12px 20px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h4 {
    font-size: 0.85rem;
    margin: 10px 8px;
  }
}

/* --- WHY CHOOSE US SECTION --- */
/* --- WHY CHOOSE US SECTION --- */
.why-choose {
  background: #f8f9fa;
  padding: 40px 0;
  border: none;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.why-choose .home-why-wrap {
  max-width: var(--max-width);
  width: 100%;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-header h2 {
  font-size: 2.2rem;
  color: #0038A5;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.why-choose-header p {
  font-size: 1rem;
  color: #000;
  margin: 0;
  font-weight: 400;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 100%;
}

.service-item {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: auto;
  text-decoration: none;
  color: inherit;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 56, 165, 0.15);
  border-color: #0038A5;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #0038A5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background: #0066FF;
  transform: scale(1.1);
}

.service-icon img {
  width: 45px;
  height: 45px;
  filter: brightness(0) invert(1);
}

.service-item h3 {
  color: #0038A5;
  font-size: 1rem;
  margin: 0 0 10px 0;
  font-weight: 700;
  line-height: 1.3;
}

.service-item p {
  color: #000;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

/* --- END-TO-END PACKAGING SECTION --- */
.end-to-end-packaging {
  background: #f1f1f1;
  padding: 60px 0;
  text-align: center;
  margin: 35px;
  border-radius: 20px;
}

.end-to-end-packaging .home-etp-wrap {
  max-width: 900px;
}

.end-to-end-packaging h2 {
  font-size: 1.8rem;
  color: #1a1a1a;
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.3;
}

.end-to-end-packaging p {
  font-size: 1.rem;
  color: #000;
  margin: 0 0 30px 0;
  line-height: 1.6;
}

.btn-consultation {
  display: inline-block;
  background: white;
  color: #0038A5;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #0038A5;
}

.btn-consultation:hover {
  background: #0038A5;
  color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

/* Mobile Responsive for End-to-End Section */
@media (max-width: 768px) {
  .end-to-end-packaging {
    margin: 20px;
    padding: 40px 20px;
    border-radius: 15px;
  }

  .end-to-end-packaging h2 {
    font-size: 1.6rem;
    margin: 0 0 12px 0;
  }

  .end-to-end-packaging p {
    font-size: 0.95rem;
    margin: 0 0 25px 0;
  }

  .btn-consultation {
    padding: 12px 28px;
    font-size: 0.95rem;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .end-to-end-packaging {
    margin: 15px;
    padding: 30px 15px;
    border-radius: 12px;
  }

  .end-to-end-packaging h2 {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .end-to-end-packaging p {
    font-size: 0.9rem;
    margin: 0 0 20px 0;
  }

  .btn-consultation {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
  }
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 56, 165, 0.1);
  border-color: #0066FF;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: #0038A5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: white;
}

.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-item h3 {
  color: #0038A5;
  font-size: 1.25rem;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.service-item p {
  color: #000;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}



/* --- RESPONSIVE STYLES FOR NEW SECTIONS --- */
@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .label-pouches h2 {
    font-size: 1.75rem;
  }

  .label-content {
    padding: 30px;
  }

  .label-content p {
    font-size: 1rem;
  }

  .why-choose h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
    margin: 0 auto;
  }

  .label-pouches {
    padding: 50px 0;
  }

  .label-pouches h2 {
    font-size: 1.5rem;
  }

  .why-choose {
    padding: 40px 0;
    min-height: auto;
  }

  .why-choose h2 {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .service-item {
    padding: 25px 20px;
  }
}

@media (max-width: 480px) {
  .label-content {
    padding: 20px;
  }

  .service-item h3 {
    font-size: 1.1rem;
  }

  .service-item p {
    font-size: 0.9rem;
  }
}

/* --- 7. TRUST SECTION --- */
.trust-section {
  background: white;
  padding: 0px 0;
  border: none;
  width: 100%;
  overflow: hidden;
}

.trust-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: flex-start;
}

/* Left Side: Blue Sidebar Card with Reviews */
.trust-sidebar-card {
  width: 420px;
  height: 240px;
  background: #0038A5;
  border-radius: 0 20px 20px 0;
  flex-shrink: 0;
  box-shadow: 10px 0 30px rgba(0, 56, 165, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.review-badge {
  background: white;
  border-radius: 8px;
  padding: 12px 20px;
  width: 30%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.review-platform.google img {
  width: 33px;
  height: 33px;
}

.review-platform .stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.trustpilot-icon {
  width: 24px;
  height: 24px;
  background: #00b67a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 18px;
}

/* Right Side: Content Area */
.trust-main-content {
  flex: 1;
  text-align: left;
  padding-left: 60px;
  padding-right: 25%;
  /* Even more space to ensure no cut-off */
}

.trust-content-inner {
  max-width: 750px;
  /* narrowed to ensure earlier wrapping */
  width: 100%;
}

.trust-main-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 40px 0;
  max-width: 100%;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.trust-logos-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  z-index: 1;
}

.trust-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
  /* More space between logos */
  animation: scrollLogos 25s linear infinite;
  width: max-content;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-logos-wrapper:hover .trust-logos {
  animation-play-state: paused;
}

.trust-logos .logo-item {
  background: none;
  padding: 0;
  box-shadow: none;
  min-height: auto;
  min-width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-logos .logo-item img {
  height: 50px;
  max-height: 120px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: none;
}

.trust-logos .logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* --- FEATURES SECTION --- */
.features-section {
  background: #D9EAFF;
  padding: 0;
  border-top: 1px solid rgba(0, 56, 165, 0.1);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
  max-width: 100%;
}

.feature-item {
  text-align: center;
  padding: 50px 30px;
  border-right: 1px solid #94B8FF;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:last-child {
  border-right: none;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 15px rgba(0, 56, 165, 0.08);
}

.feature-icon img {
  width: 35px;
  height: 35px;
  filter: brightness(0) saturate(100%) invert(32%) sepia(91%) rotate(211deg) brightness(98%) contrast(106%);
}

.feature-item h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-item p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
  max-width: 250px;
}

.feature-item .phone-number {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
  margin: 0px 0;
  display: block;
}

.help-text {
  font-size: 0.9rem;
  color: #333333;
  line-height: 1.4;
}

.feature-item .help-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* --- NEWSLETTER SECTION --- */
.newsletter-section {
  background: #f1f1f1;
  margin: 0;
  padding: 20px 0;
  border-bottom: none;
}

.newsletter-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

.newsletter-left {
  flex: 1;
  padding-top: 8px;
}

.newsletter-left h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  text-align: left;
}

.newsletter-left p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  text-align: left;
  line-height: 1.5;
}

.newsletter-right {
  flex: 1;
  max-width: 550px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin: 0 0 10px 0;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid #ddd;
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 0.9rem;
  outline: none;
  background: white;
}

.newsletter-form input::placeholder {
  color: #999;
}

.newsletter-form input:focus {
  border-color: #0038A5;
}

.subscribe-btn {
  padding: 12px 40px;
  background: #0038A5;
  color: white;
  border: none;
  border-radius: 0 4px 4px 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-btn:hover {
  background: #0066FF;
}

.newsletter-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
  text-align: left;
}

.newsletter-checkbox input {
  cursor: pointer;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* --- FOOTER --- */
footer {
  background: #0038A5;
  color: white;
  padding: 0px 0 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #0038A5;
}

.footer-column p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: white;
  text-decoration: underline;
}

.contact-info li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact-info li strong {
  color: white;
  font-weight: 700;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom .copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 36px;
  height: 36px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0038A5;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-3px);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1100px) {
  .mega-menu {
    width: 900px;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
  }

  .nav-item:hover .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 968px) {
  .topbar {
    display: none;
  }

  body {
    padding-top: 0;
    /* no fixed header to offset on mobile, secondary-bar handles its own margin */
  }

  .secondary-bar {
    position: relative;
    margin-top: 0;
    /* topbar hidden on mobile, no offset needed */
    top: auto;
    z-index: 1000;
  }

  .secondary-bar .secondary-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    position: relative;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    justify-self: auto;
    z-index: 1;
    pointer-events: auto;
  }

  .search-bar {
    display: none;
  }

  .secondary-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    justify-self: auto;
    z-index: 2;
    position: relative;
  }

  .secondary-actions .action-icon:not(.search-icon-mobile) {
    display: none;
  }

  .secondary-actions .secondary-cta {
    display: none;
  }

  /* Mobile search icon */
  .search-icon-mobile {
    display: flex !important;
    font-size: 20px;
    color: var(--brand);
  }

  /* Mobile toggle button styling */
  .mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100000;
    position: relative;
    pointer-events: auto;
    width: 30px;
    height: 24px;
  }

  .mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background: var(--brand);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    margin: 0;
  }

  .mobile-only {
    display: flex !important;
  }

  .nav-link.mobile-only {
    display: flex !important;
  }

  .menu-bar {
    position: fixed;
    top: 0;
    /* topbar is hidden on mobile so menu-bar goes to very top */
    left: 0;
    right: 0;
    z-index: 99999;
    display: block !important;
    background: transparent;
    box-shadow: none;
    height: 0;
    pointer-events: none;
  }

  .menu-bar .menu-container {
    justify-content: flex-start;
    padding: 0;
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    display: flex !important;
    flex-direction: column;
    padding: 0 0 30px 0;
    /* removed top padding because logo section takes care of it */
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    z-index: 99999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    pointer-events: auto;
  }

  .mobile-nav-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: 20px 20px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 5px;
    background: #fff;
  }

  .mobile-nav-logo img {
    height: 70px;
    width: auto;
  }

  /* Mobile Menu Close Button */
  .mobile-menu-close {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--brand);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    border-radius: 50%;
    transition: all 0.3s ease;

  }

  .mobile-menu-close:hover {
    background: #f0f0f0;
  }

  .mobile-menu-close i {
    pointer-events: none;
  }

  .main-nav.active {
    transform: translateX(0) !important;
  }

  /* Mobile menu overlay */
  body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9999;
    animation: fadeIn 0.3s ease;
    overflow-y: auto;

  }

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--brand);
  }

  .mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }

  .mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--brand);
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 8px 20px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
  }

  .nav-link:hover {
    color: var(--brand);
    background: #f8fafc;
  }

  .mega-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    background: #f8fafc;
    margin-top: 0;
    border-radius: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .nav-item.active .mega-menu {
    display: block;
    gap: 0;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100%;
  }

  /* Hide all desktop content in mega menus on mobile, only show simplified list */
  .mega-menu:not(.mega-menu-simple)>div:not(.mobile-submenu-list) {
    display: none !important;
  }

  /* Show mobile submenu list */
  .mobile-submenu-list {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
  }

  .mobile-submenu-item {
    border-bottom: 1px solid #e2e8f0;
    width: 100%;
  }

  .mobile-submenu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    background: #f8f9fa;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-submenu-link:hover {
    background: #e9ecef;
  }

  .mobile-submenu-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .mobile-submenu-item.active .mobile-submenu-link i {
    transform: rotate(180deg);
  }

  .mobile-nested-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
  }

  .mobile-submenu-item.active .mobile-nested-list {
    display: block;
  }

  .mobile-nested-list li {
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-nested-list li:last-child {
    border-bottom: none;
  }

  .mobile-nested-list a {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .mobile-nested-list a:hover {
    background: #f8f9fa;
    color: var(--brand);
    padding-left: 45px;
  }

  .mm-col.double-col {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mm-col h3 {
    font-size: 0.85rem;
    margin-bottom: 10px;
    color: var(--brand);
    font-weight: 700;
    text-transform: uppercase;
  }

  .mm-col h3::after {
    display: none;
  }

  .mm-col a {
    font-size: 0.8rem;
    padding: 8px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero .container {
    flex-direction: column;
  }

  .btn-group {
    justify-content: center;
  }

  /* TRUST SECTION RESPONSIVE */
  .trust-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .trust-sidebar-card {
    width: 100%;
    max-width: 400px;
    height: 150px;
  }

  .trust-logos {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .top-contact {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    width: 100%;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .secondary-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* TRUST SECTION MOBILE */
  .trust-section {
    padding: 40px 0;
  }

  .trust-wrapper {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .trust-sidebar-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .trust-main-content {
    text-align: center;
    background: white;
    padding: 30px 20px;
    width: 100%;
  }

  .trust-main-content h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .trust-content-inner h2 {
    margin-bottom: 30px;
  }

  .trust-logos-wrapper {
    display: block;
  }

  .trust-logos {
    gap: 40px;
    animation-duration: 20s;
  }

  .trust-logos .logo-item img {
    height: 40px;
    max-height: 80px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-outline {
    padding: 10px 20px;
    width: 100%;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .mm-col a::before {
    margin-right: 8px;
  }

  .action-icon span {
    display: none;
  }

  .action-icon {
    min-width: auto;
    padding: 0 8px;
  }

  /* TRUST SECTION SMALL MOBILE */
  .trust-section {
    padding: 30px 0;
  }

  .trust-sidebar-card {
    padding: 25px 15px;
  }

  .trust-main-content {
    padding: 25px 15px;
  }

  .trust-main-content h2 {
    font-size: 1.1rem;
  }

  .review-badge {
    padding: 10px 15px;
  }
}

.trust-main-content h2 {
  font-size: 1.1rem;
}

.trust-logos {
  gap: 30px;
}

.trust-logos .logo-item img {
  height: 35px;
  max-height: 70px;
}

.badges-row {
  gap: 15px;
  flex-direction: column;
}

.badge-img {
  height: 50px;
}

.logo-track {
  gap: 20px;
  animation-duration: 15s;
}

.logo-item {
  min-width: 100px;
  min-height: 50px;
  padding: 8px 12px;
}

.logo-item img {
  height: 45px;
}

/* Override for trust section logos */
.trust-logos .logo-item {
  min-width: auto;
  min-height: auto;
  padding: 0;
}

.trust-logos .logo-item img {
  height: auto !important;
}


.products-by-industries {
  padding: 60px 0;
  background: white;
}

.products-by-industries .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.products-by-industries .section-header h2 {
  font-size: 1.8rem;
  color: #0038A5;
  margin: 0 0 10px 0;
  font-weight: 700;
}

.products-by-industries .section-header p {
  font-size: 1rem;
  color: #000;
  margin: 0;
  font-weight: 400;
}

.industries-container {
  display: grid;
  grid-template-columns: 1fr 525px;
  gap: 40px;
  background: #0038A5;
  border-radius: 12px;
  padding: 30px;
  align-items: start;
  min-height: auto;
}

.industries-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.industry-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  background: transparent;
}

.industry-item:last-child {
  border-bottom: none;
}

.industry-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.industry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  user-select: none;
}

.industry-header h3 {
  font-size: 1.1rem;
  color: white !important;
  margin: 0;
  font-weight: 600;
}

.industry-header i {
  color: white;
  font-size: 1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.industry-item.active .industry-header i {
  transform: rotate(-180deg);
}

.industry-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  opacity: 0;
}

.industry-item.active .industry-details {
  max-height: 500px;
  opacity: 1;
  padding-bottom: 20px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease 0.1s;
}

.industry-details p {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  margin: 10px 0 0 0;
  line-height: 1.7;
  font-size: 0.95rem;
  border-radius: 8px;
}

.industries-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: white;
  border-radius: 12px;
  gap: 0;
  width: 525px;
  height: 450px;
  padding: 0;
}

.image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
  padding: 0;
}

.image-wrapper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.view-all-btn-desktop {
  display: inline-block;
  background: #FFD700;
  color: #0038A5;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
  position: relative;
  margin-top: 40px;
}

.view-all-btn-desktop:hover {
  background: #FFC700;
  color: #0038A5;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.industries-button-wrapper {
  display: none;
  text-align: center;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}

/* Responsive - Tablet */
@media (max-width: 968px) {
  .industries-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .industries-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    order: 2;
    justify-content: flex-start;
    padding: 0;
  }

  .industries-list {
    order: 1;
  }

  .image-wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: flex-start;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .industries-container {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 15px;
  }

  .industries-list {
    order: 1;
  }

  .industries-image {
    width: 100%;
    height: auto;
    min-height: 300px;
    padding: 0;
    order: 2;
    justify-content: flex-start;
  }

  .image-wrapper {
    width: 100%;
    height: 100%;
    padding: 0;
    align-items: flex-start;
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    object-fit: cover;
  }

  .view-all-btn-desktop {
    display: none;
  }

  .industries-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    order: 3;
  }

  .view-all-btn {
    display: inline-block;
    background: white;
    color: #0038A5;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid white;
  }

  .view-all-btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
  }

  .industry-header h3 {
    font-size: 1rem;
  }

  .industry-details p {
    font-size: 0.9rem;
    padding: 15px;
  }
}

.industries-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 30px;
}

.accordion-item {
  border: 1px solid #E0E0E0;
  border-bottom: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:last-child {
  border-bottom: 1px solid #E0E0E0;
}

.accordion-item.active {
  background: #F5F5F5;
}

.accordion-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.accordion-header:hover {
  background: #FAFAFA;
  padding-left: 25px;
}

.accordion-item.active .accordion-header {
  background: var(--brand);
  color: white;
}

.accordion-item.active .accordion-header h3 {
  color: white;
}

.accordion-item.active .accordion-toggle i {
  color: white;
  transform: rotate(180deg);
}

.accordion-left {
  display: flex;
  align-items: center;
  gap: 10px;
}


.accordion-left h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.accordion-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--brand);
  transition: all 0.3s ease;
}

.accordion-toggle i {
  font-size: 16px;
}

.accordion-content {
  display: none;
  padding: 0 20px 20px 85px;
  background: white;
  animation: slideDown 0.3s ease-out;
}

.accordion-item.active .accordion-content {
  display: block;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-description {
  margin-bottom: 20px;
  line-height: 1.6;
}

.content-description p {
  margin: 0;
  color: var(--text-main);
  font-size: 14px;
}

.products-grid-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.product-item {
  background: #F9F9F9;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.product-item:hover {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  transform: translateY(-2px);
}

.product-item .product-name {
  font-size: 13px;
  font-weight: 500;
  display: block;
  text-align: center;
  color: var(--text-main);
  transition: color 0.3s ease;
}

.product-item:hover .product-name {
  color: white;
}

/* Two Column Industries Layout */
.industries-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr auto;
  background-color: #0038A5;
  border: solid 3px var(--brand);
  border-radius: 12px;
  gap: 40px;
  margin-top: 40px;
  align-items: start;
}

.industries-list {
  grid-column: 1;
  grid-row: 1 / 3;
}

.industries-list {
  background: var(--brand);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
}

.industries-list::-webkit-scrollbar {
  display: none;
}

.industry-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.industry-item:last-child {
  border-bottom: none;
}

.industry-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: var(--brand);
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
}

.industry-header:hover {
  background: #0066FF;
  padding-left: 25px;
}

.industry-info {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.industry-info .industry-icon {
  font-size: 28px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
}

.industry-info h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
  color: white;
}

.industry-header i {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.3s ease;
}

.industry-item.active .industry-header i {

  color: white;
}

.industry-details {
  display: none;
  padding: 20px;
  border: solid 1px #E0E0E0;
  border-radius: 0 0 8px 8px;
  background: white;
  color: var(--text-main);
  animation: slideDown 0.3s ease-out;
}

.industry-item.active .industry-details {
  display: block;
  max-height: 500px;
}

.industry-details p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 15px 0;
  color: var(--text-main);
}

.industry-details .products-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-details .products-list li {
  font-size: 13px;
  color: var(--text-main);
  padding-left: 18px;
  position: relative;
  transition: all 0.2s ease;
}

.industry-details .products-list li:before {
  content: "•";
  position: absolute;
  left: 5px;
  color: var(--brand);
  font-weight: bold;
}

.industry-details .products-list li:hover {
  color: var(--brand);
  padding-left: 23px;
}

.industry-image-column {
  background: white;
  border: 3px solid var(--brand);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 30px;
  padding-bottom: 30px;
  min-height: 400px;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 100%;
  gap: 20px;
}

.industry-image {
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
  max-width: 70%;
  max-height: 60%;
  flex-shrink: 0;
}

.industry-image:hover {
  transform: scale(1.05);
}

.industries-grid {
  display: none;
}

.industries-footer {
  text-align: center;
  margin-top: 0;
  grid-column: 2;
  grid-row: 1;
  padding: 0;
  align-self: flex-end;
  margin-bottom: 20px;
}

.view-all-btn {
  display: inline-block;
  color: #000;
  padding: 16px 48px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(2, 56, 165, 0.3);
  letter-spacing: 0.5px;
}

.view-all-btn:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(2, 56, 165, 0.4);
}

/* CTA Banner Section */
.cta-banner {
  background: #0038A5;
  padding: 50px 0;
  margin: 60px 0;
  text-align: center;
}

.cta-content {
  color: white;
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #0038A5;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid white;
}

.cta-btn:hover {
  background: transparent;
  color: white;
  text-decoration: none;
}

.industry-card {
  display: none;
}

@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .industries-block {
    padding: 30px;
  }
}

@media (max-width: 968px) {
  .industries-block {
    padding: 25px;
    gap: 15px;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .products-by-industries {
    padding: 25px 0;
  }

  .products-by-industries .section-header {
    margin-bottom: 25px;
  }

  .products-by-industries .section-header h2 {
    font-size: 32px;
  }

  .industry-left {
    padding: 20px 15px;
  }

  .industry-left .industry-icon {
    font-size: 36px;
  }

  .industry-left h3 {
    font-size: 14px;
  }

  .industry-right {
    padding: 15px;
  }

  .products-list li {
    font-size: 12px;
    padding: 6px 0;
  }

  .explore-btn {
    padding: 8px 16px;
    font-size: 12px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .featured-products {
    padding: 60px 0;
  }

  .featured-header h2 {
    font-size: 32px;
  }

  .product-card img {
    height: 200px;
  }

  .product-card h4 {
    font-size: 0.9rem;
    margin: 12px 10px;
  }

  .cta-banner {
    padding: 40px 0;
    margin: 50px 0;
  }

  .cta-content h3 {
    font-size: 1.5rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

/* Responsive - Tablet */
@media (max-width: 968px) {
  .industries-container {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: auto;
  }

  .industries-list {
    max-height: none;
    order: 1;
  }

  .industry-image-column {
    min-height: 300px;
    order: 2;
  }

  .industry-item {
    margin-bottom: 15px;
  }

  .industry-item.active .industry-details {
    display: block;
    margin-top: 10px;
  }

  .accordion-header {
    padding: 18px;
    gap: 15px;
  }

  .accordion-left .industry-icon {
    width: 45px;
    height: 45px;
    font-size: 28px;
  }

  .accordion-left h3 {
    font-size: 15px;
  }

  .accordion-content {
    padding: 0 18px 18px 70px;
  }

  .products-grid-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .content-description p {
    font-size: 13px;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  .industries-container {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
  }

  .industries-list {
    max-height: none;
    order: 1;
  }

  .industry-image-column {
    min-height: 250px;
    border-width: 2px;
    order: 2;
  }

  .industry-item {
    margin-bottom: 12px;
  }

  .industry-item.active .industry-details {
    display: block;
    margin-top: 8px;
  }

  .industry-header {
    padding: 15px;
    gap: 10px;
  }

  .industry-info {
    gap: 12px;
  }

  .industry-info .industry-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .industry-info h3 {
    font-size: 14px;
  }

  .industry-details {
    padding: 15px;
  }

  .industry-details p {
    font-size: 12px;
  }

  .industry-details .products-list li {
    font-size: 12px;
  }

  .accordion-header {
    grid-template-columns: 1fr auto;
    padding: 15px;
    gap: 10px;
  }

  .accordion-left {
    gap: 12px;
  }

  .accordion-left .industry-icon {
    width: 40px;
    height: 40px;
    font-size: 24px;
  }

  .accordion-left h3 {
    font-size: 14px;
  }

  .accordion-content {
    padding: 0 15px 15px 60px;
  }

  .products-grid-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-item {
    padding: 10px;
  }

  .product-item .product-name {
    font-size: 12px;
  }

  .content-description p {
    font-size: 12px;
    line-height: 1.5;
  }

  .products-by-industries {
    padding: 20px 0;
  }

  .products-by-industries .section-header {
    margin-bottom: 20px;
  }

  .products-by-industries .section-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .products-by-industries .section-header p {
    font-size: 14px;
  }

  .view-all-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .featured-products {
    padding: 40px 0;
  }

  .featured-header h2 {
    font-size: 24px;
  }

  .featured-header p {
    font-size: 14px;
  }

  .product-tabs {
    flex-direction: column;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    padding: 12px 20px;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h4 {
    font-size: 0.85rem;
    margin: 10px 8px;
  }

  .cta-banner {
    padding: 30px 0;
    margin: 40px 0;
  }

  .cta-content h3 {
    font-size: 1.3rem;
  }

  .cta-content p {
    font-size: 0.95rem;
  }

  .cta-btn {
    padding: 10px 30px;
    font-size: 0.9rem;
  }
}

/* --- SERVICES INFO SECTION (Previously Vertical Scroller) --- */
.services-info-section {
  padding: 60px 0;
  background: #f8fafc;
}

.services-info-title {
  font-size: 1.8rem;
  color: #0038a5;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.services-info-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 50px 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-info-content h3 {
  color: #0038a5 !important;
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.services-info-content h3:first-child {
  margin-top: 0;
}

.services-info-content p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0 0 20px 0;
  text-align: justify;
}

.services-info-content ul {
  list-style: disc;
  padding-left: 40px;
  margin: 20px 0;
}

.services-info-content ul li {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 10px;
}

.read-more-btn {
  display: inline-block;
  background: #0038A5;
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 30px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.read-more-btn:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
  text-decoration: none;
}

.hidden-content {
  margin-top: 20px;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .services-info-section {
    padding: 40px 0;
  }

  .services-info-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .services-info-content {
    padding: 30px 25px;
  }

  .services-info-content h3 {
    font-size: 1.2rem;
    margin-top: 25px;
  }

  .services-info-content p {
    font-size: 0.95rem;
    text-align: left;
  }

  .read-more-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .services-info-title {
    font-size: 1.4rem;
  }

  .services-info-content {
    padding: 20px 15px;
  }

  .services-info-content h3 {
    font-size: 1.1rem;
  }

  .services-info-content p {
    font-size: 0.9rem;
  }
}
}

.scroller-wrapper {
  height: 450px;
  border-radius: 8px;
}

.scroller-content {
  padding: 20px;
}

.scroller-content h3 {
  font-size: 1.1rem;
  margin-top: 20px;
}

.scroller-content p {
  font-size: 0.9rem;
}
}

.reviews-section {
  max-width: fit-content;
  margin: 0 auto;
  padding: 25px 20px 60px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: visible;
  z-index: 1;
  transform: translateZ(0);
}

.section-header {
  text-align: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-align: center;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
  width: 100%;
  display: block;
}



/* Two-column layout */
.columns-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.left-column {
  flex: 0 0 400px;
  min-width: 350px;
  display: flex;
  flex-direction: column;
}

.right-column {
  flex: 1;
  min-width: 400px;
}

/* Rating Summary */
.rating-summary {
  background-color: white;
  padding: 40px 35px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 3px solid #0038A5;
}

.rating-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f0f0;
}

.rating-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0038A5;
  margin-bottom: 8px;
}

.rating-subtitle {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.overall-rating {
  text-align: center;
  margin-bottom: 25px;
}

.rating-value {
  font-size: 3rem;
  font-weight: 700;
  color: #0038A5;
  line-height: 1;
  margin-bottom: 12px;
}

.rating-stars {
  color: #ffc107;
  font-size: 28px;
  margin: 12px 0;
  letter-spacing: 3px;
}

.rating-stars .fa-star-half-alt {
  color: #0038A5;
}

.rating-count {
  color: #0038A5;
  font-weight: 500;
  font-size: 0.95rem;
}

.rating-source {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.rating-source i {
  color: #0038A5;
  font-size: 1rem;
}

.rating-bars {
  margin-top: 25px;
}

.rating-bar {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.stars-label {
  min-width: 110px;
  display: flex;
  gap: 2px;
  font-size: 15px;
}

.stars-label .fas {
  color: #ffc107;
}

.stars-label .far {
  color: #ddd;
}

.bar-container {
  flex-grow: 1;
  height: 10px;
  background-color: #e9ecef;
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #0038A5;
  border-radius: 5px;
  transition: width 0.5s ease;
}

.bar-percentage {
  min-width: 45px;
  font-size: 14px;
  font-weight: 600;
  color: #0038A5;
  text-align: right;
}



/* Slider Container */
.slider-container {
  position: relative;
  height: 80%;
}

.reviews-slider {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  height: 100%;
}

.reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
  height: 100%;
}

.review-card {
  flex: 0 0 100%;
  background-color: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid #e0e0e0;
  margin: 0 auto;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.review-card.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #d0d0d0;
}

.review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.reviewer-info {
  display: flex;
  align-items: center;
}

.reviewer-avatar {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid #f0f0f0;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-details h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1a1a1a;
}

.reviewer-details p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.review-stars {
  color: #ffc107;
  font-size: 20px;
  display: flex;
  gap: 3px;
}

.review-content {
  margin-bottom: 25px;
  flex-grow: 1;
}

.review-text {
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 20px;
}

.review-highlight {
  background-color: #f5f5f5;
  padding: 15px 18px;
  border-left: 4px solid #0038A5;
  margin: 15px 0;
  font-style: italic;
  color: #555;
  font-size: 0.95rem;
}

.review-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.review-date {
  font-size: 0.9rem;
  color: #999;
}

.verified-badge {
  display: flex;
  align-items: center;
  color: #28a745;
  font-size: 0.9rem;
  font-weight: 500;
  gap: 6px;
}

.verified-badge i {
  font-size: 1.1rem;
}

.platform-logo {
  font-weight: 600;
  color: #666;
  font-size: 0.85rem;
}

/* Slider Controls */
.slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  margin-bottom: 0;
  gap: 0;
  padding: 0;
}

.slider-btn {
  display: none;
}

.slider-dots {
  display: flex;
  gap: 10px;
  padding: 0;
  justify-content: center;
  align-items: center;
}

.slider-dot {
  width: 20px;
  height: 20px;
  border: 2px solid #0038A5;
  border-radius: 50%;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.slider-dot.active {
  background: #0038A5;
  width: 20px;
  height: 20px;
}

.slider-dot:hover {
  background: rgba(0, 56, 165, 0.3);
}

.bg-decoration {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 56, 165, 0.05) 0%, rgba(0, 102, 255, 0.05) 100%);
  z-index: 0;
}

.bg-decoration-1 {
  top: -100px;

}

.bg-decoration-2 {
  bottom: -100px;
  left: -100px;
}

/* Responsive styles */
@media (max-width: 992px) {
  .columns-container {
    flex-direction: column;
  }

  .left-column {
    flex: 1;
    min-width: 100%;
  }

  .right-column {
    width: 100%;
    min-width: 100%;
  }

  .review-card {
    padding: 30px 25px;
  }

  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }

  .rating-summary {
    padding: 30px 25px;
  }

  .rating-value {
    font-size: 3rem;
  }

  .rating-title {
    font-size: 1.5rem;
  }

  .stars-label {
    min-width: 100px;
    font-size: 14px;
  }

  .slider-container {
    padding: 0;
  }

  .review-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .review-stars {
    margin-top: 0;
  }

  .reviewer-avatar {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 576px) {
  .reviews-section {
    padding: 40px 15px;
  }

  .section-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .rating-title {
    font-size: 1.3rem;
  }

  .rating-value {
    font-size: 2.5rem;
  }

  .review-card {
    padding: 25px 20px;
  }

  .reviewer-details h4 {
    font-size: 1rem;
  }

  .review-text {
    font-size: 0.95rem;
  }
}


.section-new {
  color: #333;
  background-color: #f9fafc;
  display: flex;
  justify-content: center;
  width: 100%;
  /* Align items to the bottom if section is taller than content */
  align-items: flex-end;
}

.features-section {
  width: 100%;
  /* Increased height slightly to accommodate 4 columns worth of text */
  min-height: 280px;
  background: #D0E1FF;
  display: flex;
  justify-content: space-around;
  /* Distributes 4 columns evenly */

  position: relative;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.05;
  background-image: radial-gradient(#ffffff 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

.feature-column {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.feature-column:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Vertical divider lines between columns */
.feature-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.feature-icon {
  margin-bottom: 15px;
  width: 65px;
  height: 65px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  transition: all 0.3s ease;
}

.feature-heading {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-content {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 240px;
}

.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.hours,
.closed {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Responsive adjustments for Tablets & Mobile */
@media (max-width: 1024px) {
  .feature-heading {
    font-size: 1.1rem;
  }

  .feature-content {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .features-section {
    flex-direction: column;
    height: auto;
    padding: 40px 0;
  }

  .feature-column {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
  }
}

/* Section 1: Process Steps */
.process-section {
  max-width: 100%;
  margin: 0px auto 0 auto;
  padding: 60px 20px;
  background: #f5f5f5;
  border-top: none;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  display: none;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0038A5;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Process Steps Container */
.process-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.process-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0038A5;
  margin-bottom: 15px;
  text-align: center;
}

.process-subtitle {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.process-steps-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 0;
  position: relative;
  width: 100%;
  max-width: 1100px;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background-color: white;
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid #0038A5;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 15px rgba(2, 56, 165, 0.05);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 56, 165, 0.2);
  border-color: #0066FF;
}

.step-icon {
  width: 70px;
  height: 70px;
  background: #0038A5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 10px rgba(2, 56, 165, 0.2);
}

.step-content {
  display: flex;
  flex-direction: column;

  width: 100%;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0038A5;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

.step-number {
  display: inline-block;
  background-color: #EAF2FF;
  border: 2px solid;
  color: #0038A5;
  font-weight: 800;
  font-size: 0.8rem;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 25px;
  text-transform: capitalize;
  letter-spacing: 0.2px;
}

/* Arrow between steps */
.step-arrow {
  font-size: 32px;
  color: #0038A5;
  padding: 0 20px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Scroll indicator for section 1 */
.scroll-indicator {
  text-align: center;
  margin-top: 20px;
  color: #0066FF;
  font-size: 0.9rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  width: 100%;
}

.scroll-indicator:hover {
  color: #0038A5;
}

.scroll-indicator i {
  margin-top: 10px;
  font-size: 1.5rem;
  color: #0038A5;
  display: block;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Section 2: Quote Form */
.quote-section {
  max-width: 100%;
  margin: 0px auto;
  padding: 30px 20px;

  border-bottom: 3px solid #0038A5;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Quote Page: dedicated quote form section */
.quote-form-section {
  padding: 15px 10px;
  background: #f0f4ff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.quote-form-section .container {
  width: 100%;
  max-width: 800px;
  padding: 0;
}

.form-container {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 20px rgba(0, 56, 165, 0.08);
  border: 1.2px solid #2563eb;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.form-header {
  margin-bottom: 10px;
  text-align: center;
}

.form-title {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 800;
  color: #0038A5 !important;
  margin-bottom: 10px;
  padding-bottom: 5px;
  position: relative;
  letter-spacing: -0.3px;
  text-transform: none;
}

.form-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #0038A5;
  border-radius: 0;
}

.form-subtitle {
  font-size: 0.85rem;
  color: #007BFF;
  max-width: 600px;
  margin: 5px auto 10px;
  font-weight: 500;
  line-height: 1.3;
}

/* Form Layout Classes */
.form-row {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.triple-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.triple-row .form-group {
  margin-bottom: 0;
}

/* Form Elements */
.form-group {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea,
.dimension-group input,
.dimension-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
  color: #374151;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9ca3af;
  font-size: 0.92rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 15px;
  padding-right: 40px;
  cursor: pointer;
  color: #374151;
}

.form-group select option[value=""] {
  color: #9ca3af;
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Dynamic Fields Styles */
.dynamic-fields-container {
  margin: 20px 0;
  padding: 0;
  border-radius: 12px;
  background-color: #f8f9ff;
  border: 1px solid #e1e8ff;
  transition: all 0.3s ease;
}

.dynamic-fields-container:not(:empty) {
  padding: 25px;
}

.dynamic-fields {
  background-color: #ffff;
  border-radius: 12px;
  padding: 35px;
  margin: 30px 0;
  border: 1px solid rgba(0, 56, 165, 0.1);
}

.dynamic-section-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0038A5;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(0, 56, 165, 0.1);
}

.dimensions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.dimensions-row .dimension-group {
  flex: 1;
  min-width: 120px;
}

@media (max-width: 576px) {
  .dimensions-row .dimension-group {
    flex: 1 1 calc(50% - 10px);
  }
}

.dimension-group {
  display: flex;
  flex-direction: column;
}

.dimension-group label {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}

.dimension-group label .required {
  margin-right: 8px;
}

.dimension-unit {
  font-size: 0.85rem;
  color: #666;
  font-weight: normal;
  margin-left: auto;
}

.options-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.checkbox-group {
  margin-top: 10px;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0038A5;
  cursor: pointer;
}

.checkbox-item label {
  margin: 0;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
}

/* Form Footer */
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
}

.privacy-note {
  font-size: 0.82rem;
  color: #2563eb;
  max-width: 380px;
  line-height: 1.55;
}

.privacy-note strong,
.privacy-note a {
  color: #1a3a8f;
  text-decoration: none;
  font-weight: 700;
}

.privacy-note a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: #1d4ed8;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(29, 78, 216, 0.35);
  white-space: nowrap;
  letter-spacing: 0.1px;
}

.submit-btn:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, 0.45);
}

.submit-btn i {
  font-size: 0.95rem;
}

/* Animation for form elements */
.form-group input,
.form-group select,
.form-group textarea {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  /* no translateY - keep stable */
}

/* ==========================================================================
   EXACT FIGMA MATCH QUOTE FORM (qf-* classes)
   ========================================================================== */

.qf-form {
  margin-top: 10px;
}

.qf-row {
  display: flex;
  gap: 12px;
  margin-bottom: 8px;
}

.qf-triple-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.qf-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.qf-group {
  display: flex;
  flex-direction: column;
}

.qf-group.qf-full-width {
  width: 100%;
  margin-bottom: 8px;
}

.qf-group input,
.qf-group select,
.qf-group textarea {
  width: 100% !important;
  padding: 7px 12px !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
  color: #4A5568 !important;
  background-color: #FAFCFF !important;
  transition: all 0.2s ease !important;
  height: 36px !important;
}

.qf-group textarea {
  height: auto !important;
  min-height: 80px !important;
}

.qf-group input::placeholder,
.qf-group textarea::placeholder {
  color: #A0AEC0 !important;
}

.qf-group input:focus,
.qf-group select:focus,
.qf-group textarea:focus {
  border-color: #2563EB !important;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1) !important;
  outline: none !important;
  background-color: #FFF !important;
}

/* Upload Fields */
.qf-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.qf-upload-control {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 10px !important;
  background: #FFF !important;
  border: 1px solid #E2E8F0 !important;
  border-radius: 6px !important;
  cursor: pointer;
  transition: all 0.2s ease !important;
  height: 36px !important;
}

.qf-upload-control:hover {
  border-color: #2563EB !important;
}

.qf-upload-control i {
  color: #2D3748 !important;
  font-size: 1rem;
}

.qf-upload-text {
  flex: 1;
  color: #A0AEC0;
  font-size: 0.8rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qf-browse-btn {
  background: #0047FF !important;
  color: white !important;
  border: none !important;
  padding: 4px 12px !important;
  border-radius: 4px !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background 0.2s ease !important;
}

.qf-browse-btn:hover {
  background: #0036CC !important;
}

.qf-info-icon {
  color: #0047FF !important;
  font-size: 1.15rem !important;
  cursor: help;
}

/* Footer & Button */
.qf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.qf-privacy {
  max-width: 400px;
  font-size: 0.75rem;
  color: #2563EB;
  line-height: 1.4;
}

.qf-privacy a {
  color: #2563EB;
  font-weight: 700;
  text-decoration: none;
}

.qf-submit-btn {
  background: #002D96 !important;
  color: white !important;
  border: none !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 4px 10px rgba(0, 45, 150, 0.15) !important;
}

.qf-submit-btn:hover {
  background: #001F6B !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 45, 150, 0.3) !important;
}

/* Responsive */
@media (max-width: 768px) {

  .qf-triple-row,
  .qf-dual-row {
    grid-template-columns: 1fr;
  }

  .qf-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .qf-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Error states for validation (placeholder) */
.qf-group.has-error input {
  border-color: #E53E3E !important;
}

/* End EXACT FIGMA MATCH */

/* Error message styling */
.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  font-weight: 500;
}

.form-group input:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.form-group input:valid:not(:placeholder-shown) {
  border-color: #28a745;
}

.form-group input.error {
  border-color: #dc3545;
  background-color: #fff5f5;
}

.form-group input.error+.error-message {
  display: block;
}

/* Responsive styles */
@media (max-width: 1200px) {

  .process-section,
  .quote-section {
    margin: 30px 20px;
  }
}

@media (max-width: 992px) {
  .process-steps-container {
    flex-wrap: wrap;
    gap: 20px;
  }

  .process-step {
    min-width: 220px;
    max-width: 280px;
    margin-bottom: 0;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 10px 0;
    margin: 5px 0;
  }

  /* NOTE: .triple-row and .form-row intentionally NOT stacked here */
  /* They stack only at 600px - see below */

  .dimensions-row,
  .options-row {
    grid-template-columns: 1fr;
  }

  .form-title {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 1.5rem;
  }
}

/* Stack form rows only on mobile */
@media (max-width: 600px) {

  .triple-row,
  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .triple-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .process-section,
  .quote-section {
    padding: 40px 20px;
    margin: 20px 10px;
    min-height: auto;
    border-radius: 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .form-container {
    padding: 30px 20px;
  }

  .process-step {
    padding: 30px 20px;
    min-width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }

  .step-arrow {
    display: none;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .submit-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 30px;
  }

  .dynamic-fields {
    padding: 20px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .section-subtitle,
  .form-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }

  .process-title,
  .form-title {
    font-size: 1.4rem;
  }

  .form-container {
    padding: 25px 15px;
  }

  .section-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .dynamic-section-title {
    font-size: 1.1rem;
  }

  .checkbox-row {
    flex-direction: column;
    gap: 10px;
  }

  .scroll-indicator {
    font-size: 0.8rem;
    margin-top: 30px;
  }

  .scroll-indicator i {
    font-size: 1.3rem;
  }
}

/* Additional responsive tweaks for very small screens */
@media (max-width: 400px) {
  .process-step {
    padding: 15px 10px;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  input,
  select,
  textarea {
    padding: 14px;
    font-size: 0.95rem;
  }

  .submit-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Print styles */
@media print {

  .process-section,
  .quote-section {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .submit-btn {
    background: #0038A5 !important;
    color: white !important;
    box-shadow: none !important;
  }
}

/* Professional Upload Fields Styling (Matching Design) */
.upload-field-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.upload-control {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  position: relative;
  min-width: 0;
}

.upload-control:hover {
  border-color: #2563eb;
  background-color: #f8faff;
}

.upload-control i:first-child {
  color: #374151;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.upload-text {
  flex: 1;
  color: #9ca3af;
  font-size: 0.9rem;
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browse-btn {
  background: #1d4ed8;
  color: white;
  border: none;
  padding: 7px 16px;
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.browse-btn:hover {
  background: #1e40af;
}

.info-icon {
  color: #1d4ed8;
  font-size: 1.1rem;
  cursor: help;
  opacity: 0.85;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.info-icon:hover {
  opacity: 1;
}

.file-input {
  display: none;
}

.field-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2c3e50;
  display: flex;
  align-items: center;
  gap: 6px;
}

.field-title i {
  font-size: 16px;
}

.upload-field.dragover {
  background-color: #e8f4ff;
  border-color: #3498db;
  border-style: dashed;
}

/* For demonstration only */
.demo-form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}



@media (max-width: 768px) {
  .dual-upload-container {
    flex-direction: column;
    gap: 15px;
  }
}

/* Blog Section - Compact Design */
.blog-section {
  padding: 40px 0px 60px;
  background: white;
  position: relative;
  overflow: visible;
}

/* Section Header - Centered Layout */
.blog-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 50px;
  gap: 10px;
}

.blog-section .header-left {
  width: 100%;
}

.blog-section .section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0038A5;
  margin: 0 0 10px 0;
  line-height: 1.2;
}

.blog-section .subtitle-container {
  display: block;
  border-left: none;
  line-height: normal;
}

.blog-section .section-subtitle {
  font-size: 1.1rem;
  color: #000;
  margin: 0;
  padding-left: 0;
  max-width: 700px;
  margin: 0 auto;
}

.blog-section .view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 40px;
  color: #0038A5;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid #0038A5;
  border-radius: 6px;
  background: white;
}

.blog-section .view-all-button:hover {
  background: #0038A5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 56, 165, 0.2);
}

.blog-view-all-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  width: 100%;
}

/* Blog Carousel Container */
.blog-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  /* Remove overflow: hidden from here if we want dots visible, but we need it for the track */
  /* Actually, we should keep overflow: hidden on the track but not necessarily the container? No, track needs to slide inside something. */
  padding-bottom: 40px;
}

/* We need a wrapper specifically for the sliding part to keep overflow: hidden away from the dots */
.blog-carousel-track-viewport {
  overflow: visible;
  width: 100%;
}

/* Carousel Track */
.blog-carousel-track {
  display: flex;
  gap: 30px;
  padding: 10px 0;
  width: 100%;
}

/* Blog Card Base - Clean Design */
.blog-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: calc((100% - 60px) / 3);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: auto;
  display: flex;
  flex-direction: column;
  border: none;
  background: transparent;
  padding: 0;
  position: relative;
}

.blog-card .blog-image {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.blog-card:hover {
  /* Removed hover effects */
}

/* Hide cards after the first 3 */
/* .blog-card:nth-child(n+4) {
  display: none;
} */



.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-card-link:hover {
  text-decoration: none;
}

/* Blog Image */
.blog-image {
  height: 280px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 8px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
  display: block;
}

.blog-card:hover .blog-image img {
  /* Removed hover zoom */
}



/* Blog Content */
.blog-content {
  padding: 22px 20px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0 0 14px 14px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #666;
}

.blog-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta-right {
  color: #666;
  font-size: 0.85rem;
}

.blog-author {
  font-weight: 500;
  color: #111;
}

.blog-separator {
  color: #ccc;
  margin: 0 2px;
}

.blog-author a:hover {
  color: #0038A5;
  text-decoration: underline !important;
}

.blog-card-main-link::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.blog-date {
  color: #999;
}

.blog-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 10px 0;
  line-height: 1.45;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-title {
  /* Removed title color change */
}

.blog-excerpt {
  color: #666;
  line-height: 1.65;
  font-size: 0.93rem;
  margin: 0;
  flex-grow: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* Carousel Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 30px 0 0 0;
  /* Only top margin, bottom handled by button wrapper */
}

/* Dot buttons */
.carousel-dots .dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #0038A5;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dots .dot:hover {
  border-color: #0066FF;
  transform: scale(1.1);
}

.carousel-dots .dot.active {
  background: #0038A5;
  border-color: #0038A5;
}

.carousel-dots .dot.active:hover {
  background: #0066FF;
  border-color: #0066FF;
}

/* Next Arrow positioned on 3rd card */
.blog-next-arrow {
  position: absolute;
  top: 30%;
  right: 0px;
  /* Positioned near the right edge of the 3rd card */
  transform: translateY(-100%);
  /* Adjust height as needed */
  width: 50px;
  height: 50px;
  background: #0038A5;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 56, 165, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-next-arrow:hover {
  background: #0066FF;
  transform: translateY(-100%) scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.5);
}

.blog-next-arrow:active {
  transform: translateY(-100%) scale(0.9);
}

.blog-next-arrow.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Prev Arrow */
.blog-prev-arrow {
  position: absolute;
  top: 30%;
  left: 0px;
  transform: translateY(-100%);
  width: 50px;
  height: 50px;
  background: #0038A5;
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 56, 165, 0.4);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.blog-prev-arrow:hover {
  background: #0066FF;
  transform: translateY(-100%) scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.5);
}

.blog-prev-arrow:active {
  transform: translateY(-100%) scale(0.9);
}

.blog-prev-arrow.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .blog-next-arrow {
    right: 15px;
    width: 45px;
    height: 45px;
  }

  .blog-prev-arrow {
    left: 15px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 768px) {
  .blog-next-arrow {
    display: none;
    /* Hide on mobile if preferred, or reposition */
  }

  .blog-prev-arrow {
    display: none;
  }
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #0038A5;
  transform: scale(1.3);
}

.carousel-dot:hover:not(.active) {
  background: #aaa;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-carousel-container {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .blog-carousel-container {
    padding: 0 20px;
    overflow: hidden;
  }

  .blog-carousel-track {
    flex-direction: row;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-right: 20px;
  }

  .blog-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .blog-card {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    height: auto;
    min-height: auto;
    scroll-snap-align: start;
  }

  .blog-image {
    height: 200px;
  }

  .blog-content {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .blog-carousel-container {
    padding: 0 15px;
  }

  .blog-carousel-track {
    gap: 15px;
    padding-right: 15px;
  }

  .blog-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .blog-image {
    height: 180px;
  }

  .blog-content {
    padding: 14px;
  }

  .blog-title {
    font-size: 1rem;
  }

  .blog-excerpt {
    font-size: 0.85rem;
  }
}

/* Animation for blog cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.blog-card {
  animation: fadeInUp 0.5s ease forwards;
}

.blog-card:nth-child(2) {
  animation-delay: 0.1s;
}

.blog-card:nth-child(3) {
  animation-delay: 0.2s;
}

/* FAQ's Section */

.faq-section {
  max-width: 100%;
  width: 100%;
  background-color: white;

  box-shadow: 0 15px 40px rgba(0, 56, 165, 0.1);
  overflow: hidden;
  line-height: 1.6;

}

.faq-section-header {
  text-align: center;
  padding: 20px 40px 20px 40px;
  background-color: #E9E9FD;

  border-top: 3px solid #0038A5;


}



.faq-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0038A5;
}

.faq-section-subtitle {
  font-size: 1.1rem;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
}

/* Two-column layout */
.faq-container {
  display: flex;
  padding: 20px 40px;
  gap: 30px;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item Styles */
.faq-item {
  border: 2px solid #E9E9FD;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #0038A5;
  box-shadow: 0 5px 15px rgba(0, 56, 165, 0.1);
}

.faq-question {
  width: 100%;
  background-color: #f8f9ff;
  border: none;
  padding: 30px 25px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0038A5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: #eef2ff;
}

.faq-item.active .faq-question {

  color: #000000;
}


.question-text {
  flex: 1;
}

.faq-icon {
  font-size: 1rem;
  color: #0038A5;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.faq-item.active .faq-icon {
  color: #000;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  padding-top: 20px;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: white;

}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 25px 25px;
  color: black;
  line-height: 1.7;
  font-size: 0.8rem;
}

.faq-answer-content p {
  margin-bottom: 15px;
}

.faq-answer-content p:last-child {
  margin-bottom: 0;
}

.faq-highlight {
  background-color: rgba(0, 56, 165, 0.05);
  padding: 12px 15px;
  border-left: 3px solid #0038A5;
  margin: 10px 0;
  border-radius: 0 5px 5px 0;
}

/* Contact CTA */
.faq-cta {
  text-align: center;
  padding: 40px;
  background-color: #D0E1FF;


  margin-top: 20px;
}

.faq-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0038A5;
  margin-bottom: 15px;
}

.faq-cta-text {
  font-size: 1rem;
  color: #000;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.faq-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 56, 165, 0.2);
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 992px) {
  .faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .faq-column {
    width: 100%;
  }

  .faq-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {


  .faq-section {
    border-radius: 15px;
  }

  .faq-section-header {
    padding: 40px 20px 30px;
  }

  .faq-container {
    padding: 30px 20px;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .answer-content {
    padding: 0 20px 20px;
  }

  .faq-cta {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .faq-section-title {
    font-size: 1.6rem;
  }

  .faq-section-badge {
    font-size: 12px;
    padding: 6px 15px;
  }

  .faq-number {
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

/* --- RESPONSIVE FOR FEATURES & FOOTER --- */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .feature-item {
    border-right: 1px solid rgba(0, 56, 165, 0.15);
    border-bottom: 1px solid rgba(0, 56, 165, 0.15);
  }

  .feature-item:nth-child(2n) {
    border-right: none;
  }

  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    border-bottom: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .features-section {
    padding: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 56, 165, 0.15);
    padding: 35px 25px;
  }

  .feature-item:last-child {
    border-bottom: none;
  }

  .newsletter-section {
    padding: 30px 20px;
  }

  .newsletter-content {
    padding: 0;
    flex-direction: column;
    gap: 25px;
  }

  .newsletter-left h2 {
    font-size: 1.3rem;
  }

  .newsletter-right {
    max-width: 100%;
  }

  .newsletter-form {
    flex-direction: row;
  }

  .newsletter-form input {
    border-right: none;
    border-radius: 4px 0 0 4px;
  }

  .subscribe-btn {
    padding: 12px 25px;
    border-radius: 0 4px 4px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    order: 2;
  }

  .social-icons {
    order: 3;
  }
}

@media (max-width: 480px) {
  .newsletter-left h2 {
    font-size: 1.2rem;
  }

  .newsletter-left p {
    font-size: 0.9rem;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-column p,
  .footer-column ul li a {
    font-size: 0.85rem;
  }
}


/* --- PAGE BANNER --- */
.page-banner {
  background: #D0E1FF;
  padding: 40px 0;
  color: white;
}

.page-banner .container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #0038A5;
}

.breadcrumb i {
  font-size: 0.7rem;
  color: #000000;
}

.breadcrumb span {
  color: #000000 !important;
  font-weight: 500;
}

.page-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 70px;
  color: #0038A5;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .page-banner {
    padding: 30px 0;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .page-banner {
    padding: 25px 0;
  }

  .page-banner h1 {
    font-size: 1.75rem;
  }
}


/* --- CONTACT SECTION --- */
.contact-section {
  padding: 40px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Contact Form */
.contact-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid #0038A5;
}

.contact-form-wrapper h2 {
  font-size: 2rem;
  color: #0038A5;
  margin-bottom: 15px;
}

.form-description {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0038A5;
}

.contact-form textarea {
  resize: vertical;
  font-family: inherit;
}

.submit-btn {
  background: #0038A5;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background: #0066FF;
}

/* Contact Info Card */
.contact-info-card {
  background: #0038A5;
  color: white !important;
  padding: 40px 30px;
  border-radius: 12px;

}

.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #ffffff !important;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon i {
  font-size: 1.3rem;
  color: #0038A5;
}

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.info-content p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}

.info-content .fax {
  margin-top: 5px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-info-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.75rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .contact-info-card h3 {
    font-size: 1.3rem;
  }

  .info-item {
    gap: 15px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
  }

  .info-icon i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 30px 0;
  }

  .contact-form-wrapper {
    padding: 25px 15px;
  }

  .contact-form-wrapper h2 {
    font-size: 1.5rem;
  }

  .form-description {
    font-size: 0.9rem;
  }

  .submit-btn {
    width: 100%;
    padding: 14px 30px;
  }
}


/* --- MAP & APPOINTMENT SECTION --- */
.map-appointment-section {
  padding: 50px 0;
  background: white;
}

.map-appointment-grid {
  display: grid;
  grid-template-columns: 1fr 450px;
  gap: 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.map-wrapper iframe {
  display: block;
  height: 100% !important;
}

/* Appointment Card */
.appointment-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  border: 2px solid #0038A5;
}

.appointment-card h2 {
  font-size: 1.75rem;
  color: #0038A5;
  margin-bottom: 25px;
  line-height: 1.3;
}

.appointment-form .form-group {
  margin-bottom: 20px;
}

.appointment-form label {
  display: block;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.appointment-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.appointment-form input:focus {
  outline: none;
  border-color: #0038A5;
}

.appointment-form input[type="date"] {
  cursor: pointer;
}

.appointment-btn {
  width: 100%;
  background: #0038A5;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.appointment-btn:hover {
  background: #0066FF;
}

.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 968px) {
  .map-appointment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .appointment-card {
    order: -1;
  }
}

@media (max-width: 768px) {
  .map-appointment-section {
    padding: 60px 0;
  }

  .map-wrapper iframe {
    height: 350px;
  }

  .appointment-card {
    padding: 30px 20px;
  }

  .appointment-card h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .map-appointment-section {
    padding: 40px 0;
  }

  .map-wrapper iframe {
    height: 300px;
  }

  .appointment-card {
    padding: 25px 15px;
  }

  .appointment-card h2 {
    font-size: 1.3rem;
  }
}

.category-section-new {
  color: #333;
  background-color: #f9fafc;
  display: inline-block;
  justify-content: center;
  width: 100%;
  /* Align items to the bottom if section is taller than content */
  align-items: flex-end;
}

.category-features-section {
  width: 100%;

  background: #D0E1FF;
  display: flex;
  justify-content: space-around;
  /* Distributes 4 columns evenly */

  position: relative;
  overflow: hidden;
}


.category-feature-column {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;

  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.category-feature-column:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Vertical divider lines between columns */
.category-feature-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.category-feature-icon {
  margin-right: 6px;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  transition: all 0.3s ease;
}

.category-feature-content {
  font-size: 0.95rem;
  font-weight: bolder;
  line-height: 1.4;
  opacity: 0.9;
  max-width: 240px;
}

/* Responsive adjustments for Tablets & Mobile */
@media (max-width: 1024px) {

  .category-feature-content {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .category-features-section {
    flex-direction: column;
    height: auto;
    padding: 40px 0;
  }

  .category-feature-column {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
  }
}

/* =====================
   Global Variables
===================== */
:root {
  --brand: #0038a5;
  --accent: #0066FF;
  --radius: 8px;
  --text-main: #222;
  --text-muted: #777;
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, .15);
}

/* Layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Container definition is at the top of the file - removed duplicate */

/* =====================
   Category Hero
===================== */
.category-hero {

  padding: 30px 0 30px;
  color: white;
}

.breadcrumb {
  display: flex;
  gap: 10px;

  margin-bottom: 15px;
  font-size: 14px;
}

.breadcrumb a {
  color: #000;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.breadcrumb i {
  color: #000;
  padding-right: 10px;
}

.hero-flex {
  display: flex;
  gap: 60px;
  align-items: center;
}

.hero-left {
  padding: 20px 20px;
}

.hero-right {
  padding: 20px 20px 80px 20px;
}

.hero-content {
  flex: 1.2;
}

.hero-visual {
  flex: 0.8;
  position: relative;
}


.hero-content h1 {
  padding: 0 20px;
  font-size: 2rem;
  line-height: 1.1;
  color: #0038A5 !important;
}

.text-accent {
  color: #0038A5;
  font-size: 2rem;
}

.hero-description {
  padding: 0 20px;
  max-width: 600px;
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 40px;
  color: #000000 !important;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  padding: 0 20px;
}

.hero-trust-bar {
  display: flex;
  gap: 80px;
  border-top: 4px solid #0038A5;
  color: #000;
  padding: 20px 20px;
}

.trust-item i {
  color: #0038A5;
  padding-right: 10px;
}

/* Visual */
.visual-container img {
  width: 100%;

}

.floating-spec {
  position: absolute;
  bottom: 20%;
  right: -10px;
  background: white;
  color: var(--text-main);
  padding: 15px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.spec-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.spec-value {
  font-weight: 700;
  color: var(--brand);
}

/* Responsive */
@media (max-width: 992px) {
  .hero-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-actions,
  .hero-trust-bar {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* =====================
   Category Features Section
===================== */
.cate-features-section {
  background: white;

}

.cate-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 20px;

}

.cate-feature-item {
  text-align: center;
  padding: 19px 20px;
  border: 2px solid #0066ff;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.cate-feature-item:hover {
  background: #0038A5;
  box-shadow: 0 10px 30px rgba(2, 56, 165, 0.1);
}

.cate-feature-icon {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cate-feature-icon i {
  font-size: 2rem;
  color: #0038A5;
  transition: color 0.3s ease;
}

.cate-feature-icon img {
  width: 35px;
  height: 35px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

.cate-feature-item:hover .cate-feature-icon i {
  color: white;
}

.cate-feature-item:hover .cate-feature-icon img {
  filter: brightness(0) invert(1);
}

.cate-feature-title {
  font-size: 1rem;
  color: #0038A5;
  margin-bottom: 5px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cate-feature-item:hover .cate-feature-title {
  color: white;
}

.cate-feature-value {
  font-size: 1rem;
  color: #0066ff;
  font-weight: 600;
  transition: color 0.3s ease;
}

.cate-feature-item:hover .cate-feature-value {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .cate-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cate-feature-item {
    padding: 25px 15px;
  }
}


/* =====================
   Featured Products Section - Enhanced
===================== */
.featured-products-section {
  background: white;
  padding: 40px 0 60px;
  width: 100%;
}

/* Enhanced Header */
.featured-header-enhanced {
  background: #0038A5;
  color: white;
  border-radius: 12px;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(2, 56, 165, 0.2);
}

.header-left {
  flex: 1;
}

.header-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  margin-bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.featured-header-enhanced h2 {
  font-size: 2.2rem;
  margin: 0 0 10px 0;
  color: white !important;
  font-weight: 800;
}

.featured-header-enhanced h3 {
  font-size: 1.1rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  line-height: 1.5;
}

.order-now-btn {
  background: #FFD700;
  color: #0038A5;

  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-block;
}

.order-now-btn:hover {
  background: #fff;
  color: #0038A5;
  border-color: white;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
}

/* Enhanced Filter Controls */
.filter-controls-enhanced {
  background: white;

  border-radius: 12px;
  padding: 25px 30px;
  margin-bottom: 30px;

}

.filter-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0038A5;
  margin: 0 0 20px 0;
}

.filter-row {
  display: flex;
  gap: 40px;
  align-items: center;
}

.filter-row:last-child {
  margin-bottom: 0;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.tab-filter-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-label {
  font-weight: 600;
  color: #0038A5;
  font-size: 1rem;
  white-space: nowrap;
}

.filter-select {
  padding: 12px 40px 12px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  font-family: inherit;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  min-width: 220px;
  transition: all 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230038A5' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.filter-select:hover {
  border-color: #cbd5e0;
  background-color: #f8f9fa;
}

.filter-select:focus {
  outline: none;
  border-color: #0038A5;
  box-shadow: 0 0 0 3px rgba(2, 56, 165, 0.1);
}



/* Products Container */
.products-container {
  display: flex;
  gap: 30px;
  padding: 0 50px;
}

/* Main Products Grid (8 products) */
.main-products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Small Product Card */
.product-card-small {
  background: transparent;
  border-radius: 0;
  overflow: visible;
  border: none;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-card-small:hover {
  transform: translateY(-8px);

}

.product-link {
  text-decoration: none;
  text-align: center;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-link:hover {
  text-decoration: none;
  color: inherit;
}

.product-image-small {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  overflow: hidden;

  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(165, 196, 251, 0.3);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-image-small img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.product-card-small:hover .product-image-small {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 56, 165, 0.25);
}

.product-card-small:hover .product-image-small img {
  transform: scale(1.1);
}

.customize-overlay-small {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.product-card-small:hover .customize-overlay-small {
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
}

.customize-btn-small {
  background: white;
  color: #0038A5;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(10px);
  opacity: 0;
}

.product-card-small:hover .customize-btn-small {
  transform: translateY(0);
  opacity: 1;
}

.customize-btn-small:hover {
  background: #0038A5;
  color: white;
}

.product-info-small {
  padding: 8px 0 0 0;
  background: transparent;
  border-radius: 0;
  flex-grow: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-title-small {
  font-size: 1.15rem;
  color: #000;
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  transition: color 0.3s ease;
}

.product-card-small:hover .product-title-small {
  color: #0038A5;
}

.product-meta-small {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}




/* Responsive Design */
@media (max-width: 1200px) {
  .main-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .featured-header-enhanced {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 25px 30px;
  }

  .header-left {
    text-align: center;
  }

  .products-container {
    flex-direction: column;
  }



  .main-products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .filter-row {
    flex-direction: column;
    gap: 15px;
  }

  .filter-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .filter-select {
    width: 100%;
  }

  .tab-filter-item {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .category-tabs {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .featured-header-enhanced h2 {
    font-size: 1.8rem;
  }

  .featured-header-enhanced h3 {
    font-size: 1rem;
  }

  .main-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-tabs {
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0;
  }

  .category-tab {
    width: 100%;
    text-align: center;
  }

  .product-image-small {
    padding: 10px;
    box-shadow: 0 4px 10px rgba(165, 196, 251, 0.2);
  }

  .product-title-small {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .featured-header-enhanced {
    padding: 20px;
  }

  .order-now-btn {
    width: 100%;
    text-align: center;
  }

  .main-products-grid {
    grid-template-columns: 1fr;
  }

  .product-image-small {
    height: 180px;
  }
}

/* =====================
   Featuring Section
===================== */
.featuring-section {
  padding: 60px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* Top and Bottom Gradient Borders */
.featuring-section::before,
.featuring-section::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 5px;

  z-index: 1;
}

.featuring-section::before {
  top: 0;
}

.featuring-section::after {
  bottom: 0;
}

/* Header */
.featuring-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  padding: 0 20px;
}

.featuring-header h2 {
  font-size: 1.5rem;
  color: #0038A5;
  margin-bottom: 15px;
  font-weight: 800;
  position: relative;
  display: inline-block;
}

.featuring-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: #0066FF;
  border-radius: 2px;
}

/* Featuring Grid */
.featuring-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.featuring-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 80px;
  min-height: 300px;
  position: relative;
  padding: 5px;
  border-radius: 5%;
  transition: all 0.4s ease;

}

/* Enhanced Hover Effect for Entire Row */
.featuring-row:hover {
  border-color: #0038A5;


  transform: translateY(-5px);
}

/* Remove text movement on hover */
.featuring-text {
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.4s ease;
}

/* Featuring row hover doesn't affect text position */
.featuring-row:hover .featuring-text {
  transform: none;
}

.featuring-text h3 {
  font-size: 1.8rem;
  color: #0038A5;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.3s ease;
}



.featuring-text p {
  text-align: justify;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #000000;
  margin: 0;
  transition: color 0.3s ease;
}

.featuring-row:last-child {
  margin-bottom: 0;
}

/* Featuring Image */
.featuring-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  z-index: 2;
}

.featuring-image-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  background: #f8fafc;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 1.5px solid #0038A5;
}


.featuring-image img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.featuring-row:hover .featuring-image-container img {
  transform: scale(1.1);
}

/* Add decorative border to images */
.featuring-image-container::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: #f1f1f1;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.featuring-row:hover .featuring-image-container::before {
  opacity: 1;
}

/* Create overlap effect for top border */
.featuring-row::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  height: 10px;
  background: #ffffff;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.featuring-row:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .featuring-row {
    gap: 40px;
  }

  .featuring-image-container {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 992px) {
  .featuring-header h2 {
    font-size: 2.2rem;
  }

  .featuring-text h3 {
    font-size: 1.6rem;
  }

  .featuring-image-container {
    width: 280px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .featuring-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: center;
    padding: 20px;
    min-height: auto;
  }

  .featuring-text {
    padding: 20px 10px;
    order: 2;
  }

  .featuring-image {
    order: 1;
  }

  .featuring-header {
    margin-bottom: 40px;
  }

  .featuring-header h2 {
    font-size: 2rem;
  }

  .featuring-image-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  /* Disable hover effects on mobile for better touch experience */
  .featuring-row:hover {
    transform: none;
    border-color: transparent;
    background: transparent;
    box-shadow: none;
  }

  .featuring-row:hover .featuring-image-container {
    transform: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  .featuring-row:hover .featuring-image-container img {
    transform: none;
  }

  .featuring-row:hover .featuring-text h3 {
    color: #0038A5;
  }

  .featuring-row:hover .featuring-text p {
    color: #000000;
  }
}

@media (max-width: 480px) {
  .featuring-section {
    padding: 40px 0;
  }

  .featuring-header h2 {
    font-size: 1.8rem;
  }

  .featuring-text h3 {
    font-size: 1.4rem;
  }

  .featuring-text p {
    font-size: 1rem;
  }

  .featuring-image-container {
    width: 250px;
    height: 250px;
  }

  .featuring-row {
    margin-bottom: 50px;
  }
}

/* Animation Classes */
.featuring-row {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.featuring-row.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.featuring-row:nth-child(1) {
  transition-delay: 0.1s;
}

.featuring-row:nth-child(2) {
  transition-delay: 0.3s;
}

.featuring-row:nth-child(3) {
  transition-delay: 0.5s;
}

/* Touch-friendly interaction for mobile */
@media (hover: none) and (pointer: coarse) {
  .featuring-row {
    padding: 20px;
    border: 2px solid #f0f0f0;
    background: #f8fafc;
  }

  .featuring-image-container {
    transition: transform 0.3s ease;
  }

  .featuring-image-container:active {
    transform: scale(0.98);
  }
}

/* =====================
   Quote & Trust Section
===================== */
.pouches-quote-trust-section {
  padding: 40px 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Container */
.pouches-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Two Column Grid - 60% / 40% */
.pouches-quote-trust-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 20px;
  align-items: start;
}

/* Quote Column */
.pouches-quote-column {
  background: transparent;
  border-radius: 0;
  padding: 0;
}

/* Form Styles */
.pouches-form-container {
  width: 100%;
  background: white;
  border: 3px solid #0038A5;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(2, 56, 165, 0.08);
}

.pouches-form-header {
  text-align: center;
  margin-bottom: 25px;
}

.pouches-form-title {
  font-size: 2rem;
  color: #0038A5;
  margin-bottom: 8px;
  font-weight: 800;
}

.pouches-form-subtitle {
  color: #4a5568;
  font-size: 1rem;
  line-height: 1.5;
}

/* Form Layout */
#quoteForm,
#pouchQuoteForm {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.pouches-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.pouches-form-row.triple-row {
  grid-template-columns: 1fr 1fr 1fr;
}

@media (max-width: 991px) {
  .pouches-form-row.triple-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .pouches-form-row.triple-row {
    grid-template-columns: 1fr;
  }
}

.pouches-form-group {
  display: flex;
  flex-direction: column;
}

.pouches-form-group.full-width {
  grid-column: 1 / -1;
}

/* Form Inputs */
.pouches-form-group input,
.pouches-form-group select,
.pouches-form-group textarea {
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  box-sizing: border-box;
  color: #4a5568;
}

.pouches-form-group input::placeholder,
.pouches-form-group textarea::placeholder {
  color: #a0aec0;
}

.pouches-form-group input:focus,
.pouches-form-group select:focus,
.pouches-form-group textarea:focus {
  outline: none;
  border-color: #0038A5;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.pouches-form-group textarea {
  resize: vertical;
  min-height: 90px;
  font-family: inherit;
}

/* Upload Section */
.pouches-form-group.pouches-upload-group {
  position: relative;
}

.pouches-upload-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 52px;
  gap: 15px;
  max-width: 100%;
  overflow: hidden;
}

.pouches-upload-field:hover {
  border-color: #0038A5;
  box-shadow: 0 2px 8px rgba(2, 56, 165, 0.1);
}

.pouches-upload-text {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: normal;
  line-height: 1.2;
  flex: 1;
}

.pouches-browse-btn {
  background: #0038A5;
  color: white;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.pouches-browse-btn:hover {
  background: #01297a;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(2, 56, 165, 0.3);
}

.pouches-file-input {
  display: none;
}


/* Info Icon & Tooltip */
.pouches-info-icon {
  position: relative;
  cursor: help;
  color: #94a3b8;
}

.pouches-info-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pouches-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 100;
  min-width: 200px;
}

.pouches-tooltip-title {
  font-weight: 600;
  color: #0038A5;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.pouches-tooltip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
}

.pouches-tooltip-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #475569;
  margin-bottom: 4px;
}

.pouches-tooltip-list li i {
  color: #10b981;
  font-size: 0.75rem;
}

/* Form Footer */
.pouches-form-footer {
  margin-top: 5px;
  text-align: center;
}

.pouches-privacy-note {
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.5;
}

.pouches-submit-btn {
  background: #0038A5;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 280px;
}

.pouches-submit-btn:hover {
  background: #01297a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(2, 56, 165, 0.3);
}

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

/* Trust Column */
.pouches-trust-column {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(2, 56, 165, 0.08);
}

.pouches-trust-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* Main Badges - Same Row */
.pouches-main-badges-row {
  display: flex;
  gap: 15px;
}

.pouches-main-badge {
  flex: 1;
  background: #f8fafc;
  border-radius: 12px;
  padding: 20px 15px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  text-align: center;
}

.pouches-main-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(2, 56, 165, 0.15);
  border-color: #0038A5;
}

.pouches-badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.pouches-badge-icon {
  width: 110px;
  height: 45px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
}

.pouches-badge-info {
  width: 100%;
}

.pouches-badge-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.pouches-stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.pouches-rating {
  font-weight: 700;
  color: #0038A5;
  font-size: 1rem;
}

.pouches-badge-title {
  font-weight: 600;
  color: #1e293b;
  font-size: 0.85rem;
}

/* Trust Heading */
.pouches-trust-heading {
  text-align: center;
  padding: 0px 0;
}

.pouches-trust-heading h2 {
  font-size: 1.3rem;
  color: #0038A5;
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
}

/* Client Logos Grid (2x2 Static Grid) */
.pouches-logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0px 0;
  width: 100%;
}

.pouches-client-logo-box {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  height: 100px;
  min-height: 100px;
}

.pouches-client-logo-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(2, 56, 165, 0.15);
  border-color: #0038A5;
}

.pouches-client-logo-box img {
  max-width: 100px;
  max-height: 50px;
  object-fit: contain;
  width: auto;
  height: auto;
}

/* Trust Stats */
/* Trust Stats */
.pouches-trust-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 25px 20px;
  border: 2px solid #e2e8f0;
}

.pouches-stat-item {
  text-align: center;
}

.pouches-stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0038A5;
  margin-bottom: 5px;
}

.pouches-stat-label {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.3;
  font-weight: 500;
}

/* Divider Line */
.pouches-divider-line {
  width: 100%;
  height: 3px;
  background: #0038A5;
  margin: 25px 0 20px 0;
  border-radius: 2px;
}

/* Additional Features Row */
.pouches-features-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
}

.pouches-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #1f2937;
  font-weight: 500;
}

.pouches-feature-item i {
  font-size: 1.2rem;
  color: #0038A5;
}

.pouches-feature-item span {
  white-space: nowrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .pouches-quote-trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    display: flex;
    flex-direction: column;
  }

  .pouches-trust-column {
    padding: 25px;
    order: 2;
    display: block;
    visibility: visible;
  }

  .pouches-quote-column {
    order: 1;
  }

  .pouches-form-container {
    padding: 30px 25px;
  }

  .pouches-form-title {
    font-size: 1.8rem;
  }

  .pouches-main-badges-row {
    flex-direction: row;
    gap: 15px;
  }

  .pouches-trust-heading {
    border-top: 2px solid #e2e8f0;
    padding-top: 25px;
    margin-top: 20px;
  }

  .pouches-trust-heading h2 {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .pouches-trust-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 22px 18px;
  }

  .pouches-stat-number {
    font-size: 1.7rem;
  }

  .pouches-stat-label {
    font-size: 0.78rem;
  }

  .pouches-divider-line {
    margin: 20px 0 15px 0;
    height: 2px;
  }

  .pouches-features-row {
    gap: 30px;
    padding: 12px 0;
  }

  .pouches-feature-item {
    font-size: 0.9rem;
    gap: 8px;
  }

  .pouches-feature-item i {
    font-size: 1.1rem;
  }

  .pouches-logos-grid {
    gap: 15px;
    padding: 15px 0;
  }

  .pouches-client-logo-box {
    height: 90px;
    min-height: 90px;
    padding: 15px;
  }

  .pouches-client-logo-box img {
    max-width: 90px;
    max-height: 45px;
  }

  /* Hero section */
  .category-hero {
    padding: 40px 0;
  }

  .hero-flex {
    flex-direction: column;
    gap: 30px;
  }

  /* Features section */
  .cate-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Products grid */
  .main-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .products-container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {

  /* Quote trust grid - form pehle, trust neeche */
  .pouches-quote-trust-grid {
    display: flex;
    flex-direction: column;
  }

  .pouches-quote-column {
    order: 1;
  }

  .pouches-trust-column {
    order: 2;
    display: block;
    visibility: visible;
    padding: 20px;
  }

  .pouches-main-badges-row {
    flex-direction: row;
    gap: 12px;
  }

  .pouches-trust-heading {
    border-top: 2px solid #e2e8f0;
    padding-top: 20px;
    margin-top: 15px;
  }

  /* Form responsive */
  .pouches-form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pouches-form-row.triple-row {
    grid-template-columns: 1fr;
  }

  .pouches-form-container {
    padding: 25px 20px;
    border-width: 2px;
  }

  .pouches-form-title {
    font-size: 1.5rem;
  }

  .pouches-form-subtitle {
    font-size: 0.9rem;
  }

  /* Trust section */
  .pouches-trust-column {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border-radius: 16px;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(2, 56, 165, 0.08);
    height: auto !important;
  }

  .pouches-trust-wrapper {
    gap: 0;
    height: auto !important;
  }

  .pouches-main-badges-row {
    flex-direction: row;
    gap: 15px;
    background: #0038A5;
    padding: 40px 15px;
    width: 100%;
    justify-content: center;
    height: auto !important;
  }

  .pouches-main-badge {
    background: white;
    border: none;
    padding: 15px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    flex: 1;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .pouches-badge-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .pouches-badge-icon {
    width: 32px;
    color: #00B67A;
    height: 32px;
    font-size: 1.2rem;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .pouches-badge-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .pouches-badge-info {
    text-align: center;
  }

  .pouches-badge-title {
    display: none;
    /* Hide text on mobile to match design */
  }

  .pouches-rating {
    display: none;
    /* Hide rating number on mobile */
  }

  .pouches-stars {
    font-size: 0.9rem;
    color: #fbbf24;
    letter-spacing: 2px;
  }

  .pouches-trust-heading {
    padding: 40px 20px 0;
    border-top: none;
    margin-top: 0;
    text-align: center;
  }

  .pouches-trust-heading h2 {
    font-size: 1.4rem;
    color: #000000;
    font-weight: 800;
    line-height: 1.2;
    padding: 0;
  }

  .pouches-logos-grid {
    gap: 15px;
    padding: 20px 0;
  }

  .pouches-client-logo-box {
    height: 80px;
    min-height: 80px;
    padding: 15px;
    border: 1px solid #e2e8f0;
  }

  .pouches-client-logo-box img {
    max-width: 90px;
    max-height: 40px;
  }

  .pouches-trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 0;
    margin: 10px 20px 40px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  }

  .pouches-stat-item {
    padding: 25px 10px;
    position: relative;
    text-align: center;
  }

  .pouches-stat-item:first-child::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: #e2e8f0;
  }

  .pouches-stat-number {
    font-size: 1.8rem;
    color: #0038A5;
    margin-bottom: 4px;
    font-weight: 800;
  }

  .pouches-stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
  }

  .pouches-divider-line {
    margin: 20px 20px 15px 20px;
    height: 2px;
  }

  .pouches-features-row {
    gap: 25px;
    padding: 10px 0 20px 0;
    flex-wrap: wrap;
  }

  .pouches-feature-item {
    font-size: 0.85rem;
    gap: 8px;
  }

  .pouches-feature-item i {
    font-size: 1rem;
  }

  /* Hero section */
  .category-hero {
    padding: 30px 0;
  }

  .category-hero h1 {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  /* Features section */
  .cate-features-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .cate-feature-icon img {
    width: 40px;
    height: 40px;
  }

  /* Products grid */
  .main-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .products-container {
    padding: 0 20px;
  }

  .product-image-small {
    height: 220px;
  }

  /* Filter section */
  .filter-controls-enhanced {
    padding: 20px;
  }

  .filter-heading {
    font-size: 1.3rem;
  }

  .filter-row {
    flex-direction: column;
    gap: 15px;
  }

  .filter-select {
    width: 100%;
    min-width: auto;
  }

  /* Featuring section */
  .featuring-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .featuring-image {
    order: -1;
  }

  /* FAQ section */
  .faq-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faq-section-title {
    font-size: 1.8rem;
  }

  /* Newsletter */
  .newsletter-content {
    flex-direction: column;
    gap: 30px;
  }

  .newsletter-left h2 {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .newsletter-form input {
    border-radius: 8px 8px 0 0;
    border-right: 2px solid #e2e8f0;
  }

  .subscribe-btn {
    border-radius: 0 0 8px 8px;
  }
}

@media (max-width: 480px) {

  /* Quote trust grid - form pehle, trust neeche */
  .pouches-quote-trust-grid {
    display: flex;
    flex-direction: column;
  }

  .pouches-quote-column {
    order: 1;
  }

  .pouches-trust-column {
    order: 2;
    display: block;
    visibility: visible;
  }

  .pouches-main-badges-row {
    flex-direction: row;
    gap: 10px;
  }

  .pouches-main-badge {
    flex: 1;
  }

  .pouches-trust-heading {
    border-top: 2px solid #e2e8f0;
    padding-top: 18px;
    margin-top: 15px;
  }

  /* Quote section */
  .pouches-quote-trust-section {
    padding: 30px 0;
  }

  .pouches-container {
    padding: 0 15px;
  }

  .pouches-form-container {
    padding: 20px 15px;
  }

  .pouches-form-title {
    font-size: 1.3rem;
  }

  .pouches-form-subtitle {
    font-size: 0.85rem;
  }

  #pouchQuoteForm {
    gap: 10px;
  }

  .pouches-form-group input,
  .pouches-form-group textarea {
    padding: 10px 14px;
    font-size: 0.9rem;
  }

  .pouches-submit-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    min-width: auto;
    width: 100%;
  }


  .pouches-stat-item {
    padding: 15px 5px;
  }

  .pouches-trust-heading h2 {
    font-size: 1.1rem;
    padding: 0 5px;
    line-height: 1.3;
  }

  .pouches-trust-stats {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 12px;
    border-radius: 10px;
  }

  .pouches-stat-item {
    padding: 15px 5px;
  }

  .pouches-stat-number {
    font-size: 1.4rem;
  }

  .pouches-stat-label {
    font-size: 0.72rem;
  }

  .pouches-divider-line {
    margin: 15px 10px 12px 10px;
    height: 2px;
  }

  .pouches-features-row {
    gap: 20px;
    padding: 10px 0 15px 0;
    flex-direction: column;
  }

  .pouches-feature-item {
    font-size: 0.8rem;
    gap: 8px;
  }

  .pouches-feature-item i {
    font-size: 0.95rem;
  }

  .pouches-logos-grid {
    gap: 12px;
    padding: 10px 0;
  }

  .pouches-client-logo-box {
    height: 70px;
    min-height: 70px;
    padding: 12px;
    border-radius: 8px;
  }

  .pouches-client-logo-box img {
    max-width: 70px;
    max-height: 35px;
  }

  .pouches-clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .pouches-badge-title {
    font-size: 0.75rem;
  }

  .pouches-rating {
    font-size: 0.9rem;
  }

  /* Hero section */
  .category-hero {
    padding: 20px 0;
  }

  .category-hero h1 {
    font-size: 1.5rem;
  }

  .badge {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  /* Products grid */
  .main-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }

  .products-container {
    padding: 0 15px;
  }

  .product-image-small {
    padding: 10px;
    height: auto;
  }

  .product-card-small {
    max-width: 100%;
  }

  .product-title-small {
    font-size: 0.85rem;
  }

  .product-price-small {
    font-size: 0.9rem;
  }

  /* Filter section */
  .filter-controls-enhanced {
    padding: 15px;
    margin-bottom: 20px;
  }

  .filter-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  /* Label pouches section */
  .label-heading-wrapper {
    padding: 0 15px;
  }

  .label-main-title h2 {
    font-size: 1.5rem;
  }

  .label-subtitle h3 {
    font-size: 1rem;
  }

  /* FAQ */
  .faq-section-title {
    font-size: 1.5rem;
  }

  .faq-question {
    padding: 15px;
  }

  .question-text {
    font-size: 0.95rem;
  }

  /* Newsletter */
  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-left h2 {
    font-size: 1.3rem;
  }

  .newsletter-left p {
    font-size: 0.9rem;
  }

  .newsletter-form input {
    padding: 14px 16px;
  }

  .subscribe-btn {
    padding: 14px 20px;
  }
}

.pouch-image-container {
  width: 100%;
  margin: 0 auto;
  overflow: visible !important;
}

/* Main section styling */
.pouch-image-product-showcase {
  width: 100%;

}

/* Grid layout */
.pouch-image-features-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
}

/* Feature items styling */
.pouch-image-feature-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pouch-image-feature-item {
  text-align: center;
  padding: 10px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.pouch-image-feature-icon {
  width: 60px;
  height: 60px;
  border: 2px solid #0038A5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  color: #0066FF;
  font-size: 32px;
  transition: all 0.3s ease;
}

.pouch-image-feature-title {

  font-size: 1.5rem;
  color: #0038A5;
  margin-bottom: 15px;
  line-height: 1.2;
}

.pouch-image-feature-description {
  font-size: 1rem;
  color: #0066FF;
  line-height: 1.7;
  max-width: 280px;
}

/* Product image styling */
.pouch-image-product-image-container {
  position: relative;
  text-align: center;
  top: 19px;
  z-index: 999;
}

.pouch-image-product-image {
  width: 100%;
  padding-top: 10px;
  height: auto;
  border-radius: 16px;
  transition: transform 0.5s ease;
}

.pouch-image-product-image:hover {
  transform: scale(1.1);
}

/* Responsive design */
@media (max-width: 992px) {

  /* Tablet layout - 2 columns */
  .pouch-image-features-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .pouch-image-feature-column {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }

  .pouch-image-feature-item {
    flex: 1;
    padding: 25px 15px;
  }

  .pouch-image-product-image-container {
    order: -1;
    /* Move image to top on tablet */
  }

  .pouch-image-section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {

  /* Mobile layout - stacked */
  .pouch-image-product-showcase {
    padding: 40px 25px;
  }

  .pouch-image-feature-column {
    flex-direction: column;
    gap: 40px;
  }

  .pouch-image-features-grid {
    gap: 40px;
  }

  .pouch-image-section-title h2 {
    font-size: 2rem;
  }

  .pouch-image-section-title p {
    font-size: 1rem;
  }

  .pouch-image-feature-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .pouch-image-product-showcase {
    padding: 30px 20px;
  }

  .pouch-image-section-title h2 {
    font-size: 1.8rem;
  }

  .pouch-image-feature-title {
    font-size: 1.6rem;
  }

  .pouch-image-feature-icon {
    width: 70px;
    height: 70px;
    font-size: 28px;
  }
}

/* Fade-in animation on scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* =====================
   Product Hero Section (Image Style)
===================== */
.product-detail-hero {
  padding: 50px 0;
  background: white;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 40px;
  align-items: start;
}

/* Product Gallery with Thumbnails on Left */
.product-gallery-hero {
  display: flex;
  gap: 20px;

}

.product-thumbnails-vertical {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.thumbnail-vertical {
  width: 120px;
  height: 120px;

  border-radius: 12px;
  padding: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}



.thumbnail-vertical.active {
  border: 1.5px solid #0038A5;
  box-shadow: 0 4px 15px rgba(2, 56, 165, 0.2);
}

.thumbnail-vertical img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-product-hero-image {
  flex: 1;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.main-product-hero-image::before {
  content: '';
  position: absolute;

  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);

}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.main-product-hero-image img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
}

/* Product Info */
.product-info-hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-hero-title {
  font-size: 1.6rem;
  color: #0038A5;
  font-weight: 800;
  margin: 0;
  line-height: 1.2;
}

.product-hero-description {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #000000;
  text-align: justify;
  margin: 0;
}


/* Features Row Below */


@media (max-width: 480px) {
  .product-gallery-hero {
    flex-direction: column;
  }

  .product-thumbnails-vertical {
    flex-direction: row;
    width: 100%;
    justify-content: center;
  }

  .thumbnail-vertical {
    width: 80px;
    height: 80px;
  }

  .product-hero-title {
    font-size: 1.6rem;
  }




}


/* Product Image Column with Reviews */
.product-image-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}












/* =====================
   Quality Assurance Section
===================== */
.quality-assurance-section {
  padding: 60px 0;
  background: #f8fafc;
}

.quality-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.quality-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(2, 56, 165, 0.15);
  border-color: #0038A5;
}

.quality-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(2, 56, 165, 0.25);
}

.quality-card:hover .quality-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(2, 56, 165, 0.35);
}

.quality-title {
  font-size: 1.4rem;
  color: #0038A5;
  font-weight: 700;
  margin: 0 0 15px 0;
  line-height: 1.3;
}

.quality-description {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .quality-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .quality-assurance-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .quality-assurance-section {
    padding: 40px 0;
  }

  .quality-card {
    padding: 35px 25px;
  }

  .quality-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .quality-title {
    font-size: 1.2rem;
  }

  .quality-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .quality-card {
    padding: 30px 20px;
  }

  .quality-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .quality-title {
    font-size: 1.1rem;
  }
}


/* --- RELATED PRODUCTS SECTION --- */
.related-products-section {
  background: white;
  padding: 60px 0;
  margin: 0;
}

.related-products-header {
  text-align: center;
  margin-bottom: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.related-products-header h2 {
  font-size: 2.4rem;
  color: #1a202c;
  margin: 0 0 25px 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.related-products-header p {
  font-size: 1.1rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  font-weight: 400;
}

.related-products-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

/* Side Products (Left & Right) */
.related-product-item {
  height: 100%;
  width: 100%;
}

.related-product-item>a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  width: 100%;
  text-decoration: none;
}

.product-image-wrapper {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  transition: all 0.3s ease;
}

.product-image-wrapper:hover {
  opacity: 0.95;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Center Grid */
.related-products-center-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 25px;
}

.center-product-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-decoration: none;
}

.center-product-item>a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
  height: 100%;
}

.center-product-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  background: transparent;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.center-product-image:hover {
  opacity: 0.95;
}

.center-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.center-product-item h4,
.related-product-item h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .related-products-grid {
    gap: 20px;
  }
}

@media (max-width: 968px) {
  .related-products-section {
    padding: 60px 0;
  }

  .related-products-header h2 {
    font-size: 2rem;
  }

  .related-products-header p {
    font-size: 0.95rem;
  }

  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-image-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    height: auto;
    flex: none;
    min-height: auto;
    max-width: 300px;
  }

  .related-products-center-grid {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .related-products-section {
    padding: 50px 0;
  }

  .related-products-header {
    margin-bottom: 40px;
    text-align: center;
  }

  .related-products-header h2 {
    font-size: 1.75rem;
    margin-bottom: 15px;
  }

  .related-products-header p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 100%;
  }

  .related-products-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .related-products-center-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
  }

  .related-product-item,
  .center-product-item {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .product-image-wrapper,
  .center-product-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: auto;
    max-width: 100%;
  }

  .center-product-item h4,
  .related-product-item h4 {
    font-size: 1.1rem;
    margin-top: 12px;
  }
}

@media (max-width: 480px) {
  .related-products-section {
    padding: 40px 0;
  }

  .related-products-header h2 {
    font-size: 1.5rem;
  }

  .related-products-header p {
    font-size: 0.85rem;
  }

  .related-products-grid,
  .related-products-center-grid {
    gap: 25px;
  }

  .center-product-item h4,
  .related-product-item h4 {
    font-size: 1rem;
  }
}


/* --- ORDER IN 3 EASY STEPS SECTION --- */
.order-steps-section {
  background: #f8fafc;
  padding: 60px 0;
}

.order-steps-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

/* Left Side - Steps */
.order-steps-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-steps-left h2 {
  font-size: 2.2rem;
  color: #0038A5;
  margin: 0 0 30px 0;
  font-weight: 700;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  position: relative;
  flex: 1;
  align-items: flex-start;
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 44px;
  width: 2px;
  height: calc(100% + 5px);
  background: #0038A5;
}

.step-number {



  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0038A5;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.step-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Right Side - Quote Form */
.quote-form-box {
  background: white;
  border: 2px solid #0038A5;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 56, 165, 0.1);
}

.quote-form-box h3 {
  font-size: 1.6rem;
  color: #0038A5;
  margin: 0 0 8px 0;
  font-weight: 700;
  text-align: center;
}

.quote-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 25px 0;
  text-align: center;
  line-height: 1.4;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.form-row:has(input[type="email"]),
.form-row:has(input[type="text"][placeholder*="Stand-Up"]),
.form-row:has(input[placeholder*="Lenght"]) {
  grid-template-columns: 1fr 1fr;
}

.form-row:has(input[type="email"]) input:first-child {
  grid-column: span 1;
}

.form-row:has(textarea) {
  grid-template-columns: 1fr;
}

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
  background: #f9fafb;
}

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Upload Row */
.upload-row {
  grid-template-columns: 1fr 1fr;
}

.upload-field {
  position: relative;
}

.upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
}

.upload-label:hover {
  border-color: #0038A5;
  background: white;
}

.upload-label span {
  font-size: 0.9rem;
  color: #6b7280;
}

.browse-btn {
  background: #0038A5;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.browse-btn:hover {
  background: #0066FF;
}

/* Privacy Notice */
.privacy-notice {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 8px 0 0 0;
  text-align: center;
  line-height: 1.4;
}

/* Submit Button */
.submit-quote-btn {
  background: #0038A5;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 0;
  min-width: 200px;
}

.submit-quote-btn:hover {
  background: #0066FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

.submit-quote-btn i {
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .order-steps-wrapper {
    gap: 40px;
  }

  .quote-form-box {
    padding: 30px;
  }
}

@media (max-width: 968px) {
  .order-steps-section {
    padding: 60px 0;
  }

  .order-steps-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .order-steps-left h2 {
    font-size: 2rem;
    text-align: center;
  }

  .step-item {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .order-steps-section {
    padding: 50px 0;
  }

  .order-steps-left h2 {
    font-size: 1.75rem;
    margin-bottom: 30px;
  }

  .step-content h3 {
    font-size: 1.2rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }

  .quote-form-box {
    padding: 25px;
  }

  .quote-form-box h3 {
    font-size: 1.5rem;
  }
}


/* --- TEXTURE & SHINE SECTION --- */
.texture-shine-section {
  padding: 60px 20px;
  background: white;
}

.texture-shine-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

.texture-shine-header {
  text-align: center;
  margin-bottom: 50px;
}

.texture-shine-header h2 {
  font-size: 2.5rem;
  color: #0038A5;
  margin: 0 0 15px 0;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.texture-shine-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Texture Grid */
.texture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

/* Texture Card */
.texture-card {
  width: 268px;
  height: 315px;
  background: #ffffff;
  border: 2.5px solid #0038A5;
  border-radius: 24px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  justify-content: flex-start;
}

.texture-card:hover {
  transform: translateY(-5px);

  border-color: #0066FF;
}

.texture-icon {
  width: 70px;
  height: 70px;
  background: #0038A5;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;

  transform: rotate(45deg);
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-bottom: 8px;
}

.texture-icon img {
  transform: rotate(-45deg);
  width: 55%;
  height: 55%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.texture-card:hover .texture-icon {
  transform: rotate(45deg) scale(1.05);
  box-shadow: 0 10px 24px rgba(2, 56, 165, 0.35);
}

.texture-card h3 {
  font-size: 1.15rem;
  color: #000000;
  margin: 12px 0 10px 0;
  font-weight: 700;
  line-height: 1.25;
}

.texture-card p {
  font-size: 1.2rem;
  color: #333333;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .texture-shine-container {
    padding: 0 30px;
  }

  .texture-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .texture-shine-section {
    padding: 50px 0;
  }

  .texture-shine-container {
    padding: 0 20px;
  }

  .texture-shine-header h2 {
    font-size: 1.8rem;
  }

  .texture-shine-header p {
    font-size: 0.95rem;
  }

  .texture-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .texture-card {
    width: 100%;
    height: auto;
    padding: 25px 20px;
    max-width: 300px;
    margin: 0 auto;
  }

  .texture-icon {
    width: 65px;
    height: 65px;
    font-size: 1.8rem;
  }

  .texture-card h3 {
    font-size: 1.05rem;
  }

  .texture-card p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .texture-shine-section {
    padding: 40px 0;
  }

  .texture-shine-container {
    padding: 0 15px;
  }

  .texture-shine-header h2 {
    font-size: 1.5rem;
  }

  .texture-shine-header p {
    font-size: 0.9rem;
  }

  .texture-grid {
    gap: 15px;
  }

  .texture-card {
    width: 100%;
    padding: 20px 15px;
    max-width: none;
    margin: 0;
  }

  .texture-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .texture-card h3 {
    font-size: 0.95rem;
    margin: 10px 0 8px 0;
  }

  .texture-card p {
    font-size: 0.75rem;
  }
}

.texture-card h3 {
  font-size: 1rem;
  margin: 6px 0 0 0;
}

.texture-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}


@media (max-width: 480px) {
  .texture-shine-section {
    padding: 40px 0;
  }

  .texture-shine-header h2 {
    font-size: 1.75rem;
  }

  .texture-shine-header p {
    font-size: 0.95rem;
  }

  .texture-card {
    padding: 25px 20px;
    gap: 15px;
  }

  .texture-icon {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
  }

  .texture-card h3 {
    font-size: 0.95rem;
    margin: 4px 0 0 0;
  }

  .texture-card p {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

.form-row {
  grid-template-columns: 1fr;
}

.form-row:has(input[type="email"]),
.form-row:has(input[placeholder*="Stand-Up"]),
.form-row:has(input[placeholder*="Lenght"]),
.upload-row {
  grid-template-columns: 1fr;
}


@media (max-width: 480px) {
  .order-steps-section {
    padding: 40px 0;
  }

  .order-steps-left h2 {
    font-size: 1.5rem;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .step-item:not(:last-child)::after {
    left: 22px;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.9rem;
  }

  .quote-form-box {
    padding: 20px;
  }

  .quote-form-box h3 {
    font-size: 1.3rem;
  }

  .quote-subtitle {
    font-size: 0.9rem;
  }

  .submit-quote-btn {
    width: 100%;
    min-width: auto;
  }
}

/* --- PRODUCT PAGE ORDER STEPS (UNIQUE CLASSES) --- */
.product-order-steps-section {
  background: #f8fafc;
  padding: 60px 50px;
}

.product-order-steps-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: stretch;
}

.product-order-steps-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-order-steps-left h2 {
  font-size: 2.2rem;
  color: #0038A5;
  margin: 0 0 30px 0;
  font-weight: 700;
}

.product-step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
  position: relative;
  flex: 1;
  align-items: flex-start;
}

.product-step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 44px;
  width: 2px;
  height: calc(100% + 5px);
  background: #0038A5;
}

.product-step-number {
  width: 50px;
  height: 50px;
  border: 2px solid #0038A5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  color: #0038A5;
  flex-shrink: 0;
  background: white;
  position: relative;
  z-index: 1;
}

.product-step-content h3 {
  font-size: 1.25rem;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  font-weight: 700;
}

.product-step-content p {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.product-quote-form-box {
  background: white;
  border: 2px solid #0038A5;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 56, 165, 0.1);
}

.product-quote-form-box h3 {
  font-size: 1.6rem;
  color: #0038A5;
  margin: 0 0 8px 0;
  font-weight: 700;
  text-align: center;
}

.product-quote-subtitle {
  font-size: 0.9rem;
  color: #666;
  margin: 0 0 25px 0;
  text-align: center;
  line-height: 1.4;
}

.product-quote-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-form-row:has(input[type="email"]),
.product-form-row:has(input[type="text"][placeholder*="Stand-Up"]),
.product-form-row:has(input[placeholder*="Lenght"]) {
  grid-template-columns: 1fr 1fr;
}

.product-form-row:has(input[type="email"]) input:first-child {
  grid-column: span 1;
}

.product-form-row:has(textarea) {
  grid-template-columns: 1fr;
}

.product-quote-form input[type="text"],
.product-quote-form input[type="email"],
.product-quote-form input[type="tel"],
.product-quote-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  transition: all 0.2s;
  background: #f9fafb;
}

.product-quote-form input:focus,
.product-quote-form textarea:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.product-quote-form textarea {
  resize: vertical;
  min-height: 80px;
}

/* Upload Row */
.product-upload-row {
  grid-template-columns: 1fr 1fr;
}

.product-upload-field {
  position: relative;
}

.product-upload-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: #f9fafb;
  cursor: pointer;
  transition: all 0.2s;
}

.product-upload-label:hover {
  border-color: #0038A5;
  background: white;
}

.product-upload-label span {
  font-size: 0.9rem;
  color: #6b7280;
}

.product-browse-btn {
  background: #0038A5;
  color: white;
  border: none;
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.product-browse-btn:hover {
  background: #0066FF;
}

/* Privacy Notice */
.product-privacy-notice {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 8px 0 0 0;
  text-align: center;
  line-height: 1.4;
}

/* Submit Button */
.product-submit-quote-btn {
  background: #0038A5;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 8px auto 0;
  min-width: 200px;
}

.product-submit-quote-btn:hover {
  background: #0066FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

.product-submit-quote-btn i {
  font-size: 1rem;
}

@media (max-width: 968px) {
  .product-order-steps-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-order-steps-left {
    order: 2;
  }

  .product-order-steps-right {
    order: 1;
  }
}

@media (max-width: 768px) {
  .product-order-steps-section {
    padding: 50px 0;
  }

  .product-form-row {
    grid-template-columns: 1fr;
  }

  .product-upload-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .product-order-steps-left h2 {
    font-size: 1.5rem;
  }

  .product-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .product-step-item:not(:last-child)::after {
    left: 22px;
  }

  .product-quote-form-box {
    padding: 20px;
  }
}


/* --- FORM VALIDATION STYLES --- */
.input-error {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
}

.input-error:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Success Overlay */
.success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  z-index: 10;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.success-content {
  text-align: center;
  padding: 40px;
  animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: 20px;
  animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.success-content h3 {
  font-size: 1.8rem;
  color: #0038A5;
  margin: 0 0 15px 0;
  font-weight: 700;
}

.success-content p {
  font-size: 1rem;
  color: #666;
  margin: 0 0 25px 0;
  line-height: 1.6;
}

.close-success-btn {
  background: #0038A5;
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.close-success-btn:hover {
  background: #0066FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

/* Form box needs relative positioning for overlay */
.quote-form-box {
  position: relative;
}

/* Upload field error positioning */
.upload-field {
  position: relative;
}

.upload-field .error-message {
  position: absolute;
  bottom: -20px;
  left: 0;
  white-space: nowrap;
}


/* --- BRANDS/PARTNERS SECTION --- */
.brands-section {
  background: white;
  padding: 50px 0;
  overflow: hidden;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.brands-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: brandScroll 30s linear infinite;
  width: max-content;
}

.brand-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 60px;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.brand-item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.brand-item img {
  max-width: 150px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Pause animation on hover */
.brands-slider:hover .brands-track {
  animation-play-state: paused;
}

/* Smooth infinite scroll animation */
@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Design */
@media (max-width: 968px) {
  .brands-section {
    padding: 40px 0;
  }

  .brands-track {
    gap: 60px;
    animation-duration: 25s;
  }

  .brand-item {
    min-width: 120px;
    height: 50px;
  }

  .brand-item img {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .brands-section {
    padding: 35px 0;
  }

  .brands-track {
    gap: 50px;
    animation-duration: 20s;
  }

  .brand-item {
    min-width: 100px;
    height: 45px;
  }

  .brand-item img {
    max-width: 100px;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .brands-section {
    padding: 30px 0;
  }

  .brands-track {
    gap: 40px;
    animation-duration: 15s;
  }

  .brand-item {
    min-width: 80px;
    height: 40px;
  }

  .brand-item img {
    max-width: 80px;
    max-height: 40px;
  }
}


/* --- FEATURES BANNER SECTION --- */
.features-banner-section {
  background: white;
  padding: 40px 100px;
  border-bottom: 1px solid #e5e7eb;
}

.features-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.feature-banner-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  transition: all 0.3s ease;
}

.feature-banner-item:hover {
  transform: translateY(-3px);
}

.feature-banner-icon {
  width: 50px;
  height: 50px;
  background: #E8F0FF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-banner-item:hover .feature-banner-icon {

  transform: scale(1.1);
}

.feature-banner-icon i {
  font-size: 1.3rem;
  color: #0038A5;
  transition: color 0.3s ease;
}

.feature-banner-item:hover .feature-banner-icon i {
  color: white;
}

.feature-banner-item h4 {
  font-size: 1rem;
  color: #1a1a1a;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .features-banner-grid {
    gap: 30px;
  }

  .feature-banner-item {
    gap: 12px;
    padding: 12px;
  }

  .feature-banner-icon {
    width: 45px;
    height: 45px;
  }

  .feature-banner-icon i {
    font-size: 1.2rem;
  }

  .feature-banner-item h4 {
    font-size: 0.95rem;
  }
}

@media (max-width: 968px) {
  .features-banner-section {
    display: none;
  }

  .features-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .feature-banner-item {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .features-banner-section {
    padding: 30px 0;
  }

  .features-banner-grid {
    gap: 20px;
  }

  .feature-banner-icon {
    width: 40px;
    height: 40px;
  }

  .feature-banner-icon i {
    font-size: 1.1rem;
  }

  .feature-banner-item h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .features-banner-section {
    padding: 25px 0;
  }

  .features-banner-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .feature-banner-item {
    padding: 10px;
  }

  .feature-banner-icon {
    width: 45px;
    height: 45px;
  }

  .feature-banner-icon i {
    font-size: 1.2rem;
  }

  .feature-banner-item h4 {
    font-size: 1rem;
  }
}


/* --- REVIEWS BADGES SECTION --- */
.reviews-badges-section {

  padding: 0px 0;
}

.reviews-badges-wrapper {
  grid-column: 1 / -1;
  display: flex;
  gap: 25px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.review-badge-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 50px;
  padding: 12px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  min-width: 0;
  flex: 1;
  max-width: 450px;
}

.review-badge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.review-badge-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-platform-logo {
  width: 45px;
  height: 45px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-platform-logo i {
  font-size: 1.5rem;
  color: white;
}

.review-platform-logo.trustpilot {
  background: #00B67A;
}

.review-platform-name {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-right: auto;
}

.review-rating-display {
  display: flex;
  align-items: center;
  gap: 10px;
}

.rating-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-stars i {
  font-size: 1rem;
  color: #FFD700;
}

/* Trustpilot specific styles */
.trustpilot-stars-boxes {
  display: flex;
  gap: 4px;
}

.star-box {
  width: 32px;
  height: 32px;
  background: #00B67A;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.star-box i {
  font-size: 0.9rem;
  color: white;
}

.trustpilot-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  margin-left: 5px;
}

.rating-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
}

.rating-score {
  font-size: 0.85rem;
  color: #666;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 968px) {
  .reviews-badges-section {
    padding: 35px 0;
  }

  .reviews-badges-wrapper {
    gap: 20px;
  }

  .review-badge-card {
    min-width: 260px;
    padding: 12px 25px;
  }

  .review-platform-logo {
    width: 40px;
    height: 40px;
  }

  .review-platform-logo i {
    font-size: 1.3rem;
  }

  .rating-number {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .product-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .product-gallery-hero {
    order: 1;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .product-thumbnails-vertical {
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .thumbnail-vertical {
    width: 80px;
    height: 80px;
    padding: 8px;
  }

  .product-info-hero {
    order: 3;
    text-align: left;
    margin-top: 10px;
  }

  .product-hero-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .reviews-badges-section {
    padding: 30px 0;
  }

  .reviews-badges-wrapper {
    order: 2;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin: 10px 0;
  }

  .review-badge-card {
    flex: 1;
    min-width: 0;
    padding: 8px 15px;
  }

  .review-platform-name {
    font-size: 0.85rem;
  }

  .rating-number {
    font-size: 1.1rem;
  }

  .rating-stars i {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .reviews-badges-section {
    padding: 25px 0;
  }

  .review-badge-card {
    padding: 12px 20px;
    border-radius: 40px;
  }

  .review-badge-content {
    gap: 12px;
  }

  .review-platform-logo {
    width: 38px;
    height: 38px;
  }

  .review-platform-logo i {
    font-size: 1.2rem;
  }

  .review-platform-name {
    font-size: 0.9rem;
  }

  .rating-number {
    font-size: 1.2rem;
  }

  .rating-stars i {
    font-size: 0.9rem;
  }

  .star-box {
    width: 28px;
    height: 28px;
  }

  .star-box i {
    font-size: 0.8rem;
  }

  .rating-label {
    font-size: 0.85rem;
  }

  .rating-score {
    font-size: 0.8rem;
  }
}


/* --- TAGLINE/SUBTITLE PARAGRAPH --- */
p.tagline-text,
.tagline-text {
  color: #4a5568;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 900px;
}

/* --- ABOUT US HERO SECTION --- */
.about-hero-section {
  background: #D0E1FF;
  padding: 25px 20px 45px 20px;
  text-align: center;
}

.about-hero-section .container {
  position: relative;
}

.about-hero-section .breadcrumb {
  text-align: left;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.about-hero-section h1 {
  font-size: 3rem;
  color: #0038A5;
  margin: 0 0 20px 0;
  font-weight: 700;
  letter-spacing: -1px;
}

.about-hero-section p {
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 900px;
}

/* Responsive for About Hero */
@media (max-width: 968px) {
  .about-hero-section {
    padding: 30px 20px 60px 20px;
  }

  .about-hero-section .breadcrumb {
    margin-bottom: 30px;
  }

  .about-hero-section h1 {
    font-size: 3rem;
  }

  .about-hero-section p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 25px 20px 50px 20px;
  }

  .about-hero-section .breadcrumb {
    margin-bottom: 25px;
  }

  .about-hero-section h1 {
    font-size: 2.5rem;
  }

  .about-hero-section p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 20px 15px 40px 15px;
  }

  .about-hero-section .breadcrumb {
    margin-bottom: 20px;
  }

  .about-hero-section h1 {
    font-size: 2rem;
  }

  .about-hero-section p {
    font-size: 0.95rem;
  }
}


/* --- BREADCRUMB NAVIGATION --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #000000;
  text-decoration: underline;
}

.breadcrumb i {
  font-size: 0.7rem;
  color: #000000;
}

.breadcrumb span {
  color: #000000;
  font-weight: 500;
}



/* --- MISSION & VALUES SECTION --- */
.mission-values-section {
  padding: 80px 0;
  background: white;
}

.mission-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  padding: 0 60px;
}

/* Left Column - Text */
.mission-values-text h2 {
  font-size: 2rem;
  color: #003d82;
  margin: 0 0 25px 0;
  font-weight: 700;
  line-height: 1.3;
}

.mission-values-text p {
  font-size: 1.3rem;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 30px;
}

.mission-values-text h3 {
  font-size: 1.3rem;
  color: #000000;
  margin: 0 0 20px 0;
  font-weight: 600;
  line-height: 1.8;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.value-icon-check {
  width: 28px;
  height: 28px;
  background: #0038A5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon-check i {
  font-size: 0.85rem;
  color: white;
}

.value-item span {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
}

/* Right Column - Images */
.mission-values-images {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
}

.image-top {
  position: absolute;
  left: 20px;
  top: 50px;
  width: 65%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;

  z-index: 1;
}

.image-bottom {
  position: absolute;
  right: 0;
  left: 49%;
  bottom: 0%;
  width: 55%;
  height: 53%;
  border-radius: 20px;
  overflow: hidden;

  z-index: 2;

}

.mission-values-images img {

  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}


/* Responsive Design */
@media (max-width: 1200px) {
  .mission-values-grid {
    gap: 40px;
  }

  .mission-values-text h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 968px) {
  .mission-values-section {
    padding: 60px 0;
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .mission-values-text h2 {
    font-size: 2rem;
  }

  .mission-values-text p {
    font-size: 1rem;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .mission-values-images {
    height: 400px;
  }

  .image-top {
    width: 70%;
  }

  .image-bottom {
    width: 55%;
    height: 55%;
  }
}

@media (max-width: 768px) {
  .mission-values-section {
    padding: 50px 0;
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0;
  }

  .mission-values-text {
    order: 2;
  }

  .mission-values-images {
    order: 1;
    height: auto;
    display: block;
  }

  .image-top {
    width: 100%;
    height: auto;
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }

  .image-top img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .image-bottom {
    display: none;
  }

  .mission-values-text h2 {
    font-size: 1.75rem;
  }

  .mission-values-text p {
    font-size: 0.95rem;
  }

  .mission-values-text h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .mission-values-section {
    padding: 40px 0;
  }

  .mission-values-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .mission-values-text p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .mission-values-text h3 {
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .values-list {
    gap: 12px;
  }

  .value-icon-check {
    width: 24px;
    height: 24px;
  }

  .value-icon-check i {
    font-size: 0.75rem;
  }

  .value-item span {
    font-size: 0.9rem;
  }

  /* 
  .mission-values-images {
    height: 300px;
  } */

  .image-top {
    width: 100%;
    height: 70%;
    top: 0;
    left: 0;
  }

  .image-bottom {
    width: 70%;
    height: 45%;
    right: 0;
    bottom: 0;
  }
}


/* --- PRODUCT DETAIL SECTION --- */
.product-detail-section {
  padding: 60px 0;
  background: white;
}

.product-detail-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Product Images Column */
.product-images-column {
  position: sticky;
  top: 20px;
}

.main-product-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.main-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-thumbnails {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.thumbnail-item {
  aspect-ratio: 1 / 1;
  border: 3px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.thumbnail-item:hover {
  border-color: #0038A5;
  transform: translateY(-3px);
}

.thumbnail-item.active {
  border-color: #0038A5;
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

.thumbnail-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Product Info Column */
.product-info-column {
  padding: 20px 0;
}

.product-title {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.2;
}

.product-price {
  font-size: 2rem;
  color: #0038A5;
  font-weight: 700;
  margin-bottom: 25px;
}

.price-unit {
  font-size: 1.2rem;
  color: #666;
  font-weight: 400;
}

.product-description {
  margin-bottom: 30px;
}

.product-description p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.product-options {
  margin-bottom: 30px;
}

.option-group {
  margin-bottom: 20px;
}

.option-group label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.product-select,
.product-quantity {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.2s;
}

.product-select:focus,
.product-quantity:focus {
  outline: none;
  border-color: #0038A5;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.product-actions {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.btn-add-cart,
.btn-quote {
  flex: 1;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add-cart {
  background: #0038A5;
  color: white;
}

.btn-add-cart:hover {
  background: #0066FF;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

.btn-quote {
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
}

.btn-quote:hover {
  background: #0038A5;
  color: white;
}

.product-features {
  border-top: 1px solid #e5e7eb;
  padding-top: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feature-item i {
  color: #00B67A;
  font-size: 1.2rem;
}

.feature-item span {
  font-size: 1rem;
  color: #4a5568;
}

/* Responsive Design */
@media (max-width: 968px) {
  .product-detail-section {
    padding: 40px 0;
  }

  .product-detail-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-images-column {
    position: static;
  }

  .product-title {
    font-size: 2rem;
  }

  .product-price {
    font-size: 1.75rem;
  }

  .product-actions {
    flex-direction: column;
  }

  .btn-add-cart,
  .btn-quote {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 1.75rem;
  }

  .product-price {
    font-size: 1.5rem;
  }

  .product-description p {
    font-size: 1rem;
  }

  .product-thumbnails {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .product-detail-section {
    padding: 30px 0;
  }

  .product-title {
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 1.3rem;
  }

  .product-description p {
    font-size: 0.95rem;
  }

  .main-product-image {
    margin-bottom: 15px;
  }

  .product-thumbnails {
    gap: 8px;
  }

  .btn-add-cart,
  .btn-quote {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}


/* --- EXPERIENCE, TECHNICAL & VALUES SECTION --- */
.experience-technical-section {
  padding: 0px 0;
  background: white;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 100px 0 0;
}

.experience-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.experience-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.experience-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003d82;
  margin-bottom: 24px;
  line-height: 1.3;
}

.experience-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}

/* --- EXCEPTIONAL SERVICE SECTION --- */
.exceptional-service-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.service-content {
  max-width: 100%;
}

.service-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #003d82;
  margin-bottom: 24px;
  line-height: 1.3;
}

.service-content p {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}

.service-images {
  display: block;
  width: 100%;
}

.service-image-item {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-image-item:hover img {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 968px) {
  .experience-technical-section {
    padding: 0px 0;
  }

  .experience-grid {
    gap: 40px;
  }

  .experience-text h2 {
    font-size: 1.75rem;
  }

  .exceptional-service-section {
    padding: 60px 0;
  }

  .service-content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  .experience-technical-section {
    padding: 50px 0;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-image {
    order: 1;
  }

  .experience-text {
    order: 2;
  }

  .experience-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .experience-text p {
    font-size: 0.95rem;
  }

  .exceptional-service-section {
    padding: 50px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-image-item {
    height: 250px;
  }

  .service-content h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .service-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .experience-technical-section {
    padding: 40px 0;
  }

  .experience-grid {
    gap: 25px;
    padding: 0;
  }

  .experience-text h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .experience-text p {
    font-size: 0.9rem;
  }

  .exceptional-service-section {
    padding: 40px 0;
  }

  .service-content h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .service-content p {
    font-size: 0.9rem;
  }
}


/* --- TRUSTED BY SECTION --- */
.trusted-by-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  text-align: center;
}

.trusted-by-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.trusted-by-section h2:hover {
  transform: translateY(-5px);
}

/* Company Logos Animation */
.company-logos-wrapper {
  overflow: hidden;
  margin-bottom: 60px;
  width: 100%;
}

.company-logos {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: scroll-left 20s linear infinite;
  width: fit-content;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.company-logos:hover {
  animation-play-state: paused;
}

.logo-item {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-item img {
  max-height: 100%;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.logo-item img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-card {
  background: white;
  width: 210px;
  height: 200px;
  padding: 60px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  background: #0038A5;

  z-index: -1;

}

.stat-card:hover::before {
  height: 100%;
}

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

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003d82;
  margin-bottom: 12px;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}

.stat-card:hover h3 {
  color: #ffffff !important;
}

.stat-card p {
  font-size: 1rem;
  color: #000000;
  line-height: 1.6;
  margin: 0;
  transition: color 0.4s ease;
  position: relative;
  z-index: 2;
}

.stat-card:hover p {
  color: white;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .trusted-by-section {
    padding: 60px 0;
  }

  .trusted-by-section h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }

  .company-logos-wrapper {
    margin-bottom: 50px;
  }

  .company-logos {
    gap: 60px;
  }

  .logo-item {
    height: 65px;
  }

  .logo-item img {
    max-width: 130px;
  }

  .stats-grid {
    gap: 25px;
  }

  .stat-card {
    padding: 35px 25px;
  }

  .stat-card h3 {
    font-size: 2.2rem;
  }

  .stat-card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .trusted-by-section {
    padding: 50px 0;
  }

  .trusted-by-section h2 {
    font-size: 1.3rem;
    margin-bottom: 35px;
    padding: 0 20px;
  }

  .company-logos-wrapper {
    margin-bottom: 40px;
  }

  .company-logos {
    gap: 50px;
  }

  .logo-item {
    height: 55px;
  }

  .logo-item img {
    max-width: 110px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
    justify-items: center;
  }

  .stat-card {
    padding: 30px 20px;
  }

  .stat-card h3 {
    font-size: 2rem;
  }

  .stat-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .trusted-by-section {
    padding: 40px 0;
  }

  .trusted-by-section h2 {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }

  .company-logos-wrapper {
    margin-bottom: 35px;
  }

  .company-logos {
    gap: 40px;
  }

  .logo-item {
    height: 50px;
  }

  .logo-item img {
    max-width: 90px;
  }

  .stat-card {
    padding: 25px 15px;
  }

  .stat-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .stat-card p {
    font-size: 0.85rem;
  }
}

/* --- WHY CHOOSE SECTION --- */
.why-choose-section {
  padding: 0px 0;
  background: white;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-choose-header h3 {
  font-size: 1.1rem;
  color: #0038A5;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-choose-header h2 {
  font-size: 1.8rem;
  color: #1a202c;
  font-weight: 700;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-choose-card {
  background: #D0E1FF;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(2, 56, 165, 0.15);
  background: #c0d5ff;
}

.why-choose-icon {
  width: 70px;
  height: 70px;
  background: #0038A5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: #0038A5;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(2, 56, 165, 0.3);
}

.why-choose-card h4 {
  font-size: 1.2rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-choose-card p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
}

.book-appointment-wrapper {
  text-align: center;
  margin-top: 50px;
}

.book-appointment-btn {
  display: inline-block;
  padding: 16px 60px;
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  border-radius: 2px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 56, 165, 0.15);
}

.book-appointment-btn:hover {
  background: #0038A5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(2, 56, 165, 0.3);
}

/* Why Choose Detail Cards */
.why-choose-details {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.why-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-detail-card.reverse {
  grid-template-columns: 1fr 1fr;
}

.why-detail-content h3 {
  font-size: 2rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.why-detail-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.why-detail-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.why-detail-card.reverse .why-detail-images {
  grid-template-columns: 1fr;
}

.why-detail-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.why-detail-card.reverse .why-detail-images img {
  height: 100%;
  min-height: 350px;
}

.why-detail-images img:hover {
  transform: scale(1.05);
}

/* Why Us Page Detail Cards */
.whyus-details-section {
  padding: 80px 0;
  background: white;
}

.whyus-detail-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  background: white;
  padding: 0px 50px;
  border-radius: 16px;

  margin-bottom: 50px;
}

.whyus-detail-card:last-child {
  margin-bottom: 0;
}

.whyus-detail-card.reverse {
  grid-template-columns: 1fr 1fr;
  padding: 0 50px 0 30px;
}

.whyus-detail-content h3 {
  font-size: 2rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.whyus-detail-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.whyus-detail-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.whyus-detail-card.reverse .whyus-detail-images {
  grid-template-columns: 1fr;
}

.whyus-detail-images img {
  width: 100%;

  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.whyus-detail-card.reverse .whyus-detail-images img {
  height: 100%;
  min-height: 350px;
  width: 80%;
}

.whyus-detail-images img:hover {
  transform: scale(1.05);
}

@media (max-width: 968px) {

  .why-detail-card,
  .why-detail-card.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .why-detail-content h3 {
    font-size: 1.75rem;
  }

  .why-detail-images {
    order: -1;
  }

  .why-detail-images img {
    height: 200px;
  }

  .why-detail-card.reverse .why-detail-images img {
    min-height: 250px;
  }

  .whyus-detail-card,
  .whyus-detail-card.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }

  .whyus-detail-content h3 {
    font-size: 1.75rem;
  }

  .whyus-detail-images {
    order: -1;
  }

  .whyus-detail-images img {
    height: 200px;
  }

  .whyus-detail-card.reverse .whyus-detail-images img {
    min-height: 250px;
  }
}

@media (max-width: 768px) {
  .why-choose-details {
    margin-top: 40px;
    gap: 30px;
  }

  .why-detail-card {
    padding: 25px 20px;
  }

  .why-detail-content h3 {
    font-size: 1.5rem;
  }

  .why-detail-content p {
    font-size: 0.95rem;
  }

  .why-detail-images {
    grid-template-columns: 1fr;
  }

  .why-detail-images img {
    height: 180px;
  }

  .why-detail-card.reverse .why-detail-images img {
    min-height: 200px;
  }

  .whyus-details-section {
    padding: 50px 0;
  }

  .whyus-detail-card {
    padding: 25px 20px;
    margin-bottom: 30px;
  }

  .whyus-detail-content h3 {
    font-size: 1.5rem;
  }

  .whyus-detail-content p {
    font-size: 0.95rem;
  }

  .whyus-detail-images {
    grid-template-columns: 1fr;
  }

  .whyus-detail-images img {
    height: 180px;
  }

  .whyus-detail-card.reverse .whyus-detail-images img {
    min-height: 200px;
  }
}

/* Why Us Feature Sections */
.whyus-feature-section {
  padding: 50px 0;
}

.whyus-feature-section.blue-bg {
  background: #D0E1FF;
}

.whyus-feature-section.white-bg {
  background: white;
}

.whyus-feature-section.bordered {


  padding: 60px 40px;
}

.whyus-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 180px;
  align-items: center;
}

.whyus-feature-grid.reverse {
  direction: ltr;
}

.whyus-feature-content h3 {
  font-size: 2.5rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.whyus-feature-content p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

.whyus-feature-image {
  width: 100%;
}

.whyus-feature-image img {
  width: 100%;

  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.whyus-feature-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 968px) {
  .whyus-feature-section {
    padding: 60px 0;
  }

  .whyus-feature-section.bordered {
    margin: 0 15px;
    padding: 40px 25px;
  }

  .whyus-feature-grid,
  .whyus-feature-grid.reverse {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .whyus-feature-content h3 {
    font-size: 2rem;
  }

  .whyus-feature-image {
    order: -1;
  }

  .whyus-feature-image img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .whyus-feature-section {
    padding: 50px 0;
  }

  .whyus-feature-section.bordered {
    margin: 0 10px;
    padding: 30px 20px;
    border-width: 2px;
  }

  .whyus-feature-grid {
    gap: 30px;
  }

  .whyus-feature-content h3 {
    font-size: 1.75rem;
  }

  .whyus-feature-content p {
    font-size: 1rem;
  }

  .whyus-feature-image img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .whyus-feature-section.bordered {
    margin: 0 5px;
    padding: 25px 15px;
  }

  .whyus-feature-content h3 {
    font-size: 1.5rem;
  }

  .whyus-feature-content p {
    font-size: 0.95rem;
  }

  .whyus-feature-image img {
    height: 220px;
  }
}

/* Why Us Order Process Section */
.whyus-process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.whyus-process-header {
  text-align: center;
  margin-bottom: 60px;
}

.whyus-process-header h2 {
  font-size: 1.8rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 15px;
}

.whyus-process-header p {
  font-size: 1.1rem;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
}

.whyus-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.whyus-process-card {
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.whyus-process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(2, 56, 165, 0.15);
  border-color: #0038A5;
}

.whyus-step-badge {
  background: #e3f2fd;
  color: #0038A5;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

.whyus-step-icon {
  width: 80px;
  height: 80px;
  background: #0038A5;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.whyus-process-card:hover .whyus-step-icon {
  transform: scale(1.1);
  background: #01297a;
}

.whyus-process-card h3 {
  font-size: 1.3rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 15px;
}

.whyus-process-card p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

.whyus-arrow {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #0038A5;
  font-size: 1.5rem;
  z-index: 10;
}

.whyus-process-card:last-child .whyus-arrow {
  display: none;
}

@media (max-width: 1200px) {
  .whyus-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .whyus-arrow {
    display: none;
  }
}

@media (max-width: 768px) {
  .whyus-process-section {
    padding: 60px 0;
  }

  .whyus-process-header h2 {
    font-size: 2rem;
  }

  .whyus-process-header p {
    font-size: 1rem;
  }

  .whyus-process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .whyus-process-card {
    padding: 30px 20px;
  }

  .whyus-step-icon {
    width: 70px;
    height: 70px;
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .whyus-process-header h2 {
    font-size: 1.75rem;
  }

  .whyus-process-card h3 {
    font-size: 1.2rem;
  }

  .whyus-process-card p {
    font-size: 0.9rem;
  }
}

/* Why Us CTA Section */
.whyus-cta-section {
  padding: 50px 20px;
  background: white;
}

.whyus-cta-box {
  background: #D0E1FF;
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(2, 56, 165, 0.1);
}

.whyus-cta-box h2 {
  font-size: 2.5rem;
  color: #1a202c;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.whyus-cta-box p {
  font-size: 1.2rem;
  color: #000;
  margin-bottom: 35px;
}

.whyus-cta-btn {
  display: inline-block;
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 56, 165, 0.2);
}

.whyus-cta-btn:hover {
  background: #0038A5;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(2, 56, 165, 0.3);
}

@media (max-width: 768px) {
  .whyus-cta-section {
    padding: 60px 0;
  }

  .whyus-cta-box {
    padding: 40px 30px;
    border-radius: 20px;
  }

  .whyus-cta-box h2 {
    font-size: 1.75rem;
  }

  .whyus-cta-box p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .whyus-cta-btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .whyus-cta-box {
    padding: 35px 20px;
  }

  .whyus-cta-box h2 {
    font-size: 1.5rem;
  }

  .whyus-cta-box p {
    font-size: 0.95rem;
  }

  .whyus-cta-btn {
    width: 100%;
    padding: 14px 20px;
  }
}


/* --- SUSTAINABILITY SECTION --- */
.sustainability-section {
  padding: 80px 0;
  background: white;
}

.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  align-items: center;
}

.sustainability-image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.sustainability-image img {
  width: 70%;
  height: 100%;
  object-fit: cover;
  display: block;
  padding: 0 30px;
}

.sustainability-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  line-height: 1.3;
}

.sustainability-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

.sustainability-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.sustainability-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sustainability-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sustainability-icon i {
  font-size: 1.5rem;
  color: #0038A5;
}

.sustainability-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #1a1a1a;
}

.sustainability-footer {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .why-choose-header h2 {
    font-size: 1.75rem;
  }

  .sustainability-section {
    padding: 60px 0;
  }

  .sustainability-grid {
    gap: 40px;
  }

  .sustainability-text h2 {
    font-size: 1.75rem;
  }

  .sustainability-text p {
    font-size: 0.95rem;
  }

  .sustainability-item span {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .why-choose-section {
    padding: 0px 0;
  }

  .why-choose-header {
    margin-bottom: 40px;
  }

  .why-choose-header h2 {
    font-size: 1.5rem;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-card {
    padding: 35px 25px;
  }

  .why-choose-card h4 {
    font-size: 1.1rem;
  }

  .why-choose-card p {
    font-size: 0.95rem;
  }

  .sustainability-section {
    padding: 50px 0;
  }

  .sustainability-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sustainability-image {
    order: 1;
    height: auto;
  }

  .sustainability-image img {
    width: 100%;
    padding: 0;
  }

  .sustainability-text {
    order: 2;
  }

  .sustainability-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .sustainability-text p {
    font-size: 0.9rem;
    margin-bottom: 25px;
  }

  .sustainability-list {
    gap: 16px;
    margin-bottom: 25px;
  }

  .sustainability-icon {
    width: 26px;
    height: 26px;
  }

  .sustainability-icon i {
    font-size: 1.3rem;
  }

  .sustainability-item span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .sustainability-section {
    padding: 40px 0;
  }

  .sustainability-grid {
    gap: 25px;
  }

  .sustainability-image img {
    width: 100%;
    padding: 0;
  }

  .sustainability-text h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }

  .sustainability-text p {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }

  .sustainability-list {
    gap: 14px;
    margin-bottom: 20px;
  }

  .sustainability-icon {
    width: 24px;
    height: 24px;
  }

  .sustainability-icon i {
    font-size: 1.2rem;
  }

  .sustainability-item span {
    font-size: 0.85rem;
  }
}


/* --- SHOPPING CART SECTION --- */
.shopping-cart-section {
  padding: 60px 0;
  background: white;
}

.cart-table-wrapper {
  background: white;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 30px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table thead {
  background: white;
  border-bottom: 2px solid #e0e0e0;
}

.cart-table th {
  padding: 20px 30px;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}




.cart-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}

.cart-table tbody tr:last-child {
  border-bottom: none;
}

.cart-table td {
  padding: 30px;
}

/* Product Info */
.product-info {
  width: 50%;
}

.product-details {
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-details img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

.product-text h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.product-price-mobile {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 5px 0 0 0;
}

/* Quantity Controls */
.quantity-cell {

  width: 25%;
}

.quantity-controls {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.qty-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  color: #666;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.qty-btn:hover {
  background: #f5f5f5;
}

.qty-input {
  width: 60px;
  height: 40px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.qty-input:focus {
  outline: none;
}

/* Price Cell */
.price-cell {
  text-align: right;
  width: 25%;
  position: relative;
}

.price-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.item-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
}

.remove-btn {
  background: none;
  border: none;
  color: #0038A5;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-left: auto;
}

.remove-btn:hover {
  color: #002a7a;
}

.remove-btn i {
  font-size: 0.9rem;
}

/* Cart Actions */
.cart-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
}

.btn-continue,
.btn-clear-cart {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-continue {
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
}

.btn-continue:hover {
  background: #0038A5;
  color: white;
  text-decoration: none;
}

.btn-clear-cart {
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
}

.btn-clear-cart:hover {
  background: #0038A5;
  color: white;
}

/* Responsive Styles */
@media (max-width: 968px) {

  .cart-table th,
  .cart-table td {
    padding: 20px;
  }

  .product-details img {
    width: 70px;
    height: 70px;
  }

  .product-text h3 {
    font-size: 0.95rem;
  }

  .qty-btn {
    width: 35px;
    height: 35px;
  }

  .qty-input {
    width: 50px;
    height: 35px;
  }
}

@media (max-width: 768px) {
  .shopping-cart-section {
    padding: 40px 0;
  }

  .cart-table-wrapper {
    border: none;
    overflow-x: auto;
  }

  .cart-table {
    min-width: 600px;
  }

  .cart-table th,
  .cart-table td {
    padding: 15px;
  }

  .cart-table th {
    font-size: 1rem;
  }

  .product-details {
    gap: 15px;
  }

  .product-details img {
    width: 60px;
    height: 60px;
  }

  .product-text h3 {
    font-size: 0.9rem;
  }

  .item-price {
    font-size: 1rem;
  }

  .cart-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-continue,
  .btn-clear-cart {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .cart-table-wrapper {
    overflow-x: visible;
  }

  .cart-table {
    min-width: 100%;
    display: block;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table tbody {
    display: block;
  }

  .cart-table tbody tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
  }

  .cart-table td {
    display: block;
    padding: 0;
    text-align: left !important;
    width: 100% !important;
    border: none;
  }

  .product-info {
    width: 100%;
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }

  .product-details {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
  }

  .product-details img {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
  }

  .product-text {
    flex: 1;
  }

  .product-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  .product-price-mobile {
    display: none;
  }

  .quantity-cell {
    width: 100%;
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 15px;
  }

  .quantity-cell::before {
    content: "Quantity: ";
    font-weight: 600;
    margin-right: 10px;
    display: inline-block;
  }

  .quantity-controls {
    display: inline-flex;
  }

  .price-cell {
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .price-wrapper {
    display: block;
  }

  .item-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
  }

  .item-price::before {
    content: "Price: ";
    font-weight: 600;
    font-size: 1rem;
    display: block;
    margin-bottom: 5px;
    color: #666;
  }

  .remove-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    margin: 0;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
  }

  .remove-btn i {
    font-size: 1rem;
  }

  .cart-actions {
    margin-top: 20px;
  }

  .btn-continue,
  .btn-clear-cart {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}


/* --- CART BOTTOM SECTION --- */
.cart-bottom-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 100px;
}

/* Seller Note Section */
.seller-note-section h3,
.shipping-estimate-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.seller-note-textarea {
  width: 100%;
  min-height: 180px;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  resize: vertical;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.seller-note-textarea:focus {
  outline: none;
  border-color: #0038A5;
}

.seller-note-textarea::placeholder {
  color: #999;
}

.btn-save {
  padding: 12px 28px;
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-save:hover {
  background: #0038A5;
  color: white;
}

/* Shipping Estimate Section */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.form-select,
.form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 0.95rem;
  background: #f8f9fa;
  transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-select:focus,
.form-input:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

.form-select:disabled {
  background: #e9ecef;
  color: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.form-select option {
  padding: 10px;
  background: white;
  color: #1a1a1a;
}

.btn-calculate {
  width: 100%;
  padding: 12px 20px;
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-calculate:hover {
  background: #0038A5;
  color: white;
}

/* Checkout Summary */
.checkout-summary {
  display: flex;
  justify-content: flex-end;
}

.summary-card {
  width: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.summary-label {
  font-size: 1rem;
  font-weight: 500;
  color: #666;
}

.summary-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
}

.summary-note {
  font-size: 0.85rem;
  color: #000000;
  margin-bottom: 20px;
  text-align: center;
}

.btn-checkout {
  width: 100%;
  padding: 14px 20px;
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-checkout:hover {
  background: #0038A5;
  color: white;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .cart-bottom-section {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .checkout-summary {
    grid-column: 1 / -1;
  }

  .summary-card {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .cart-bottom-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .checkout-summary {
    grid-column: 1;
  }

  .summary-card {
    max-width: 100%;
  }

  .seller-note-textarea {
    min-height: 150px;
  }

  .form-select,
  .form-input {
    font-size: 1rem;
    padding: 14px 15px;
  }

  .form-select {
    background-position: right 12px center;
    padding-right: 45px;
  }
}

@media (max-width: 480px) {

  .seller-note-section h3,
  .shipping-estimate-section h3 {
    font-size: 1rem;
    margin-bottom: 15px;
  }

  .seller-note-textarea {
    min-height: 120px;
    padding: 12px;
    font-size: 1rem;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .form-select,
  .form-input {
    padding: 14px 15px;
    font-size: 1rem;
    border-width: 2px;
    min-height: 48px;
  }

  .form-select {
    background-position: right 12px center;
    padding-right: 45px;
    background-size: 14px;
  }

  .form-select option {
    font-size: 1rem;
    padding: 12px;
  }

  .btn-save,
  .btn-calculate {
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 48px;
    font-weight: 600;
  }

  .summary-card {
    padding: 20px;
  }

  .summary-label {
    font-size: 0.95rem;
  }

  .summary-value {
    font-size: 1.3rem;
  }

  .summary-note {
    font-size: 0.8rem;
  }

  .btn-checkout {
    padding: 14px 20px;
    font-size: 1rem;
    min-height: 48px;
    font-weight: 600;
  }
}


/* --- NEED ANYTHING ELSE SECTION --- */
.need-anything-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.need-anything-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 50px;
}

.need-anything-section .products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.need-anything-section .product-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.need-anything-section .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.need-anything-section .product-card:hover .product-image img {
  transform: scale(1.05);
}

.need-anything-section .product-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin: 20px 0;
  padding: 0 15px;
}

.btn-shop-now {
  display: inline-block;
  padding: 12px 32px;
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.btn-shop-now:hover {
  background: #0038A5;
  color: white;
  text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .need-anything-section .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 968px) {
  .need-anything-section {
    padding: 60px 0;
  }

  .need-anything-section h2 {
    font-size: 1.75rem;
    margin-bottom: 40px;
  }

  .need-anything-section .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .product-image {
    height: 240px;
  }

  .need-anything-section .product-card h3 {
    font-size: 1rem;
    margin: 15px 0;
  }

  .btn-shop-now {
    padding: 10px 28px;
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .need-anything-section {
    padding: 50px 0;
  }

  .need-anything-section h2 {
    font-size: 1.5rem;
    margin-bottom: 35px;
  }

  .product-image {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .need-anything-section {
    padding: 40px 0;
  }

  .need-anything-section h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }

  .need-anything-section .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image {
    height: 280px;
  }

  .need-anything-section .product-card h3 {
    font-size: 1.1rem;
  }

  .btn-shop-now {
    padding: 12px 32px;
    font-size: 0.95rem;
  }
}


/* Mobile Category Sections (for Label & Stickers) */
@media (max-width: 968px) {
  .mobile-category-section {
    padding: 0;
    margin-bottom: 20px;
  }

  .mobile-category-heading {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    padding: 12px 20px;
    margin: 0;
    background: white;
    border-bottom: 3px solid #0038A5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: white;
  }

  .mobile-category-list li {
    border-bottom: 1px solid #f0f0f0;
  }

  .mobile-category-list li:last-child {
    border-bottom: none;
  }

  .mobile-category-list a {
    display: block;
    padding: 14px 20px;
    color: #0038A5;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  .mobile-category-list a:hover {
    background: #f8f9fa;
    padding-left: 25px;
  }

  .mobile-category-list .all-link-mobile {
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-category-list .all-link-mobile::before {
    content: "→";
    font-size: 1.2rem;
  }

  .mobile-premium-section {
    margin-top: 30px;
    padding: 20px;
    background: white;
    text-align: center;
  }

  .mobile-premium-section h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
  }

  .mobile-premium-section h3 span {
    color: #FFD700;
  }

  .mobile-premium-section img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
  }
}




/* --- QUOTE PAGE HERO SECTION --- */
.quote-hero-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #f0f4ff 100%);
  padding: 40px 0 60px;
  position: relative;
}

.quote-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.quote-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  padding: 0px;
}

.quote-breadcrumb a {
  color: #0038A5;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.quote-breadcrumb a:hover {
  color: #01297a;
}

.quote-breadcrumb i {
  font-size: 0.7rem;
  color: #64748b;
}

.quote-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.quote-hero-text h1 {
  font-size: 2rem;
  color: #0038A5;
  font-weight: 800;
  line-height: 1.2;
  margin: 50px 0 20px 0;
}

.quote-hero-text p {
  font-size: 1.15rem;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

.quote-hero-images {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
}

.quote-hero-images img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;

  transition: transform 0.3s ease;
}

.quote-hero-images img:hover {
  transform: translateY(-10px);
}

.quote-hero-images img:nth-child(2) {
  transform: translateY(-20px);
}

.quote-hero-images img:nth-child(2):hover {
  transform: translateY(-30px);
}

@media (max-width: 968px) {
  .quote-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .quote-hero-text h1 {
    font-size: 2rem;
  }

  .quote-hero-images {
    justify-content: center;
  }

  .quote-hero-images img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .quote-hero-section {
    padding: 30px 0 50px;
  }

  .quote-hero-text h1 {
    font-size: 1.75rem;
  }

  .quote-hero-text p {
    font-size: 1rem;
  }

  .quote-hero-images img {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .quote-hero-text h1 {
    font-size: 1.5rem;
  }

  .quote-hero-images img {
    height: 180px;
  }
}

/* Quote Form Wrapper & Fields */
.quote-form-wrapper {
  max-width: 900px;
  margin: -45px auto;
  background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);

  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 12px 40px rgba(0, 56, 165, 0.2), 0 0 0 1px rgba(0, 56, 165, 0.1);
  position: relative;
  z-index: 10;
}

.quote-form-wrapper::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;

  border-radius: 16px;
  z-index: -1;
  opacity: 0.1;
}

.quote-form-wrapper h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0038A5;
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 20px;
  border-bottom: 2px solid #0038A5;
  position: relative;
}

.quote-form-wrapper h2::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;

  border-radius: 2px;
}

.quote-form-wrapper .form-subtitle {
  font-size: 1.1rem;
  color: #0066FF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.quote-form .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.quote-form .form-row:has(input[type="email"]) {
  grid-template-columns: 1fr 1fr;
}

.quote-form .form-row:has(select) {
  grid-template-columns: 1fr 1fr;
}

.quote-form .form-group {
  width: 100%;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #d1d5db;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s;
  background: white;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 4px rgba(0, 56, 165, 0.15);
  transform: translateY(-2px);
}

.quote-form textarea {
  resize: vertical;
  min-height: 100px;
}

.file-upload-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.file-upload-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.file-upload-label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px dashed #0038A5;
  border-radius: 10px;
  background: #f0f7ff;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 0;
}

.file-upload-label:hover {
  border-color: #0066FF;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.15);
  transform: translateY(-2px);
}

.file-upload-label i {
  color: #0038A5;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.file-upload-label span {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-browse {
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
}

.btn-browse:hover {
  background: linear-gradient(135deg, #01297a 0%, #0038A5 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.4);
}

.btn-info {
  background: #e3f2fd;
  color: #0038A5;
  border: 2px solid #0038A5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-info:hover {
  background: #0038A5;
  color: white;
  transform: rotate(15deg) scale(1.1);
}

.form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.privacy-notice {
  flex: 1;
}

.privacy-notice p {
  font-size: 0.85rem;
  color: #0066FF;
  line-height: 1.5;
  margin: 0;
}

.privacy-notice a {
  color: #0038A5;
  text-decoration: underline;
  font-weight: 600;
}

.btn-submit-quote {
  background: #0038A5;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn-submit-quote:hover {
  background: #01297a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.3);
}

.btn-submit-quote i {
  font-size: 1rem;
}

/* --- QUOTE TRUST SECTION --- */
.quote-trust-section {
  background: white;
  padding: 85px 0;
  border: none;
  width: 100%;
  overflow: hidden;
}

.quote-trust-wrapper {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  justify-content: flex-start;
}

/* Left Side: Blue Sidebar Card with Reviews */
.quote-trust-sidebar-card {
  width: 420px;
  height: 240px;
  background: #0038A5;
  border-radius: 0 20px 20px 0;
  flex-shrink: 0;
  box-shadow: 10px 0 30px rgba(0, 56, 165, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 30px;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.quote-review-badge {
  background: white;
  border-radius: 8px;
  padding: 12px 20px;
  width: 30%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-review-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.quote-review-platform.google img {
  width: 33px;
  height: 33px;
}

.quote-review-platform .quote-stars {
  color: #ffc107;
  font-size: 14px;
  letter-spacing: 2px;
}

.quote-trustpilot-icon {
  width: 24px;
  height: 24px;
  background: #00b67a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: 18px;
}

/* Right Side: Content Area */
.quote-trust-main-content {
  flex: 1;
  text-align: left;
  padding-left: 60px;
  padding-right: 25%;
}

.quote-trust-content-inner {
  max-width: 750px;
  width: 100%;
}

.quote-trust-main-content h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 40px 0;
  max-width: 100%;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.quote-trust-logos-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  z-index: 1;
}

.quote-trust-logos {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 100px;
  animation: scrollQuoteLogos 25s linear infinite;
  width: max-content;
}

@keyframes scrollQuoteLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.quote-trust-logos-wrapper:hover .quote-trust-logos {
  animation-play-state: paused;
}

.quote-trust-logos .quote-logo-item {
  background: none;
  padding: 0;
  box-shadow: none;
  min-height: auto;
  min-width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-trust-logos .quote-logo-item img {
  height: 50px;
  max-height: 80px;
  width: auto;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: none;
}

.quote-trust-logos .quote-logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Responsive Styles */
@media (max-width: 968px) {
  .quote-trust-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .quote-trust-sidebar-card {
    width: 100%;
    max-width: 400px;
    height: 150px;
  }

  .quote-trust-logos {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .quote-trust-section {
    padding: 40px 0;
  }

  .quote-trust-wrapper {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .quote-trust-sidebar-card {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 30px 20px;
    border-radius: 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 20px;
  }

  .quote-trust-main-content {
    text-align: center;
    background: white;
    padding: 30px 20px;
    width: 100%;
  }

  .quote-trust-main-content h2 {
    font-size: 1.2rem;
  }

  .quote-trust-logos {
    gap: 30px;
  }

  .quote-trust-logos .quote-logo-item img {
    height: 40px;
    max-height: 60px;
  }
}

@media (max-width: 480px) {
  .quote-trust-section {
    padding: 30px 0;
  }

  .quote-trust-sidebar-card {
    padding: 25px 15px;
  }

  .quote-trust-main-content {
    padding: 25px 15px;
  }

  .quote-trust-main-content h2 {
    font-size: 1.1rem;
  }

  .quote-review-badge {
    padding: 10px 15px;
  }

  .quote-trust-logos {
    gap: 30px;
  }

  .quote-trust-logos .quote-logo-item img {
    height: 35px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .quote-hero-section {
    padding: 0px 0 30px;
  }

  .quote-hero-text h1 {
    font-size: 1.75rem;
  }

  .quote-form-wrapper {
    padding: 25px 20px;
    margin: 0 auto;
    border-width: 2px;
    max-width: 95%;
  }

  .quote-form-wrapper::before {
    display: none;
  }

  .quote-form-wrapper h2 {
    font-size: 1.5rem;
    padding-bottom: 15px;
  }

  .quote-form-wrapper h2::after {
    width: 80px;
    height: 3px;
  }

  .quote-form-wrapper .form-subtitle {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .quote-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .file-upload-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .file-upload-label {
    padding: 12px 15px;
  }

  .btn-browse {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-info {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
  }

  .privacy-notice p {
    font-size: 0.85rem;
    text-align: center;
  }

  .btn-submit-quote {
    font-size: 1rem;
    padding: 14px 30px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .quote-form-wrapper {
    padding: 20px 15px;
    max-width: 100%;
    margin: 0 10px;
  }

  .quote-form-wrapper h2 {
    font-size: 1.3rem;
  }

  .quote-form-wrapper .form-subtitle {
    font-size: 0.9rem;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }

  .file-upload-label {
    padding: 10px 12px;
  }

  .file-upload-label span {
    font-size: 0.85rem;
  }

  .btn-browse {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .btn-submit-quote {
    font-size: 0.95rem;
    padding: 12px 25px;
  }
}


/* === FAQ TABS SECTION === */
.faq-tabs-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-tab-nav {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.faq-tab-btn {
  background: white;
  color: #6b7280;
  border: 2px solid #e5e7eb;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.faq-tab-btn:hover {
  border-color: #0038A5;
  color: #0038A5;
  transform: translateY(-2px);
}

.faq-tab-btn.active {
  background: #0038A5;
  color: white;
  border-color: #0038A5;
}

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

.faq-tab-pane {
  display: none;
}

.faq-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 56, 165, 0.15);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1f2937;
  transition: all 0.3s;
}

.faq-question:hover {
  color: #0038A5;
}

.faq-question i {
  color: #0038A5;
  font-size: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 25px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  font-size: 0.98rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-tabs-section {
    padding: 50px 0;
  }

  .faq-tab-nav {
    gap: 10px;
    margin-bottom: 30px;
  }

  .faq-tab-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 0.95rem;
  }

  .faq-question span {
    padding-right: 10px;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .faq-tabs-section {
    padding: 40px 0;
  }

  .faq-tab-nav {
    gap: 8px;
  }

  .faq-tab-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }
}

/* === HOME PAGE FILE UPLOAD STYLING (MATCHING GETQUOTE) === */
.file-upload-group-home {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

.file-upload-label-home {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border: 2px dashed #0038A5;
  border-radius: 10px;
  background: #f0f7ff;
  cursor: pointer;
  transition: all 0.3s;
  min-width: 0;
}

.file-upload-label-home:hover {
  border-color: #0066FF;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.15);
  transform: translateY(-2px);
}

.file-upload-label-home i {
  color: #0038A5;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.file-upload-label-home span {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload-label-home input[type="file"] {
  display: none;
}

.btn-browse-home {
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.3);
  flex-shrink: 0;
}

.btn-browse-home:hover {
  background: linear-gradient(135deg, #01297a 0%, #0038A5 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.4);
}

.btn-info-home {
  background: #e3f2fd;
  color: #0038A5;
  border: 2px solid #0038A5;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-info-home:hover {
  background: #0038A5;
  color: white;
  transform: rotate(15deg) scale(1.1);
}

/* Mobile Responsive for Home File Upload */
@media (max-width: 768px) {
  .file-upload-label-home {
    padding: 12px 15px;
  }

  .btn-browse-home {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .btn-info-home {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .file-upload-label-home {
    padding: 10px 12px;
  }

  .file-upload-label-home span {
    font-size: 0.85rem;
  }

  .btn-browse-home {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

/* === FAQ CONTACT SECTION === */
.faq-contact-section {
  padding: 0px 0;
  background: white;
}

.faq-contact-box {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border: 2px solid #0038A5;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 8px 30px rgba(0, 56, 165, 0.15);
}

.faq-contact-box h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  margin-bottom: 40px;
}

.faq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-form-group label {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1f2937;
}

.faq-form-group input,
.faq-form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
  background: #f9fafb;
}

.faq-form-group input:focus,
.faq-form-group textarea:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.faq-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send-message {
  background: #0038A5;
  color: white;
  border: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  align-self: center;
  min-width: 200px;
}

.btn-send-message:hover {
  background: #01297a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .faq-contact-section {
    padding: 50px 0;
  }

  .faq-contact-box {
    padding: 35px 25px;
    max-width: 95%;
  }

  .faq-contact-box h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .faq-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .faq-contact-form {
    gap: 20px;
  }

  .btn-send-message {
    width: 100%;
    padding: 14px 30px;
  }
}

@media (max-width: 480px) {
  .faq-contact-section {
    padding: 40px 0;
  }

  .faq-contact-box {
    padding: 25px 20px;
    max-width: 100%;
    margin: 0 10px;
  }

  .faq-contact-box h2 {
    font-size: 1.4rem;
  }

  .faq-form-group input,
  .faq-form-group textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }

  .btn-send-message {
    font-size: 1rem;
    padding: 12px 25px;
  }
}


/* === SCROLL TO TOP BUTTON === */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 56, 165, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99999;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #01297a 0%, #0038A5 100%);
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.5);
}

.scroll-to-top:active {
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
    z-index: 99999;
  }

  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
    z-index: 99999;
  }

  .scroll-to-top.show {
    opacity: 1;
    visibility: visible;
  }
}


/* === LOGIN PAGE === */
.login-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  padding: 40px 20px;
}

.login-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  max-width: 1100px;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
  min-height: 500px;
}

.login-form-side {
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-form-wrapper {
  width: 100%;
  max-width: 350px;
}

.login-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 35px;
  line-height: 1.3;
}

.brand-name {
  color: #0038A5;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.login-form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.login-form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s;
  background: #f9fafb;
}

.login-form-group input:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.toggle-password:hover {
  color: #0038A5;
}

.forgot-password-wrapper {
  text-align: right;
  margin-top: -8px;
}

.forgot-password-link {
  color: #0038A5;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s;
}

.forgot-password-link:hover {
  color: #0066FF;
  text-decoration: underline;
}

.btn-sign-in {
  width: 100%;
  padding: 13px;
  background: #0038A5;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.btn-sign-in:hover {
  background: #01297a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.3);
}

.signup-link-wrapper {
  text-align: center;
  margin-top: 8px;
}

.signup-link-wrapper p {
  font-size: 0.9rem;
  color: #6b7280;
}

.signup-link {
  color: #0038A5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.signup-link:hover {
  color: #0066FF;
  text-decoration: underline;
}

.login-image-side {

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.login-image-side::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px);
  animation: stripeMove 20s linear infinite;
}

@keyframes stripeMove {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(50px, 50px);
  }
}

.login-product-showcase {
  position: relative;
  z-index: 1;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-product-img {
  max-width: 100%;
  height: auto;
  max-height: 450px;
  object-fit: contain;


}

@keyframes loginFloatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}


/* Mobile Responsive */
@media (max-width: 968px) {
  .login-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .login-image-side {
    display: flex;
    order: -1;
    min-height: 250px;
    padding: 20px;
  }

  .login-form-side {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .login-section {
    padding: 20px 10px;
  }

  .login-form-side {
    padding: 30px 20px;
  }

  .login-title {
    font-size: 1.4rem;
  }

  .login-form-group input {
    padding: 11px 13px;
  }

  .btn-sign-in {
    padding: 12px;
  }
}


/* Login Form Error Styling */
.login-form-group input.input-error {
  border-color: #ef4444;
  background: #fef2f2;
}

.login-form-group input.input-error:focus {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.error-message::before {
  content: '⚠';
  font-size: 1rem;
}


/* Pouches Form Error Styling */
.pouches-input-error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.pouches-input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.pouches-error-message {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pouches-error-message::before {
  content: '⚠';
  font-size: 1rem;
}


/* Product Form Error Styling */
.product-input-error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.product-input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.product-error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-error-message::before {
  content: '⚠';
  font-size: 0.9rem;
}


/* GetQuote Form Error Styling */
.quote-input-error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.quote-input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

.quote-error-message {
  color: #dc2626;
  font-size: 0.85rem;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.quote-error-message::before {
  content: '⚠';
  font-size: 1rem;
}


/* Blog Page Styles */
.blog-content-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.blog-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
}

/* Sidebar Styles */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.search-box {
  display: flex;
  background: white;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.search-box input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  outline: none;
  font-size: 14px;
}

.search-box button {
  padding: 12px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
}

.top-blogs,
.top-selling {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.top-blogs h3,
.top-selling h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.top-blogs-list {
  list-style: none;
  counter-reset: blog-counter;
  padding: 0;
}

.top-blogs-list li {
  counter-increment: blog-counter;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
  position: relative;
  padding-left: 40px;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.top-blogs-list li:last-child {
  border-bottom: none;
}

.top-blogs-list li::before {
  content: counter(blog-counter);
  position: absolute;
  left: 0;
  top: 15px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

/* Top Selling Products */
.top-selling-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.selling-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.selling-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.selling-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.selling-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 5px 0;
}

.selling-info p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Blog Grid Styles */
.blog-grid {
  position: relative;
}

.view-toggle {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 30px;
}

.view-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd;
  background: white;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.view-btn:hover,
.view-btn.active {
  background: #8B4513;
  color: white;
  border-color: #8B4513;
}

.blog-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.blog-card {

  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}


.blog-card>a {
  overflow: hidden;
  display: block;
}

.blog-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
  display: block;
}

.blog-card-content {
  padding: 16px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-meta {
  display: flex;
  gap: 0;
  font-size: 13px;
  color: #888;
  align-items: center;
}

.blog-meta .blog-meta-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-meta .blog-category {
  font-weight: 500;
  color: #555;
  font-size: 13px;
}

.blog-meta .blog-separator {
  color: #ccc;
  font-size: 13px;
}

.blog-meta .blog-date {
  color: #888;
  font-size: 13px;
}

.blog-meta .blog-meta-right {
  display: none;
}

.blog-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1.4;
}

.blog-card h3 a {
  color: #111;
  text-decoration: none;
}

.blog-card h3 a:hover {
  color: #0038A5;
}

.blog-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 250px 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    order: 2;
  }

  .blog-grid {
    order: 1;
  }

  .blog-cards {
    grid-template-columns: 1fr;
  }
}


/* Pagination Styles */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 50px;
}

.pagination-btn {
  width: 50px;
  height: 50px;
  border: none;
  background: #f5f5f5;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-btn:hover {
  background: #e0e0e0;
}

.pagination-btn.active {
  background: #1e5bb8;
  color: white;
}

.pagination-btn.prev-btn,
.pagination-btn.next-btn {
  background: transparent;
  font-size: 20px;
}

.pagination-btn.prev-btn:hover,
.pagination-btn.next-btn:hover {
  background: transparent;
  color: #1e5bb8;
}

.pagination-dots {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  padding: 0 5px;
}


/* Register Page Styles */
.register-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fa;
  padding: 40px 20px;
}

.register-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  max-width: 1100px;
  width: 100%;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
  min-height: 500px;
}

.register-form-wrapper {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.register-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 35px;
  line-height: 1.3;
}

.brand-text {
  color: #0038A5;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
}

.form-group input[type="text"],
.form-group input[type="email"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s;
  background: #f9fafb;
}

.form-group input:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.password-input {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input input {
  width: 100%;
  padding: 12px 45px 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s;
  background: #f9fafb;
}

.password-input input:focus {
  outline: none;
  border-color: #0038A5;
  background: white;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.toggle-password {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.toggle-password:hover {
  color: #0038A5;
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
  font-weight: 400;
}

.checkbox-group a {
  color: #0038A5;
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.register-btn {
  width: 100%;
  padding: 13px;
  background: #0038A5;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.register-btn:hover {
  background: #01297a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.3);
}

.signin-link {
  text-align: center;
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6b7280;
}

.signin-link a {
  color: #0038A5;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.signin-link a:hover {
  color: #0066FF;
  text-decoration: underline;
}

.register-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.register-image-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      rgba(255, 255, 255, 0.05) 10px,
      rgba(255, 255, 255, 0.05) 20px);
  animation: stripeMove 20s linear infinite;
}

.register-image-wrapper img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 700px;
  object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 968px) {
  .register-container {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .register-image-wrapper {
    display: flex;
    order: -1;
    min-height: 250px;
    padding: 20px;
  }

  .register-form-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 480px) {
  .register-section {
    padding: 20px 10px;
  }

  .register-form-wrapper {
    padding: 30px 20px;
  }

  .register-title {
    font-size: 1.4rem;
  }

  .form-group input {
    padding: 11px 13px;
  }

  .password-input input {
    padding: 11px 45px 11px 13px;
  }

  .register-btn {
    padding: 12px;
  }
}

/* Register Form Error Styling */
.form-group input.input-error,
.password-input input.input-error {
  border-color: #ef4444 !important;
  background: #fef2f2 !important;
}

.form-group input.input-error:focus,
.password-input input.input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 5px;
  display: block;
  min-height: 18px;
}

.error-message:empty {
  display: none;
}

.checkbox-group+.error-message {
  margin-top: 5px;
  margin-left: 30px;
}


/* Store Products Section */
.store-products-section {
  padding: 80px 0;
  background-color: #F9F9F9;
}

.store-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 370px);
  gap: 60px;
  justify-content: center;
}

.store-product-card {
  width: 370px;
  height: 562px;
  background: #EFF1F3;
  border-radius: 20px;
  padding: 0;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}

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

.store-product-image {
  background: #EFF1F3;
  border-radius: 0;
  padding: 30px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.store-product-image img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 300px;
}

/* First card specific centering */
.store-product-card:first-child .store-product-image {
  position: relative;
}

.store-product-card:first-child .store-product-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.store-product-card:first-child .store-product-image img:first-child {
  z-index: 2;
  transform: translate(-71%, -42%);
}

.store-product-card:first-child .rotate-90 {
  transform: translate(-50%, -50%) rotate(40deg);
  z-index: 1;
}

/* General rules for other cards */
.store-product-image img:first-child {
  z-index: 2;
}

.rotate-90 {
  transform: rotate(90deg);
  z-index: 1;
}

.store-product-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e5bb8;
  margin: 20px 0 15px 0;
  padding: 0 25px;
}

.store-product-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 20px;
  padding: 0 25px;
  text-align: center;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.store-explore-btn {
  padding: 12px 40px;
  background: transparent;
  color: #1e5bb8;
  border: 2px solid #1e5bb8;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin: 0 auto 25px auto;
  display: block;
}

.store-explore-btn:hover {
  background: #1e5bb8;
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .store-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .store-cards-grid {
    grid-template-columns: 1fr;
  }

  .store-product-image {
    min-height: 300px;
    padding: 40px;
  }

  .store-product-card h3 {
    font-size: 24px;
  }

  .store-product-card p {
    font-size: 14px;
    padding: 0 30px;
  }
}

/* Rotate image 90 degrees */
.rotate-90 {
  transform: rotate(40deg);
  position: relative;
  right: 49%;
}

/* Artwork Guidelines Styles */
.artwork-section {
  padding: 40px 0;
  background: white;
}



.artwork-container,
.colors-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.artwork-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 222px;
  align-items: center;
}

.artwork-visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.software-preview img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.formats-preview img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.dielines-image img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.resolution-visual img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.graphics-preview img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.artwork-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.artwork-content.reverse .artwork-visual {
  order: 1;
}

.artwork-content.reverse .artwork-text {
  order: 2;
}

.artwork-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.artwork-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* File Formats Styling */
.file-formats {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.format-icon {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.ai-icon {
  background: linear-gradient(135deg, #ff9a00 0%, #ff6600 100%);
}

.ps-icon {
  background: linear-gradient(135deg, #00c8ff 0%, #0066cc 100%);
}

.pdf-icon {
  background: linear-gradient(135deg, #ff4444 0%, #cc0000 100%);
}

.format-icon span {
  font-size: 24px;
  margin-bottom: 5px;
}

.format-icon small {
  font-size: 12px;
  opacity: 0.9;
}

.software-preview {
  border-radius: 12px;
  padding: 0;
  text-align: center;
  width: 100%;
}

.software-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Colors Profile Styling */
.color-samples {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}

.color-circle {
  text-align: center;
}

.color-dot {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.color-dot.orange {
  background: linear-gradient(135deg, #ff9500 0%, #ff6600 100%);
}

.color-dot.yellow-dots {
  background: linear-gradient(135deg, #ffcc00 0%, #ff9900 100%);
  position: relative;
}

.color-dot.yellow-dots::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, transparent 2px, #ffcc00 2px, #ffcc00 4px, transparent 4px);
  background-size: 8px 8px;
  border-radius: 50%;
}

.color-circle span {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.color-picker {
  background: #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  color: white;
}

.color-wheel {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #ff0000, #ffff00, #00ff00, #00ffff, #0000ff, #ff00ff, #ff0000);
  margin: 0 auto 20px;
  position: relative;
}

.color-wheel::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, white 0%, transparent 70%);
  border-radius: 50%;
}

.color-values {
  font-size: 12px;
}

.value-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.color-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.color-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.point-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-check {
  background: #1e5bb8;
  color: white;
  font-size: 12px;
}

.blue-check::before {
  content: '✓';
  font-weight: bold;
}

.cmyk-icon {
  background: #0066cc;
}

.pms-icon {
  background: #ff6600;
}

.point-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.point-text strong {
  color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .artwork-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .artwork-content.reverse .artwork-visual,
  .artwork-content.reverse .artwork-text {
    order: unset;
  }
}

@media (max-width: 768px) {
  .artwork-section {
    padding: 30px 0;
  }

  .artwork-text h2 {
    font-size: 28px;
  }

  .file-formats {
    justify-content: center;
  }

  .color-samples {
    justify-content: center;
  }

  .software-preview img,
  .artwork-visual img,
  .colors-section .artwork-visual img {
    width: 100%;
    height: auto;
  }
}

/* New File Formats Section with Unique Classes */
.file-formats-section {
  padding: 40px 0;
  background: white;
}

.formats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.formats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.formats-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.formats-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.formats-preview {
  border-radius: 12px;
  padding: 0;
  text-align: center;
  width: 100%;
}

.formats-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive Design for New Section */
@media (max-width: 1024px) {
  .formats-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .file-formats-section {
    padding: 30px 0;
  }

  .formats-text h2 {
    font-size: 28px;
  }

  .formats-preview img {
    width: 100%;
    height: auto;
  }
}

/* Dielines and Templates Section */
.dielines-section {
  padding: 40px 0;
  background: white;
}

.dielines-container {
  background: #ffffff;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dielines-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 130px;
  align-items: center;
}

.dielines-image {
  border-radius: 12px;
  padding: 0;
  text-align: center;
  width: 100%;
}

.dielines-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.dielines-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.dielines-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.dielines-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.dieline-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.point-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-bullet {
  background: #1e5bb8;
  color: white;
  font-size: 12px;
}

.blue-bullet::before {
  content: '✓';
  font-weight: bold;
}

.point-content {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.point-content strong {
  color: #333;
}

/* Responsive Design for Dielines Section */
@media (max-width: 1024px) {
  .dielines-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .dielines-section {
    padding: 30px 0;
  }

  .dielines-text h2 {
    font-size: 28px;
  }

  .dielines-points {
    text-align: left;
  }

  .dielines-image img {
    width: 100%;
    height: auto;
  }
}

/* Resolution Requirements Section */
.resolution-section {
  padding: 40px 0;
  background: white;
}

.resolution-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.resolution-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.resolution-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.resolution-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
}

.resolution-visual {
  width: 100%;
  max-width: 490px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resolution-visual img {
  max-width: 100%;
  height: auto;
}

.dpi-indicators {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.dpi-box {
  padding: 15px 30px;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  min-width: 120px;
}

.low-quality {
  background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
  opacity: 0.7;
}

.medium-quality {
  background: linear-gradient(135deg, #ff9500 0%, #ff7043 100%);
  opacity: 0.8;
}

.high-quality {
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

/* Images & Graphics Section */
.images-graphics-section {
  padding: 40px 0;
  background: white;
}

.graphics-container {
  background: #FFFFFF;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.graphics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.graphics-preview {
  border-radius: 12px;
  padding: 0;
  text-align: center;
  width: 100%;
}

.graphics-preview img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.graphics-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.graphics-text p {
  font-size: 16px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.graphics-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.graphics-point {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.graphics-bullet {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-dot {
  background: #1e5bb8;
  color: white;
  font-size: 12px;
}

.blue-dot::before {
  content: '✓';
  font-weight: bold;
}

.graphics-content-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

.graphics-content-text strong {
  color: #333;
}

/* Responsive Design for Both Sections */
@media (max-width: 1024px) {

  .resolution-content,
  .graphics-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .dpi-indicators {
    align-items: center;
  }
}

@media (max-width: 768px) {

  .resolution-section,
  .images-graphics-section {
    padding: 30px 0;
  }

  .resolution-text h2,
  .graphics-text h2 {
    font-size: 28px;
  }

  .graphics-points {
    text-align: left;
  }

  .resolution-visual {
    width: 100%;
    max-width: 100%;
  }

  .resolution-visual img {
    width: 100%;
    height: auto;
  }

  .graphics-preview img {
    width: 100%;
    height: auto;
  }
}

/* Printing Methods Section */
.printing-methods-section {
  padding: 40px 0;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.printing-methods-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.printing-method-card {
  background: white;
  width: 380px;
  height: 370px;
  padding: 40px 30px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.printing-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* First card - top left corner */
.printing-method-card:first-child::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
  height: 120px;
  background: #0038A5;
  border-radius: 0 0 120px 0;
  z-index: 1;
}

.printing-method-card:first-child .method-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Second card - bottom right corner */
.printing-method-card:nth-child(2)::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #0038A5;
  border-radius: 120px 0 0 0;
  z-index: 1;
}

.printing-method-card:nth-child(2) .method-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.printing-method-card:nth-child(2) {
  width: 380px;
  height: 370px;
  padding: 40px 30px;
}

/* Third card - top right corner */
.printing-method-card:last-child::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: #0038A5;
  border-radius: 0 0 0 120px;
  z-index: 1;
}

.printing-method-card:last-child .method-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

/* Default method icon for first and third cards */
.printing-method-card:first-child .method-icon,
.printing-method-card:last-child .method-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
}

.printing-method-card:hover .method-icon {
  transform: scale(1.1);
}

.method-icon i {
  font-size: 1.8rem;
  color: white;
}

.printing-method-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  margin-top: 30px;
}

.printing-method-card p {
  color: #000000;
  line-height: 1.6;
  font-size: 1rem;
}

.center-card {
  position: relative;
}

/* Responsive Design */
@media (max-width: 1300px) {
  .printing-methods-grid {
    gap: 20px;
    padding: 0 20px;
  }
}

@media (max-width: 1200px) {
  .printing-methods-grid {
    gap: 15px;
    padding: 0 15px;
  }
}

@media (max-width: 768px) {
  .printing-methods-section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .printing-methods-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 0 20px;
  }

  .printing-method-card {
    width: 100%;
    max-width: 380px;
    height: 320px;
    padding: 30px 20px;
  }

  /* First card - top left */
  .printing-method-card:first-child::before {
    width: 100px;
    height: 100px;
    border-radius: 0 0 100px 0;
  }

  .printing-method-card:first-child .method-icon {
    top: 15px;
    left: 15px;
    width: 50px;
    height: 50px;
  }

  /* Second card - bottom right */
  .printing-method-card:nth-child(2) {
    width: 100%;
    max-width: 380px;
    height: 320px;
    padding: 30px 20px;
  }

  .printing-method-card:nth-child(2)::before {
    width: 100px;
    height: 100px;
    border-radius: 100px 0 0 0;
  }

  .printing-method-card:nth-child(2) .method-icon {
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }

  /* Third card - top right */
  .printing-method-card:last-child::before {
    width: 100px;
    height: 100px;
    border-radius: 0 0 0 100px;
  }

  .printing-method-card:last-child .method-icon {
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 480px) {
  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  .printing-method-card {
    width: 100%;
    max-width: 350px;
    height: 280px;
    padding: 25px 15px;
  }

  /* First card - top left */
  .printing-method-card:first-child::before {
    width: 80px;
    height: 80px;
    border-radius: 0 0 80px 0;
  }

  .printing-method-card:first-child .method-icon {
    top: 12px;
    left: 12px;
    width: 40px;
    height: 40px;
  }

  /* Second card - bottom right */
  .printing-method-card:nth-child(2) {
    width: 100%;
    max-width: 350px;
    height: 280px;
    padding: 25px 15px;
  }

  .printing-method-card:nth-child(2)::before {
    width: 80px;
    height: 70px;
    border-radius: 80px 0 0 0;
  }

  .printing-method-card:nth-child(2) .method-icon {
    bottom: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  /* Third card - top right */
  .printing-method-card:last-child::before {
    width: 80px;
    height: 70px;
    border-radius: 0 0 0 80px;
  }

  .printing-method-card:last-child .method-icon {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
  }

  .printing-method-card h3 {
    font-size: 1.3rem;
  }

  .method-icon i {
    font-size: 1.3rem;
  }
}

/* Digital Printing Details Section */
.printing-details-section {
  padding: 80px 50px;
  background-color: #ffffff;
}

.printing-details-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.details-text {
  flex: 1;
  max-width: 600px;
}

.details-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.details-text p {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
  margin-bottom: 30px;
}

.printing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.printing-features li {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.printing-features li::before {
  content: '•';
  color: #0038A5;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
}

.details-image {
  flex: 1;
  max-width: 500px;
}

.image-placeholder {
  width: 500px;
  height: 350px;


  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .printing-details-content {
    gap: 40px;
    padding: 0 20px;
  }

  .details-text h2 {
    font-size: 2.2rem;
  }

  .image-placeholder {
    width: 450px;
    height: 315px;
  }
}

@media (max-width: 768px) {
  .printing-details-section {
    padding: 60px 0;
  }

  .printing-details-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .details-text {
    max-width: 100%;
  }

  .details-text h2 {
    font-size: 2rem;
  }

  .printing-features {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

  .image-placeholder {
    width: 100%;
    max-width: 450px;
    height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .printing-details-content {
    padding: 0 15px;
  }

  .details-text h2 {
    font-size: 1.8rem;
  }

  .details-text p {
    font-size: 1rem;
  }

  .printing-features li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .image-placeholder {
    height: 250px;
  }
}

/* Flexographic Printing Details Section */
.flexographic-details-section {
  padding: 80px 0;
  background-color: #D0E1FF;
}

.flexographic-details-content {
  display: flex;
  align-items: center;
  gap: 180px;
  max-width: 1200px;
  margin: 0 auto;
}

.details-image-left {
  flex: 1;
  max-width: 450px;
}

.image-placeholder-left {
  width: 450px;
  height: 300px;

  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

.details-text-right {
  flex: 1;
  max-width: 600px;
}

.details-text-right h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.details-text-right p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.printing-features-right {
  list-style: none;
  padding: 0;
  margin: 0;
}

.printing-features-right li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.printing-features-right li::before {
  content: '•';
  color: #0038A5;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Responsive Design for Flexographic Section */
@media (max-width: 1024px) {
  .flexographic-details-content {
    gap: 40px;
    padding: 0 20px;
  }

  .details-text-right h2 {
    font-size: 2.2rem;
  }

  .image-placeholder-left {
    width: 400px;
    height: 270px;
  }
}

@media (max-width: 768px) {
  .flexographic-details-section {
    padding: 60px 0;
  }

  .flexographic-details-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .details-text-right {
    max-width: 100%;
  }

  .details-text-right h2 {
    font-size: 2rem;
  }

  .printing-features-right {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

  .image-placeholder-left {
    width: 100%;
    max-width: 400px;
    height: 270px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .flexographic-details-content {
    padding: 0 15px;
  }

  .details-text-right h2 {
    font-size: 1.8rem;
  }

  .details-text-right p {
    font-size: 1rem;
  }

  .printing-features-right li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .image-placeholder-left {
    height: 220px;
  }
}

/* Rotogravure Printing Details Section */
.rotogravure-details-section {
  padding: 80px 50px;
  background-color: #ffffff;
}

.rotogravure-details-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.details-text-left {
  flex: 1;
  max-width: 600px;
}

.details-text-left h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.details-text-left p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.printing-features-left {
  list-style: none;
  padding: 0;
  margin: 0;
}

.printing-features-left li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  line-height: 1.5;
}

.printing-features-left li::before {
  content: '•';
  color: #0038A5;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: -2px;
}

.details-image-right {
  flex: 1;
  max-width: 500px;
}

.image-placeholder-right {
  width: 500px;
  height: 350px;

  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
}

/* Responsive Design for Rotogravure Section */
@media (max-width: 1024px) {
  .rotogravure-details-content {
    gap: 40px;
    padding: 0 20px;
  }

  .details-text-left h2 {
    font-size: 2.2rem;
  }

  .image-placeholder-right {
    width: 450px;
    height: 315px;
  }
}

@media (max-width: 768px) {
  .rotogravure-details-section {
    padding: 60px 0;
  }

  .rotogravure-details-content {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .details-text-left {
    max-width: 100%;
  }

  .details-text-left h2 {
    font-size: 2rem;
  }

  .printing-features-left {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
  }

  .image-placeholder-right {
    width: 100%;
    max-width: 450px;
    height: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .rotogravure-details-content {
    padding: 0 15px;
  }

  .details-text-left h2 {
    font-size: 1.8rem;
  }

  .details-text-left p {
    font-size: 1rem;
  }

  .printing-features-left li {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .image-placeholder-right {
    height: 250px;
  }
}

/* Printing FAQ Section */
.printing-faq-section {
  padding: 40px 0;
  background-color: #f8f9fa;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.printing-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.printing-faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.printing-faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.printing-faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: background-color 0.3s ease;
  user-select: none;
}

.printing-faq-question:hover {
  background-color: #f8f9fa;
}

.printing-faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  flex: 1;
  margin-right: 20px;
}

.printing-faq-icon {
  font-size: 1rem;
  color: #0038A5;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.printing-faq-icon.rotated {
  transform: rotate(180deg);
}

.printing-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafbfc;
}

.printing-faq-answer.active {
  max-height: 1000px;
  padding: 25px 30px;
}

.printing-faq-answer p {
  color: #555;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* Responsive Design for FAQ */
@media (max-width: 768px) {
  .printing-faq-section {
    padding: 40px 15px;
  }

  .faq-header h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .faq-header p {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .printing-faq-container {
    padding: 0 10px;
  }

  .printing-faq-item {
    margin-bottom: 12px;
  }

  .printing-faq-question {
    padding: 18px 20px;
  }

  .printing-faq-question span {
    font-size: 0.95rem;
    margin-right: 10px;
    line-height: 1.4;
  }

  .printing-faq-answer.active {
    max-height: 2000px;
    padding: 0 20px 18px 20px;
  }

  .printing-faq-answer p {
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .printing-faq-section {
    padding: 30px 10px;
  }

  .faq-header h2 {
    font-size: 1.6rem;
  }

  .faq-header p {
    font-size: 0.9rem;
    padding: 0 5px;
  }

  .printing-faq-container {
    padding: 0 5px;
  }

  .printing-faq-question {
    padding: 15px 18px;
  }

  .printing-faq-question span {
    font-size: 0.9rem;
    margin-right: 8px;
  }

  .printing-faq-answer.active {
    max-height: 2500px;
    padding: 0 18px 15px 18px;
  }

  .printing-faq-answer p {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

/* Printing Page Unique Container */
.printing-page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Printing Page Unique Image Placeholders */
.printing-digital-image-placeholder {
  width: 500px;
  height: 350px;

  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  overflow: hidden;
}

.printing-digital-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.printing-flexo-image-placeholder {
  width: 450px;
  height: 300px;

  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  overflow: hidden;
}

.printing-flexo-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.printing-rotogravure-image-placeholder {
  width: 500px;
  height: 350px;

  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1rem;
  overflow: hidden;
}

.printing-rotogravure-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

/* Responsive updates for unique placeholders */
@media (max-width: 1024px) {
  .printing-digital-image-placeholder {
    width: 450px;
    height: 315px;
  }

  .printing-flexo-image-placeholder {
    width: 400px;
    height: 270px;
  }

  .printing-rotogravure-image-placeholder {
    width: 450px;
    height: 315px;
  }
}

@media (max-width: 768px) {

  .printing-digital-image-placeholder,
  .printing-flexo-image-placeholder,
  .printing-rotogravure-image-placeholder {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  .printing-digital-image-placeholder {
    height: 300px;
  }

  .printing-flexo-image-placeholder {
    height: 270px;
  }

  .printing-rotogravure-image-placeholder {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .printing-digital-image-placeholder {
    height: 250px;
  }

  .printing-flexo-image-placeholder {
    height: 220px;
  }

  .printing-rotogravure-image-placeholder {
    height: 250px;
  }
}

/* Finishes Texture Section */
.finishes-texture-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.finishes-header {
  text-align: center;
  margin-bottom: 60px;
}

.finishes-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.finishes-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.finishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.finish-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #e5e7eb;
}

.finish-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.finish-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0038A5, #3b82f6);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transform: rotate(45deg);
}

.finish-icon i {
  font-size: 2rem;
  color: white;
  transform: rotate(-45deg);
}

.finish-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.finish-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Beyond Printing Header Section */
.beyond-printing-header-section {
  padding: 80px 20px 40px 20px;
  background-color: #ffffff;
}

.beyond-printing-main-header {
  text-align: center;
}

.beyond-printing-main-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.beyond-printing-main-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Beyond Printing Section */
.beyond-printing-section {
  padding: 40px 20px 80px 20px;
  background-color: #ffffff;
}

.beyond-printing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.beyond-printing-image {
  width: 100%;
}

.beyond-printing-image img {
  width: 70%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.beyond-printing-text {
  width: 100%;
}

.specialty-tag {
  display: inline-block;
  background: #e0e7ff;
  color: #3730a3;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.feature-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

.feature-description a {
  color: #0038A5;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .finishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .beyond-printing-content {
    gap: 50px;
    padding: 0 20px;
  }

  .beyond-printing-main-header h2 {
    font-size: 2.2rem;
  }
}


@media (max-width: 768px) {

  .finishes-texture-section,
  .beyond-printing-header-section {
    padding: 60px 0 30px 0;
  }

  .beyond-printing-section {
    padding: 30px 0 60px 0;
  }

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 2rem;
  }

  .finishes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .finish-card {
    padding: 30px 20px;
  }

  .beyond-printing-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .beyond-printing-image {
    order: -1;
  }
}

@media (max-width: 480px) {

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.8rem;
  }

  .feature-title {
    font-size: 1.5rem;
  }

  .finish-icon {
    width: 70px;
    height: 70px;
  }

  .finish-icon i {
    font-size: 1.8rem;
  }
}

/* Premium Finishes Section */
.premium-finishes-section {
  padding: 40px 20px 80px 20px;
  background-color: white;
}

.premium-finishes-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.premium-finishes-text {
  order: 1;
}

.premium-finishes-image {
  order: 2;
  width: 100%;
}

.premium-finishes-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.premium-finishes-text {
  width: 100%;
}

.premium-tag {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.premium-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.premium-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Luxury Coating Section */
.luxury-coating-section {
  padding: 40px 20px 80px 20px;
  background-color: #ffffff;
}

.luxury-coating-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 180px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.luxury-coating-image {
  order: 1;
  width: 100%;
}

.luxury-coating-text {
  order: 2;
  width: 100%;
}

.luxury-coating-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.luxury-coating-text {
  order: 2;
  width: 100%;
}

.luxury-tag {
  display: inline-block;
  background: #ede9fe;
  color: #7c3aed;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.luxury-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
}

.luxury-description {
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .finishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    gap: 60px;
    padding: 0 20px;
  }

  .beyond-printing-main-header h2,
  .finishes-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 1024px) {
  .finishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    gap: 50px;
    padding: 0 20px;
  }

  .beyond-printing-main-header h2,
  .finishes-header h2 {
    font-size: 2rem;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.6rem;
  }

  .beyond-printing-image img,
  .premium-finishes-image img,
  .luxury-coating-image img {
    width: 80%;
  }
}

@media (max-width: 768px) {

  .finishes-texture-section,
  .beyond-printing-header-section {
    padding: 50px 0 30px 0;
  }

  .beyond-printing-section,
  .premium-finishes-section,
  .luxury-coating-section {
    padding: 30px 0 50px 0;
  }

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.8rem;
  }

  .finishes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .finish-card {
    padding: 30px 20px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 0 15px;
  }

  /* Reset order for mobile - always image first */
  .beyond-printing-image,
  .premium-finishes-image,
  .luxury-coating-image {
    order: -1;
  }

  .beyond-printing-text,
  .premium-finishes-text,
  .luxury-coating-text {
    order: 1;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.4rem;
  }

  .beyond-printing-image img,
  .premium-finishes-image img,
  .luxury-coating-image img {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .finishes-texture-section,
  .beyond-printing-header-section {
    padding: 40px 0 20px 0;
  }

  .beyond-printing-section,
  .premium-finishes-section,
  .luxury-coating-section {
    padding: 20px 0 40px 0;
  }

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.5rem;
  }

  .finishes-header p,
  .beyond-printing-main-header p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .finish-card {
    padding: 20px 12px;
    margin: 0 5px;
  }

  .finish-icon {
    width: 55px;
    height: 55px;
  }

  .finish-icon i {
    font-size: 1.5rem;
  }

  .finish-card h3 {
    font-size: 1rem;
  }

  .finish-card p {
    font-size: 0.8rem;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.2rem;
  }

  .feature-description,
  .premium-description,
  .luxury-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .specialty-tag,
  .premium-tag,
  .luxury-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    gap: 20px;
    padding: 0 10px;
  }
}

@media (max-width: 360px) {

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.3rem;
  }

  .finish-card {
    padding: 18px 10px;
    margin: 0;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.1rem;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    padding: 0 8px;
  }
}


.beyond-printing-main-header h2,
.finishes-header h2 {
  font-size: 2.2rem;
}


@media (max-width: 1024px) {
  .finishes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    gap: 50px;
    padding: 0 20px;
  }

  .beyond-printing-main-header h2,
  .finishes-header h2 {
    font-size: 2rem;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {

  .finishes-texture-section,
  .beyond-printing-header-section {
    padding: 50px 0 30px 0;
  }

  .beyond-printing-section,
  .premium-finishes-section,
  .luxury-coating-section {
    padding: 30px 0 50px 0;
  }

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.8rem;
  }

  .finishes-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  .finish-card {
    padding: 30px 20px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  /* Reset order for mobile - always image first */
  .beyond-printing-image,
  .premium-finishes-image,
  .luxury-coating-image {
    order: -1;
  }

  .beyond-printing-text,
  .premium-finishes-text,
  .luxury-coating-text {
    order: 1;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {

  .finishes-texture-section,
  .beyond-printing-header-section {
    padding: 40px 0 20px 0;
  }

  .beyond-printing-section,
  .premium-finishes-section,
  .luxury-coating-section {
    padding: 20px 0 40px 0;
  }

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.6rem;
  }

  .finishes-header p,
  .beyond-printing-main-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .finish-card {
    padding: 25px 15px;
    margin: 0 10px;
  }

  .finish-icon {
    width: 60px;
    height: 60px;
  }

  .finish-icon i {
    font-size: 1.5rem;
  }

  .finish-card h3 {
    font-size: 1.2rem;
  }

  .finish-card p {
    font-size: 0.9rem;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.3rem;
  }

  .feature-description,
  .premium-description,
  .luxury-description {
    font-size: 0.9rem;
  }

  .specialty-tag,
  .premium-tag,
  .luxury-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    gap: 25px;
    padding: 0 15px;
  }
}

@media (max-width: 360px) {

  .finishes-header h2,
  .beyond-printing-main-header h2 {
    font-size: 1.4rem;
  }

  .finish-card {
    padding: 20px 10px;
    margin: 0 5px;
  }

  .feature-title,
  .premium-title,
  .luxury-title {
    font-size: 1.2rem;
  }

  .beyond-printing-content,
  .premium-finishes-content,
  .luxury-coating-content {
    padding: 0 10px;
  }
}

/* Material Explore Section */
.material-explore-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.material-explore-header {
  text-align: center;
  margin-bottom: 50px;
}

.material-explore-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  line-height: 1.2;
}

.material-explore-header p {
  font-size: 1.1rem;
  color: #000000;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.material-info-box {
  background: #e3f2fd;
  border-radius: 15px;
  padding: 50px 60px;
  max-width: 1000px;
  margin: 0 auto;
}

.material-intro {
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.7;
  margin-bottom: 25px;
}

.material-details {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 25px;
}

.material-details strong {
  font-weight: 700;
  color: #1a1a1a;
}

.material-finishes-intro {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

.material-finishes-list {
  list-style: none;
  padding-left: 30px;
  margin: 0;
}

.material-finishes-list li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  line-height: 1.6;
}

.material-finishes-list li::before {
  content: '•';
  color: #1976d2;
  font-size: 1.5rem;
  font-weight: bold;
  position: absolute;
  left: -25px;
  top: -3px;
}

.material-finishes-list li strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* Responsive Design for Material Section */
@media (max-width: 1024px) {
  .material-info-box {
    padding: 40px 50px;
  }
}

@media (max-width: 768px) {
  .material-explore-section {
    padding: 60px 0;
  }

  .material-explore-header h2 {
    font-size: 2rem;
  }

  .material-info-box {
    padding: 35px 30px;
    margin: 0 20px;
  }

  .material-intro,
  .material-details,
  .material-finishes-intro {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .material-explore-section {
    padding: 50px 0;
  }

  .material-explore-header h2 {
    font-size: 1.7rem;
  }

  .material-explore-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .material-info-box {
    padding: 25px 20px;
    margin: 0 15px;
  }

  .material-intro,
  .material-details,
  .material-finishes-intro {
    font-size: 0.95rem;
  }

  .material-finishes-list {
    padding-left: 25px;
  }

  .material-finishes-list li {
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .material-explore-header h2 {
    font-size: 1.5rem;
  }

  .material-info-box {
    padding: 20px 15px;
    margin: 0 10px;
  }
}

/* Sustainable & Eco-Friendly Packaging Solutions Section */
.sustainable-packaging-section {
  padding: 0px 0;
  background-color: #ffffff;
}

.sustainable-header {
  text-align: center;
  margin-bottom: 60px;
}

.sustainable-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.2;
}

.sustainable-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.sustainable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.sustainable-card {
  background: #EFF1F3;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sustainable-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.sustainable-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.sustainable-image::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  background: #e8f5e8;
  border-radius: 50%;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sustainable-image img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}

.sustainable-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #0038A5 !important;
  margin-bottom: 20px;
  line-height: 1.3;
}

.sustainable-card p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Design for Sustainable Section */
@media (max-width: 1024px) {
  .sustainable-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  .sustainable-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sustainable-packaging-section {
    padding: 60px 0;
  }

  .sustainable-header h2 {
    font-size: 2rem;
  }

  .sustainable-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
  }

  .sustainable-card {
    padding: 30px 20px;
  }

  .sustainable-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .sustainable-image {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }

  .sustainable-image img {
    max-width: 120px;
    max-height: 120px;
  }
}

@media (max-width: 480px) {
  .sustainable-packaging-section {
    padding: 50px 0;
  }

  .sustainable-header h2 {
    font-size: 1.7rem;
  }

  .sustainable-header p {
    font-size: 1rem;
    padding: 0 10px;
  }

  .sustainable-grid {
    padding: 0 15px;
  }

  .sustainable-card {
    padding: 25px 15px;
  }

  .sustainable-card h3 {
    font-size: 1.2rem;
  }

  .sustainable-card p {
    font-size: 0.9rem;
  }

  .sustainable-image {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .sustainable-image img {
    max-width: 60px;
    max-height: 60px;
  }
}

@media (max-width: 360px) {
  .sustainable-header h2 {
    font-size: 1.5rem;
  }

  .sustainable-card {
    padding: 20px 10px;
  }
}

/* Eco Features Bar */
.eco-features-bar {
  background: #D0E1FF;
  border-radius: 15px;
  padding: 25px 20px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.eco-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.eco-icon {
  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.eco-icon i {
  font-size: 1.2rem;
  color: white;
}

.eco-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
}

/* Responsive Design for Eco Features Bar */
@media (max-width: 768px) {
  .eco-features-bar {
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    padding: 20px 15px;
  }

  .eco-feature {
    flex: 0 0 calc(50% - 10px);
    max-width: 120px;
  }

  .eco-icon {
    width: 45px;
    height: 45px;
  }

  .eco-icon i {
    font-size: 1.1rem;
  }

  .eco-feature span {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .eco-features-bar {
    padding: 15px 10px;
    margin-top: 30px;
  }

  .eco-feature {
    flex: 0 0 calc(50% - 5px);
    max-width: 100px;
  }

  .eco-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .eco-icon i {
    font-size: 1rem;
  }

  .eco-feature span {
    font-size: 0.8rem;
  }
}

/* Ultra-High Barrier Section */
.ultra-barrier-section {
  background: white;
  padding: 60px 0;
}

.ultra-barrier-header {
  text-align: center;
  margin-bottom: 40px;
}

.ultra-barrier-header h2 {
  font-size: 2.5rem;
  color: #0038A5;
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.2;
}

.ultra-barrier-header p {
  font-size: 1.1rem;
  color: #666;
  margin: 0;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

.ultra-barrier-image-container {
  width: 100%;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 56, 165, 0.1);
}

.ultra-barrier-image-container img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 12px;
}

/* Responsive Design for Ultra-High Barrier Section */
@media (max-width: 768px) {
  .ultra-barrier-section {
    padding: 40px 0;
  }

  .ultra-barrier-header h2 {
    font-size: 2rem;
  }

  .ultra-barrier-header p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .ultra-barrier-image-container {
    margin-top: 25px;
  }
}

@media (max-width: 480px) {
  .ultra-barrier-section {
    padding: 30px 0;
  }

  .ultra-barrier-header h2 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .ultra-barrier-header p {
    font-size: 0.95rem;
  }

  .ultra-barrier-image-container {
    margin-top: 20px;
  }
}

.wheel-container {
  position: relative;
  width: 520px;
  height: 520px;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-15deg);
  transition: transform 0.5s ease;
}

.wheel-slice {
  cursor: pointer;
  transition: filter 0.3s ease;
}

.wheel-slice:hover {
  filter: brightness(1.12) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.22));
}

.slice-clear-poly {
  fill: #EEC2C2;
}

.slice-metalized-poly {
  fill: #A8BBCA;
}

.slice-kraft-poly {
  fill: #ABB0B3;
}

.slice-metalized-kraft {
  fill: #B9D9E7;
}

.slice-poly-alu-foil {
  fill: #ABE2AD;
}

.slice-evoh-clear {
  fill: #E2C698;
}

.wheel-gap {
  fill: none;
  stroke: #f0f4f8;
  stroke-width: 15px;
}

.wheel-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.wheel-center-icon {
  width: 100px;
  height: 36px;

  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.wheel-center-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.wheel-center-brand {
  font-size: 0.7rem;
  font-weight: 700;
  color: #1a2b4a;
  text-align: center;
  line-height: 1.2;
}

.wheel-center-brand span {
  display: block;
  font-size: 0.55rem;
  font-weight: 400;
  color: #666;
}

.wheel-labels {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.wheel-label {
  position: absolute;
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
  text-align: center;
  line-height: 1.2;
  width: auto;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 10;
}

.label-clear-poly {
  top: 18%;
  right: -54%;

  left: 28%;
  transform: translate(-54%, 25%) rotate(-45deg);
}

.label-metalized-poly {
  top: 18%;
  left: 65%;
  transform: translate(-56%, -148%) rotate(20deg);
}

.label-kraft-poly {
  top: 45%;
  left: 88%;
  transform: translate(-40%, -64%) rotate(-4deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.label-metalized-kraft {
  top: 77%;
  left: 77%;
  transform: translate(-45%, -19%) rotate(-45deg);
}

.label-poly-alu-foil {
  top: 78%;
  left: 36%;
  transform: translate(-54%, 123%) rotate(26deg);
}

.label-evoh-clear {
  top: 52%;
  left: 12%;
  transform: translate(-50%, -5%) rotate(-20deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.wheel-pouch {
  position: absolute;
  width: 90px;
  height: 100px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.2));
  z-index: 5;
}

.wheel-pouch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.pouch-clear-poly {
  top: 40%;
  left: 30%;
}

.pouch-clear-poly img {
  transform: rotate(-25deg);
  position: relative;
  top: -42px;
  left: 4px;
}

.pouch-metalized-poly {
  top: 38%;
  left: 70%;
}

.pouch-metalized-poly img {
  transform: rotate(20deg);
  position: relative;
  right: 74%;
  top: -57%;
}

.pouch-kraft-poly {
  top: 58%;
  left: 82%;
}

.pouch-kraft-poly img {
  transform: rotate(80deg);
  position: relative;
  right: 30%;
  top: -78%;
}

.pouch-metalized-kraft {
  top: 70%;
  left: 70%;
}

.pouch-metalized-kraft img {
  transform: rotate(-36deg);
}

.pouch-poly-alu-foil {
  top: 70%;
  left: 30%;
}

.pouch-poly-alu-foil img {
  transform: rotate(46deg);
  position: relative;
  top: 19%;
  right: -54%;
}

.pouch-evoh-clear {
  top: 52%;
  left: 18%;
}

.pouch-evoh-clear img {
  transform: rotate(66deg);
  position: relative;
  right: -24%;
  top: 41%;
}

/* Section Sub Text Styling */
.section-sub {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin: 0 auto 30px auto;
  max-width: 600px;
  line-height: 1.6;
}

/* Center align section title for Premium Material Options */
.page-content {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.page-content .section-title,
.page-content .section-sub {
  grid-column: 1 / -1;
}

.page-content .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0038A5;
  margin: 40px 0 20px 0;
}


/* Material Detail Card */
.material-detail-card {
  width: 370px;
  min-height: 468px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.material-card-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 24px 24px 0 0;
}

.material-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.material-card-content {
  padding: 30px;
  background: white;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.material-card-content h3 {
  font-size: 1.6rem;
  color: #000;
  margin: 0 0 20px 0;
  font-weight: 700;
  line-height: 1.3;
}

.material-card-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.material-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.material-card-content {
  padding: 35px;
  background: white;
}

.material-card-content h3 {
  font-size: 1.8rem;
  color: #000;
  margin: 0 0 25px 0;
  font-weight: 700;
}

.material-card-content p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .material-detail-card {
    display: block;
    margin: 40px auto 0 auto;
  }
}

@media (max-width: 768px) {
  .material-card-image {
    height: 280px;
    padding: 15px;
  }

  .material-card-content {
    padding: 28px;
  }

  .material-card-content h3 {
    font-size: 1.5rem;
  }

  .material-card-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .material-card-image {
    height: 220px;
    padding: 12px;
  }

  .material-card-content {
    padding: 22px;
  }

  .material-card-content h3 {
    font-size: 1.3rem;
  }

  .material-card-content p {
    font-size: 0.95rem;
  }
}

/* Hover Effects for Wheel Pouches */
.wheel-pouch {
  cursor: pointer;
  transition: all 0.3s ease;
}

.wheel-pouch:hover {
  transform: translate(-50%, -50%) scale(1.15);
  filter: drop-shadow(0 4px 12px rgba(0, 56, 165, 0.4));
  z-index: 20;
}

.wheel-pouch:hover img {
  transform: rotate(0deg) !important;
}

/* Active state for selected pouch */
.wheel-pouch.active {
  transform: translate(-50%, -50%) scale(1.1);

}

/* Card transition for smooth updates */
.material-detail-card {
  transition: all 0.4s ease;
}

.material-card-image img {
  transition: all 0.4s ease;
}

.material-card-content h3,
.material-card-content p {
  transition: all 0.3s ease;
}

/* ===== RESPONSIVE STYLES FOR MATERIAL CHOICES PAGE ===== */

/* Tablet and below - 1024px */
@media (max-width: 1024px) {

  /* Premium Material Options Section */
  .page-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 30px 15px;
  }

  .page-content .section-title {
    font-size: 2.2rem;
    margin: 30px 0 15px 0;
  }

  .page-content .section-sub {
    font-size: 1rem;
    margin: 0 auto 30px auto;
  }

  /* Wheel Container */
  .wheel-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .wheel-svg {
    max-width: 100%;
    height: auto;
  }

  /* Material Card */
  .material-detail-card {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }

  /* Material Explore Section */
  .material-explore-section {
    padding: 40px 0;
  }

  .material-explore-header h2 {
    font-size: 2rem;
  }

  .material-info-box {
    padding: 30px 20px;
  }

  .material-intro,
  .material-details {
    font-size: 1rem;
  }

  /* Sustainable Section */
  .sustainable-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Eco Features Bar */
  .eco-features-bar {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 15px;
  }

  .eco-feature {
    flex: 0 0 calc(33.333% - 14px);
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {

  /* Premium Material Options Section */
  .page-content {
    gap: 5px;
  }

  .page-content .section-title {
    font-size: 1.8rem;
    margin: 25px 0 12px 0;
  }

  .page-content .section-sub {
    font-size: 0.95rem;
    padding: 0 15px;
    margin: 0 auto 10px auto;
  }

  /* Wheel Container */
  .wheel-container {
    max-width: 400px;
    margin-bottom: 0;
  }

  .wheel-label {
    font-size: 0.9rem;
  }

  .wheel-pouch {
    width: 70px;
    height: 80px;
  }

  /* Material Card */
  .material-detail-card {
    width: 100%;
    max-width: 100%;
    padding: 35px;
  }

  .material-card-image {
    height: 250px;
    padding: 15px;
  }

  .material-card-content {
    padding: 25px;
  }

  .material-card-content h3 {
    font-size: 1.4rem;
    margin: 0 0 15px 0;
  }

  .material-card-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  /* Material Explore Section */
  .material-explore-header h2 {
    font-size: 1.75rem;
  }

  .material-explore-header p {
    font-size: 0.95rem;
  }

  .material-info-box {
    padding: 25px 15px;
  }

  .material-intro,
  .material-details {
    font-size: 0.95rem;
  }

  .material-finishes-list {
    font-size: 0.95rem;
  }

  /* Sustainable Section */
  .sustainable-header h2 {
    font-size: 1.75rem;
  }

  .sustainable-header p {
    font-size: 0.95rem;
  }

  .sustainable-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sustainable-card {
    padding: 20px;
  }

  .sustainable-card h3 {
    font-size: 1.2rem;
  }

  .sustainable-card p {
    font-size: 0.9rem;
  }

  /* Eco Features Bar */
  .eco-features-bar {
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 10px;
  }

  .eco-feature {
    flex: 0 0 calc(50% - 8px);
  }

  .eco-icon {
    width: 45px;
    height: 45px;
  }

  .eco-feature span {
    font-size: 0.85rem;
  }

  /* Ultra Barrier Section */
  .ultra-barrier-section {
    padding: 40px 0;
  }

  .ultra-barrier-header h2 {
    font-size: 1.75rem;
  }

  .ultra-barrier-header p {
    font-size: 0.95rem;
    padding: 0 15px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {

  /* Premium Material Options Section */
  .page-content {
    padding: 20px 10px;
    gap: 5px;
  }

  .page-content .section-title {
    font-size: 1.5rem;
    margin: 20px 0 10px 0;
  }

  .page-content .section-sub {
    font-size: 0.9rem;
    padding: 0 10px;
    margin: 0 auto 8px auto;
  }

  /* Wheel Container */
  .wheel-container {
    max-width: 320px;
    margin-bottom: -140px;
  }

  .wheel-label {
    font-size: 0.75rem;
  }

  .wheel-pouch {
    width: 50px;
    height: 60px;
  }

  .wheel-center-circle {
    width: 90px;
    height: 90px;
    position: relative;
    top: -29%
  }

  .wheel-center-brand {
    font-size: 0.7rem;
  }

  /* Material Card */
  .material-card-image {
    height: 200px;
    padding: 12px;
  }

  .material-card-content {
    padding: 20px;
  }

  .material-card-content h3 {
    font-size: 1.2rem;
    margin: 0 0 12px 0;
  }

  .material-card-content p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  /* Material Explore Section */
  .material-explore-section {
    padding: 30px 0;
  }

  .material-explore-header h2 {
    font-size: 1.5rem;
  }

  .material-explore-header p {
    font-size: 0.9rem;
  }

  .material-info-box {
    padding: 20px 12px;
  }

  .material-intro,
  .material-details {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .material-finishes-list {
    font-size: 0.85rem;
  }

  /* Sustainable Section */
  .sustainable-packaging-section {
    padding: 30px 0;
  }

  .sustainable-header h2 {
    font-size: 1.5rem;
  }

  .sustainable-header p {
    font-size: 0.9rem;
  }

  .sustainable-card {
    padding: 15px;
  }

  .sustainable-card h3 {
    font-size: 1.1rem;
  }

  .sustainable-card p {
    font-size: 0.85rem;
  }

  /* Eco Features Bar */
  .eco-features-bar {
    padding: 15px 8px;
    gap: 12px;
  }

  .eco-feature {
    flex: 0 0 calc(50% - 6px);
  }

  .eco-icon {
    width: 40px;
    height: 40px;
  }

  .eco-icon img {
    width: 20px;
    height: 20px;
  }

  .eco-feature span {
    font-size: 0.75rem;
  }

  /* Ultra Barrier Section */
  .ultra-barrier-section {
    padding: 30px 0;
  }

  .ultra-barrier-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .ultra-barrier-header p {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .ultra-barrier-image-container {
    margin-top: 20px;
  }
}

/* ===== MOBILE VIEW - CUSTOM POSITIONING CLASSES ===== */
/* Ye classes mobile view me aapko manually position adjust karne ke liye hain */

@media (max-width: 768px) {

  /* Mobile Labels - Aap position relative se adjust kar sakte hain */
  .label-clear-poly {
    position: absolute !important;
    top: 20% !important;
    left: 25% !important;
  }

  .label-metalized-poly {
    position: absolute !important;
    top: 18% !important;
    left: 70% !important;
  }

  .label-kraft-poly {
    position: absolute !important;
    top: 48% !important;
    left: 88% !important;
  }

  .label-metalized-kraft {
    position: absolute !important;
    top: 80% !important;
    left: 75% !important;
  }

  .label-poly-alu-foil {
    position: absolute !important;
    top: 82% !important;
    left: 30% !important;
  }

  .label-evoh-clear {
    position: absolute !important;
    top: 50% !important;
    left: 12% !important;
  }

  /* Mobile Pouches - Aap position relative se adjust kar sakte hain */
  .pouch-clear-poly {
    position: absolute !important;
    top: 35% !important;
    left: 28% !important;
  }

  .pouch-clear-poly img {
    position: relative;
    /* Yahan aap top, left, right adjust kar sakte hain */
    top: -89px;
    left: 0;
  }

  .pouch-metalized-poly {
    position: absolute !important;
    top: 32% !important;
    left: 70% !important;
  }

  .pouch-metalized-poly img {
    position: relative;
    /* Yahan aap top, left, right adjust kar sakte hain */
    top: -149%;
    left: -72%;
  }

  .pouch-kraft-poly {
    position: absolute !important;
    top: 55% !important;
    left: 80% !important;
  }

  .pouch-kraft-poly img {
    position: relative;
    /* Yahan aap top, left, right adjust kar sakte hain */
    top: -160px;
    left: -6%;
  }

  .pouch-metalized-kraft {
    position: absolute !important;
    top: 72% !important;
    left: 70% !important;
  }

  .pouch-metalized-kraft img {
    position: relative;
    /* Yahan aap top, left, right adjust kar sakte hain */
    top: -228%;
    left: 8px;
  }

  .pouch-poly-alu-foil {
    position: absolute !important;
    top: 70% !important;
    left: 30% !important;
  }

  .pouch-poly-alu-foil img {
    position: relative;
    /* Yahan aap top, left, right adjust kar sakte hain */
    top: -187%;
    left: 53%;
  }

  .pouch-evoh-clear {
    position: absolute !important;
    top: 53% !important;
    left: 20% !important;
  }

  .pouch-evoh-clear img {
    position: relative;
    /* Yahan aap top, left, right adjust kar sakte hain */
    top: -160%;
    left: 0;
  }
}

@media (max-width: 480px) {

  /* Small Mobile - Aap yahan bhi adjust kar sakte hain */
  .wheel-label {
    font-size: 0.7rem !important;
  }

  .wheel-pouch {
    width: 50px !important;
    height: 60px !important;
  }

  /* Positions ko chhota screen ke liye adjust karein */
  .label-clear-poly {
    top: 12% !important;
    left: 26% !important;
  }

  .label-metalized-poly {
    top: 12% !important;
    left: 64% !important;
  }

  .label-kraft-poly {
    top: 28% !important;
    left: 88% !important;
  }

  .label-metalized-kraft {
    top: 46% !important;
    left: 78% !important;
  }

  .label-poly-alu-foil {
    top: 49% !important;
    left: 36% !important;
  }

  .label-evoh-clear {
    top: 35% !important;
    left: 12% !important;
  }

  .pouch-clear-poly {
    top: 38% !important;
    left: 30% !important;
  }

  .pouch-metalized-poly {
    top: 35% !important;
    left: 68% !important;
  }

  .pouch-kraft-poly {
    top: 58% !important;
    left: 78% !important;
  }

  .pouch-metalized-kraft {
    top: 70% !important;
    left: 68% !important;
  }

  .pouch-poly-alu-foil {
    top: 68% !important;
    left: 32% !important;
  }

  .pouch-evoh-clear {
    top: 55% !important;
    left: 22% !important;
  }
}

/* Make wheel slices clickable and interactive */
.wheel-slice {
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.wheel-slice:hover {
  opacity: 0.85;
}

.wheel-slice:active {
  opacity: 0.7;
}

/* ===== MOCKUP & PROTOTYPE PAGE STYLES ===== */

/* Digital Visualization Section */
.digital-visualization-section {
  padding: 50px 0;
  background: white;
}

.visualization-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.visualization-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin: 0 0 25px 0;
  font-weight: 700;
  line-height: 1.2;
}

.visualization-text p {
  font-size: 1.05rem;
  color: #000000;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

.visualization-image {
  width: 100%;

  background: #f8fafc;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visualization-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.visualization-image::before {

  color: #94a3b8;
  font-size: 1.1rem;
  font-weight: 500;
  position: absolute;
}

/* Responsive for Digital Visualization */
@media (max-width: 1024px) {
  .visualization-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visualization-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .digital-visualization-section {
    padding: 40px 15px;
  }

  .visualization-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .visualization-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .visualization-text p {
    font-size: 0.95rem;
    text-align: left;
    padding: 0 10px;
  }

  .visualization-image {
    height: auto;
    min-height: 200px;
    order: -1;
    margin: 0 10px;
  }

  .visualization-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .digital-visualization-section {
    padding: 40px 0;
  }

  .visualization-text h2 {
    font-size: 1.6rem;
  }

  .visualization-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .visualization-image {
    height: 250px;
  }
}

/* Real Samples Section */
.real-samples-section {
  padding: 50px 0;
  background: #D0E1FF;
}

.real-samples-header {
  text-align: center;
  margin-bottom: 35px;
}

.real-samples-header h2 {
  font-size: 2.5rem;
  color: #000;
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.2;
}

.real-samples-header p {
  font-size: 1.1rem;
  color: #000;
  margin: 0;
  font-weight: 400;
}

.samples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.sample-card {
  background: white;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.sample-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 56, 165, 0.15);
}

.sample-icon {
  width: 80px;
  height: 80px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px auto;
  transition: all 0.3s ease;
}

.sample-card:hover .sample-icon {

  transform: scale(1.1);
}

.sample-icon i {
  font-size: 2rem;
  color: white;
}

.sample-card h3 {
  font-size: 1.3rem;
  color: #000;
  margin: 0 0 15px 0;
  font-weight: 700;
  line-height: 1.3;
}

.sample-card p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.7;
  margin: 0;
}

/* Responsive for Real Samples Section */
@media (max-width: 1024px) {
  .samples-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .sample-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .real-samples-section {
    padding: 60px 0;
  }

  .real-samples-header h2 {
    font-size: 2rem;
  }

  .real-samples-header p {
    font-size: 1rem;
    padding: 0 20px;
  }

  .samples-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sample-card {
    padding: 35px 25px;
  }

  .sample-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .real-samples-section {
    padding: 40px 0;
  }

  .real-samples-header h2 {
    font-size: 1.6rem;
  }

  .real-samples-header p {
    font-size: 0.95rem;
    padding: 0 15px;
  }

  .sample-card {
    padding: 30px 20px;
  }

  .sample-icon {
    width: 70px;
    height: 70px;
  }

  .sample-icon i {
    font-size: 1.8rem;
  }

  .sample-card h3 {
    font-size: 1.2rem;
  }

  .sample-card p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* Precision Sizing Guide Section */
.precision-sizing-section {
  padding: 40px 0;
  background: white;
}

.sizing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sizing-image {
  width: 100%;



  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sizing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.sizing-text h2 {
  font-size: 2.5rem;
  color: #000;
  margin: 0 0 25px 0;
  font-weight: 700;
  line-height: 1.2;
}

.sizing-text p {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}

/* Responsive for Precision Sizing Section */
@media (max-width: 1024px) {
  .sizing-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .sizing-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .precision-sizing-section {
    padding: 40px 15px;
  }

  .sizing-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .sizing-text h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .sizing-text p {
    font-size: 0.95rem;
    text-align: left;
    padding: 0 10px;
  }

  .sizing-image {
    height: auto;
    min-height: 200px;
    margin: 0 10px;
  }

  .sizing-image img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .precision-sizing-section {
    padding: 40px 0;
  }

  .sizing-text h2 {
    font-size: 1.6rem;
  }

  .sizing-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .sizing-image {
    height: 250px;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1.1rem;
  color: #000;
  max-width: 700px;
  margin: 0 auto;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: white;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f5f5f5;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  flex: 1;
}

.faq-question i {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #fafafa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 30px 25px 30px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #000;
  margin: 0;
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-header h2 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question span {
    font-size: 1rem;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }

  .faq-answer p {
    font-size: 0.95rem;
  }
}


/* FAQ Page Styles */
.faq-tabs-section {
  padding: 60px 20px;
  background-color: #fff;
}

.faq-tab-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab-btn {
  padding: 12px 24px;
  background-color: #f5f5f5;
  border: 2px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-tab-btn:hover {
  background-color: #e8e8e8;
  color: #333;
}

.faq-tab-btn.active {
  background-color: #fff;
  border-color: #007bff;
  color: #007bff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
}

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

.faq-tab-pane {
  display: none;
}

.faq-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-accordion .faq-item {
  background: #f9f9f9 !important;
  border-radius: 8px !important;
  margin-bottom: 15px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.faq-accordion .faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-accordion .faq-question {
  width: 100% !important;
  padding: 20px 25px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  text-align: left !important;
  font-family: inherit !important;
  transition: background-color 0.3s ease !important;
}

.faq-accordion .faq-question:hover {
  background-color: #f0f0f0;
}

.faq-accordion .faq-question span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
  flex: 1;
  padding-right: 15px;
}

.faq-accordion .faq-question i {
  font-size: 0.9rem;
  color: #666;
  transition: transform 0.3s ease;
}

.faq-accordion .faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: #007bff;
}

.faq-accordion .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  background-color: #fff !important;
}

.faq-accordion .faq-item.active .faq-answer {
  max-height: 500px !important;
  padding: 0 25px 20px 25px !important;
}

.faq-accordion .faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-top: 10px;
}

/* FAQ Contact Section */
.faq-contact-section {
  padding: 80px 20px;
  background: rgb(208, 225, 255);
}

.faq-contact-box {
  max-width: 700px;
  margin: 0 auto;
  background: white;
  padding: 50px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.faq-contact-box h2 {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.faq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-form-group {
  display: flex;
  flex-direction: column;
}

.faq-form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.faq-form-group input,
.faq-form-group textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-form-group input:focus,
.faq-form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.faq-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-send-message {
  padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-top: 10px;
}

.btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-send-message:active {
  transform: translateY(0);
}

/* Responsive Design for FAQ Page */
@media (max-width: 768px) {
  .faq-tabs-section {
    padding: 40px 15px;
  }

  .faq-tab-nav {
    gap: 10px;
  }

  .faq-tab-btn {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .faq-accordion .faq-question {
    padding: 18px 20px;
  }

  .faq-accordion .faq-question span {
    font-size: 0.95rem;
  }

  .faq-accordion .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }

  .faq-accordion .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-contact-section {
    padding: 50px 15px;
  }

  .faq-contact-box {
    padding: 35px 25px;
  }

  .faq-contact-box h2 {
    font-size: 1.6rem;
  }

  .faq-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .btn-send-message {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .faq-tab-btn {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .faq-contact-box h2 {
    font-size: 1.4rem;
  }
}

/* Hero Main Image */
.hero-main-image {
  width: 70%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* Responsive for hero main image */
@media (max-width: 992px) {
  .hero-main-image {
    height: 300px;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .hero-main-image {
    height: 250px;
    margin: 20px 0;
  }
}

/* HOME PAGE FAQ STYLES - Separate from other pages */
.home-faq-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.home-faq-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.home-faq-section-title {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 20px;
  font-weight: 700;
}

.home-faq-section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.home-faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.home-faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.home-faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: background-color 0.3s ease;
}

.home-faq-question:hover {
  background-color: #f7fafc;
}

.home-faq-question .question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  flex: 1;
  margin-right: 20px;
  line-height: 1.4;
}

.home-faq-question .faq-icon {
  font-size: 1rem;
  color: #4a5568;
  transition: transform 0.3s ease;
}

.home-faq-item.active .home-faq-question .faq-icon {
  transform: rotate(180deg);
  color: #3182ce;
}

.home-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #f8fafc;
}

.home-faq-item.active .home-faq-answer {
  max-height: 1000px;
  padding: 0 30px 25px 30px;
}

.home-faq-answer-content {
  padding-top: 10px;
}

.home-faq-answer-content p {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 15px;
}

.home-faq-answer-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.home-faq-answer-content li {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 8px;
}

.home-faq-highlight {
  background: #e6fffa;
  border-left: 4px solid #38b2ac;
  padding: 15px 20px;
  margin: 15px 0;
  border-radius: 0 8px 8px 0;
}

.home-faq-highlight p {
  margin: 0;
  color: #234e52;
}

/* Responsive for Home FAQ */
@media (max-width: 768px) {
  .home-faq-section {
    padding: 60px 15px;
  }

  .home-faq-section-title {
    font-size: 2rem;
  }

  .home-faq-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-faq-question {
    padding: 20px 25px;
  }

  .home-faq-question .question-text {
    font-size: 1rem;
  }

  .home-faq-item.active .home-faq-answer {
    padding: 0 25px 20px 25px;
  }
}

@media (max-width: 480px) {
  .home-faq-section-title {
    font-size: 1.8rem;
  }

  .home-faq-question {
    padding: 18px 20px;
  }

  .home-faq-question .question-text {
    font-size: 0.95rem;
  }

  .home-faq-item.active .home-faq-answer {
    padding: 0 20px 18px 20px;
  }
}

/* Eco-Friendly Packaging Section */
.eco-friendly-section {
  padding: 60px 0;
  background: white;
}

.eco-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: flex-start;
}

.eco-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.eco-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.eco-text p strong {
  color: #333;
  font-weight: 600;
}

.eco-points {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}

.eco-points li {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
  padding: 2px 0;
}

.eco-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.eco-placeholder-img {
  width: 100%;

  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Eco-Friendly Section */
@media (max-width: 768px) {
  .eco-friendly-section {
    padding: 40px 15px;
  }

  .eco-content {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: left;
  }

  .eco-text h2 {
    font-size: 1.8rem;
    padding: 0;
    text-align: left;
  }

  .eco-text p {
    font-size: 0.95rem;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .eco-points li {
    text-align: left;
    margin-bottom: 6px;
    padding: 2px 0;
  }

  .eco-placeholder-img {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
}


@media (max-width: 480px) {
  .eco-text h2 {
    font-size: 1.6rem;
  }

  .eco-points li {
    padding: 2px 0;
    font-size: 0.95rem;
  }
}

.sp-section {
  font-family: 'Segoe UI', sans-serif;
  background: #ffffff;
  padding: 0 24px;
  box-sizing: border-box;
}

.sp-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
.sp-header {
  text-align: center;
  margin-bottom: 52px;
}

.sp-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  letter-spacing: -0.3px;
}

.sp-subtitle {
  font-size: 0.95rem;
  color: #000000;
  margin: 0;
}

/* Grid */
.sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .sp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .sp-grid {
    grid-template-columns: 1fr;
  }
}

/* Card */
.sp-card {
  border: 1.5px solid #0038A5;
  border-radius: 30px;
  padding: 32px 22px 28px;
  text-align: center;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  background: #fff;
}

.sp-card:hover {
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.12);
  transform: translateY(-3px);
}

/* Icon */
.sp-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.sp-card__icon {
  width: 36px;
  height: 36px;
  color: #2563eb;
}

/* Card text */
.sp-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.sp-card__text {
  font-size: 0.875rem;
  color: #000000;
  line-height: 1.6;
  margin: 0;
}

/* Sustainable Packaging Strategies Section */
.sustainable-strategies-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.strategies-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: center;
}

.strategies-text h2 {

  font-size: 2rem;

  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.2;
}

.strategies-text p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  margin-top: 20px;
}

.strategies-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.strategy-card {
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blue-card {
  background: #1e40af;
  color: white;
}

.white-card {
  background: white;
  color: #333;
  border: 1px solid #e5e7eb;
}

.strategy-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.blue-card h3 {
  color: #fff !important;
}

.white-card h3 {
  color: #333;
}

.strategy-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.blue-card p {
  color: rgba(255, 255, 255, 0.9);
}

.white-card p {
  color: #666;
}

/* Responsive Design for Strategies Section */
@media (max-width: 1024px) {
  .strategies-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .strategies-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .sustainable-strategies-section {
    padding: 40px 15px;
  }

  .strategies-content {
    gap: 25px;
  }

  .strategies-text h2 {
    font-size: 1.8rem;
    text-align: left;
    padding: 0;
    margin-bottom: 15px;
  }

  .strategies-text p {
    font-size: 0.95rem;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .strategies-cards {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .strategy-card {
    padding: 18px;
    margin: 0;
  }

  .strategy-card h3 {
    font-size: 1.2rem;
  }

  .strategy-card p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .strategies-text h2 {
    font-size: 1.6rem;
  }

  .strategy-card {
    padding: 18px;
  }

  .strategy-card h3 {
    font-size: 1.1rem;
  }

  .strategy-card p {
    font-size: 0.85rem;
  }
}

/* Eco-Friendly FAQ Section - Unique Classes */
.eco-faq-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.eco-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.eco-faq-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.eco-faq-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

.eco-faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.eco-faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.eco-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.eco-faq-question {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  background: white;
  transition: background-color 0.3s ease;
}

.eco-faq-question:hover {
  background-color: #f5f5f5;
}

.eco-faq-question span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
  flex: 1;
}

.eco-faq-icon {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
}

.eco-faq-item.active .eco-faq-icon {
  transform: rotate(180deg);
  color: #28a745;
}

.eco-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background-color: #fafafa;
}

.eco-faq-answer.active {
  max-height: 1000px;
  padding: 0 30px 25px 30px;
}

.eco-faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
  padding-top: 10px;
}

/* Responsive Design for Eco FAQ */
@media (max-width: 768px) {
  .eco-faq-section {
    padding: 50px 10px;
  }

  .eco-faq-header h2 {
    font-size: 2rem;
    padding: 0 5px;
  }

  .eco-faq-header p {
    font-size: 1rem;
    padding: 0 5px;
  }

  .eco-faq-container {
    padding: 0 5px;
  }

  .eco-faq-question {
    padding: 18px 15px;
  }

  .eco-faq-question span {
    font-size: 1rem;
  }

  .eco-faq-answer.active {
    padding: 0 15px 18px 15px;
  }

  .eco-faq-answer p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .eco-faq-header h2 {
    font-size: 1.8rem;
  }

  .eco-faq-question {
    padding: 18px 15px;
  }

  .eco-faq-question span {
    font-size: 0.95rem;
  }

  .eco-faq-answer.active {
    padding: 0 15px 18px 15px;
  }

  .eco-faq-answer p {
    font-size: 0.9rem;
  }
}

/* Industry Solutions Section */
.industry-solutions-section {
  padding: 80px 0;
  background: white;
}

.industry-solutions-header {
  text-align: center;
  margin-bottom: 60px;
}

.industry-solutions-header h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.industry-solutions-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.industry-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-card-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.industry-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.industry-card-content {
  padding: 20px;
}

.industry-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.industry-card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.industry-badge {
  background: #e5e7eb;
  color: #374151;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.industry-card-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Card Background Colors */
.food-card {
  background: linear-gradient(135deg, #fef3c7 0%, #fbbf24 100%);
}

.cosmetics-card {
  background: linear-gradient(135deg, #f3f4f6 0%, #9ca3af 100%);
}

.pharmaceutical-card {
  background: linear-gradient(135deg, #fed7aa 0%, #fb923c 100%);
}

.cbd-card {
  background: linear-gradient(135deg, #fef3c7 0%, #facc15 100%);
}

/* Responsive Design for Industry Solutions */
@media (max-width: 1024px) {
  .industry-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .industry-solutions-section {
    padding: 60px 15px;
  }

  .industry-solutions-header h2 {
    font-size: 2rem;
  }

  .industry-solutions-header p {
    font-size: 1rem;
  }

  .industry-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .industry-card-image {
    height: 140px;
  }

  .industry-card-content {
    padding: 15px;
  }

  .industry-card-header h3 {
    font-size: 1.1rem;
  }

  .industry-card-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .industry-cards-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .industry-solutions-header h2 {
    font-size: 1.8rem;
  }

  .industry-card-image {
    height: 160px;
  }
}

/* All Market Industry Cards - Unique Styles */
.allmarket-industry-section {
  background: #f8fafc;
  padding: 60px 20px;
}

.allmarket-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.allmarket-header {
  text-align: center;
  margin-bottom: 50px;
}

.allmarket-header h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.allmarket-header p {
  font-size: 1.1rem;
  color: #000;
  max-width: 600px;
  margin: 0 auto;
}

.allmarket-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.allmarket-industry-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.allmarket-industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.allmarket-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.allmarket-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.allmarket-industry-card:hover .allmarket-card-image img {
  transform: scale(1.05);
}

.allmarket-card-content {
  padding: 24px;
}

.allmarket-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.allmarket-card-header h3 {
  font-size: 1.11rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.allmarket-certification {
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.allmarket-card-content p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .allmarket-industry-section {
    padding: 40px 15px;
  }

  .allmarket-container {
    padding: 0;
  }

  .allmarket-header {
    text-align: left;
    margin-bottom: 30px;
  }

  .allmarket-header h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 15px;
  }

  .allmarket-header p {
    text-align: left;
    margin: 0;
  }

  .allmarket-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .allmarket-card-content {
    padding: 20px 15px;
  }

  .allmarket-card-header h3 {
    font-size: 1.3rem;
  }

  .allmarket-certification {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

@media (max-width: 480px) {
  .allmarket-industry-section {
    padding: 30px 10px;
  }

  .allmarket-header h2 {
    font-size: 1.8rem;
  }

  .allmarket-cards-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .allmarket-card-content {
    padding: 15px 10px;
  }
}

/* All Market Testimonials Section - Unique Styles */
.allmarket-testimonials-section {
  background: #ffffff;
  padding: 80px 20px;
}

.allmarket-testimonials-container {
  max-width: 1000px;
  margin: 0 auto;
}

.allmarket-testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.allmarket-trust-badge {
  background: #1e40af;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 25px;
  display: inline-block;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.allmarket-testimonials-title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin: 0;
}

.allmarket-testimonials-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.allmarket-testimonials-track {
  display: flex;
  transition: transform 0.5s ease;
}

.allmarket-testimonial-card {
  min-width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.allmarket-testimonial-content {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.allmarket-testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

.allmarket-customer-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.allmarket-customer-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.allmarket-customer-details h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}

.allmarket-customer-details p {
  font-size: 0.875rem;
  color: #666;
  margin: 0;
}

.allmarket-rating {
  display: flex;
  gap: 2px;
}

.allmarket-star {
  color: #fbbf24;
  font-size: 1.25rem;
}

.allmarket-testimonial-text {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.allmarket-highlight-quote {
  background: #e0f2fe;
  border-left: 4px solid #0369a1;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-weight: 600;
  color: #0369a1;
  border-radius: 0 8px 8px 0;
}

.allmarket-testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.allmarket-testimonial-date {
  color: #9ca3af;
  font-size: 0.875rem;
}

.allmarket-verified-badge {
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.allmarket-verified-badge i {
  font-size: 1rem;
}

.allmarket-testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.allmarket-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.allmarket-dot-active,
.allmarket-dot:hover {
  background: #1e40af;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .allmarket-testimonials-section {
    padding: 60px 15px;
  }

  .allmarket-testimonials-container {
    padding: 0;
  }

  .allmarket-testimonials-header {
    text-align: left;
    margin-bottom: 40px;
  }

  .allmarket-trust-badge {
    display: inline-block;
    margin-bottom: 20px;
  }

  .allmarket-testimonials-title {
    font-size: 2rem;
    text-align: left;
    margin: 0;
  }

  .allmarket-testimonial-content {
    padding: 30px 15px;
  }

  .allmarket-testimonial-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .allmarket-customer-info {
    width: 100%;
  }

  .allmarket-testimonial-footer {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .allmarket-testimonials-section {
    padding: 40px 10px;
  }

  .allmarket-testimonials-title {
    font-size: 1.8rem;
  }

  .allmarket-testimonial-content {
    padding: 25px 10px;
  }
}

/* All Market FAQ Section - Unique Styles */
.allmarket-faq-section {
  background: #f8fafc;
  padding: 80px 20px;
}

.allmarket-faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.allmarket-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.allmarket-faq-title {
  font-size: 2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 16px;
}

.allmarket-faq-subtitle {
  font-size: 1.125rem;
  color: #000;
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.allmarket-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.allmarket-faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.allmarket-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.allmarket-faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.allmarket-faq-question:hover {
  background: #f8fafc;
}

.allmarket-faq-question span {
  flex: 1;
  margin-right: 16px;
}

.allmarket-faq-icon {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
}

.allmarket-faq-item.allmarket-faq-active .allmarket-faq-icon {
  transform: rotate(180deg);
}

.allmarket-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8fafc;
}

.allmarket-faq-item.allmarket-faq-active .allmarket-faq-answer {
  max-height: 200px;
  padding: 0 24px 24px 24px;
}

.allmarket-faq-answer p {
  font-size: 1rem;
  color: #000;
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .allmarket-faq-section {
    padding: 60px 15px;
  }

  .allmarket-faq-container {
    padding: 0;
  }

  .allmarket-faq-header {
    text-align: left;
    margin-bottom: 40px;
  }

  .allmarket-faq-title {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 15px;
  }

  .allmarket-faq-subtitle {
    text-align: left;
    margin: 0;
  }

  .allmarket-faq-question {
    padding: 20px 15px;
    font-size: 1rem;
  }

  .allmarket-faq-item.allmarket-faq-active .allmarket-faq-answer {
    padding: 0 15px 20px 15px;
  }
}

@media (max-width: 480px) {
  .allmarket-faq-section {
    padding: 40px 10px;
  }

  .allmarket-faq-title {
    font-size: 1.8rem;
  }

  .allmarket-faq-question {
    padding: 18px 10px;
    font-size: 0.95rem;
  }

  .allmarket-faq-item.allmarket-faq-active .allmarket-faq-answer {
    padding: 0 10px 18px 10px;
  }
}

/* Blog Post Page Styles */
.blogpost-main {
  background: #f8fafc;
  min-height: 100vh;
  padding: 20px 0;
}

.blogpost-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blogpost-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
  font-size: 0.875rem;
  color: #666;
}

.blogpost-breadcrumb a {
  color: #0066cc;
  text-decoration: none;
}

.blogpost-breadcrumb a:hover {
  text-decoration: underline;
}

.blogpost-breadcrumb i {
  font-size: 0.75rem;
  color: #999;
}

.blogpost-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Styles */
.blogpost-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.blogpost-widget {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Make Table of Contents sticky */
.blogpost-toc-widget {

  top: 20px;
  z-index: 100;
}

/* TOC Toggle Button - Hidden on Desktop, shown on mobile */
.blogpost-top-toc-toggle {
  display: none;
}

.blogpost-top-toc-toggle:hover {
  border-color: #0066cc;
  color: #0066cc;
}

.blogpost-top-toc-toggle i:first-child {
  font-size: 1.1rem;
}

.blogpost-toc-arrow {
  margin-left: auto;
  transition: transform 0.3s ease;
}

/* Desktop: Show content normally */
.blogpost-top-toc-content {
  display: block;
}

.blogpost-widget-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 10px;
}

.blogpost-toc {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blogpost-toc li {
  margin-bottom: 12px;
}

.blogpost-toc a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
}

.blogpost-toc a:hover {
  color: #0066cc;
}

.blogpost-show-all {
  color: #0066cc;
  text-decoration: none;
  font-size: 0.875rem;
  margin-top: 15px;
  display: inline-block;
}

.blogpost-latest {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blogpost-latest li {
  margin-bottom: 15px;
}

.blogpost-latest a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
}

.blogpost-latest a:hover {
  color: #0066cc;
}

.blogpost-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 6px;
}

.blogpost-contact-item i {
  color: #666;
  width: 16px;
}

.blogpost-contact-item span {
  font-size: 0.9rem;
  color: #333;
}

.blogpost-contact-buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.blogpost-btn {
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.blogpost-btn-outline {
  background: white;
  border: 1px solid #0066cc;
  color: #0066cc;
}

.blogpost-btn-outline:hover {
  background: #0066cc;
  color: white;
}

.blogpost-btn-primary {
  background: #0066cc;
  border: 1px solid #0066cc;
  color: white;
}

.blogpost-btn-primary:hover {
  background: #0052a3;
  color: #fff;
}

/* Main Content Styles */
.blogpost-content {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.blogpost-header {
  padding: 40px;
  border-bottom: 1px solid #e2e8f0;
}

.blogpost-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.2;
}

.blogpost-meta {
  display: flex;
  gap: 20px;
  color: #666;
  font-size: 0.9rem;
}

.blogpost-featured-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 20px;
}

.blogpost-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.blogpost-image-meta {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

.blogpost-image-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.blogpost-image-meta-item i {
  color: #0066cc;
  font-size: 1rem;
}

.blogpost-image-meta-item span {
  color: #333;
  font-weight: 500;
}

.blogpost-article-content {
  padding: 40px;
}

.blogpost-article-content h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #333;
  margin: 40px 0 20px 0;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}

.blogpost-article-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.blogpost-article-content h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #333;
  margin: 30px 0 15px 0;
}

.blogpost-article-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.blogpost-article-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.blogpost-article-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 8px;
}

.blogpost-quote {
  background: #f8fafc;
  border-left: 4px solid #0066cc;
  padding: 20px 24px;
  margin: 30px 0;
  font-style: italic;
  font-size: 1.125rem;
  color: #333;
  border-radius: 0 8px 8px 0;
}

.blogpost-article-footer {
  padding: 30px 40px;
  border-top: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.blogpost-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.blogpost-tag {
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blogpost-share {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blogpost-share span {
  font-weight: 500;

}

.blogpost-share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blogpost-share-btn:hover {
  background: #0066cc;
  color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blogpost-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .blogpost-sidebar {
    order: 2;
  }

  .blogpost-content {
    order: 1;
  }

  /* Move TOC widget to top of sidebar (below blog content) */
  .blogpost-toc-widget {
    order: -1;
    position: sticky;
    top: 10px;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-bottom: 20px;
  }

  .blogpost-top-toc-toggle {
    display: flex;
    width: 100%;
    padding: 15px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
  }

  /* Hide widget title in mobile */
  .blogpost-top-toc-content .blogpost-top-toc-title {
    display: none;
  }

  .blogpost-top-toc-content {
    display: none;
    margin-top: 15px;
    padding: 20px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .blogpost-top-toc.active .blogpost-top-toc-content {
    display: block;
  }

  .blogpost-show-all {
    display: block;
    margin-top: 15px;
  }

  .blogpost-toc {
    flex-direction: column;
    gap: 0;
  }

  .blogpost-toc li {
    margin-bottom: 0;
    width: 100%;
  }

  .blogpost-toc a {
    font-size: 0.9rem;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #f1f5f9;
    border-radius: 0;
    background: transparent;
    white-space: normal;
  }

  .blogpost-toc a:hover {
    background: transparent;
    color: #0066cc;
    border-bottom-color: #0066cc;
  }

  .blogpost-title {
    font-size: 2rem;
  }

  .blogpost-header,
  .blogpost-article-content,
  .blogpost-article-footer {
    padding: 20px;
  }

  .blogpost-featured-image {
    height: 250px;
  }

  .blogpost-image-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 15px 20px;
  }

  .blogpost-image-meta-item {
    font-size: 0.85rem;
  }

  .blogpost-article-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .blogpost-contact-buttons {
    flex-direction: column;
  }

  .blogpost-btn {
    flex: none;
  }
}

/* Product Page FAQ Section - Unique Styles */
.product-faq-section {
  max-width: 100%;
  width: 100%;
  padding: 80px 20px;
  background-color: #f9f9f9;
}

.product-faq-section-header {
  text-align: center;
  padding: 20px 40px 20px 40px;
  margin-bottom: 50px;
}

.product-faq-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
}

.product-faq-section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

.product-faq-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-faq-item {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.product-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.product-faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.product-faq-question:hover {
  background: #f8fafc;
}

.product-question-text {
  flex: 1;
  margin-right: 16px;
}

.product-faq-icon {
  font-size: 1rem;
  color: #666;
  transition: transform 0.3s ease;
}

.product-faq-item.active .product-faq-icon {
  transform: rotate(180deg);
}

.product-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #f8fafc;
}

.product-faq-item.active .product-faq-answer {
  max-height: 500px;
  padding: 0 24px 24px 24px;
}

.product-faq-answer-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.product-faq-answer-content ul {
  margin: 16px 0;
  padding-left: 20px;
}

.product-faq-answer-content li {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 8px;
}

.product-faq-highlight {
  background: #e0f2fe;
  border-left: 4px solid #0369a1;
  padding: 16px 20px;
  margin: 16px 0;
  border-radius: 0 8px 8px 0;
}

.product-faq-highlight p {
  color: #0369a1 !important;
  margin: 0 !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-faq-section {
    padding: 60px 15px;
  }

  .product-faq-section-title {
    font-size: 2rem;
  }

  .product-faq-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-faq-question {
    padding: 20px;
    font-size: 1rem;
  }

  .product-faq-item.active .product-faq-answer {
    padding: 0 20px 20px 20px;
  }

  .product-faq-section-header {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .product-faq-section-title {
    font-size: 1.8rem;
  }
}

/* Unique FAQ's Section for Index Page */
.idx-faq-section {
  max-width: 100%;
  width: 100%;

  overflow: hidden;
  line-height: 1.6;
}

.idx-faq-section-header {
  text-align: center;
  padding: 20px 40px 20px 40px;
  background-color: #f1f1f1;

}

.idx-faq-section-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #0038A5;
}

.idx-faq-section-subtitle {
  font-size: 1.1rem;
  color: #000000;
  max-width: 600px;
  margin: 0 auto;
}

/* Two-column layout */
.idx-faq-container {
  display: flex;
  padding: 20px 40px;
  gap: 30px;
}

.idx-faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FAQ Item Styles */
.idx-faq-item {
  border: 2px solid #E9E9FD;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.idx-faq-item.active {
  border-color: #0038A5;
  box-shadow: 0 5px 15px rgba(0, 56, 165, 0.1);
}

.idx-faq-question {
  width: 100%;
  background-color: #f8f9ff;
  border: none;
  padding: 10px 25px;
  text-align: left;
  font-size: 0.9rem;
  font-weight: 600;
  color: #0038A5;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.idx-faq-question:hover {
  background-color: #eef2ff;
}

.idx-faq-item.active .idx-faq-question {
  background-color: #0038A5;
  color: white;
}

.idx-question-text {
  flex: 1;
}

.idx-faq-icon {
  font-size: 1rem;
  color: #0038A5;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

.idx-faq-item.active .idx-faq-icon {
  color: white;
  transform: rotate(180deg);
}

.idx-faq-answer {
  max-height: 0;
  padding-top: 0px;
  padding-left: 20px;
  padding-bottom: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  background-color: white;
}

.idx-faq-item.active .idx-faq-answer {
  max-height: 800px;
  padding-top: 20px;
}

.idx-faq-answer-content {
  padding: 0 25px 25px;
  color: black;
  line-height: 1.7;
  font-size: 0.8rem;
}

.idx-faq-answer-content p {
  font-size: 15px;
  margin-bottom: 15px;
}

.idx-faq-answer-content p:last-child {
  margin-bottom: 0;
}

.idx-faq-highlight {
  background-color: rgba(0, 56, 165, 0.05);
  padding: 12px 15px;
  border-left: 3px solid #0038A5;
  margin: 10px 0;
  border-radius: 0 5px 5px 0;
}

/* Contact CTA */
.idx-faq-cta {
  text-align: center;
  padding: 40px;
  background-color: #D0E1FF;

  margin-top: 20px;
}

.idx-faq-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0038A5;
  margin-bottom: 15px;
}

.idx-faq-cta-text {
  font-size: 1rem;
  color: #000;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.idx-faq-cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #0038A5 0%, #0066FF 100%);
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.idx-faq-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 56, 165, 0.2);
  background: white;
  color: #0038A5;
  border: 2px solid #0038A5;
  text-decoration: none;
}

/* Responsive styles */
@media (max-width: 992px) {
  .idx-faq-container {
    flex-direction: column;
    gap: 30px;
  }

  .idx-faq-column {
    width: 100%;
  }

  .idx-faq-section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .idx-faq-section {
    border-radius: 15px;
  }

  .idx-faq-section-header {
    padding: 40px 20px 30px;
  }

  .idx-faq-container {
    padding: 30px 20px;
  }

  .idx-faq-question {
    padding: 18px 20px;
    font-size: 1rem;
  }

  .idx-faq-answer-content {
    padding: 0 20px 20px;
  }

  .idx-faq-cta {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .idx-faq-section-title {
    font-size: 1.6rem;
  }
}

/* Home Quote Form - Unique Styles */
.home-quote-section {
  padding: 80px 20px;
  background: #f1f1f1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-quote-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.home-quote-form-card {
  background: white;
  border-radius: 16px;
  padding: 50px 40px;
  box-shadow: 0 10px 40px rgba(0, 56, 165, 0.08);
  border: 1px solid rgba(0, 56, 165, 0.3);
}

.home-quote-header {
  text-align: center;
  margin-bottom: 40px;
}

.home-quote-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  color: #0038A5;
  margin-bottom: 12px;
  padding-bottom: 8px;
  position: relative;
}

.home-quote-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #0038A5;
}

.home-quote-title-underline {
  display: none;
}

.home-quote-subtitle {
  font-size: 1.15rem;
  color: #0066FF;
  font-weight: 500;
  margin: 15px 0 0;
}

.home-quote-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-quote-row {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 20px;
}

.home-quote-triple-row {
  grid-template-columns: 1fr 1fr 1fr;
}

.home-quote-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #0038A5;
  margin-bottom: 6px;
  margin-left: 2px;
}

.home-quote-group {
  display: flex;
  flex-direction: column;
}

.home-quote-full-width {
  grid-column: 1 / -1;
  margin-bottom: 25px;
}

.home-quote-input,
.home-quote-select,
.home-quote-group input,
.home-quote-group select {
  padding: 11px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #374151;
  background: white;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.home-quote-input:focus,
.home-quote-select:focus {
  outline: none;
  border-color: #0038A5;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.home-quote-input::placeholder {
  color: #999;
  opacity: 0.9;
}

.home-quote-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230038A5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 44px;
}

.home-quote-upload-container {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.home-quote-upload-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.home-quote-upload-field:hover {
  border-color: #0038A5;
  background-color: #f9fbff;
}

.home-quote-upload-icon {
  color: #0038A5;
  font-size: 1.2rem;
}

.home-quote-upload-text {
  color: #666;
  font-size: 0.95rem;
  font-weight: 500;
  flex: 1;
}

.home-quote-browse-btn {
  background: #0055ff;
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.home-quote-browse-btn:hover {
  background: #0044cc;
  transform: translateY(-1px);
}

.home-quote-info-btn {
  background: none;
  color: #0038A5;
  border: none;
  font-size: 1.2rem;
  width: auto;
  height: auto;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: help;
  opacity: 0.7;
  transition: all 0.2s;
  padding: 0;
}

.home-quote-info-btn:hover {
  opacity: 1;
  background: none;
  color: #0038A5;
  transform: scale(1.1);
}

.home-quote-textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  color: #374151;
  background: white;
  min-height: 130px;
  resize: vertical;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.home-quote-textarea:focus {
  outline: none;
  border-color: #0038A5;
  box-shadow: 0 0 0 3px rgba(0, 56, 165, 0.1);
}

.home-quote-textarea::placeholder {
  color: #999;
  opacity: 0.9;
}

.home-quote-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-top: 10px;
}

.home-quote-privacy {
  flex: 1;
  max-width: 450px;
}

.home-quote-privacy p {
  font-size: 0.92rem;
  color: #0066FF;
  line-height: 1.6;
  margin: 0;
}

.home-quote-privacy-link {
  color: #0038A5;
  text-decoration: none;
  font-weight: 700;
}

.home-quote-privacy-link:hover {
  text-decoration: underline;
}

.home-quote-submit-btn {
  background: #0055ff;
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 85, 255, 0.3);
  white-space: nowrap;
}

.home-quote-submit-btn:hover {
  background: #0044cc;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 85, 255, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .home-quote-section {
    padding: 50px 15px;
  }

  .home-quote-form-card {
    padding: 35px 20px;
  }

  .home-quote-title {
    font-size: 1.9rem;
  }

  .home-quote-row,
  .home-quote-triple-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .home-quote-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .home-quote-privacy {
    max-width: 100%;
  }

  .home-quote-submit-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .home-quote-title {
    font-size: 1.6rem;
  }

  .home-quote-form-card {
    padding: 25px 15px;
  }
}

/* FAQ Page Specific Fixes - Override all conflicts */
.faq-tabs-section .faq-accordion .faq-item {
  background: #f9f9f9 !important;
  border-radius: 8px !important;
  margin-bottom: 15px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  border: 1px solid #e0e0e0 !important;
}

.faq-tabs-section .faq-accordion .faq-question {
  width: 100% !important;
  padding: 20px 25px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  background: transparent !important;
  border: none !important;
  cursor: pointer !important;
  text-align: left !important;
  font-family: inherit !important;
  transition: background-color 0.3s ease !important;
  color: #333 !important;
  font-size: 1.05rem !important;
  font-weight: 500 !important;
}

.faq-tabs-section .faq-accordion .faq-question:hover {
  background-color: #f0f0f0 !important;
}

.faq-tabs-section .faq-accordion .faq-question i {
  font-size: 0.9rem !important;
  color: #666 !important;
  transition: transform 0.3s ease !important;
}

.faq-tabs-section .faq-accordion .faq-item.active .faq-question i {
  transform: rotate(180deg) !important;
  color: #007bff !important;
}

.faq-tabs-section .faq-accordion .faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  background-color: #fff !important;
}

.faq-tabs-section .faq-accordion .faq-item.active .faq-answer {
  max-height: 1000px !important;
  padding: 0 25px 20px 25px !important;
}

.faq-tabs-section .faq-accordion .faq-answer p {
  font-size: 1rem !important;
  line-height: 1.7 !important;
  color: #555 !important;
  margin: 0 !important;
}

/* Mobile responsive for FAQ page */
@media (max-width: 768px) {
  .faq-tabs-section .faq-accordion .faq-question {
    padding: 18px 20px !important;
  }

  .faq-tabs-section .faq-accordion .faq-question span {
    font-size: 0.95rem !important;
  }

  .faq-tabs-section .faq-accordion .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px !important;
  }

  .faq-tabs-section .faq-accordion .faq-answer p {
    font-size: 0.9rem !important;
  }
}

/* Product Page FAQ Specific Fixes - Override all conflicts */
.product-faq-section .product-faq-container .product-faq-item {
  background: white !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
  overflow: hidden !important;
  transition: box-shadow 0.3s ease !important;
  margin-bottom: 20px !important;
  border: 1px solid #e2e8f0 !important;
}

.product-faq-section .product-faq-container .product-faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
}

.product-faq-section .product-faq-container .product-faq-question {
  width: 100% !important;
  padding: 24px !important;
  background: none !important;
  border: none !important;
  text-align: left !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  color: #333 !important;
  cursor: pointer !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  transition: background-color 0.3s ease !important;
}

.product-faq-section .product-faq-container .product-faq-question:hover {
  background: #f8fafc !important;
}

.product-faq-section .product-faq-container .product-question-text {
  flex: 1 !important;
  margin-right: 16px !important;
}

.product-faq-section .product-faq-container .product-faq-icon {
  font-size: 1rem !important;
  color: #666 !important;
  transition: transform 0.3s ease !important;
}

.product-faq-section .product-faq-container .product-faq-item.active .product-faq-icon {
  transform: rotate(180deg) !important;
}

.product-faq-section .product-faq-container .product-faq-answer {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.3s ease, padding 0.3s ease !important;
  background: #f8fafc !important;
}

.product-faq-section .product-faq-container .product-faq-item.active .product-faq-answer {
  max-height: 1000px !important;
  padding: 0 24px 24px 24px !important;
}

.product-faq-section .product-faq-container .product-faq-answer-content p {
  font-size: 1rem !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin-bottom: 16px !important;
}

.product-faq-section .product-faq-container .product-faq-answer-content ul {
  margin: 16px 0 !important;
  padding-left: 20px !important;
}

.product-faq-section .product-faq-container .product-faq-answer-content li {
  font-size: 1rem !important;
  color: #666 !important;
  line-height: 1.6 !important;
  margin-bottom: 8px !important;
}

.product-faq-section .product-faq-container .product-faq-highlight {
  background: #e0f2fe !important;
  border-left: 4px solid #0369a1 !important;
  padding: 16px 20px !important;
  margin: 16px 0 !important;
  border-radius: 0 8px 8px 0 !important;
}

.product-faq-section .product-faq-container .product-faq-highlight p {
  color: #0369a1 !important;
  margin: 0 !important;
}

/* Mobile responsive for Product FAQ */
@media (max-width: 768px) {
  .product-faq-section .product-faq-container .product-faq-question {
    padding: 20px !important;
    font-size: 1rem !important;
  }

  .product-faq-section .product-faq-container .product-faq-item.active .product-faq-answer {
    padding: 0 20px 20px 20px !important;
  }
}

@media (max-width: 480px) {
  .product-faq-section .product-faq-container .product-faq-question {
    font-size: 0.95rem !important;
    padding: 18px !important;
  }
}

/* Additional Mobile Fixes for Eco-Friendly Packaging */
@media (max-width: 768px) {

  /* Fix sp-container spacing */
  .sp-container {
    padding: 0 15px;
    margin: 0 auto;
  }

  .sp-header {
    text-align: left;
    margin-bottom: 30px;
  }

  .sp-title {
    text-align: left;
    margin-bottom: 10px;
  }

  .sp-subtitle {
    text-align: left;
    margin: 0;
  }

  .sp-grid {
    gap: 15px;
    padding: 0;
  }

  .sp-card {
    padding: 20px 15px;
    margin: 0;
  }

  /* Fix eco-friendly section container */
  .eco-friendly-section .printing-page-container {
    padding: 0 15px;
  }

  /* Fix sustainable strategies section container */
  .sustainable-strategies-section .printing-page-container {
    padding: 0 15px;
  }

  .strategies-text {
    padding: 0;
    margin-bottom: 25px;
  }

  .strategy-card {
    margin: 0;
    padding: 20px 15px;
  }
}

@media (max-width: 480px) {
  .sp-container {
    padding: 0 10px;
  }

  .eco-friendly-section {
    padding: 30px 10px;
  }

  .sustainable-strategies-section {
    padding: 30px 10px;
  }

  .eco-friendly-section .printing-page-container,
  .sustainable-strategies-section .printing-page-container {
    padding: 0 10px;
  }
}

/* Additional Mobile Fixes for Allmarket Page */
@media (max-width: 768px) {

  /* Fix hero section */
  .about-hero-section {
    padding: 40px 15px;
  }

  .about-hero-section .printing-page-container {
    padding: 0;
  }

  .about-hero-section h1 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 15px;
  }

  .about-hero-section p {
    text-align: left;
    margin: 0;
  }

  .breadcrumb {
    margin-bottom: 25px;
  }

  /* Fix brands section */
  .brands-section {
    padding: 40px 15px;
  }

  .brands-section .container {
    padding: 0;
  }
}

@media (max-width: 480px) {
  .about-hero-section {
    padding: 30px 10px;
  }

  .about-hero-section h1 {
    font-size: 1.8rem;
  }

  .brands-section {
    padding: 30px 10px;
  }
}

/* Food Industry Shop Flexible Packaging Section */
.food-shop-section {
  padding: 80px 20px;
  background: #ffffff;
}

.food-shop-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

.food-shop-header {
  text-align: center;
  margin-bottom: 60px;
}

.food-shop-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.food-shop-subtitle {
  font-size: 1.125rem;
  color: #000;
  margin: 0;
}

.food-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.food-shop-card {
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.food-shop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.food-shop-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.food-shop-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.food-shop-card:hover .food-shop-image img {
  transform: scale(1.05);
}

.food-shop-content {
  padding: 30px 25px;
  text-align: center;
}

.food-shop-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e40af;
  margin-bottom: 15px;
}

.food-shop-card-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.food-shop-btn {
  background: transparent;
  color: #1e40af;
  border: 2px solid #1e40af;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.food-shop-btn:hover {
  background: #1e40af;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .food-shop-section {
    padding: 60px 15px;
  }

  .food-shop-header {
    text-align: left;
    margin-bottom: 40px;
  }

  .food-shop-title {
    font-size: 2rem;
    text-align: left;
  }

  .food-shop-subtitle {
    text-align: left;
  }

  .food-shop-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .food-shop-image {
    height: 220px;
  }

  .food-shop-content {
    padding: 25px 20px;
  }

  .food-shop-card-title {
    font-size: 1.3rem;
  }

  .food-shop-card-text {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .food-shop-section {
    padding: 40px 10px;
  }

  .food-shop-title {
    font-size: 1.8rem;
  }

  .food-shop-image {
    height: 200px;
    padding: 15px;
  }

  .food-shop-content {
    padding: 20px 15px;
  }

  /* Food Benefits Section */
  .food-benefits-section {
    padding: 80px 0;
    background: var(--bg-white);
  }

  .food-benefits-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
  }

  .food-benefits-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .food-benefits-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .food-benefits-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .food-benefits-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .food-benefits-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 12px;
  }

  .benefit-item p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .food-benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .food-benefits-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .food-benefits-section {
      padding: 60px 0;
    }

    .food-benefits-title {
      font-size: 2rem;
    }

    .food-benefits-subtitle {
      font-size: 1.1rem;
    }

    .food-benefits-content {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .food-benefits-text {
      gap: 30px;
    }

    .benefit-item h3 {
      font-size: 1.3rem;
    }
  }

  @media (max-width: 480px) {
    .food-benefits-section {
      padding: 40px 0;
    }

    .food-benefits-title {
      font-size: 1.8rem;
    }

    .food-benefits-container {
      padding: 0 16px;
    }
  }

  /* Food Industry Certifications Section */
  .food-certifications-section {
    padding: 80px 0;
    background: #f8fafc;
  }

  .food-certifications-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
  }

  .food-certifications-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .food-certifications-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .food-certifications-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }

  .food-certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .certification-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  }

  .certification-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }

  .certification-icon i {
    font-size: 24px;
    color: white;
  }

  .certification-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
  }

  .certification-card p {
    color: var(--text-muted);
    line-height: 1.6;
  }

  /* Food Industry FAQ Section */
  .food-faq-section {
    padding: 80px 0;
    background: var(--bg-white);
  }

  .food-faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
  }

  .food-faq-header {
    text-align: center;
    margin-bottom: 60px;
  }

  .food-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
  }

  .food-faq-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
  }

  .food-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .food-faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }

  .food-faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .food-faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background-color 0.3s ease;
  }

  .food-faq-question:hover {
    background: #f8fafc;
  }

  .food-faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
  }

  .food-faq-icon {
    color: #2563eb;
    font-size: 16px;
    transition: transform 0.3s ease;
    margin-left: 20px;
  }

  .food-faq-item.active .food-faq-icon {
    transform: rotate(180deg);
  }

  .food-faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .food-faq-item.active .food-faq-answer {
    padding: 0 30px 25px;
    max-height: 200px;
  }

  .food-faq-answer p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
  }

  /* Responsive Design for Food Industry Sections */
  @media (max-width: 768px) {
    .food-certifications-section {
      padding: 60px 0;
    }

    .food-certifications-title {
      font-size: 2rem;
    }

    .food-certifications-subtitle {
      font-size: 1.1rem;
    }

    .food-certifications-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .certification-card {
      padding: 30px 20px;
    }

    .food-faq-section {
      padding: 60px 0;
    }

    .food-faq-title {
      font-size: 2rem;
    }

    .food-faq-subtitle {
      font-size: 1.1rem;
    }

    .food-faq-question {
      padding: 20px;
    }

    .food-faq-question h3 {
      font-size: 1rem;
    }

    .food-faq-item.active .food-faq-answer {
      padding: 0 20px 20px;
    }
  }

  @media (max-width: 480px) {
    .food-certifications-section {
      padding: 40px 0;
    }

    .food-certifications-title {
      font-size: 1.8rem;
    }

    .food-certifications-container {
      padding: 0 16px;
    }

    .certification-card {
      padding: 25px 15px;
    }

    .food-faq-section {
      padding: 40px 0;
    }

    .food-faq-title {
      font-size: 1.8rem;
    }

    .food-faq-container {
      padding: 0 16px;
    }

    .food-faq-question {
      padding: 18px 15px;
    }

    .food-faq-item.active .food-faq-answer {
      padding: 0 15px 18px;
    }
  }
}

.plf-section {
  background: #ffffff;
  padding: 0 50px;
  font-family: 'DM Sans', sans-serif;
}

.plf-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 119px;
}

/* ---- Image Side ---- */
.plf-img-wrap {
  flex: 0 0 420px;
  border-radius: 16px;
  overflow: hidden;
  line-height: 0;
}

.plf-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

/* ---- Text Side ---- */
.plf-content {
  flex: 1;
}

.plf-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.60rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.plf-desc {
  font-size: 15px;
  font-weight: 400;
  color: #000;
  line-height: 1.75;
  margin: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .plf-container {
    flex-direction: column;
    gap: 2rem;
  }

  .plf-img-wrap {
    flex: unset;
    width: 100%;
  }

  .plf-img {
    height: 240px;
  }

  .plf-title {
    font-size: 22px;
  }
}


/* Before After Section */
.baf-section {
  background: #ffffff;
  padding: 0 2rem;
  font-family: 'DM Sans', sans-serif;
}

.baf-container {
  max-width: 960px;
  margin: 0 auto;
}

.baf-heading {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin-bottom: 0.3rem;
}

.baf-subheading {
  text-align: center;
  font-size: 15px;
  color: #888;
  margin-bottom: 3.5rem;
}

.baf-grid {
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* ---- Each Side Card ---- */
.baf-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

/* ---- Image Wrapper ---- */
.baf-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}

/* ---- IMAGE — replace src with your image ---- */
.baf-img {
  width: 250px;
  height: 350px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  position: relative;
  z-index: 2;
}

/* ---- Annotation shared ---- */
.baf-ann {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0px;
  z-index: 3;
}

.baf-ann-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid;
  background: transparent;
  flex-shrink: 0;
}

.baf-ann-line {
  height: 1px;
  width: 60px;
  background: #000000;
  flex-shrink: 0;
}

.baf-ann-text {
  font-size: 12px;
  line-height: 1.4;
  color: #555;
  white-space: nowrap;
}

/* Left side annotations — text on left */
.baf-ann-left {
  right: calc(39% + 90px);
}

.baf-ann-left .baf-ann-text {
  text-align: right;
}

/* Right side annotations — text on right */
.baf-ann-right {

  left: calc(38% + 90px);
}

/* ---- Label Button ---- */
.baf-label {
  margin-top: 1.5rem;
  padding: 10px 36px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  border: none;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  cursor: default;
}

.baf-label-before {
  background: #e6e6ee;
  color: #555;
}

.baf-label-after {
  background: #2563eb;
  color: #fff;
}

/* ---- Center Divider ---- */
.baf-divider {
  width: 1px;
  background: #ddd;
  align-self: stretch;
  margin: 0 0.25rem;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 700px) {
  .baf-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .baf-divider {
    display: none;
  }

  .baf-ann-left {
    right: calc(35% + 80px);
  }

  .baf-ann-right {
    left: calc(34% + 80px);
  }
}

/* Food Packaging Works Harder Section */
.food-works-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.food-works-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.food-works-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
  line-height: 1.2;
}

.food-works-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 50px;
}

.food-works-text {
  display: flex;
  flex-direction: column;

}

.food-works-subtitle {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.food-works-description {
  color: #000;
  line-height: 1.6;
  font-size: 1.1rem;
}

.food-works-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-works-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .food-works-section {
    padding: 60px 0;
  }

  .food-works-main-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .food-works-subtitle {
    font-size: 1.6rem;
  }

  .food-works-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .food-works-description {
    font-size: 1rem;
  }

  .food-works-text {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .food-works-section {
    padding: 40px 0;
  }

  .food-works-main-title {
    font-size: 1.9rem;
    margin-bottom: 30px;
  }

  .food-works-subtitle {
    font-size: 1.4rem;
  }

  .food-works-container {
    padding: 0 16px;
  }

  .food-works-text {
    gap: 18px;
  }
}

/* Ditch the Labels Section */
.food-labels-section {
  padding: 80px 0;
  background: #f8fafc;
}

.food-labels-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.food-labels-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 50px;
}

.food-labels-text {
  display: flex;
  flex-direction: column;

}

.food-labels-title {
  font-size: 1.60rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.food-labels-description {
  color: #000;
  line-height: 1.6;
  font-size: 1.1rem;
}

.food-labels-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-labels-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* Eco-Friendly Packaging Section */
.food-eco-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.food-eco-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.food-eco-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 50px;
}

.food-eco-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.food-eco-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.food-eco-text {
  display: flex;
  flex-direction: column;

}

.food-eco-title {
  font-size: 1.60rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.food-eco-description {
  color: #000;
  line-height: 1.6;
  font-size: 1.1rem;
}

.food-eco-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.food-eco-feature {
  display: flex;
  align-items: center;
  gap: 12px;
}

.food-eco-feature i {
  width: 20px;
  height: 20px;
  color: #2563eb;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.food-eco-feature span {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1rem;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {

  .food-labels-section,
  .food-eco-section {
    padding: 60px 0;
  }

  .food-labels-title,
  .food-eco-title {
    font-size: 2rem;
  }

  .food-labels-content,
  .food-eco-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .food-labels-description,
  .food-eco-description {
    font-size: 1rem;
  }

  .food-labels-text,
  .food-eco-text {
    gap: 20px;
  }
}

@media (max-width: 480px) {

  .food-labels-section,
  .food-eco-section {
    padding: 40px 0;
  }

  .food-labels-title,
  .food-eco-title {
    font-size: 1.8rem;
  }

  .food-labels-container,
  .food-eco-container {
    padding: 0 16px;
  }

  .food-labels-text,
  .food-eco-text {
    gap: 18px;
  }

  .food-eco-features {
    gap: 12px;
  }
}

/* Interactive Features Section */
.food-interactive-section {
  padding: 60px 60px;

  color: white;
}

.food-interactive-container {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1e40af, #2563eb);
  border-radius: 16px;
  padding: 50px 40px;

}

.food-interactive-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
  color: #fff !important;
  letter-spacing: 0.5px;
}

.food-interactive-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  align-items: flex-start;
}

.food-interactive-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 15px;
  /* Add space for scrollbar */
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.8) rgba(255, 255, 255, 0.1);
}

/* Custom scrollbar for feature list */
.food-interactive-left::-webkit-scrollbar {
  width: 8px !important;
}

.food-interactive-left::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.2) !important;
  border-radius: 4px;
}

.food-interactive-left::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 4px;
}

.food-interactive-left::-webkit-scrollbar-thumb:hover {
  background: #f1f1f1 !important;
  background-clip: content-box !important;
}

.food-feature-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.food-feature-item:last-child {
  border-bottom: none;
}

.food-feature-header {
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.food-feature-header:hover {
  background: rgba(255, 255, 255, 0.05);
  padding-left: 15px;
  border-radius: 8px;
}

.food-feature-name {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.3px;
}

.food-feature-icon {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.food-feature-item.active .food-feature-icon {
  transform: rotate(180deg);
  color: white;
}

.food-feature-item.active .food-feature-name {
  color: white;
  font-weight: 500;
}

.food-feature-description {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, margin 0.4s ease;
  background: white;
  border-radius: 12px;
  margin: 0 0 0 0;
}

.food-feature-item.active .food-feature-description {
  max-height: 200px;
  padding: 20px;
  margin: 10px 0 15px 0;
}

.food-feature-description p {
  color: #000;
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}

.food-interactive-right {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.food-interactive-image {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 350px;
  position: relative;
}

.food-feature-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  display: block;
}

/* Add a subtle glow effect */
.food-interactive-image::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 18px;
  z-index: -1;
}

/* Responsive Design for Interactive Section */
@media (max-width: 768px) {
  .food-interactive-section {
    padding: 40px 15px;
  }

  .food-interactive-container {
    padding: 30px 20px;
  }

  .food-interactive-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .food-interactive-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .food-interactive-image {
    padding: 20px;
    max-width: 280px;
    margin: 0 auto;
  }

  .food-feature-header {
    padding: 15px 0;
  }

  .food-feature-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .food-interactive-section {
    padding: 30px 10px;
  }

  .food-interactive-container {
    padding: 25px 15px;
  }

  .food-interactive-title {
    font-size: 1.4rem;
    line-height: 1.4;
  }

  .food-interactive-image {
    padding: 15px;
    max-width: 240px;
  }

  .food-feature-item.active .food-feature-description {
    padding: 15px;
  }
}

/* Responsive Design for Interactive Section */
@media (max-width: 768px) {
  .food-interactive-section {
    padding: 60px 0;
  }

  .food-interactive-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .food-interactive-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .food-interactive-image {
    padding: 20px;
    max-width: 300px;
  }

  .food-feature-header {
    padding: 15px 0;
  }

  .food-feature-name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .food-interactive-section {
    padding: 40px 0;
  }

  .food-interactive-title {
    font-size: 1.6rem;
  }

  .food-interactive-container {
    padding: 0 16px;
  }

  .food-interactive-image {
    padding: 15px;
    max-width: 250px;
  }

  .food-feature-item.active .food-feature-description {
    padding: 15px;
  }
}

/* Product Showcase Section */
.food-showcase-section {
  padding: 100px 0;
  background: #f8fafc;
  overflow: hidden;
}

.food-showcase-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.food-showcase-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
  position: relative;
}

.food-showcase-product {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.food-showcase-img {
  max-width: 350px;
  height: auto;
  border-radius: 12px;

  transition: transform 0.3s ease;
}

.food-showcase-img:hover {
  transform: scale(1.02);
}

/* Annotation Styles */
.food-annotation {
  position: absolute;
  z-index: 3;
}

.food-annotation-line {
  position: absolute;
  background: #9ca3af;
  z-index: 1;
}

.food-line-horizontal {
  height: 1px;
}

.food-line-vertical {
  width: 1px;
}

.food-annotation-content {
  position: absolute;
  z-index: 4;
  max-width: 180px;
}

.food-annotation-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.food-annotation-content p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Specific positioning for different annotation types */
.food-annotation-left .food-annotation-content {
  text-align: right;
}

.food-annotation-right .food-annotation-content {
  text-align: left;
}

.food-annotation-top-right .food-annotation-content {
  text-align: left;
}

.food-annotation-bottom-right .food-annotation-content {
  text-align: left;
}

/* Responsive Design for Product Showcase */
@media (max-width: 1024px) {
  .food-showcase-section {
    padding: 80px 0;
  }

  .food-showcase-content {
    min-height: 500px;
  }

  .food-showcase-img {
    max-width: 300px;
  }

  /* Adjust annotation positions for smaller screens */
  .food-annotation-left {
    left: -150px !important;
  }

  .food-annotation-right {
    right: -130px !important;
  }

  .food-annotation-top-right {
    right: -100px !important;
  }

  .food-annotation-bottom-right {
    position: absolute;
  }
}

/* ============================================
   POUCH ANATOMY / ANNOTATION DIAGRAM SECTION
   ============================================ */
.pouch-anatomy-section {
  padding: 80px 20px;
  background: #fff;
  overflow: hidden;
}

.pa-viewport {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.pouch-anatomy-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.pouch-anatomy-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #555;
  margin-bottom: 60px;
}

/* Main 3-column layout: left annotations | image | right annotations */
.pouch-anatomy-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 1100px;
  margin: 0 auto;
  position: relative;
  flex-shrink: 0;
  transform-origin: top center;
}

/* ---- CENTER IMAGE ---- */
.pouch-anatomy-image {
  flex: 0 0 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.pouch-anatomy-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ---- LEFT & RIGHT COLUMNS ---- */
.pouch-anatomy-left,
.pouch-anatomy-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.pouch-anatomy-left {
  align-items: flex-end;
  /* push content toward the image */
}

.pouch-anatomy-right {
  align-items: flex-start;
  /* push content away from image */
}

/* ---- EACH ANNOTATION ROW ---- */
.pa-annotation {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Left side: text → line → dot (right-to-left toward image) */
.pa-annotation.pa-left {
  flex-direction: row;
}

/* Right side: dot → line → text */
.pa-annotation.pa-right {
  flex-direction: row;
}

/* ---- TEXT BLOCK ---- */
.pa-text {
  max-width: 180px;
}

.pa-annotation.pa-left .pa-text {
  text-align: left;
}

.pa-annotation.pa-right .pa-text {
  text-align: left;
}

.pa-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.pa-text p {
  font-size: 0.85rem;
  color: #555;
  margin: 0;
  line-height: 1.4;
}

/* ---- ANNOTATION LINES (using pseudo-elements) ---- */
.pa-annotation {
  position: relative;
  width: 100%;
}

/* Base style for the text container */
.pa-text {
  position: relative;
  z-index: 10;
  max-width: 180px;
}

/* --- Left Side Annotations (Tearnotch, Clear Window) --- */
.pa-annotation.pa-left {
  justify-content: flex-end;
  padding-right: 50px;
  /* space between text and image */
}

/* Tearnotch (top left): Line from text mid-right, goes right, then DOWN */
.pa-tearnotch::after {
  content: '';
  position: absolute;
  top: 26px;
  right: -73px;
  width: 200px;
  height: 77px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  z-index: 1;
}

/* Clear Window (bottom left): Line from text mid-right, goes right, then UP */
.pa-window::after {
  content: '';
  position: absolute;
  bottom: -36px;
  right: -81px;
  width: 160px;
  height: 90px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  z-index: 1;
}

/* --- Right Side Annotations (Hang Hole, Corners, Zipper) --- */
.pa-annotation.pa-right {
  justify-content: flex-start;
  padding-left: 50px;
}

/* Hang Hole (top right): Line starts from halfway left, goes left, then UP */
.pa-hanghole::after {
  content: '';
  position: absolute;
  top: -23px;
  /* UP from the text */
  left: -167px;
  /* reach left past the border */
  width: 337px;
  /* length of horizontal line */
  height: 95px;
  /* height of vertical line */
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  border-left: 1px solid #000;
  z-index: 1;
}

/* Rounded Corners (mid right): Line starts left, goes UP */
.pa-rounded::after {
  content: '';
  position: absolute;
  top: -100px;
  /* UP from the text */
  left: -94px;
  width: 240px;
  height: 107px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;


  z-index: 1;
}

/* Zipper (bottom right): Line starts left, goes UP */
.pa-zipper::after {
  content: '';
  position: absolute;
  top: -278px;
  /* UP from the text */
  left: -73px;
  width: 153px;
  height: 202px;

  border-right: 1px solid #333;
  border-top: 1px solid #333;
  z-index: 1;
}

/* Vertical position tweaks for right alignment */
.pa-tearnotch {
  margin-top: -60px;
}

.pa-window {
  margin-top: 60px;
}

.pa-hanghole {
  margin-top: 20px;
}

.pa-rounded {
  margin-top: 60px;
}

.pa-zipper {
  margin-top: 60px;
}

/* ============================================
   RESPONSIVE — Stable 3-Column Mobile Layout
   ============================================ */
/* ============================================
   RESPONSIVE — Scaling Implementation
   ============================================ */
@media (max-width: 1150px) {
  .pouch-anatomy-diagram {
    transform: scale(0.9);
  }

  .pa-viewport {
    height: 650px;
  }
}

@media (max-width: 992px) {
  .pouch-anatomy-diagram {
    transform: scale(0.8);
  }

  .pa-viewport {
    height: 580px;
  }
}

@media (max-width: 768px) {
  .pouch-anatomy-section {
    padding: 50px 0px;
  }

  .pouch-anatomy-diagram {
    transform: scale(0.65);
  }

  .pa-viewport {
    height: 480px;
  }
}

@media (max-width: 580px) {
  .pouch-anatomy-diagram {
    transform: scale(0.48);
  }

  .pa-viewport {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .pouch-anatomy-diagram {
    transform: scale(0.38);
  }

  .pa-viewport {
    height: 280px;
  }
}

@media (max-width: 380px) {
  .pouch-anatomy-diagram {
    transform: scale(0.33);
  }

  .pa-viewport {
    height: 240px;
  }
}

/* Individual Text Classes for Product Showcase */

/* Tearnotch Text Styles */
.food-tearnotch-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.food-tearnotch-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Hang Hole Text Styles */
.food-hanghole-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.food-hanghole-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Clear Window Text Styles */
.food-clearwindow-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.food-clearwindow-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Zipper Text Styles */
.food-zipper-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 5px 0;
  line-height: 1.3;
}

.food-zipper-description {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Unique Classes for Each Annotation - Easy to Customize Position & Direction */

/* Tearnotch Annotation - Left Side */
.food-annotation-tearnotch {
  position: absolute;
  top: 25%;
  left: -200px;
}

.food-content-tearnotch {
  text-align: right;
}

.food-line-tearnotch-horizontal {
  position: absolute;
  width: 80px;
  height: 1px;
  background: #9ca3af;
  left: 160px;
  top: 20px;
}

/* Hang Hole Annotation - Top Right */
.food-annotation-hanghole {
  position: absolute;
  top: 10%;
  right: -150px;
}

.food-content-hanghole {
  text-align: left;
}

.food-line-hanghole-horizontal {
  position: absolute;
  width: 70px;
  height: 1px;
  background: #9ca3af;
  right: 120px;
  top: 20px;
}

/* Rounded Corners Annotation - Right Middle */
.food-annotation-rounded {
  position: absolute;
  top: 45%;
  right: -180px;
}

.food-content-rounded {
  text-align: left;
}

.food-line-rounded-horizontal {
  position: absolute;
  width: 80px;
  height: 1px;
  background: #9ca3af;
  right: 140px;
  top: 30px;
}

/* Clear Window Annotation - Left Bottom */
.food-annotation-clearwindow {
  position: absolute;
  bottom: 25%;
  left: -200px;
}

.food-content-clearwindow {
  text-align: right;
}

.food-line-clearwindow-horizontal {
  position: absolute;
  width: 80px;
  height: 1px;
  background: #9ca3af;
  left: 160px;
  top: 20px;
}

/* Zipper Annotation - Right Bottom */
.food-annotation-zipper {
  position: absolute;
  bottom: 15%;
  right: -150px;
}

.food-content-zipper {
  text-align: left;
}

.food-line-zipper-horizontal {
  position: absolute;
  width: 70px;
  height: 1px;
  background: #9ca3af;
  right: 120px;
  top: 20px;
}

/* Unique Classes for Each Feature in Interactive Section - Easy to Customize */

/* Custom Printing Feature */
.food-feature-printing {
  /* Add custom styles for printing feature container */
}

.food-name-printing {
  /* Customize printing feature name text */
}

.food-icon-printing {
  /* Customize printing feature icon */
}

/* Custom Sizing Feature */
.food-feature-sizing {
  /* Add custom styles for sizing feature container */
}

.food-name-sizing {
  /* Customize sizing feature name text */
}

.food-icon-sizing {
  /* Customize sizing feature icon */
}

/* Custom Materials Feature */
.food-feature-materials {
  /* Add custom styles for materials feature container */
}

.food-name-materials {
  /* Customize materials feature name text */
}

.food-icon-materials {
  /* Customize materials feature icon */
}

/* Custom External Finish Feature */
.food-feature-finish {
  /* Add custom styles for finish feature container */
}

.food-name-finish {
  /* Customize finish feature name text */
}

.food-icon-finish {
  /* Customize finish feature icon */
}

/* Tear Notch Feature */
.food-feature-tearnotch {
  /* Add custom styles for tearnotch feature container */
}

.food-name-tearnotch {
  /* Customize tearnotch feature name text */
}

.food-icon-tearnotch {
  /* Customize tearnotch feature icon */
}

/* Window Knockouts Feature */
.food-feature-window {
  /* Add custom styles for window feature container */
}

.food-name-window {
  /* Customize window feature name text */
}

.food-icon-window {
  /* Customize window feature icon */
}

/* Metallic Effects Feature */
.food-feature-metallic {
  /* Add custom styles for metallic feature container */
}

.food-name-metallic {
  /* Customize metallic feature name text */
}

.food-icon-metallic {
  /* Customize metallic feature icon */
}

.food-description-metallic {
  /* Customize metallic feature description container */
}

.food-desc-text-metallic {
  /* Customize metallic feature description text */
}

/* Unique Classes for Stand-Up Pouch Features Annotations - Easy to Customize Position */

/* Tearnotch Annotation (Left Side) */
.pa-text-tearnotch {
  left: 79px;
  top: 101px;
}

.pa-title-tearnotch {
  /* Customize tearnotch title */
}

.pa-desc-tearnotch {
  /* Customize tearnotch description */
}

/* Clear Window Annotation (Left Side) */
.pa-text-window {
  left: 121px;
  top: 100px;
}

.pa-title-window {
  /* Customize window title */
}

.pa-desc-window {
  /* Customize window description */
}

/* Hang Hole Annotation (Right Side) */
.pa-text-hanghole {
  left: 106px;
  top: 67px;
}

.pa-title-hanghole {
  /* Customize hang hole title */
}

.pa-desc-hanghole {
  /* Customize hang hole description */
}

/* Rounded Corners Annotation (Right Side) */
.pa-text-rounded {
  left: 67px;
  top: 0px;
}

.pa-title-rounded {
  /* Customize rounded corners title */
}

.pa-desc-rounded {
  /* Customize rounded corners description */
}

/* Zipper Annotation (Right Side) */
.pa-text-zipper {
  left: 7px;
  top: -83px;
}

.pa-title-zipper {
  /* Customize zipper title */
}

.pa-desc-zipper {
  /* Customize zipper description */
}

/* Add Circles/Dots at the end of annotation lines */

/* Tearnotch dot - at the connection point to pouch */
.pa-tearnotch::before {
  content: '';
  position: absolute;
  top: 95px;
  right: 120px;
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  z-index: 2;
}

/* Clear Window dot - at the connection point to pouch */
.pa-window::before {
  content: '';
  position: absolute;
  top: 94px;
  right: 72px;
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  z-index: 2;
}

/* Hang Hole dot - at the connection point to pouch */
.pa-hanghole::before {
  content: '';
  position: absolute;
  top: 62px;
  left: 166px;
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  z-index: 2;
}

/* Rounded Corners dot - at the connection point to pouch */
.pa-rounded::before {
  content: '';
  position: absolute;
  top: -3px;
  left: 141px;
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  z-index: 2;
}

/* Zipper dot - at the connection point to pouch */
.pa-zipper::before {
  content: '';
  position: absolute;
  top: -86px;
  left: 75px;
  width: 10px;
  height: 10px;
  background: white;
  border: 2px solid #333;
  border-radius: 50%;
  z-index: 2;
}

/* Enhance Your Packaging Section - Unique Classes */
.food-enhance-section {
  padding: 80px 0;
  background: #ffffff;
}

.food-enhance-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.food-enhance-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.food-enhance-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.food-enhance-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
}

.food-enhance-description {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.7;
  margin: 0;
}

.food-enhance-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f3f4f6;
  border-radius: 16px;

  min-height: 350px;
}

.food-enhance-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Enhance Section */
@media (max-width: 768px) {
  .food-enhance-section {
    padding: 60px 0;
  }

  .food-enhance-title {
    font-size: 2rem;
  }

  .food-enhance-description {
    font-size: 1rem;
  }

  .food-enhance-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .food-enhance-image {
    min-height: 280px;
  }
}

@media (max-width: 480px) {
  .food-enhance-section {
    padding: 40px 0;
  }

  .food-enhance-title {
    font-size: 1.8rem;
  }

  .food-enhance-container {
    padding: 0 16px;
  }

  .food-enhance-image {
    min-height: 250px;
    padding: 15px;
  }
}

/* Visual Effects & Finishes Section - Unique Classes */
.effects-visual-section {
  padding: 80px 0;
  background: #ffffff;
}

.effects-visual-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.effects-visual-header {
  text-align: center;
  margin-bottom: 60px;
}

.effects-visual-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.effects-visual-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.effects-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.effects-visual-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e5e7eb;
}

.effects-visual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.effects-visual-image {
  width: 100%;
  height: 300px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.effects-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.effects-visual-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  padding: 25px 25px 12px 25px;
  line-height: 1.3;
}

.effects-visual-card-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
  padding: 0 25px 25px 25px;
}

/* Responsive Design for Visual Effects Section */
@media (max-width: 1024px) {
  .effects-visual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .effects-visual-section {
    padding: 60px 0;
  }

  .effects-visual-title {
    font-size: 2rem;
  }

  .effects-visual-subtitle {
    font-size: 1rem;
  }

  .effects-visual-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .effects-visual-image {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .effects-visual-section {
    padding: 40px 0;
  }

  .effects-visual-title {
    font-size: 1.8rem;
  }

  .effects-visual-container {
    padding: 0 16px;
  }

  .effects-visual-image {
    height: 220px;
  }

  .effects-visual-card-title {
    font-size: 1.2rem;
    padding: 20px 20px 10px 20px;
  }

  .effects-visual-card-description {
    font-size: 0.95rem;
    padding: 0 20px 20px 20px;
  }
}


/* Performance & Visual Impact Section */
.performance-visual-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #e0f7ff 0%, #f0f9ff 100%);
}

.performance-visual-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.performance-visual-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;

  border-radius: 16px;

}

.performance-visual-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.performance-visual-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.performance-visual-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.performance-visual-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.2;
  margin: 0;
}

.performance-visual-description {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design for Performance Section */
@media (max-width: 768px) {
  .performance-visual-section {
    padding: 60px 0;
  }

  .performance-visual-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

  .performance-visual-title {
    font-size: 2rem;
  }

  .performance-visual-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .performance-visual-section {
    padding: 40px 0;
  }

  .performance-visual-content {
    padding: 30px 20px;
  }

  .performance-visual-title {
    font-size: 1.8rem;
  }

  .performance-visual-container {
    padding: 0 16px;
  }
}


/* Functional Features Section */
.functional-features-section {
  padding: 80px 0;
  background: #ffffff;
}

.functional-features-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.functional-features-header {
  text-align: center;
  margin-bottom: 60px;
}

.functional-features-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.functional-features-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

.functional-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  padding: 0 50px
}

.functional-features-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.functional-features-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #d1d5db;
}

.functional-features-image {
  background: #f3f4f6;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 24px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.functional-features-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.functional-features-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.functional-features-card-description {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design for Functional Features */
@media (max-width: 1024px) {
  .functional-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .functional-features-section {
    padding: 60px 0;
  }

  .functional-features-title {
    font-size: 2rem;
  }

  .functional-features-subtitle {
    font-size: 1rem;
  }

  .functional-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .functional-features-image {
    min-height: 240px;
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .functional-features-section {
    padding: 40px 0;
  }

  .functional-features-title {
    font-size: 1.8rem;
  }

  .functional-features-card {
    padding: 24px;
  }

  .functional-features-card-title {
    font-size: 1.3rem;
  }

  .functional-features-container {
    padding: 0 16px;
  }
}


/* --- FUNCTIONAL FEATURES SECTION --- */
.functional-features-section {
  padding: 80px 0;
  background: white;
}

.functional-features-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.functional-features-header {
  text-align: center;
  margin-bottom: 50px;
}

.functional-features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.functional-features-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.functional-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.functional-feature-card {
  background: white;
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

.functional-feature-card:hover {
  border-color: #0038A5;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 56, 165, 0.15);
}

.functional-feature-image {
  width: 100%;
  height: 250px;
  background: #f0f0f0;
  border-radius: 12px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.functional-feature-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.functional-feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.functional-feature-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
  .functional-features-section {
    padding: 60px 0;
  }

  .functional-features-header h2 {
    font-size: 2rem;
  }

  .functional-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .functional-feature-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .functional-features-section {
    padding: 50px 0;
  }

  .functional-features-header h2 {
    font-size: 1.75rem;
  }

  .functional-features-header p {
    font-size: 1rem;
  }

  .functional-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .functional-feature-card {
    padding: 25px;
  }

  .functional-feature-image {
    height: 200px;
  }

  .functional-feature-card h3 {
    font-size: 1.2rem;
  }

  .functional-feature-card p {
    font-size: 0.9rem;
  }
}

/* Visual Effects & Finishes Section */
.visual-effects-section {
  padding: 60px 0;
  background: #ffffff;
}

.visual-effects-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.visual-effects-header {
  text-align: center;
  margin-bottom: 40px;
}

.visual-effects-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.visual-effects-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.visual-effects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.visual-effects-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 24px;
  padding: 0;
  text-align: center;
  transition: all 0.3s ease;
  overflow: hidden;
}

.visual-effects-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.visual-effects-image {
  background: #c4c4c4;
  border-radius: 20px;
  margin: 16px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.visual-effects-img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.visual-effects-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 16px 20px 8px 20px;
}

.visual-effects-card-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0 20px 20px 20px;
}

/* Responsive Design for Visual Effects */
@media (max-width: 1024px) {
  .visual-effects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .visual-effects-section {
    padding: 60px 0;
  }

  .visual-effects-title {
    font-size: 2rem;
  }

  .visual-effects-subtitle {
    font-size: 1rem;
  }

  .visual-effects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visual-effects-image {
    height: 200px;
    margin: 12px;
  }
}

@media (max-width: 480px) {
  .visual-effects-section {
    padding: 40px 0;
  }

  .visual-effects-title {
    font-size: 1.8rem;
  }

  .visual-effects-card {
    border-radius: 20px;
  }

  .visual-effects-card-title {
    font-size: 1.1rem;
    margin: 12px 16px 6px 16px;
  }

  .visual-effects-card-description {
    font-size: 0.9rem;
    margin: 0 16px 16px 16px;
  }

  .visual-effects-container {
    padding: 0 16px;
  }
}

/* How to Measure Your Pouch Size Section */
.measure-pouch-section {
  padding: 80px 0;
  background: #ffffff;
}

.measure-pouch-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.measure-pouch-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 60px;
}

.measure-pouch-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.measure-pouch-text {
  padding-right: 20px;
}

.measure-pouch-intro {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 24px;
}

.measure-pouch-details {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.measure-detail-item {
  padding-left: 20px;
  position: relative;
}

.measure-detail-item::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.measure-detail-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.measure-detail-description {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.measure-pouch-image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-left: 0;
  margin-top: -40px;
}

.measure-image-placeholder {
  width: 420%;
  height: 480px;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  overflow: hidden;
}

.measure-image-placeholder img {
  width: 420px;
  height: 482px;
  object-fit: cover;
  border-radius: 10px;
}

.measure-image-placeholder::after {
  content: "";
  position: absolute;
  text-align: center;
  padding: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .measure-pouch-content {
    gap: 60px;
  }

  .measure-pouch-text {
    padding-right: 20px;
  }

  .measure-pouch-image {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .measure-pouch-section {
    padding: 60px 0;
  }

  .measure-pouch-title {
    font-size: 2rem;
    margin-bottom: 20px;
  }

  .measure-pouch-content {
    grid-template-columns: 1fr;
    gap: 25px;
    display: flex;
    flex-direction: column;
  }

  /* Image appears first in mobile */
  .measure-pouch-image {
    order: -1;
    margin-top: 0;
  }

  .measure-pouch-text {
    order: 1;
  }

  .measure-pouch-intro {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .measure-pouch-text {
    padding-right: 0;
  }

  .measure-image-placeholder {
    height: auto;
    width: 100%;
    max-width: 100%;
  }

  .measure-image-placeholder img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}

@media (max-width: 480px) {
  .measure-pouch-section {
    padding: 40px 0;
  }

  .measure-pouch-title {
    font-size: 1.8rem;
  }

  .measure-pouch-container {
    padding: 0 16px;
  }

  .measure-pouch-content {
    display: flex;
    flex-direction: column;
  }

  /* Image appears first in mobile */
  .measure-pouch-image {
    order: -1;
    margin-top: 0;
  }

  .measure-pouch-text {
    order: 1;
  }

  .measure-detail-title {
    font-size: 1rem;
  }

  .measure-detail-description {
    font-size: 0.9rem;
  }

  .measure-image-placeholder {
    height: auto;
    width: 100%;
  }

  .measure-image-placeholder img {
    width: 100%;
    max-width: 420px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }
}

/* Features Bar Section */
.features-bar-section {
  padding: 0;
  background: #D0E1FF;
}

.features-bar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 40px 20px;
  background: #D0E1FF;
}

.features-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: center;
}

.feature-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.feature-bar-icon {
  width: 60px;
  height: 60px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;

}

.feature-bar-icon svg {
  width: 32px;
  height: 32px;
  fill: #3b82f6;
}

.feature-bar-title {
  font-size: 1rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  line-height: 1.4;
}

/* Responsive Design for Features Bar */
@media (max-width: 1024px) {
  .features-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .features-bar-container {
    padding: 32px 20px;
  }
}

@media (max-width: 768px) {
  .features-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .features-bar-container {
    padding: 24px 16px;
  }

  .feature-bar-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .feature-bar-icon svg {
    width: 28px;
    height: 28px;
  }

  .feature-bar-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .features-bar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .features-bar-container {
    padding: 20px 16px;
  }

  .feature-bar-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .feature-bar-icon {
    margin-bottom: 0;
    margin-right: 16px;
    width: 45px;
    height: 45px;
  }

  .feature-bar-title {
    font-size: 0.95rem;
  }
}

/* Why the Right Size Makes All the Difference Section */
.right-size-section {
  padding: 80px 0;
  background: #e6f3ff;
}

.right-size-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.right-size-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.right-size-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.right-size-image-placeholder {
  width: 100%;
  height: 400px;

  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1rem;
  position: relative;
}

.right-size-image-placeholder::after {

  position: absolute;
  text-align: center;
  padding: 20px;
}

.right-size-text {
  padding-left: 20px;
}

.right-size-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.3;
}

.right-size-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-bullet {
  color: var(--text-dark);
  font-weight: bold;
  font-size: 1.2rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.benefit-text {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.5;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .right-size-content {
    gap: 40px;
  }

  .right-size-text {
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .right-size-section {
    padding: 60px 0;
  }

  .right-size-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .right-size-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .right-size-image-placeholder {
    height: 300px;
  }

  .benefit-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .right-size-section {
    padding: 40px 0;
  }

  .right-size-container {
    padding: 0 16px;
  }

  .right-size-title {
    font-size: 1.6rem;
  }

  .right-size-image-placeholder {
    height: 250px;
  }

  .benefit-text {
    font-size: 0.95rem;
  }

  .right-size-benefits {
    gap: 12px;
  }
}

/* Custom Size FAQ Section - Unique Classes */
.custom-size-faq-section {
  padding: 80px 0;
  background: #ffffff;
}

.custom-size-faq-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.custom-size-faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.custom-size-faq-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.custom-size-faq-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.custom-size-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-size-faq-item {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.custom-size-faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-size-faq-question {
  width: 100%;
  padding: 24px;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.custom-size-faq-question:hover {
  background: #f1f5f9;
}

.custom-size-question-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

.custom-size-faq-icon {
  font-size: 1rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.custom-size-faq-icon.rotated {
  transform: rotate(180deg);
}

.custom-size-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.custom-size-faq-answer.open {
  max-height: 200px;
}

.custom-size-faq-answer-content {
  padding: 0 24px 24px 24px;
}

.custom-size-faq-answer-content p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .custom-size-faq-section {
    padding: 60px 0;
  }

  .custom-size-faq-container {
    padding: 0 16px;
  }

  .custom-size-faq-title {
    font-size: 2rem;
  }

  .custom-size-faq-subtitle {
    font-size: 1rem;
  }

  .custom-size-faq-question {
    padding: 20px;
  }

  .custom-size-question-text {
    font-size: 1rem;
  }

  .custom-size-faq-answer-content {
    padding: 0 20px 20px 20px;
  }
}

@media (max-width: 480px) {
  .custom-size-faq-section {
    padding: 40px 0;
  }

  .custom-size-faq-title {
    font-size: 1.8rem;
  }

  .custom-size-faq-question {
    padding: 16px;
  }

  .custom-size-question-text {
    font-size: 0.95rem;
  }

  .custom-size-faq-answer-content {
    padding: 0 16px 16px 16px;
  }

  .custom-size-faq-answer-content p {
    font-size: 0.9rem;
  }
}

/* Custom Labels by Format Section */
.labels-format-section {
  padding: 70px 0;
  background: #ffffff;
}

.labels-format-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.labels-format-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.labels-format-header p {
  font-size: 1.05rem;
  color: #000;
  line-height: 1.7;
}

.labels-format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.label-format-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

/* Label sheet card - same style as other cards */
.label-sheet-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.label-sheet-card .label-format-image {
  background: #f5f5f5;
}

.label-sheet-card .label-format-content {
  background: #ffffff;
}

.label-sheet-card .label-format-content h3,
.label-sheet-card .label-format-content p {
  color: #000;
}

.label-sheet-card .label-shop-now {
  color: #0038A5;
  font-weight: 600;
}

.label-sheet-card .label-shop-now:hover {
  color: #002060;
}

.label-format-image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.label-format-card:hover .label-format-image img {
  transform: scale(1.05);
}

.label-format-content {
  padding: 25px 25px;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.label-format-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
}

.label-format-content p {
  font-size: 0.95rem;
  color: #000;
  line-height: 1.5;
  margin-bottom: 15px;
  flex-grow: 1;
}

.label-shop-now {
  display: inline-block;
  color: #0038A5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  align-self: flex-start;
}

.label-shop-now:hover {
  color: #002060;

}

/* Responsive Design */
@media (max-width: 1200px) {
  .labels-format-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .label-sheet-card {
    grid-column: span 1;
  }
}

@media (max-width: 1024px) {
  .labels-format-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .label-sheet-card {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .labels-format-section {
    padding: 50px 20px;
  }

  .labels-format-header h2 {
    font-size: 2rem;
  }

  .labels-format-header p {
    font-size: 0.95rem;
  }

  .labels-format-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .label-sheet-card {
    grid-column: span 1;
  }

  .label-format-image {
    height: 200px;
  }

  .label-format-content {
    padding: 22px;
  }

  .label-format-content h3 {
    font-size: 1.4rem;
  }

  .label-format-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .labels-format-section {
    padding: 35px 15px;
  }

  .labels-format-header h2 {
    font-size: 1.8rem;
  }

  .label-format-image {
    height: 200px;
  }

  .label-format-content {
    padding: 20px;
  }
}

/* ===== STICKERS FORMAT SECTION (4 COLUMNS) ===== */
.stickers-format-section {
  padding: 70px 0;
  background: #ffffff;
}

.stickers-format-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.stickers-format-header h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.stickers-format-header p {
  font-size: 1rem;
  color: #000;
  line-height: 1.7;
}

.stickers-format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.sticker-format-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  border: 1px solid #e5e5e5;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.sticker-sheet-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
}

.sticker-format-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sticker-format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sticker-format-card:hover .sticker-format-image img {
  transform: scale(1.05);
}

.sticker-format-content {
  padding: 18px 18px;
  background: #ffffff;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.sticker-format-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
  line-height: 1.2;
}

.sticker-format-content p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.35;
  margin-bottom: 10px;
  flex-grow: 1;
}

.sticker-shop-now {
  display: inline-block;
  color: #0038A5;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  align-self: flex-start;
}

.sticker-shop-now:hover {
  color: #002060;

}

/* Responsive Design for Stickers */
@media (max-width: 1200px) {
  .stickers-format-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 1024px) {
  .stickers-format-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .stickers-format-section {
    padding: 50px 20px;
  }

  .stickers-format-header h2 {
    font-size: 2rem;
  }

  .stickers-format-header p {
    font-size: 0.95rem;
  }

  .stickers-format-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sticker-format-image {
    height: 160px;
  }

  .sticker-format-content {
    padding: 18px;
  }

  .sticker-format-content h3 {
    font-size: 1.4rem;
  }

  .sticker-format-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .stickers-format-section {
    padding: 35px 15px;
  }

  .stickers-format-header h2 {
    font-size: 1.8rem;
  }

  .sticker-format-image {
    height: 140px;
  }

  .sticker-format-content {
    padding: 16px;
  }
}

/* ===== POUCH FEATURES SECTION - MOBILE FRIENDLY ===== */
.pouch-features-section {
  padding: 60px 0;
  background: #ffffff;
}

.pouch-features-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pouch-features-header {
  text-align: center;
  margin-bottom: 50px;
}

.pouch-features-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.pouch-features-header p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}

/* Desktop Layout - Image with positioned feature labels */
.pouch-features-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.pouch-image-container {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.pouch-image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.feature-labels {
  position: relative;
  width: 100%;
  min-height: 500px;
  margin-top: -100px;
}

.feature-label {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 150px;
}

.feature-label-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.feature-label-text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.feature-label::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  width: 2px;
  height: 20px;
  background: #0038A5;
}

/* Mobile Layout - Vertical stacked features */
@media (max-width: 768px) {
  .pouch-features-section {
    padding: 40px 0;
  }

  .pouch-features-header h2 {
    font-size: 1.8rem;
  }

  .pouch-features-header p {
    font-size: 0.95rem;
  }

  .pouch-image-container {
    margin-bottom: 20px;
  }

  .feature-labels {
    position: relative;
    min-height: auto;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .feature-label {
    position: static;
    width: 100%;
    flex-direction: row;
    gap: 15px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    align-items: flex-start;
  }

  .feature-label::before {
    display: none;
  }

  .feature-label-title {
    font-size: 0.95rem;
    min-width: 100px;
    flex-shrink: 0;
  }

  .feature-label-text {
    font-size: 0.8rem;
    flex: 1;
  }
}

/* Extra Small Mobile - Adjust layout for small screens */
@media (max-width: 480px) {
  .pouch-features-section {
    padding: 30px 0;
  }

  .pouch-features-header h2 {
    font-size: 1.6rem;
  }

  .pouch-features-container {
    padding: 0 15px;
  }

  .pouch-features-header {
    margin-bottom: 30px;
  }

  .feature-label {
    flex-direction: column;
    padding: 12px;
    gap: 8px;
  }

  .feature-label-title {
    min-width: auto;
    font-size: 0.9rem;
  }

  .feature-label-text {
    font-size: 0.75rem;
  }
}

/* =====================================================
   FOOD INDUSTRY PAGE — COMPREHENSIVE MOBILE FIXES
   ===================================================== */

/* ------- PLF Section (Premium Looks) ------- */
@media (max-width: 768px) {
  .plf-section {
    padding: 30px 15px;
  }

  .plf-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0;
  }

  .plf-img-wrap {
    flex: unset;
    width: 100%;
  }

  .plf-img {
    height: 220px;
    width: 100%;
  }

  .plf-content {
    padding: 0;
  }

  .plf-title {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }

  .plf-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .plf-section {
    padding: 25px 12px;
  }

  .plf-img {
    height: 190px;
  }

  .plf-title {
    font-size: 18px;
  }
}

/* ------- BAF Section (Before/After) MOBILE VIEW ------- */
@media (max-width: 700px) {

  /* ===== SECTION LAYOUT ===== */
  .baf-section {
    padding: 40px 15px;
  }

  .baf-heading {
    font-size: 24px;
    text-align: center;
  }

  .baf-subheading {
    font-size: 13px;
    margin-bottom: 2rem;
    text-align: center;
  }

  .baf-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .baf-divider {
    display: none;
  }

  .baf-side {
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ===== MIRROR SCALING WRAPPER ===== */
  /* We design for a fixed 400px width and scale it down for smaller screens */
  .baf-img-wrap {
    width: 400px;
    height: 520px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 0;
    overflow: visible;
  }

  /* ===== POUCH IMAGE SIZE ===== */
  .baf-img {
    width: 250px !important;
    height: 350px !important;
    border-radius: 12px;
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  /* ===== ALL ANNOTATIONS - BASE ===== */
  .baf-ann {
    display: flex !important;
    position: absolute !important;
    align-items: center !important;
    z-index: 3;
    width: auto !important;
  }

  /* ===== ANNOTATION TEXT ===== */
  .baf-ann-text {
    font-size: 12px !important;
    line-height: 1.2 !important;
    max-width: 110px !important;
    color: #333 !important;
    font-weight: 500 !important;
  }

  /* ===== ANNOTATION DOT (Circle) ===== */
  .baf-ann-dot {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    border: 2px solid #000 !important;
    background: #fff !important;
    flex-shrink: 0;
  }

  /* ===== ANNOTATION LINE (Horizontal) ===== */
  .baf-ann-line {
    height: 1.5px !important;
    background: #000 !important;
    flex-shrink: 0;
  }

  /* ===== TOP CENTER ANNOTATION (Manual stick on labels / 360 HD printing) ===== */
  .baf-img-wrap>div[style*="position:absolute"]:not(.baf-ann) {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    top: 40px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    gap: 0 !important;
    z-index: 4;
  }

  .baf-img-wrap>div[style*="position:absolute"]:not(.baf-ann) span {
    font-size: 12px !important;
    color: #333 !important;
    margin-bottom: 4px !important;
    font-weight: 600 !important;
    text-align: center;
  }

  /* Vertical line for top annotation */
  .baf-img-wrap>div[style*="position:absolute"]:not(.baf-ann) div[style*="width:1px"] {
    height: 45px !important;
    background: #000 !important;
  }

  /* Circle/dot at the end of vertical line */
  .baf-img-wrap>div[style*="position:absolute"]:not(.baf-ann) .baf-ann-dot {
    margin-top: -5px;
  }

  /* ===== LEFT SIDE ANNOTATIONS ===== */
  .baf-ann-left {
    left: 10px !important;
    right: auto !important;
    flex-direction: row !important;
    justify-content: flex-end;
  }

  .baf-ann-left .baf-ann-text {
    order: 1;
    text-align: left !important;
    padding-right: 4px;
  }

  .baf-ann-left .baf-ann-line {
    order: 2;
    width: 65px !important;
  }

  .baf-ann-left .baf-ann-dot {
    order: 3;
  }

  /* ===== RIGHT SIDE ANNOTATIONS ===== */
  .baf-ann-right {
    right: 10px !important;
    left: auto !important;
    flex-direction: row-reverse !important;
    justify-content: flex-start;
  }

  .baf-ann-right .baf-ann-text {
    order: 1;
    text-align: right !important;
    padding-left: 4px;
  }

  .baf-ann-right .baf-ann-line {
    order: 2;
    width: 65px !important;
  }

  .baf-ann-right .baf-ann-dot {
    order: 3;
  }

  /* ===== SCALING BREAKPOINTS ===== */
  @media (max-width: 480px) {
    .baf-img-wrap {
      transform: scale(0.85);
      transform-origin: top center;
      margin-bottom: -197px;
    }
  }

  @media (max-width: 380px) {
    .baf-img-wrap {
      transform: scale(0.75);
      margin-bottom: -130px;
    }
  }

  @media (max-width: 340px) {
    .baf-img-wrap {
      transform: scale(0.68);
      margin-bottom: -170px;
    }
  }

  /* ===== LABEL BUTTON ===== */
  .baf-label {
    margin-top: 1rem;
    padding: 10px 32px;
    font-size: 14px;
    z-index: 5;
    position: relative;
  }
}

/* ------- Food Works Harder Section mobile ------- */
@media (max-width: 768px) {
  .food-works-section {
    padding: 50px 0;
  }

  .food-works-container {
    padding: 0 15px;
  }

  .food-works-main-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
    text-align: left;
  }

  .food-works-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0;
    /* remove the 50px desktop padding */
  }

  .food-works-subtitle {
    font-size: 1.3rem;
  }

  .food-works-description {
    font-size: 0.95rem;
  }

  .food-works-image {
    order: -1;
    /* image on top */
  }

  .food-works-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .food-works-container {
    padding: 0 12px;
  }

  .food-works-main-title {
    font-size: 1.4rem;
  }

  .food-works-subtitle {
    font-size: 1.2rem;
  }

  .food-works-img {
    height: 190px;
  }
}

/* ------- Food Labels Section mobile (Ditch the Labels) ------- */
@media (max-width: 768px) {
  .food-labels-section {
    padding: 50px 0;
  }

  .food-labels-container {
    padding: 0 15px;
  }

  .food-labels-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0;
    /* remove 50px desktop padding */
  }

  .food-labels-title {
    font-size: 1.6rem;
    text-align: left;
  }

  .food-labels-description {
    font-size: 0.95rem;
  }

  .food-labels-image {
    order: -1;
  }

  .food-labels-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .food-labels-container {
    padding: 0 12px;
  }

  .food-labels-title {
    font-size: 1.3rem;
  }

  .food-labels-img {
    height: 190px;
  }
}

/* ------- Food Eco Section mobile ------- */
@media (max-width: 768px) {
  .food-eco-section {
    padding: 50px 0;
  }

  .food-eco-container {
    padding: 0 15px;
  }

  .food-eco-content {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0;
    /* remove 50px desktop padding */
  }

  .food-eco-title {
    font-size: 1.6rem;
    text-align: left;
  }

  .food-eco-description {
    font-size: 0.95rem;
  }

  .food-eco-image {
    width: 100%;
  }

  .food-eco-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .food-eco-container {
    padding: 0 12px;
  }

  .food-eco-title {
    font-size: 1.3rem;
  }

  .food-eco-img {
    height: 190px;
  }

  .food-eco-feature span {
    font-size: 0.9rem;
  }
}

/* ------- Interactive Features Section mobile ------- */
@media (max-width: 768px) {
  .food-interactive-section {
    padding: 30px 12px;
  }

  .food-interactive-container {
    padding: 30px 18px;
    border-radius: 12px;
  }

  .food-interactive-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .food-interactive-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .food-interactive-right {
    justify-content: center;
  }

  .food-interactive-image {
    max-width: 260px;
    padding: 18px;
    margin: 0 auto;
  }

  .food-feature-header {
    padding: 14px 0;
  }

  .food-feature-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .food-interactive-section {
    padding: 40px 0;
  }

  .food-interactive-title {
    font-size: 1.6rem;
  }

  .food-interactive-container {
    padding: 0 16px;
  }

  .food-interactive-image {
    padding: 15px;
    max-width: 250px;
  }

  .food-interactive-container {
    padding: 22px 14px;
    border-radius: 10px;
  }

  .food-interactive-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .food-interactive-image {
    max-width: 220px;
    padding: 14px;
  }

  .food-feature-name {
    font-size: 0.88rem;
  }

  .food-feature-item.active .food-feature-description {
    padding: 14px;
  }

  .food-feature-description p {
    font-size: 0.82rem;
  }
}

/* ------- Food Shop Section mobile extra fixes ------- */
@media (max-width: 768px) {
  .food-shop-container {
    padding: 0 15px;
  }

  .food-shop-header {
    margin-bottom: 30px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .food-shop-container {
    padding: 0 12px;
  }

  .food-shop-title {
    font-size: 1.5rem;
  }

  .food-shop-subtitle {
    font-size: 0.9rem;
  }

  .food-shop-image {
    height: 180px;
    padding: 12px;
  }

  .food-shop-content {
    padding: 16px 14px;
    text-align: left;
  }

  .food-shop-card-title {
    font-size: 1.1rem;
    text-align: left;
  }

  .food-shop-card-text {
    font-size: 0.88rem;
    text-align: left;
  }

  .food-shop-btn {
    width: 100%;
    padding: 11px 20px;
  }
}

/* ------- Hero Section mobile extra fix ------- */
@media (max-width: 480px) {
  .about-hero-section {
    padding: 28px 12px;
  }

  .about-hero-section h1 {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  .about-hero-section p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ------- Quality Assurance Section mobile ------- */
@media (max-width: 768px) {
  .quality-assurance-section {
    padding: 50px 15px;
  }

  .quality-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .quality-assurance-section {
    padding: 35px 12px;
  }

  .quality-card {
    padding: 22px 16px;
  }

  .quality-title {
    font-size: 1rem;
  }

  .quality-description {
    font-size: 0.88rem;
  }
}

/* ------- Product Order Steps Section mobile ------- */
@media (max-width: 768px) {
  .product-order-steps-section {
    padding: 50px 15px;
  }

  .product-order-steps-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .product-order-steps-left h2 {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .product-step-item {
    gap: 15px;
  }

  .product-step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .product-step-content h3 {
    font-size: 1rem;
  }

  .product-step-content p {
    font-size: 0.88rem;
  }

  .product-quote-form-box {
    padding: 24px 18px;
  }

  .product-quote-form-box h3 {
    font-size: 1.2rem;
  }

  .product-quote-subtitle {
    font-size: 0.9rem;
  }

  .product-form-row {
    flex-direction: column;
    gap: 12px;
  }

  .product-form-row input,
  .product-form-row textarea {
    width: 100%;
    box-sizing: border-box;
  }

  .product-upload-row {
    flex-direction: column;
  }

  .product-upload-field {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .product-order-steps-section {
    padding: 30px 12px;
  }

  .product-order-steps-left h2 {
    font-size: 1.35rem;
  }

  .product-quote-form-box {
    padding: 18px 14px;
  }
}


/* ============================================
   CUSTOM DECALS SECTION WITH CAROUSEL
   ============================================ */
.custom-decals-section {
  padding: 80px 20px;
  background: #fff;
}

.printing-decals-container,
.printing-other-products-container {
  max-width: 1200px;
  margin: 0 auto;

}

.decals-header {
  text-align: center;
  margin-bottom: 50px;
}

.decals-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
}

.decals-subtitle {
  font-size: 1.1rem;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.decals-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.decals-arrow {
  background: #0038A5;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

/* When arrow is hidden via JS visibility, also disable clicks */
.decals-arrow[style*="hidden"] {
  pointer-events: none;
}

.decals-arrow:hover {
  background: #002870;
  transform: scale(1.1);
}

.decals-arrow i {
  font-size: 1.2rem;
}

.decals-cards-container {
  overflow: hidden;
  flex: 1;
}

.decals-cards-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.decals-card {
  min-width: calc(25% - 22.5px);
  background: transparent;
  border: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.decals-card:hover {
  transform: translateY(-8px);
}

.decals-card-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  background: transparent;
}

.decals-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: transparent;
}

.decals-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .decals-card {
    min-width: calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .custom-decals-section {
    padding: 40px 12px;
  }

  /* Remove 60px side-padding from container on mobile */
  .printing-decals-container,
  .printing-other-products-container {
    padding: 0;
  }

  .decals-header {
    margin-bottom: 30px;
  }

  .decals-title {
    font-size: 2rem;
    margin-bottom: 12px;
  }

  .decals-subtitle {
    font-size: 1rem;
    line-height: 1.5;
  }

  .decals-carousel-wrapper {
    gap: 10px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .decals-cards-container {
    flex: 1;
    overflow: hidden;
    min-width: 0;
  }

  .decals-cards-track {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
  }

  .decals-card {
    min-width: calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
    flex-shrink: 0;
  }

  .decals-card-image {
    margin-bottom: 10px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .decals-arrow {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .decals-arrow i {
    font-size: 1rem;
  }

  .decals-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .custom-decals-section {
    padding: 30px 10px;
  }

  .decals-header {
    margin-bottom: 25px;
  }

  .decals-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .decals-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .decals-carousel-wrapper {
    gap: 8px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .decals-cards-container {
    flex: 1;
    overflow: hidden;
    min-width: 0;
  }

  .decals-cards-track {
    display: flex;
    gap: 12px;
    transition: transform 0.3s ease;
  }

  .decals-card {
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    flex-shrink: 0;
  }

  .decals-card-image {
    margin-bottom: 12px;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .decals-card-image img {
    border-radius: 15px;
  }

  .decals-card-title {
    font-size: 1rem;
    line-height: 1.3;
  }

  .decals-arrow {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }

  .decals-arrow i {
    font-size: 0.9rem;
  }
}


/* ============================================
   CUSTOM CLINGS SECTION WITH CAROUSEL
   ============================================ */
.custom-clings-section {
  padding: 20px 60px;
  background: #f8f9fa;
}

.clings-header {
  text-align: center;
  margin-bottom: 50px;
}

.clings-title {
  font-size: 2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 15px;
}

.clings-subtitle {
  font-size: 1.1rem;
  color: #000;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.clings-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 50px;
}

.clings-arrow {
  background: #0038A5;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

/* When arrow is hidden via JS visibility, also disable clicks */
.clings-arrow[style*="hidden"] {
  pointer-events: none;
}

.clings-arrow:hover {
  background: #002870;
  transform: scale(1.1);
}

.clings-arrow i {
  font-size: 1.2rem;
}

.clings-cards-container {
  overflow: hidden;
  flex: 1;
}

.clings-cards-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.clings-card {
  min-width: calc(25% - 22.5px);
  background: transparent;
  border: none;
  text-align: center;
  transition: transform 0.3s ease;
}

.clings-card:hover {
  cursor: pointer;
}

.clings-card-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
  background: transparent;
}

.clings-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: transparent;
}

.clings-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .clings-card {
    min-width: calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .custom-clings-section {
    padding: 40px 12px;
  }

  .clings-title {
    font-size: 2rem;
  }

  .clings-subtitle {
    font-size: 1rem;
  }

  /* Remove desktop side-padding so cards fill the width correctly */
  .clings-carousel-wrapper {
    padding: 0;
    gap: 10px;
  }

  .clings-cards-container {
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
  }

  .clings-cards-track {
    gap: 12px;
    display: flex;
    transition: transform 0.3s ease;
  }

  .clings-card {
    min-width: calc(50% - 6px);
    max-width: calc(50% - 6px);
    flex-shrink: 0;
  }

  .clings-card-image {
    aspect-ratio: 1 / 1;
    height: auto;
    margin-bottom: 10px;
    border-radius: 14px;
  }

  .clings-card-image img {
    border-radius: 14px;
  }

  .clings-arrow {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }

  .clings-arrow i {
    font-size: 1rem;
  }

  .clings-card-title {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .custom-clings-section {
    padding: 30px 10px;
  }

  .clings-title {
    font-size: 1.5rem;
  }

  .clings-subtitle {
    font-size: 0.9rem;
  }

  .clings-carousel-wrapper {
    padding: 0;
    gap: 8px;
  }

  .clings-cards-container {
    overflow: hidden;
    position: relative;
    flex: 1;
    min-width: 0;
  }

  .clings-cards-track {
    gap: 10px;
    display: flex;
  }

  .clings-card {
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    flex-shrink: 0;
  }

  .clings-card-image {
    border-radius: 12px;
  }

  .clings-arrow {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .clings-arrow i {
    font-size: 0.9rem;
  }

  .clings-card-title {
    font-size: 0.9rem;
  }
}


/* ============================================
   CUSTOM SIGNS SECTION
   ============================================ */
.custom-signs-section {
  padding: 80px 20px;
  background: #fff;
}

.signs-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 60px;
  align-items: center;
}

.signs-content {
  padding-right: 20px;
}

.signs-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.signs-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.signs-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.signs-arrow {
  background: #0038A5;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.signs-arrow:hover {
  background: #002870;
  transform: scale(1.1);
}

.signs-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.signs-arrow i {
  font-size: 1.2rem;
}

.signs-cards-container {
  overflow: hidden;
  flex: 1;
}

.signs-cards-track {
  display: flex;
  transition: transform 0.5s ease;
}

.signs-page {
  min-width: 100%;
  flex-shrink: 0;
}

.signs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.signs-card {
  background: transparent;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.signs-card:hover {
  transform: translateY(-8px);
}

.signs-card-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-bottom: 15px;
  border: 4px solid #0038A5;
  position: relative;
}

.signs-card-image::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 20px;
  background-image: linear-gradient(to bottom, #0038A5 50%, transparent 50%);
  background-size: 2px 8px;
  background-repeat: repeat-y;
}

.signs-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.signs-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .signs-layout {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

  .signs-title {
    font-size: 2rem;
  }

  .signs-description {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .signs-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .signs-content {
    text-align: center;
    padding-right: 0;
  }

  .signs-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 968px) {
  .signs-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .signs-content {
    text-align: center;
    padding-right: 0;
  }

  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .custom-signs-section {
    padding: 60px 15px;
  }

  .signs-title {
    font-size: 1.8rem;
  }

  .signs-description {
    font-size: 0.95rem;
  }

  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .signs-arrow {
    width: 40px;
    height: 40px;
  }

  .signs-arrow i {
    font-size: 1rem;
  }

  .signs-card {
    max-width: 100%;
  }

  .signs-card-title {
    font-size: 1rem;
    margin-top: 8px;
  }

  .signs-card-image {
    aspect-ratio: 3 / 4;
    margin-bottom: 10px;
    border: 3px solid #0038A5;
    border-radius: 16px;
  }

  .signs-card-image::before {
    display: none;
  }

  .signs-card-image img {
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .custom-signs-section {
    padding: 40px 10px;
  }

  .signs-title {
    font-size: 1.6rem;
  }

  .signs-description {
    font-size: 0.9rem;
  }

  .signs-carousel-wrapper {
    gap: 10px;
  }

  .signs-arrow {
    width: 35px;
    height: 35px;
  }

  .signs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .signs-card {
    max-width: 100%;
  }

  .signs-card-title {
    font-size: 0.9rem;
    margin-top: 8px;
  }

  .signs-card-image {
    aspect-ratio: 3 / 4;
    margin-bottom: 8px;
    border: 2px solid #0038A5;
    border-radius: 14px;
  }

  .signs-card-image::before {
    display: none;
  }

  .signs-card-image img {
    border-radius: 12px;
  }
}


/* ============================================
   CUSTOM BANNERS SECTION
   ============================================ */
.custom-banners-section {
  padding: 80px 20px;
  background: #f8f9fa;
}

.banners-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.banners-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.banners-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
}

.banners-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.banners-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.banners-arrow {
  background: #0038A5;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.banners-arrow:hover {
  background: #002870;
  transform: scale(1.1);
}

.banners-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.banners-arrow i {
  font-size: 1.2rem;
}

.banners-cards-container {
  overflow: hidden;
  flex: 1;
}

.banners-cards-track {
  display: flex;
  transition: transform 0.5s ease;
}

.banners-page {
  min-width: 100%;
  flex-shrink: 0;
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.banners-card {
  background: transparent;
  text-align: center;
  transition: transform 0.3s ease;
  position: relative;
}

.banners-card:hover {
  transform: translateY(-8px);
}

.banners-card-image {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  margin-bottom: 20px;
}

.banners-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.banners-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .banners-layout {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

  .banners-title {
    font-size: 2rem;
  }

  .banners-description {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .banners-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .banners-content {
    text-align: center;
    padding-right: 0;
  }

  .banners-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .custom-banners-section {
    padding: 60px 15px;
  }

  .banners-title {
    font-size: 1.8rem;
  }

  .banners-description {
    font-size: 0.95rem;
  }

  .banners-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .banners-arrow {
    width: 40px;
    height: 40px;
  }

  .banners-arrow i {
    font-size: 1rem;
  }

  .banners-card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .custom-banners-section {
    padding: 40px 10px;
  }

  .banners-title {
    font-size: 1.6rem;
  }

  .banners-description {
    font-size: 0.9rem;
  }

  .banners-carousel-wrapper {
    gap: 10px;
  }

  .banners-arrow {
    width: 35px;
    height: 35px;
  }

  .banners-grid {
    gap: 15px;
  }
}


/* ============================================
   CUSTOM POSTERS SECTION
   ============================================ */
.custom-posters-section {
  padding: 80px 20px;
  background: #fff;
}

.posters-layout {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 10px;
  align-items: center;
}

.posters-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.posters-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
}

.posters-description {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.posters-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.posters-arrow {
  background: #0038A5;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  z-index: 10;
}

.posters-arrow:hover {
  background: #002870;
  transform: scale(1.1);
}

.posters-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.posters-arrow i {
  font-size: 1.2rem;
}

.posters-cards-container {
  overflow: hidden;
  flex: 1;
}

.posters-cards-track {
  display: flex;
  transition: transform 0.5s ease;
}

.posters-page {
  min-width: 100%;
  flex-shrink: 0;
}

.posters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.posters-card {
  background: transparent;
  text-align: center;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 100%;
}

/* Desktop: Show 4 cards in 2x2 grid */
@media (min-width: 769px) {
  .posters-cards-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    transform: none !important;
  }

  .posters-card {
    width: 100%;
  }

  .posters-card:nth-child(n+5) {
    display: none;
  }
}

.posters-card:hover {
  transform: translateY(-8px);
}

.posters-card-image {
  width: 100% !important;
  max-width: 100% !important;
  border-radius: 20px;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  margin-bottom: 20px;
  margin-top: 0;
  border: none;
  position: relative;
  height: auto !important;
}

.posters-card-image img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
}

.posters-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #111;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .posters-layout {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

  .posters-title {
    font-size: 2rem;
  }

  .posters-description {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) {
  .posters-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .posters-content {
    text-align: center;
    padding-right: 0;
  }

  .posters-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .custom-posters-section {
    padding: 40px 15px;
    overflow: visible;
  }

  .posters-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
  }

  .posters-description {
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .posters-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .posters-content {
    text-align: center;
    padding-right: 0;
    margin-bottom: 0;
  }

  .posters-carousel-wrapper {
    gap: 10px;
    padding: 0 5px;
    align-items: center;
  }

  .posters-cards-container {
    overflow: hidden;
    width: 100%;
    position: relative;
  }

  .posters-cards-track {
    display: flex;
    gap: 20px;
    width: 100%;
  }

  .posters-page {
    display: none;
  }

  .posters-grid {
    display: none;
  }

  .posters-card {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    flex-shrink: 0;
    width: calc(50% - 10px);
    background: transparent;
  }

  .posters-card-image {
    width: 180px !important;
    height: 151px !important;
    margin: 0 auto 15px auto;
    aspect-ratio: auto !important;
    border-radius: 15px;
    background: transparent !important;
  }

  .posters-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 15px;
    background: transparent !important;
  }

  .posters-card-title {
    font-size: 1.1rem;
  }

  .posters-arrow {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .posters-arrow i {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .custom-posters-section {
    padding: 30px 10px;
  }

  .posters-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
    text-align: center;
  }

  .posters-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
  }

  .posters-layout {
    gap: 20px;
  }

  .posters-carousel-wrapper {
    gap: 8px;
    padding: 0;
  }

  .posters-cards-container {
    overflow: hidden;
    width: 100%;
  }

  .posters-cards-track {
    display: flex;
    gap: 12px;
  }

  .posters-page {
    display: none;
  }

  .posters-grid {
    display: none;
  }

  .posters-card {
    min-width: calc(50% - 6px);
    flex-shrink: 0;
    width: calc(50% - 6px);
  }

  .posters-card-image {
    width: 180px !important;
    height: 151px !important;
    margin: 0 auto 12px auto;
    aspect-ratio: auto !important;
    border-radius: 15px;
  }

  .posters-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 15px;
  }

  .posters-card-title {
    font-size: 1rem;
  }
}

.posters-card-image {
  margin-bottom: 12px;
  border-radius: 15px;
  aspect-ratio: 1 / 1;
  height: auto;
}

.posters-card-image img {
  border-radius: 15px;
}

.posters-card-title {
  font-size: 1rem;
  line-height: 1.3;
}

.posters-arrow {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

.posters-arrow i {
  font-size: 0.9rem;
}
}


/* ===== BAF SECTION - SMALLER MOBILE (480px) ===== */
@media (max-width: 480px) {

  /* Smaller pouch image */
  .baf-img {
    width: 500px !important;
    height: 280px !important;
  }

  /* Adjust wrapper height */
  .baf-img-wrap {
    min-height: 380px;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Smaller annotation text */
  .baf-ann-text {
    font-size: 10px !important;
    max-width: 95px !important;
  }

  /* Shorter lines */
  .baf-ann-line {
    width: 50px !important;
  }

  /* Smaller dots */
  .baf-ann-dot {
    width: 8px !important;
    height: 8px !important;
  }

  /* Adjust left annotations position */
  .baf-ann-left {
    left: 10px !important;
  }

  /* Adjust right annotations position */
  .baf-ann-right {
    right: 10px !important;
  }
}

/* --- BLOGPOST TOP TOC --- */
.blogpost-top-toc-container {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}

.blogpost-top-toc {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 450px;
  position: relative;
}

.blogpost-top-toc-toggle {
  background: #ffffff;
  border: 1px solid #71717A;
  border-radius: 9999px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #111;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  z-index: 12;
  font-family: inherit;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.blogpost-top-toc-toggle:hover {
  background: #f8fafc;
  border-color: #3f3f46;
}

.blogpost-top-toc-toggle i {
  font-size: 16px;
  color: #3f3f46;
}

.blogpost-top-toc-content {
  background: #ffffff;
  width: 100%;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: none;
  margin-top: 15px;
  border: 1px solid #e5e7eb;
}

.blogpost-top-toc.active .blogpost-top-toc-content {
  display: block;
  animation: fadeInDown 0.3s ease forwards;
}

.blogpost-top-toc.active .blogpost-top-toc-toggle {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blogpost-top-toc-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #111;
  margin-bottom: 20px;
  margin-top: 0;
  text-transform: uppercase;
}

.blogpost-top-toc .blogpost-toc {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blogpost-top-toc .blogpost-toc>li {
  font-size: 15px;
  color: #4b5563;
  display: flex;
  align-items: flex-start;
  line-height: 1.4;
}

.blogpost-top-toc .blogpost-toc>li>a {
  color: #4b5563;
  text-decoration: none;
  display: block;
  font-weight: 400;
}

.blogpost-top-toc .blogpost-toc>li>a:hover {
  color: var(--brand);
}

.blogpost-top-toc .blogpost-toc>li.has-child {
  gap: 10px;
  margin-left: 15px;
}

.blogpost-top-toc .blogpost-toc>li.has-child i {
  font-size: 12px;
  color: #9ca3af;
  margin-top: 12px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- BLOGPOST TOC VISIBILITY --- */
@media (min-width: 1025px) {
  .blogpost-top-toc-container {
    display: none !important;
  }
}

@media (max-width: 1024px) {
  .blogpost-sidebar-toc {
    display: none !important;
  }
}


/* Labels & Stickers Mega Menu with Images */
.labels-stickers-mega {
  display: grid !important;
  grid-template-columns: 200px 200px 200px 220px;
  gap: 40px;
  padding: 0 20px 0 50px;
}

.mm-col-with-images {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mm-col-with-images h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 10px;
  color: #0038A5;
  margin-bottom: 14px;
  padding-bottom: 0px;
  border-bottom: 3px solid #0038A5;
}

.items-with-images {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
  max-height: 380px;
  overflow-y: auto;
  padding-right: 10px;
}

/* Custom Scrollbar for Mega Menu */
.items-with-images::-webkit-scrollbar {
  width: 5px;
}

.items-with-images::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.items-with-images::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 4px;
}

.items-with-images::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.items-with-images li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.item-image-placeholder {
  width: 55px;
  height: 55px;
  background: #E8E8E8;
  border-radius: 6px;
  flex-shrink: 0;
}

.items-with-images a {
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.items-with-images a:hover {
  color: #0038A5;
}

.mm-col-with-images .all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding-top: 15px;
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  border-top: 1px solid #E8E8E8;
  transition: color 0.3s ease, gap 0.3s ease;
}

.mm-col-with-images .all-link:hover {
  color: #0038A5;
  gap: 12px;
}

.mm-image-col-large {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 0px;
  margin-top: 0;
  margin-bottom: -10px;
  padding-top: 0;
  padding-bottom: 0;
}

.mm-image-col-large .mm-image-wrapper-large {
  border-radius: 0;
  height: 100%;

}

.mm-image-wrapper-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0px;
  max-height: none;
  min-height: 100%;
  width: 100%;
  background: #0038A5;
  padding: 5px 10px 12px 10px;
  border-radius: 8px;
  box-sizing: border-box;
}

.mm-image-wrapper-large h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff !important;
  text-align: center;
  line-height: 1.3;
  margin: 12px 0 8px 0;
  padding: 0;
}

.mm-image-wrapper-large img {
  max-width: 180px;
  max-height: 210px;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  z-index: 999;
}

.mm-image-wrapper-large p {
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
  line-height: 1.5;
  margin: 0 0 10px 0;
  padding: 0 10px;
}

.get-quote-btn {
  display: inline-block;
  margin: 5px auto 0px auto;
  align-self: center;
  background: #FFD700;
  color: #000;
  padding: 8px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.get-quote-btn:hover {
  background: #FFC700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.get-quote-btn-row {
  display: inline-block;
  margin: 12px 20px 0 20px;
  background: #FFD700;
  color: #000;
  padding: 8px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.get-quote-btn-row:hover {
  background: #FFC700;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

/* Mega Menu Get Quote Button */
.get-quote-btn-mega {
  display: block;
  background: #0038A5;
  color: white;
  padding: 16px 50px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin: 25px auto 25px auto;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 56, 165, 0.25);
}

.get-quote-btn-mega:hover {
  background: #0066FF;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 56, 165, 0.35);
  text-decoration: none;
}

/* Mega Menu Premium Title */
.mm-premium-title {
  color: #FFD700 !important;
  font-size: 1.8rem !important;
  margin: 20px 0 15px 0 !important;
  padding: 0 !important;
  font-weight: 800 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  border-bottom: none !important;
  width: 100% !important;
  text-align: left !important;
}

/* Mega Menu Description */
.mm-description {
  color: white !important;
  font-size: 1rem !important;
  line-height: 1.6 !important;
  margin: 0 0 20px 0 !important;
  text-align: left !important;
  padding: 0 20px 20px 20px !important;
}

/* Mega Menu Products Image */
.mm-products-image {
  width: 100% !important;
  height: auto !important;
  max-height: 200px !important;
  object-fit: contain !important;
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}

/* Mega Menu Image Wrapper - Blue container */
.mm-image-wrapper-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 104%;
  padding: 5px 10px 12px 10px;
  background: #0038A5;
  border-radius: 12px 12px 0 0;
  box-sizing: border-box;
}

/* Mega Menu Image Column - Container for blue section + button */
.mm-image-col-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: visible;
  padding-bottom: 1px;
}


/* View All Industries - White Button Style */
.view-all-btn-white {
  display: inline-block;
  background: #FFD700;
  color: #0038A5;
  padding: 14px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.view-all-btn-white:hover {
  background: #F8F8F8;
  border-color: #0038A5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 165, 0.2);
}


/* Position all "All" links at bottom in one row */
.labels-stickers-mega {
  position: relative;
  padding-bottom: 80px !important;
}

.mm-col-with-images .all-link {
  position: absolute;
  bottom: 30px;
  margin-top: 0 !important;
  padding-top: 0 !important;
  border-top: none !important;
}

.mm-col-with-images:nth-child(1) .all-link {
  left: 30px;
}

.mm-col-with-images:nth-child(2) .all-link {
  left: 270px;
}

.mm-col-with-images:nth-child(3) .all-link {
  left: 510px;
}

/* Add top border above all links */
.labels-stickers-mega::before {
  content: '';
  position: absolute;
  bottom: 70px;
  left: 50px;
  width: 690px;
  height: 1px;
  background: #E8E8E8;
}


/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Quote section - ensure it's visible without scroll */
.home-quote-section {
  scroll-margin-top: 80px;
}





/* Mobile Simple List (for Products and Label & Stickers) */
.mobile-simple-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-simple-list li {
  border-bottom: 1px solid #e8e8f0;
}

.mobile-simple-list li:last-child {
  border-bottom: none;
}

.mobile-simple-list a {
  display: block;
  padding: 15px 20px;
  color: #333;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.mobile-simple-list a:hover {
  background: #f8f9fa;
  color: #0038A5;
  padding-left: 25px;
}


/* Sitemap Page Styles */
.sitemap-section {
  padding: 80px 0;
  background: white;
}

.sitemap-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 60px;
  text-align: left;
}

.sitemap-category {
  margin-bottom: 60px;
  padding: 0;
}

.sitemap-category-title {
  margin: auto;
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-bottom: 40px;
}

.sitemap-column h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column ul li {
  margin-bottom: 12px;
}

.sitemap-column ul li a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.sitemap-column ul li a:hover {
  color: #0038A5;
  padding-left: 5px;
}

.sitemap-blogs ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 1;
}

.sitemap-blogs ul li {
  margin-bottom: 15px;
  break-inside: avoid;
}

.sitemap-blogs ul li a {
  color: #000;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.sitemap-blogs ul li a:hover {
  color: #0038A5;
  padding-left: 5px;
}

.sitemap-pages ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sitemap-pages ul li a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Two-column layout for blogs+pages row */
.sitemap-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 482px;
  margin-bottom: 40px;
}

.sitemap-pages ul li a:hover {
  color: #0038A5;
}

/* Responsive */
@media (max-width: 968px) {
  .sitemap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .sitemap-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .sitemap-category-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .sitemap-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sitemap-section {
    padding: 60px 0;
  }

  .sitemap-pages ul {
    flex-direction: column;
    gap: 15px;
  }
}


/* ========== AUTHOR PAGE STYLES ========== */

/* Author Banner Container */
.author-banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Author Banner Section */
.author-banner {
  position: relative;
  background-image: url('images-home/cbd-and-hemp.webp');
  background-size: cover;
  background-position: center;
  padding: 60px 20px 40px;
  margin-top: 0;
  overflow: visible;
}

.author-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.author-profile-section {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-bottom: 0;
}

.author-profile-image {
  flex-shrink: 0;
  position: relative;
  margin-bottom: -90px;
  z-index: 10;
}

.author-profile-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #0038A5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  background: white;
  position: relative;
  z-index: 10;
}

.author-info {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 10;
  position: relative;
}

.author-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: white !important;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  top: 26px;
  z-index: 10;
}

.author-description {
  display: none;
}

.author-linkedin {
  display: none;
}

.author-description-banner {
  position: relative;
  z-index: 5;
  background: white;
  padding: 120px 30px 30px 30px;
  max-width: 900px;
  margin: 0 auto;
  margin-top: -20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-description-banner p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin: 0 0 20px 0;
  text-align: left;
}

.author-linkedin-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #0077B5;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.3);
}

.author-linkedin-banner:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.4);
}

.author-linkedin-banner i {
  font-size: 1.3rem;
}

/* Author Details Section - Below Banner */
.author-details {
  background: white;
  padding: 83px 152px 40px;
  margin-top: -20px;
}

.author-details-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.author-description-full {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin: 0 0 20px 0;
}

.linkedin-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.linkedin-wrapper .linkedin-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.linkedin-wrapper .linkedin-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
}

.author-linkedin-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0077B5;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  width: fit-content;
  transition: all 0.3s ease;
}

.author-linkedin-full:hover {
  background: #005885;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.author-linkedin-full i {
  font-size: 1.2rem;
}

/* Author Articles Section */
.author-articles {
  padding: 60px 50px;
  background: #f8f9fa;
}

.author-articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.author-article-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.author-article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 56, 165, 0.15);
  border-color: #0038A5;
}

.article-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.article-card-link:hover {
  text-decoration: none;
}

.article-image {
  height: 220px;
  overflow: hidden;
  background: #f5f5f5;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.author-article-card:hover .article-image img {
  transform: scale(1.08);
}

.article-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 0.85rem;
  color: #666;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}

.article-author {
  font-weight: 600;
  color: #0038A5;
}

.article-date,
.article-read-time {
  color: #999;
}

.article-date::before {
  content: '|';
  margin-right: 12px;
  color: #ddd;
}

.article-read-time::before {
  content: '|';
  margin-right: 12px;
  color: #ddd;
}

.article-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.author-article-card:hover .article-title {
  color: #0038A5;
}

.article-excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666;
  margin: 0;
  flex-grow: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .author-articles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .author-banner {
    padding: 40px 0 60px;
  }

  .author-profile-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .author-profile-image {
    margin-bottom: -60px;
  }

  .author-profile-image img {
    width: 150px;
    height: 150px;
  }

  .author-info {
    padding-bottom: 60px;
  }

  .author-name {
    font-size: 2rem;
  }

  .author-details {
    padding: 80px 0 30px;
  }

  .author-description-full {
    font-size: 0.95rem;
  }

  .author-articles {
    padding: 40px 0;
  }

  .author-articles-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .article-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .author-banner {
    padding: 30px 0 50px;
  }

  .author-profile-image {
    margin-bottom: -50px;
  }

  .author-profile-image img {
    width: 120px;
    height: 120px;
    border: 3px solid #0038A5;
  }

  .author-info {
    padding-bottom: 50px;
  }

  .author-name {
    font-size: 1.75rem;
  }

  .author-details {
    padding: 70px 0 25px;
  }

  .author-description-full {
    font-size: 0.9rem;
  }

  .author-linkedin-full {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .article-content {
    padding: 16px;
  }

  .article-title {
    font-size: 1.1rem;
  }

  .article-excerpt {
    font-size: 0.9rem;
  }

  .article-image {
    height: 180px;
  }
}


/* ========== TESTIMONIALS SLIDER (UNIQUE STYLES) ========== */
.testimonials-slider-container {
  position: relative;
  height: 80%;
}

.testimonials-reviews-slider {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  height: 100%;
}

.testimonials-reviews-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.testimonials-review-card {
  flex: 0 0 100%;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 35px 30px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonials-review-card.active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #d0d0d0;
}

.testimonials-review-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.testimonials-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.testimonials-slider-btn {
  background: linear-gradient(135deg, #0038A5 0%, #0056D2 100%);
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(2, 56, 165, 0.2);
  position: relative;
  z-index: 10;
}

.testimonials-slider-btn:hover {
  background: linear-gradient(135deg, #0056D2 0%, #0038A5 100%);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(2, 56, 165, 0.3);
}

.testimonials-slider-btn:active {
  transform: scale(0.95);
}

.testimonials-slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonials-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.testimonials-slider-dot:hover {
  background-color: #0038A5;
  transform: scale(1.2);
}

.testimonials-slider-dot.active {
  background-color: #0038A5;
  width: 32px;
  border-radius: 6px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials-slider-container {
    padding: 0;
  }

  .testimonials-review-card {
    padding: 25px 20px;
  }

  .testimonials-slider-btn {
    width: 40px;
    height: 40px;
  }

  .testimonials-slider-controls {
    gap: 15px;
    margin-top: 20px;
  }
}