/* ================================
   ROOT VARIABLES
================================ */
:root {
  --blue: #1b1b1b;
  --darkblue: #000;
  --orange: #ff7a00;
  --text: #333;
  --lightbg: #f7f7f7;
  --radius: 50px;
  --transition: 0.35s ease;
}

/* ================================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
}

a {
  text-decoration: none;
  color: #222222;
}

.bg_light_orange {
  background-color: #dbd7d7;
}

.bg_dark_grey {
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
}

.bg_light_grey {
  background-color: #dbd7d7;
}

.center {
  text-align: center;
}

section#hype-difference {
  background-color: #dbd7d7;
}

section#lineup {
  background-color: #dbd7d7;
}

/* .container {
  max-width: 1440px;
  margin: auto;
  padding: 0 15px;
  
} */
/* ================================
   GLOBAL SECTION PADDING
================================ */

/* .edma-card p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
} */
/* Offset for sticky header when jumping to anchors */
#contact,
#home,
#who-we-are,
#services,
#commodities,
#disposables {
  scroll-margin-top: 90px;
  /* apne header height ke hisaab se 100-140 */
}

html {
  scroll-behavior: smooth;
}

/* Tick icon */
.tick-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--blue);
  position: relative;
}

/* Tick mark */
.tick-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #ff7a00;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.text-orange {
  color: #ff7a00;
}

.btn-white {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue);
  /* blue text */
  border: 2px solid #fff;
  border-radius: var(--radius);
  background: #fff;
  /* white bg */
  text-decoration: none;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
  z-index: 1;
  height: 60px;
}

/* hover bg layer */
.btn-white::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  background: var(--orange);
  /* orange hover */
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  border-radius: var(--radius);
  z-index: -1;
}

/* keep text above */
.btn-white span,
.btn-white .btn-icon {
  position: relative;
  z-index: 2;
}

/* hover */
.btn-white:hover {
  color: #fff;
  border-color: var(--orange);
}

.btn-white:hover::before {
  width: 220%;
  height: 500%;
}

.btn-white:hover .btn-icon {
  transform: translateX(6px);
  transition: transform 0.3s ease;
}

.gloves-content .btn-orange:hover {
  border-color: #fff !important;
}

.btn-orange {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 2px solid #ff7a00;
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
  background: #ff7a00;
  text-align: center;
  z-index: 1;
  height: 60px;
  /* important */
}

/* Animated bg layer */
.btn-orange::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  background: #000000;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  border-radius: var(--radius);
  z-index: -1;
  /* 👈 send background BEHIND text */
}

/* Ensure text + icon always on top */
.btn-orange span,
.btn-orange .btn-icon {
  position: relative;
  z-index: 2;
}

/* Hover */
.btn-orange:hover {
  border-color: #fff !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 2px solid #000;
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
  background: #000;
  text-align: center;
  z-index: 1;
  height: 60px;
}

.btn-orange:hover::before {
  width: 220%;
  height: 500%;
}

.btn-orange:hover .btn-icon {
  transform: translateX(6px);
  transition: transform 0.3s ease;
}


.container.about-inner .btn-orange {
  margin-top: 10px;
}

.inner-hero-content .btn-orange:hover {
  color: #000;
  border-color: #fff;
  background-color: #fff !important;
}

.inner-hero-content .btn-orange::before {
  background-color: #fff !important;
}

.btn-blue {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 2px solid #000;
  /* blue border */
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
  background: #000;
  /* blue default */
  text-align: center;
  z-index: 1;
  height: 60px;
}

/* Animated bg layer (orange hover fill) */
.btn-blue::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  background: #ff7a00;
  /* orange */
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  border-radius: var(--radius);
  z-index: -1;
}

/* Keep content above */
.btn-blue span,
.btn-blue .btn-icon {
  position: relative;
  z-index: 2;
}

/* Hover */
.btn-blue:hover {
  color: #fff;
  border-color: #ff7a00;
  /* border becomes orange */
}

.btn-blue:hover::before {
  width: 220%;
  height: 500%;
}

.btn-blue:hover .btn-icon {
  transform: translateX(6px);
  transition: transform 0.3s ease;
}

section {
  padding: 100px 0;
}

@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
}

.section-tag {
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  color: #ff7a00;
  margin-bottom: 10px;
}

/* ================================
   GLOBAL CONTAINER
================================ */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 992px) {
  .container {
    max-width: 100%;
    padding: 0 16px;
  }
}

/* ================================
   GLOBAL HEADINGS
================================ */
/* Headings – Modern & Bold */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Jost', sans-serif;
  color: #222222;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

/* Desktop sizes */
h1 {
  font-size: 56px;
  line-height: 1.2;
}

h2 {
  font-size: 42px;
  line-height: 1.25;
}

h3 {
  font-size: 32px;
  line-height: 1.3;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

/* Responsive scaling */
@media (max-width: 992px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }
}

/* ================================
   GLOBAL PARAGRAPH
================================ */
/* Paragraph */
p {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

blockquote {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #fff;
  margin: 0;
}




/* ================================
   TOP BAR
================================ */
.topbar-left {
  display: flex;
  align-items: center;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  position: relative;
  padding-right: 36px;
}

.topbar-item:first-child {
  padding-left: 0;
}

/* 🔥 Vertical Divider */
.topbar-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.35);
  /* light line */
}

.icon {
  width: 18px;
  height: 18px;
  stroke: var(--orange);
  stroke-width: 1.6;
  fill: none !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}


.topbar-clean {
  font-size: 13px;
  color: #fff;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) 55%, #1b1b1b 55%, #1b1b1b 100%);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 15px;
}

.topbar-left {
  display: flex;
  gap: 24px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.topbar-item svg {
  width: 18px;
  height: 18px;
  fill: #ff7a00;
}

/* Social Icons */
.topbar-right {
  display: flex;
  gap: 14px;
}

.topbar-right a {
  width: 34px;
  height: 34px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.topbar-right svg {
  width: 26px;
  height: 26px;
  fill: var(--blue);
  transition: var(--transition);
}

.topbar-right a:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  background: var(--orange);
}

.topbar-right a:hover svg {
  fill: #fff;
}


/* ================================
   NAVBAR
================================ */
.menu-links a.active {
  color: var(--orange);
  position: relative;
}

.menu-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--orange);
}

.menu-links a::after {
  width: 0;
}

/* default */
.menu-links a.active::after {
  width: 100%;
}

/* only active */

.header_nav_wrapper {
  position: relative;
}

.navbar-ref {
  z-index: 999;
}

.header-wrapper {
  overflow: visible !important;
}

/* .navbar-ref {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
} */

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
}

.logo-link img {
  height: 65px;
  /* filter: brightness(0); */
}

/* ===== DESKTOP MENU ===== */
.menu-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.menu-links>a,
.nav-link {
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.menu-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: 0.3s;
}

.menu-links a:hover::after,
.menu-links a.active::after {
  width: 100%;
}

/* ===== DESKTOP DROPDOWN ===== */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 240px;
  background: #000;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 99;
}

.dropdown a {
  padding: 12px 18px;
  display: block;
  font-size: 14px;
}

.dropdown a:hover {
  background: #f7f7f7;
  color: var(--orange);
}

@media (min-width: 993px) {
  .has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================================
   HAMBURGER (Hidden on Desktop)
================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

/* .menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  transition: 0.3s;
} */

/* ================================
   MOBILE MENU SYSTEM
================================ */
.mobile-menu,
.menu-overlay {
  display: none;
}

/* ===== MOBILE ONLY ===== */
@media (max-width: 992px) {
 #advisory-board .advisor-hover p {
    font-size: 11px;
  }
  /* Hide desktop nav */
  .menu-links {
    display: none !important;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }

  /* Slide Menu Panel */
  .mobile-menu {
    display: flex;
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: #000;
    z-index: 9999;
    padding: 25px 20px;
    flex-direction: column;
    transition: 0.4s ease;
    overflow-y: auto;
  }

  .mobile-menu.active {
    left: 0;
  }

  button#closeMenu {
    position: absolute;
    right: 30px;
    top: 31px;
    font-size: 30px;
    background: none;
    color: #fff;
    border: none;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav .submenu-toggle {
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}
 
  /* Mobile Nav Links */
  .mobile-menu a {
    color: #fff;
    padding: 14px 0;
    display: block;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 15px;
  }

  /* Mobile Dropdown */
  .mobile-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    display: none;
    padding-left: 12px;
  }

  .mobile-menu .has-dropdown.active .dropdown {
    display: block;
  }
}

/* Prevent body scroll when menu open */
body.menu-open {
  overflow: hidden;
}

/* ===== NAVBAR ===== */
.navbar-ref {
  position: sticky;
  top: 0;
  background: #000000;
  z-index: 999;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* DESKTOP LINKS */
.menu-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu-links a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}

/* HAMBURGER HIDDEN ON DESKTOP */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
}



/* ===== DROPDOWN DESKTOP ===== */
/* .has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 10px 0;
  min-width: 220px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
} */

/* ===== MOBILE MENU BASE ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: #000;
  color: #fff;
  z-index: 1001;
  transition: left 0.4s ease;
  overflow-y: auto;
  padding: 20px;
}

.mobile-menu.active {
  left: 0;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 1000;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* MOBILE NAV LINKS */
.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav a,
.submenu-toggle {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}

/* SUBMENU */
.submenu {
  display: none;
  padding-left: 15px;
}

.has-submenu.open .submenu {
  display: block;
}

/* ===== RESPONSIVE RULES ===== */
@media (max-width: 992px) {
  a.cta-btn {
    display: none;
  }

  .menu-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-menu-header img {
    max-width: 159px;
  }
}

@media (min-width: 993px) {

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

/* ================================
   GLOBAL BUTTON SYSTEM
================================ */
.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  /* vertical center */
  justify-content: center;
  /* horizontal center */
  gap: 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  border: 2px solid #ff7a00;
  border-radius: var(--radius);
  text-decoration: none;
  overflow: hidden;
  transition: color var(--transition), border-color var(--transition);
  background: #ff7a00;
  text-align: center;
  height: 60px;
  /* extra safety */
}

/* Icon */
.cta-btn .btn-icon {
  display: flex;
  align-items: center;
}

/* Animated background layer */
.cta-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 0%;
  background: #000000;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  border-radius: var(--radius);
  z-index: 0;
}

/* Keep content above animation */
.cta-btn span {
  position: relative;
  z-index: 1;
}

/* Hover Effects */
.cta-btn:hover {
  color: #fff;
  border-color: #fff;
}

.cta-btn:hover::before {
  width: 220%;
  height: 500%;
}

.cta-btn:hover .btn-icon {
  transform: translateX(6px);
}


/* ================================
   HERO
================================ */
.hero {
  height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
}

.section-tag,
.hero-small {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.hero p {
  font-size: 18px;
  margin: 20px 0 30px;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ffffff00 0%, #0000001c 55%, #ffffff00 100%);
  z-index: 1;
}

.slide {
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.slide::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgb(0 0 0 / 59%), #0000008c 40%); */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  text-align: left;
  padding: 20px;
}

/* TYPOGRAPHY */
.hero-small {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 1s forwards;
}

.hero-content h1 {
  font-size: 52px;
  margin: 10px 0;
  opacity: 0;
  color: #fff;
  transform: translateY(-40px);
  animation: slideDown 1s forwards 0.3s;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-40px);
  animation: slideDown 1s forwards 0.6s;
}

/* BUTTON GROUP */
.btn-group {
  margin-top: 25px;
  opacity: 0;
  transform: translateY(60px);
  animation: slideUp 1s forwards 0.9s;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* .btn-orange, .btn-blue {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  margin-right: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-orange { background: #ff6a00; }
.btn-blue { background: #007bff; }

.btn-orange:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.btn-blue:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); } */

/* ARROWS */
.hero-content h1,
.hero-content p {
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  cursor: pointer;
  color: #fff;
  z-index: 3;
  backdrop-filter: blur(6px);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
}

.slide {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.video-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* ANIMATIONS */
@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* DEFAULT (Desktop) already side me hai */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* 📱 TABLET & MOBILE */
@media (max-width: 992px) {
  .slider-arrow {
    top: auto;
    bottom: 25px;
    transform: none;
  }

  .prev {
    left: 50%;
    transform: translateX(-60px);
    /* left arrow thoda left */
  }

  .next {
    right: 50%;
    transform: translateX(60px);
    /* right arrow thoda right */
  }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {

  .topbar-clean {
    display: none;
  }

  .menu-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 20px;
  }

  .menu-links.active {
    display: flex;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }
}


/* ===== HERO SLIDER ===== */
.hero {
  position: relative;
  height: 88vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  max-width: 850px;
}

.hero-small {
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 15px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.hero h1::before,
.hero h1::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 60px;
  background: var(--orange);
  top: 50%;
  transform: translateY(-50%);
}

.hero h1::before {
  left: -10px;
}

.hero h1::after {
  right: -10px;
}

.hero p {
  margin: 20px 0 30px;
  font-size: 18px;
  color: #fff;
}

/* .btn-group a {
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  margin: 0 8px;
  display: inline-block;
  transition: .3s;
}

.btn-orange {
  background: var(--orange);
  color: #fff;
}

.btn-orange:hover {
  background: #e56700
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: #08306b
} */

/* ===== RESPONSIVE ===== */

@media(max-width:1399px) {
  .topbar-clean {
    background: linear-gradient(to right, #1b1b1b 0%, #1b1b1b 65%, #1b1b1b 65%, #1b1b1b 100%);
  }
}

@media(max-width:1199px) {
  .topbar-clean {
    background: linear-gradient(to right, #1b1b1b 0%, #1b1b1b 79%, #1b1b1b 65%, #1b1b1b 100%);
  }
}

@media(max-width:768px) {
  .nav-menu {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }
}





/* about page css */

.about-section {
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
}

.about-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-section .btn-blue {
  margin-top: 20px;
}

.about-content h2 {
  margin-bottom: 22px;
  color: #fff;
}

.about-content p {
  margin-bottom: 20px;
  color: #e8e6e6;
  /* opacity: 50%; */
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-weight: 600;
  color: #1f3cff;
  text-decoration: none;
}

.about-btn .arrow {
  transition: transform 0.3s ease;
}

.about-btn:hover .arrow {
  transform: translateX(5px);
}

/* RIGHT IMAGES */
.about-media {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-img {
  overflow: hidden;
  border-radius: 15px;
}

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

.img-two {
  margin-top: 60px;
}

/* ICON */
.energy-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff7a00;
}

@media (max-width: 992px) {
  .about-section .btn-blue {
    margin-top: 10px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* .img-two {
    margin-top: 0;
  } */

  .energy-icon {
    display: none;
  }
}


/* ================================
   PARTNER SECTION
================================ */

.partner-section {
  padding: 0;
  /* section padding already global */
}

.partner-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

/* LEFT IMAGE */
.partner-image {
  position: relative;
  overflow: hidden;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.partner-content {
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.partner-content blockquote {
  color: #e8e6e6;
}

.partner-content .section-tag {
  color: var(--orange);
  margin-bottom: 14px;
}

.partner-content h2 {
  color: #fff;
  margin-bottom: 22px;
}

.partner-content p {
  color: #e8e6e6;
  margin-bottom: 16px;
  /* opacity: 50%; */
}

.partner-cta {
  margin-top: 30px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .partner-wrapper {
    grid-template-columns: 1fr;
  }

  .partner-content {
    padding: 60px 16px;
  }

  .partner-image {
    height: 320px;
  }
}





.case-studies-section {
  background: #1f1f1f;
  color: #fff;
}

/* rows */
.case-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* reverse layout */
.case-row.reverse {
  direction: rtl;
}

.case-row.reverse>* {
  direction: ltr;
}

/* left content */
.case-left h2 {
  color: #fff;
}

.case-left .section-tag {
  color: var(--orange);
  margin-bottom: 12px;
  display: inline-block;
}

/* right content */
.case-right p {
  color: #fff;
  max-width: 520px;
}

/* divider line */
.case-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 80px 0;
}

/* responsive */
@media (max-width: 992px) {
  .case-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .case-row.reverse {
    direction: ltr;
  }

  .case-divider {
    margin: 50px 0;
  }
}


.feature-list {
  list-style: none;
  margin-top: 28px;
  padding: 0;
  display: grid;
  gap: 18px;
}

.feature-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  transition: transform 0.35s ease;
}

/* .blueheading {
  color: #243c9b !important;
} */

/* ICON CONTAINER */
.icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* SVG */
.icon-wrap svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform 0.45s ease;
}

/* OIL THEME */
.feature-list.oil .icon-wrap {
  background: #ff7a00;
}

/* PRODUCE THEME */
.feature-list.produce .icon-wrap {
  background: #ff7a00;
}

/* SOFT RIPPLE ANIMATION */
.icon-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.45s ease;
}

/* HOVER EFFECT */
.feature-list li:hover {
  transform: translateX(6px);
}

.feature-list li:hover .icon-wrap::after {
  transform: scale(1.6);
}

.feature-list li:hover svg {
  transform: scale(1.15) rotate(5deg);
}


/* EDMA GRID */
.hug {
  background: #e9ebf4;
}

.edma h2 {
  margin-bottom: 22px;
}

.edma-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .edma-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .edma-grid {
    grid-template-columns: 1fr;
  }
}

.edma-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.edma-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.edma-card:hover::before {
  transform: scaleX(1);
}

.edma-card * {
  position: relative;
  z-index: 1;
}

.edma-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(135deg, #243c9b, #243c9b);
}

.edma-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.edma-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #ff7a00;
  stroke-width: 2;
  transition: stroke 0.4s ease, transform 0.4s ease;
}

.edma-card:hover svg {
  stroke: #fff;
  transform: scale(1.1);
}

.edma-card h3 {
  margin-bottom: 10px;
  color: #fff;
}

.edma-card:hover h3,
.edma-card:hover p {
  color: #fff;
}



.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .category-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  position: relative;
  background: #fff;
  border-radius: 15px;
  padding: 40px 30px;
  border: 1px solid #e5e8f0;
  overflow: hidden;
  transition: transform 0.4s ease;
  z-index: 1;
}

/* CENTER OUT BLUE EFFECT */
.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.5s ease;
  z-index: -1;
}

.category-card:hover::before {
  transform: scaleX(1);
}

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

/* ICON */
.category-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.category-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* TEXT COLOR CHANGE ON HOVER */
.category-card h3,
.category-card p {
  transition: color 0.3s ease;
}

.category-card:hover h3,
.category-card:hover p {
  color: #fff;
}

/* BUTTON */
.btn-outline {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #ff7a00;
  border-bottom: 1px solid #ff7a00;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.category-card:hover .btn-outline {
  color: #fff;
  border-color: #fff;
}

.edma .edma-icon,
.categories .category-icon {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.categories .section-header p {
  color: #e8e6e6;
}


/* ===== DISPOSABLE PRODUCTS SECTION ===== */

.disposable-products {}

.dp-header {
  margin-bottom: 50px;
}

.dp-tag {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #ff7a00;
}

.dp-header h2 {
  font-size: 40px;
  margin-top: 10px;
}

.dp-header h2 span {
  color: #ff7a00;
}

/* grid */

.dp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

/* cards */

.dp-card {
  position: relative;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 25px;
  background-size: cover;
  background-position: center;
  transition: all .35s ease;
}

/* dark overlay */

.dp-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000000bf 0%, #2e1a08c7 55%, #000000cc 100%);
}

/* content */

.dp-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.dp-content h3 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 8px;
  color: #fff;
}

.dp-content p {
  margin-bottom: 12px;
  color: #fff;
}

.dp-content a {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  color: #ff7a00;
  border-bottom: 1px solid #ff7a00;
  transition: color 0.3s ease, border-color 0.3s ease;
}

/* hover */

.dp-card:hover {
  transform: translateY(-6px);
}

.dp-card:hover::before {
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
}

/* better related images */

.dp-gloves {
  background-image: url("/images/dp-gloves.jpg");
}

.dp-facility {
  background-image: url("/images/FacilityCare.jpg");
}

.dp-paper {
  background-image: url("/images/PaperProducts.jpg");
}

.dp-safety {
  background-image: url("/images/SafetyEssentials.jpg");
}

/* responsive */


@media(max-width:1199px) {
  .dp-content h3 {
    font-size: 24px;
  }
}

@media(max-width:992px) {
  .dp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:600px) {
  .dp-grid {
    grid-template-columns: 1fr;
  }
}

.edma .icon-svg,
.categories .icon-svg {
  width: 56px;
  height: 56px;
  color: #ff7a00;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}

/* Hover effect – blue bg cards */
.edma-card:hover .icon-svg,
.category-card:hover .icon-svg {
  color: #fff;
  transform: scale(1.08);
}



.site-footer {
  background: #000;
  color: #fff;
  padding: 100px 0px 10px 0px;
  font-size: 15px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-col p {
  line-height: 1.7;
  max-width: 280px;
  color: #ffffff;
}

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

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

.footer-col ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #ff8a00;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  margin-right: 12px;
}

.footer {
  background: linear-gradient(180deg, #0b1224 0%, #070d1d 100%);
  color: #fff;
  padding-top: 70px;
}

/* main footer grid already ok */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0px 15px;
}

.mr20 {
  margin-right: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #fff;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f97316;
  /* brand orange */
}


.footer-links a {
  margin-left: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

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

.logo-linkfoot img {
  max-width: 150px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    padding: 60px 0px 10px 0px;
  }

}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links a {
    margin: 0 10px;
  }
}



/* CONTACT SECTION */

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 50px;
  margin-top: 50px;
  align-items: start;
}

.contact-form-wrap {
  background: #fff;
  border-radius: 15px;
  padding: 34px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.contact-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.form-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-field label span {
  color: #f57c00;
  /* orange accent */
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  font-size: 14px;
  background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(245, 124, 0, .75);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, .12);
}

.form-field.full {
  grid-column: 1 / -1;
}

.contact-submit {
  margin-top: 18px;
  padding: 14px 22px;
  border-radius: 15px;
  border: none;
  cursor: pointer;
}

/* RIGHT INFO CARD */
.contact-info-card {
  background: #000;
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
  position: sticky;
  top: 120px;
}

.info-title {
  margin: 0 0 35px;
  font-size: 20px;
  color: #fff;
}

.info-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.info-item:first-of-type {
  border-top: none;
  padding-top: 0;
}

.info-ic {
  width: 42px;
  height: 42px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .12);
  font-size: 18px;
}

.info-h {
  font-weight: 700;
  margin-bottom: 6px;
}

.info-txt a {
  color: #e8e6e6;
  text-decoration: none;
}

.info-txt a:hover {
  text-decoration: underline;
}

.info-p {
  color: #e8e6e6;
}

.info-actions {
  margin-top: 18px;
}

.mini-btn {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
}

.form-field input,
.form-field select {
  height: 44px;
}

.mt30 {
  margin-top: 30px;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 640px) {
  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 26px;
  }
}


/* ============================= */
/* GLOBAL OPERATIONS MAP SECTION */
/* ============================= */

.map-wrapper {
  position: relative;
  /* max-width: 980px; */
  margin: 40px auto 0;
}

.world-map {
  width: 100%;
  /* max-width: 860px; */
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.5;
}

/* Stronger dots so they don't disappear */
.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  z-index: 3;

  /* ring + glow */
  box-shadow:
    0 0 0 6px rgba(255, 119, 0, 0.18),
    0 10px 25px rgba(0, 0, 0, 0.12);

  animation: pulse 2s infinite;
}

/* Better placements for THIS map image */
.map-dot.usa {
  top: 49%;
  left: 31%;
}

.map-dot.europe {
  top: 41%;
  left: 52%;
}

.map-dot.asia {
  top: 47%;
  left: 71%;
}

.map-dot.south-america {
  top: 62%;
  left: 40%;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 119, 0, .35);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(255, 119, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 119, 0, 0);
  }
}

@media (max-width:768px) {
  .map-dot {
    width: 20px;
    height: 20px;
  }
}


.map-dot {
  position: absolute;
  cursor: pointer;
}

/* Tooltip */
.map-dot::after {
  content: attr(data-label);
  position: absolute;
  bottom: 150%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #0f1f2e;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}


.map-dot::before {
  content: "";
  position: absolute;
  bottom: 140%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #0f1f2e transparent transparent transparent;
  opacity: 0;
  transition: 0.25s ease;
}


.map-dot:hover::after,
.map-dot:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}





/* ----- Commodities page start  ----- */
/* ===== Farm slider in commodities overflow section ===== */
.farm-slider {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.farm-slides {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px;
}

.farm-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.farm-slide.active {
  opacity: 1;
  z-index: 2;
}

.farm-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.farm-nav:hover {
  background: rgba(255, 122, 0, 0.85);
}

.farm-prev {
  left: 18px;
}

.farm-next {
  right: 18px;
}

@media (max-width: 992px) {
  .farm-slides {
    min-height: 320px;
  }

  .farm-nav {
    width: 36px;
    height: 36px;
    font-size: 24px;
  }
}

.category-card:hover {
  transform: translateY(-4px);
}

.category-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.icon-svg {
  width: 40px;
  height: 40px;
}


.service-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: #f4f6fb;
  border: 1px solid #e8ecf5;
  border-radius: 10px;
  padding: 18px;
  margin-bottom: 18px;
}

.sidebar-title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #eef1f6;
  margin-bottom: 10px;
  color: #111;
  font-weight: 600;
  transition: var(--transition);
}

.sidebar-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, .35);
}

.sidebar-link.active {
  border-color: rgba(255, 122, 0, .6);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.service-hero-img img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* .content-block{
  padding-top:24px;
  margin-top:24px;
  border-top:1px solid #eef1f6;
} */

.w-100 {
  width: 100%;
  display: inline-flex;
  justify-content: center;
}

@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}




.service-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 110px;
}

.sidebar-card {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  border-radius: 15px;
  padding: 18px;
  margin-bottom: 18px;
}

.sidebar-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eef1f6;
  margin-bottom: 10px;
  color: #111;
  font-weight: 650;
  transition: var(--transition);
}

.sidebar-link:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, .35);
}

.sidebar-link.active {
  border-color: rgba(255, 122, 0, .65);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
}

.sidebar-arrow {
  color: var(--blue);
  font-weight: 600;
}

/* Downloads */
.download-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #eef1f6;
  color: #111;
  font-weight: 600;
  margin-bottom: 10px;
  transition: var(--transition);
}

.download-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 65, 255, .25);
}

.dl-ico {
  font-size: 18px;
}





/* Right content */
.service-hero-img img {
  width: 100%;
  display: block;
  border-radius: 15px;
}

.content-block {
  padding-top: 28px;
  margin-top: 50px;
  border-top: 1px solid #cfcdcd;
}

.service-content .content-block:first-of-type {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

.service-kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}

.service-title {
  margin: 0 0 12px;
}

.block-title {
  margin: 18px 0 14px;
  font-size: 22px;
}

/* Cards with icons (screenshot style) */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 18px;
}

.info-card {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 15px;
  padding: 22px;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.info-ico {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  margin-bottom: 14px;
}

.info-ico svg {
  width: 44px;
  height: 44px;
}

.info-card h4 {
  margin: 0 0 8px;
  font-size: 22px;
}

.info-card p {}

/* Responsive */
@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }
}

@media (max-width: 576px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== INNER HERO (Brand-consistent) ===== */
.inner-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  overflow: hidden;
}

.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 15% 30%, rgba(255, 122, 0, .18), transparent 60%),
    radial-gradient(700px 400px at 85% 40%, rgba(255, 255, 255, .10), transparent 60%);
  z-index: 0;
}

.inner-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}


.hero-kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 99px;
}

.hero-title {
  margin: 14px 0 10px;
  font-size: clamp(34px, 3vw, 52px);
  line-height: 1.08;
  font-weight: 600;
}

.hero-highlight {
  color: var(--orange);
}

.hero-subtext {
  max-width: 62ch;
  margin: 20px 0 30px;
  font-size: 18px;
  color: #fff;
}


.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 40px;
}


.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  font-weight: 700;
  transition: 0.25s ease;
  background: rgba(255, 255, 255, .10);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, .6);
  background: rgba(255, 122, 0, .12);
}


.hero-stats {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.stat {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
  padding: 12px 14px;
  min-width: 150px;
}

.stat-num {
  display: block;
  font-weight: 900;
  font-size: 18px;
}

.stat-label {
  display: block;
  font-size: 12px;
  opacity: .85;
  margin-top: 2px;
}

/* ===== Inner Hero Panel Upgrade ===== */
.panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(255, 122, 0, .14);
  border: 1px solid rgba(255, 122, 0, .35);
  color: rgba(255, 255, 255, .92);
}

.panel-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, .14);
}

.panel-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, #ff7a00, rgb(247 202 163 / 0%));
}

.panel-title {
  margin: 20px 0px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
}

.panel-text {
  margin: 20px 0px;
  color: rgba(255, 255, 255, .86);
  line-height: 1.6;
}

/* feature chips */
.panel-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pf {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  transition: 0.25s ease;
}

.pf:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, .35);
  background: rgba(255, 122, 0, .10);
}

.pf-ico {
  width: 34px;
  height: 34px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--orange);
  flex: 0 0 auto;
}

.pf-ico svg {
  width: 18px;
  height: 18px;
}

.pf-txt {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}

.inner-hero-content h1 {
  color: #fff;
  margin-top: 10px;
}

.section#sourcing-hubs h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.service-page h2 {
  margin-bottom: 22px !important;
}

section#sourcing-hubs h2 {
  margin-bottom: 22px;
  color: #fff;
}

#overflow .btn-orange:hover {
  color: #fff;
  border-color: #ffffff;
}

#overflow .partner-cta {
  margin-top: 30px;
  gap: 20px;
  display: flex;
  padding: 0px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  /* .inner-hero {
    padding: 54px 0 44px;
  } */

  .inner-hero-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Sidebar Promo Upgrade ===== */

.sidebar-promo {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #1a2744 0%, #233a73 55%, #2b4aa3 100%);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .12);
}

.sidebar-promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(260px 180px at 20% 20%, rgba(255, 122, 0, .22), transparent 60%),
    radial-gradient(260px 180px at 80% 35%, rgba(255, 255, 255, .10), transparent 60%);
  z-index: 0;
}

.sidebar-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: .10;
  z-index: 0;
}

.promo-overlay {
  position: relative;
  z-index: 2;
  padding: 30px;
  color: #fff;
  background: #1b1b1b;
  color: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
}

.promo-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: rgba(255, 122, 0, .14);
  border: 1px solid rgba(255, 122, 0, .32);
  color: rgba(255, 255, 255, .92);
}

.promo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 0, .14);
}

.promo-title {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 600;
  color: #fff;
}

.promo-text {
  font-size: 13px;
  color: #fff;
  margin-bottom: 20px;
}

#sourcing-hubs h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.promo-points {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.pp {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.pp-ico {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  color: var(--orange);
  font-weight: 900;
}

.pp span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, .92);
}

.promo-btn {
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  margin-top: 20px;
}



/* DISPOSABLES DIVISION page */
#hype-difference h2 {
  margin-bottom: 22px;

}

#hype-difference .cards-grid {
  margin-top: 50px;
}


/* ===== Pricing Section (Different Style) ===== */

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

.pricing-header h2 {
  color: #fff;
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: center;
}

.pricing-content p {
  margin-bottom: 30px;
  color: #e8e6e6;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 600;
  color: #e8e6e6;
}

.pricing-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 600;
}


.highlight-box {
  background: #000;
  color: #fff;
  padding: 40px 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* .highlight-box::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at top right, rgba(255,122,0,.25), transparent 60%);
} */

.highlight-number {
  font-size: 52px;
  font-weight: 900;
  margin-bottom: 10px;
}

.highlight-text {
  margin-bottom: 30px;
  color: #e8e6e6;
}

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

@media(max-width: 992px) {
  .highlight-box {
    padding: 20px 20px;
  }

  .pricing-layout {
    gap: 50px;

  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }
}




.gloves-showcase {
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
}

.gloves-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.gloves-images {
  display: grid;
  gap: 20px;
}

.gloves-images img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.gloves-content p {
  margin-bottom: 30px;
  color: #e8e6e6;
}

.gloves-points {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.gloves-points li {
  margin-bottom: 10px;
  font-weight: 600;
  padding-left: 20px;
  position: relative;
  color: #e8e6e6;
}

.gloves-points li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.gloves-content h2 {
  margin-bottom: 22px;
  color: #fff;
}

.gloves-content .btn-orange {
  margin-top: 20px;
}

.duo-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.duo-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .10);
}

.duo-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}


.duo-img.left {
  transform: translateY(-8px);
}

.duo-img.right {
  transform: translateY(8px);
}


.duo-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.duo-badge svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

section#lineup h2 {
  margin-bottom: 22px;
}



@media (max-width: 1199px) {
  .gloves-grid {
    gap: 50px;
  }

  .pricing-layout {
    gap: 50px;
  }
}

@media(max-width: 992px) {
  .gloves-grid {

    gap: 50px;

  }

  .gloves-grid {
    grid-template-columns: 1fr;
  }

  .duo-images {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .duo-img.left,
  .duo-img.right {
    transform: none;
  }

  .duo-badge {
    top: 52%;
  }

  .duo-img img {
    height: 320px;
  }
}


/* ===== Compliance Section ===== */
.compliance-section {
  background: #dbd7d7;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.compliance-badge {
  display: flex;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 15px;
  border: 1px solid #fde8d4;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.compliance-badge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--orange);
  opacity: .9;
}

.cb-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 122, 0, .10);
  border: 1px solid rgba(255, 122, 0, .20);
  color: var(--orange);
  flex: 0 0 48px;
}

.cb-icon svg {
  width: 22px;
  height: 22px;
}

.cb-text h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 700;
}

.cb-text p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5b5b5b;
}

.compliance-badge.wide {
  grid-column: span 2;
}

.compliance-badge:hover {
  border-color: rgba(255, 122, 0, .35);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .06);
  transform: translateY(-2px);
  transition: .25s ease;
}

#compliance h2 {
  margin-bottom: 22px;
}


/* Responsive */
@media (max-width: 900px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }

  .compliance-badge.wide {
    grid-column: auto;
  }
}


/* ===== Final CTA ===== */
.cta-final {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 25%, rgba(255, 122, 0, .20), transparent 55%),
    radial-gradient(circle at 85% 65%, rgba(255, 255, 255, .08), transparent 60%);
}

.cta-final-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}

.cta-final-content h2 {
  color: #fff;
  margin-bottom: 22px;
}

.cta-final-content p {
  color: rgba(255, 255, 255, .80);
  margin-bottom: 22px;
  max-width: 560px;
}

.cta-final-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 70px;
}

.cta-final-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
  max-width: 560px;
}

.metric {
  padding: 14px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
}

.metric-num {
  display: block;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 4px;
}

.metric-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, .70);
}

/* Right panel */
.cta-panel-card {
  border-radius: 15px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .07);
  box-shadow: 0 18px 55px rgba(0, 0, 0, .25);
}

.cta-panel-card h3 {
  color: #fff;
  margin: 20px 0px;
}

.cta-panel-card p {
  color: #e8e6e6;
  margin: 0 0 20px;
}

.cta-panel-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 16px;
}

.cpl {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .10);
  color: rgba(255, 255, 255, .82);
  font-weight: 600;
  font-size: 13px;
}

.cpl-ico {
  color: var(--orange);
  font-weight: 900;
  line-height: 1;
  margin-top: 1px;
}

.cta-final-panel .btn-white {
  margin-top: 20px;
}

/* Responsive */
@media(max-width: 992px) {
  .cta-final-actions {
    margin-bottom: 50px;
  }

  .cta-final-grid {
    grid-template-columns: 1fr;
  }

  .cta-final-metrics {
    grid-template-columns: 1fr;
  }
}


/* ===== Consultancy: Strategic Edge (Light Table) ===== */
.consultancy-edge h2 {
  margin-bottom: 22px;
}

.consultancy-edge .edge-table {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.consultancy-edge .edge-row {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: 18px;
  padding: 20px 22px;
  color: rgba(0, 0, 0, 0.78);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
}

.consultancy-edge .edge-row:first-child {
  border-top: none;
}

.consultancy-edge .edge-head {
  background: var(--lightbg);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.55);
}

.consultancy-edge .edge-phase {
  font-weight: 600;
  color: var(--blue);
}

.consultancy-edge .edge-cell {
  line-height: 1.55;
}

.consultancy-why .info-card h4 {
  margin-bottom: 10px;
}

#why-partner h2 {
  margin-bottom: 50px;
}

#why-partner {
  background: #f7f7f7;
}

.consultancy-video-hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 38%);
  z-index: 1;
}

.consultancy-video-hero .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .consultancy-edge .edge-row {
    grid-template-columns: 1fr;
  }

  .consultancy-edge .edge-head {
    display: none;
  }

  .consultancy-edge .edge-phase {
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 6px;
  }
}


/* ===== Consultancy Quote Section (Improved) ===== */
.consultancy-quote {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  color: #fff;
  text-align: center;
}

.consultancy-quote .quote-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.consultancy-quote .quote-line-top {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto 30px;
  border-radius: 50px;
}

.consultancy-quote .quote-main {
  margin: 0 0 10px;
  font-weight: 700;
}

.consultancy-quote .quote-sub {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  opacity: 0.9;
}

.consultancy-quote h2 {
  color: #fff;
}



/* ===== Logistics Theaters Section ===== */
section#differentiators {
  background: #fff;
}

.logistics-capabilities h2 {
  color: #fff;
}

.logistics-capabilities .capability-intro p {
  color: #e8e6e6;
}

.logistics-theaters .theater-list {
  margin-top: 50px;
}

.logistics-theaters .theater-item {
  display: flex;
  gap: 28px;
  padding: 45px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.logistics-theaters .theater-item:last-child {
  border-bottom: none;
}

.logistics-theaters .theater-icon {
  width: 56px;
  height: 56px;
  color: var(--orange);
  flex-shrink: 0;
}

.logistics-theaters .theater-icon svg {
  width: 100%;
  height: 100%;
}

.logistics-theaters .theater-content h3 {
  margin-bottom: 12px;
  font-weight: 700;
}

.logistics-theaters .theater-content p {
  line-height: 1.65;
  font-size: 18px;
}


@media (max-width: 992px) {
  .logistics-theaters .theater-item {
    flex-direction: column;
  }

  .logistics-theaters .theater-icon {
    width: 48px;
    height: 48px;
  }
}

/* ===== Logistics Theaters – Image Layout ===== */

.logistics-theaters .theater-list {
  margin-top: 60px;
}

.logistics-theaters .theater-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.logistics-theaters .theater-row:last-child {
  margin-bottom: 0;
}

.logistics-theaters .theater-row.reverse {
  direction: rtl;
}

.logistics-theaters .theater-row.reverse .theater-content {
  direction: ltr;
}

.logistics-theaters .theater-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.logistics-theaters .theater-content h3 {
  margin-bottom: 15px;
  font-weight: 700;
}

.logistics-theaters .theater-content p {
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.75);
}

.logistics-theaters .theater-image {
  height: 420px;
  overflow: hidden;
  border-radius: 15px;
}

.logistics-theaters .theater-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.logistics-theaters .theater-image img {
  transition: transform 0.4s ease;
}

.logistics-theaters .theater-row:hover img {
  transform: scale(1.05);
}

.theater-list h2 {
  margin-bottom: 10px;
}


@media (max-width: 992px) {
  .logistics-theaters .theater-row {
    gap: 30px;
  }

  .logistics-theaters .theater-row {
    grid-template-columns: 1fr;
  }

  .logistics-theaters .theater-row.reverse {
    direction: ltr;
  }
}

@media (max-width: 767px) {
  .logistics-diff .about-img {
    height: 220px !important;
  }
}

/* ===== Logistics Capabilities ===== */



.logistics-capabilities .capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.logistics-capabilities .capability-item {
  display: flex;
  gap: 16px;
  padding: 26px;
  border-radius: 15px;
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
}

.logistics-capabilities .cap-ico {
  width: 52px;
  height: 52px;
  color: var(--orange);
  flex-shrink: 0;
}

.logistics-capabilities .cap-ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  /* match home thin stroke */
  stroke-linecap: round;
  stroke-linejoin: round;
}

.logistics-capabilities .cap-txt h4 {
  margin-bottom: 8px;
  font-weight: 600;
  color: #fff;
}

.logistics-capabilities .cap-txt p {
  margin: 0;
  line-height: 1.6;
  color: #e8e6e6;
}

section#capabilities h2 {
  margin-bottom: 22px;
}

@media (max-width: 992px) {
  .logistics-capabilities .capability-grid {
    grid-template-columns: 1fr;
  }

  br {
    display: none;
  }
}



/* ===== Logistics Differentiators (About-style image control) ===== */
.logistics-diff .about-img {
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
}

.logistics-diff .about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Logistics Quote ===== */
.logistics-quote {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  color: #fff;
  text-align: center;
}

.logistics-quote .quote-block {
  max-width: 950px;
  margin: 0 auto;
}

.logistics-quote .quote-mark {
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: -26px;
  opacity: 0.95;
}

.logistics-diff p {
  margin-bottom: 20px;
  color: #555;
}

.logistics-diff h2 {
  margin-bottom: 20px;
  color: #222222;
}

.logistics-quote .quote-text {
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
  .logistics-quote .quote-mark {
    font-size: 80px;
    margin-bottom: -18px;
  }
}


/* ===== Leadership Hero Image ===== */
.video-bg-hero {
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0 0 0 / 52%), rgb(0 0 0 / 36%), rgb(0 0 0 / 0%));
  z-index: 1;
}

.video-bg-hero .container {
  position: relative;
  z-index: 2;
}

.leadership-hero .inner-hero-grid {
  align-items: center;
}

.leadership-media {
  display: flex;
  justify-content: center;
}

.leadership-img {
  width: 100%;
  max-width: 600px;
  height: 520px;
  border-radius: 15px;
  overflow: hidden;
}

.leadership-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Leadership Cards ===== */

.leader-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.leader-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-img {
  /* width: 130px;
  height: 130px; */
  margin: 0 auto 18px;
  /* border-radius: 50%; */
  overflow: hidden;
}

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

.leader-card h4 {
  margin: 0;
  font-weight: 500;
  color: #000;
  font-size: 22px;
}

.leader-role {
  display: block;
  margin-top: 6px;
  color: #555;
  font-weight: 600;
}

@media (max-width: 768px) {
  .leader-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .leader-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Executive Leadership Slider ===== */
.exec-slider {
  position: relative;
  margin-top: 55px;
}

.exec-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

.exec-slide {
  min-width: 100%;
  padding: 0 8px;
  /* small gutter */
  box-sizing: border-box;
}

.exec-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--lightbg);
  border-radius: 30px;
  padding: 46px 34px;
  text-align: center;
}

.exec-img {
  width: 150px;
  height: 150px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
}

.exec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.exec-card h4 {
  margin: 0;
  font-weight: 700;
}

.exec-role {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-weight: 600;
}

/* arrows */
.exec-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  transition: var(--transition);
}

.exec-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

.exec-prev {
  left: 0;
}

.exec-next {
  right: 0;
}

/* dots */
.exec-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.exec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.exec-dot.is-active {
  width: 28px;
  background: var(--orange);
  border-color: var(--orange);
}

/* mobile arrow spacing */
@media (max-width: 992px) {
  .exec-prev {
    left: -6px;
  }

  .exec-next {
    right: -6px;
  }
}


/* ===== Leadership Closing Section ===== */

.leadership-closing {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  color: #fff;
  text-align: center;
}

.leadership-closing .closing-block {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.leadership-closing .quote-mark {
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
  display: block;
  margin-bottom: -25px;
}

.leadership-closing .closing-text {
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 992px) {
  .leadership-closing .quote-mark {
    font-size: 80px;
    margin-bottom: -18px;
  }
}


/* ===== Company History Image Block ===== */
#history-hero {
  position: relative;
  overflow: hidden;
}

.history-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.history-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgb(0 0 0 / 48%), rgb(0 0 0 / 21%), rgb(0 0 0 / 48%));
  z-index: 1;
}

#history-hero .container {
  position: relative;
  z-index: 2;
}

.history-media {
  display: flex;
  align-items: center;
}

.history-img {
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 15px;
}

.history-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.history-quote {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  text-align: center;
}

.history-quote .quote-box {
  max-width: 900px;
  margin: 0 auto;
  color: #fff;
}

.history-quote .quote-icon {
  display: block;
  color: var(--orange);
  font-size: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.history-quote h2 {
  color: #fff;
}



/* ===== Divisions  ===== */
.edma-grid--divisions .division-card {
  background: #fff6ee;
  /* same dark vibe */
  color: #fff;
  border-radius: 18px;
  /* keep similar rounding */
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 26px 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
  transition: transform .35s ease, box-shadow .35s ease;
}

/* make icon + title on top of overlays */
.edma-grid--divisions .division-card h3,
.edma-grid--divisions .division-card .edma-icon {
  position: relative;
  z-index: 3;
  text-align: center;
}

/* title */
.edma-grid--divisions .division-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .2px;
  color: #fff;
}

/* icon look */
.edma-grid--divisions .division-card .edma-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  color: var(--orange);
}

.edma-grid--divisions .division-card .edma-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  /* thinner */
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* background image layer */
.edma-grid--divisions .division-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
  /* more visible */
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
  z-index: 0;
  animation: divisionBgMove 10s ease-in-out infinite alternate;
}

/* dark overlay (so text stays readable, but not grey-dull) */
.edma-grid--divisions .division-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(0 0 0 / 92%), rgb(7 7 7 / 65%));
  z-index: 1;
}

/* hover */
.edma-grid--divisions .division-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, .28);
}

.edma-grid--divisions .division-card:hover::before {
  opacity: .62;
}

/* subtle highlight ring on hover */
.edma-grid--divisions .division-card:hover::after {
  background: linear-gradient(135deg,
      rgba(15, 26, 46, .85),
      rgba(15, 26, 46, .55));
}

/* motion */
@keyframes divisionBgMove {
  from {
    background-position: 42% 50%;
    transform: scale(1.08);
  }

  to {
    background-position: 58% 50%;
    transform: scale(1.14);
  }
}

/* Replace these image paths with your real assets */
.division--disposables::before {
  background-image: url("/images/bg-disposables-gloves.jpg");
}

.division--commodities::before {
  background-image: url("/images/bg-commodities.jpg");
}

.division--consultancy::before {
  background-image: url("/images/bg-consultancy.jpg");
}

.division--logistics::before {
  background-image: url("/images/bg-logistics.jpg");
}


/* .division--commodities::before{ background-image: url("images/bg-commodities.jpg"); }
.division--consultancy::before{ background-image: url("images/bg-consultancy.jpg"); }
.division--logistics::before{ background-image: url("images/bg-logistics.jpg"); } */



section#global-operations {
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
}

section#global-operations p {
  color: #e8e6e6;
}

.txt-white {
  color: #fff !important;
  margin-bottom: 20px;
}



/* ===== Divisions Panels (Savvy-style) ===== */
.divisions-panels {
  background: #dbd7d7;
  padding: 90px 0 0;
}

.divisions-head {
  max-width: 900px;
  margin-bottom: 50px;
}

.divisions-head p {
  margin-top: 10px;
  max-width: 640px;
}

/* Full-bleed row */
.panel-row {
  display: flex;
  gap: 0;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

/* Card */
.panel-card {
  position: relative;
  flex: 1;
  min-width: 0;
  /* display:flex;
  align-items:flex-end; */
  padding: 26px;
  text-decoration: none;
  color: #fff;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: flex 0.55s ease, filter 0.55s ease, transform 0.55s ease;
  isolation: isolate;
}

/* overlay like reference */
.panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .72), rgba(0, 0, 0, .25) 55%, rgba(0, 0, 0, .60));
  z-index: 0;
}

/* mini state (always visible) */
.panel-mini {
  position: relative;
  z-index: 2;
  width: 100%;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}

.panel-kicker {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.panel-title {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 22px;
}

/* detail state (revealed on hover/active) */
.panel-detail {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .35s ease, transform .35s ease;
  max-width: 460px;
}

.panel-title-lg {
  font-family: 'Jost', sans-serif;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 10px;
}

.panel-detail p {
  color: rgba(255, 255, 255, .88);
  font-size: 14.5px;
  line-height: 1.55;
}

.panel-link {
  margin-top: 14px;
  font-weight: 700;
  letter-spacing: .02em;
}

/* hover expand effect */
.panel-row:hover .panel-card {
  flex: .9;
  filter: saturate(.92) contrast(.98);
}

.panel-row:hover .panel-card:hover {
  flex: 2.2;
  filter: saturate(1.05) contrast(1.02);
}

/* reveal content on hover (or .is-active for touch) */
.panel-card:hover .panel-mini,
.panel-card.is-active .panel-mini {
  opacity: 0;
  transform: translateY(10px);
}

.panel-card:hover .panel-detail,
.panel-card.is-active .panel-detail {
  opacity: 1;
  transform: translateY(0);
}

/* subtle divider like reference */
.panel-card:not(:last-child) {
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, .08);
}

/* responsive */
@media (max-width: 992px) {
  .panel-row {
    height: auto;
    flex-direction: column;
  }

  .panel-card {
    height: 320px;
  }

  .panel-row:hover .panel-card {
    flex: 1;
  }

  /* no shrink on touch */
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {

  .panel-card,
  .panel-mini,
  .panel-detail {
    transition: none;
  }
}

/* ===== Divisions Panels – Responsive Fix ===== */

@media (max-width: 992px) {
  .divisions-panels {
    padding: 70px 0 0;
  }

  .panel-row {
    height: auto !important;
    flex-direction: column !important;
  }

  .panel-card {
    flex: unset !important;
    height: 240px !important;
    padding: 18px !important;
    background-position: center;
  }

  /* no hover shrink/expand on touch */
  .panel-row:hover .panel-card {
    flex: unset !important;
  }

  /* keep mini title visible */
  .panel-mini {
    opacity: 1 !important;
    transform: none !important;
  }

  /* hide detail by default */
  .panel-detail {
    opacity: 0 !important;
    transform: translateY(10px) !important;
  }

  /* tap/click expands content */
  .panel-card.is-active .panel-mini {
    opacity: 0 !important;
    transform: translateY(10px) !important;
  }

  .panel-card.is-active .panel-detail {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

@media (max-width: 576px) {
  .panel-card {
    height: 220px !important;
  }

  .panel-title {
    font-size: 20px !important;
  }

  .panel-title-lg {
    font-size: 24px !important;
  }
}



/*--------------video css ----------------------*/

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}




.commodities_sec .partner-content {
  background: #fff;
  /* padding: 80px 70px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.commodities_sec .partner-content h2 {
  color: #222222;
  margin-bottom: 22px;
}

.commodities_sec .partner-content p {
  color: #555;
  margin-bottom: 16px;
  /* opacity: 50%; */
}


/* ===== TRUST / CONVERSION SECTION ===== */
.trust-section {
  padding: 100px 0;
  background: #f7f7f7;
  overflow: hidden;
}

.trust-section .section-header {
  margin-bottom: 50px;
}

.trust-block {
  margin-bottom: 34px;
}

.trust-label {
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-bottom: 18px;
}

/* LOGOS */
.logo-marquee,
.cert-marquee {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.logo-track,
.cert-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.logo-track {
  animation-name: logoScroll;
  animation-duration: 28s;
}

.cert-track {
  animation-name: certScroll;
  animation-duration: 24s;
}

.logo-item,
.cert-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-width: 190px;
  height: 88px; */
  padding: 40px 26px;
  font-weight: 600;
  color: #222;
  /* border-right: 1px solid rgba(0, 0, 0, 0.06); */
  white-space: nowrap;
}

.logo-item {
  font-family: 'Jost', sans-serif;
  font-size: 22px;
  color: #1b1b1b;
}

.cert-item {
  font-size: 15px;
  color: #444;
}

/* TESTIMONIALS */
.trust-testimonials {
  margin-bottom: 0;
}

.testimonial-viewport {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: testimonialScroll 22s linear infinite;
}

.testimonial-card {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  color: #fff;
  border-radius: 18px;
  padding: 24px 26px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.testimonial-card p {
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.testimonial-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.testimonial-card span {
  color: #ff7a00;
  font-size: 14px;
  font-weight: 500;
}

/* ANIMATIONS */
@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

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

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

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

@keyframes testimonialScroll {
  0% {
    transform: translateY(0);
  }

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

/* HOVER PAUSE */
.logo-marquee:hover .logo-track,
.cert-marquee:hover .cert-track,
.testimonial-viewport:hover .testimonial-track {
  animation-play-state: paused;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .trust-section {
    padding: 70px 0;
  }

  .logo-item,
  .cert-item {
    min-width: 160px;
  }

  .testimonial-viewport {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .logo-item {
    font-size: 18px;
    min-width: 140px;
  }

  .cert-item {
    min-width: 140px;
    font-size: 14px;
  }

  .testimonial-card {
    padding: 20px;
  }
}



.commodity-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.commodity-item {
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 81%) 55%, #000000 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.commodity-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.28);
}

.commodity-toggle {
  width: 100%;
  border: none;
  background: transparent;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  cursor: pointer;
  text-align: left;

  font-family: 'Jost', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
}

.commodity-toggle span:first-child {
  flex: 1;
}

.commodity-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  border: 1px solid #ff7a00;
  color: #ff7a00;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  line-height: 1;
  transition: all 0.35s ease;
}

/* OPEN STATE */
.commodity-item.active {
  background:
    radial-gradient(circle at top right, rgba(255, 122, 0, 0.16), transparent 35%),
    linear-gradient(90deg, #000000 0%, rgb(29 27 25 / 88%) 55%, #000000 100%);
  border-color: rgba(255, 122, 0, 0.42);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16);
}

.commodity-item.active .commodity-icon {
  background: #ff7a00;
  color: #ffffff;
  transform: rotate(45deg);
}

/* SMOOTH CONTENT OPEN */
.commodity-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 26px;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 0.55s ease,
    padding 0.35s ease,
    opacity 0.35s ease,
    transform 0.35s ease;
}

.commodity-item.active .commodity-content {
  max-height: 420px;
  padding: 0 26px 24px;
  opacity: 1;
  transform: translateY(0);
}

.commodity-content ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}

.commodity-content ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;

  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #e8e6e6;
}

.commodity-content ul li::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #ff7a00;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
}

/* section heading if used above accordion */
.service-content .content-block .section-tag {
  margin-bottom: 10px;
}

.service-content .content-block h2 {
  margin-bottom: 28px !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .commodity-toggle {
    padding: 20px 22px;
    font-size: 21px;
  }

  .commodity-content {
    padding: 0 22px;
  }

  .commodity-item.active .commodity-content {
    padding: 0 22px 20px;
  }
}

@media (max-width: 576px) {
  .commodity-item {
    border-radius: 14px;
  }

  .commodity-toggle {
    padding: 18px 16px;
    font-size: 18px;
    line-height: 1.3;
  }

  .commodity-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 18px;
  }

  .commodity-content {
    padding: 0 16px;
  }

  .commodity-item.active .commodity-content {
    padding: 0 16px 18px;
  }

  .commodity-content ul li {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 10px;
  }
}

#overflow .partner-content blockquote {
  color: #555;
}


#disposables-hero .inner-hero-panel {
  order: 2;
  width: 100%;
  margin-bottom: 175px;
}


/* ===== HOME SERVICES GRID ===== */
.services-grid {
  padding: 100px 0;
  /* background: #f5f5f5; */
}

.services-grid-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: block;
  height: 340px;
  border-radius: 8px;
  min-width: 0;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12));
  z-index: 1;
}

.service-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
}

.service-overlay h3 {
  color: #fff;
  font-size: 32px;
  line-height: 1.15;
  margin: 0;
}

.service-card:hover img {
  transform: scale(1.08);
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .services-grid {
    padding: 70px 0;
  }

  .services-grid-wrap {
    gap: 18px;
    margin-top: 35px;
  }

  .service-card {
    height: 280px;
  }

  .service-overlay {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .service-overlay h3 {
    font-size: 26px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .services-grid-wrap {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 240px;
  }

  .service-overlay h3 {
    font-size: 24px;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .services-grid {
    padding: 60px 0;
  }

  .service-card {
    height: 220px;
    border-radius: 6px;
  }

  .service-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .service-overlay h3 {
    font-size: 22px;
  }
}



/* ===== WHY HYPE - HOME REDESIGN ===== */
.home-why-hype {
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
  padding: 100px 0;
}

.home-why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 50px;
  align-items: center;
}

.home-why-media,
.home-why-content {
  min-width: 0;
}

.home-why-image {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.home-why-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.home-why-content h2 {
  color: #fff;
  margin-bottom: 20px;
}

.home-why-content>p {
  color: #e8e6e6;
  margin-bottom: 24px;
}

.home-why-points {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.why-point {
  padding: 18px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.why-point h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 8px;
}

.why-point p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.home-why-content blockquote {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.home-why-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== TABLET ===== */
@media (max-width: 991px) {
  .home-why-hype {
    padding: 70px 0;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-why-image img {
    height: 420px;
  }

  .why-point h4 {
    font-size: 18px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
  .home-why-image img {
    height: 300px;
  }

  .home-why-content blockquote {
    font-size: 16px;
  }

  .home-why-actions .btn-white {
    width: 100%;
    justify-content: center;
  }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
  .home-why-hype {
    padding: 60px 0;
  }

  .home-why-image img {
    height: 240px;
  }

  .why-point {
    padding: 16px;
  }
}


/* ===== ADVISORY BOARD - T1 STYLE ===== */
#advisory-board .advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}

#advisory-board .advisor-card {
  min-width: 0;
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

#advisory-board .advisor-card:hover {
  transform: translateY(-6px);
}

#advisory-board .advisor-image-wrap {
  position: relative;
  overflow: hidden;
  height: 440px;
  background: #ddd;
}

#advisory-board .advisor-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

#advisory-board .advisor-hover {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  color: #fff;
  padding: 18px;
  /* display: flex; */
  align-items: flex-end;
  opacity: 0;
  transition: opacity .35s ease;
}

#advisory-board .advisor-hover p {
  color: #fff;
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 8px;
}

#advisory-board .advisor-card:hover .advisor-image-wrap img {
  transform: scale(1.05);
}

#advisory-board .advisor-card:hover .advisor-hover {
  opacity: 1;
}

#advisory-board .advisor-meta {
  text-align: center;
  padding: 16px 10px 16px;
  background-color: #fff;
}

#advisory-board .advisor-meta h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

#advisory-board .advisor-meta span {
  display: block;
  color: #555;
  font-size: 16px;
  font-weight: 500;
}

/* tablet */
@media (max-width: 992px) {
  #advisory-board .advisory-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  #advisory-board .advisor-image-wrap {
    height: 470px;
  }
}

/* mobile */
@media (max-width: 576px) {
  #advisory-board .advisory-grid {
    grid-template-columns: 1fr;
  }

  /* #advisory-board .advisor-image-wrap {
    height: 320px;
  } */

  #advisory-board .advisor-meta h3 {
    font-size: 20px;
  }

  #advisory-board .advisor-meta span {
    font-size: 15px;
  }
}

/* ===== LEGAL SECTION ===== */
/* ===== LEGAL SECTION V2 ===== */
.legal-section-v2 {
  background: #f7f7f7;
}

.legal-topbar {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
}

.legal-topbar h2 {
  margin-bottom: 16px;
}

.legal-topbar p {
  max-width: 700px;
  margin: 0 auto;
}

.legal-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
}

.legal-main-content {
  background: #fff;
  border-radius: 18px;
  padding: 38px;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.06);
}

.legal-role-badge {
  display: inline-block;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.legal-main-content h3 {
  margin-bottom: 18px;
}

.legal-main-content p {
  margin-bottom: 16px;
}

.legal-main-content p:last-child {
  margin-bottom: 0;
}

.legal-profile-panel {
  min-width: 0;
}

.legal-profile-wrap {
  background: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
}

.legal-profile-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.legal-profile-caption {
  padding: 22px 24px;
  background: linear-gradient(90deg, #1b1b1b 0%, #000000 55%, #343434 100%);
}

.legal-profile-caption h4 {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px;
}

.legal-profile-caption span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
}

.legal-focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 36px;
}

.legal-focus-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.legal-focus-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 122, 0, 0.25);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07);
}

.legal-focus-num {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
  letter-spacing: 0.08em;
}

.legal-focus-card h4 {
  font-size: 21px;
  margin-bottom: 10px;
}

.legal-focus-card p {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .legal-focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .legal-main-grid {
    grid-template-columns: 1fr;
  }

  .legal-main-content {
    padding: 28px;
  }

  .legal-profile-wrap img {
    height: 420px;
  }
}

@media (max-width: 576px) {
  .legal-topbar {
    margin-bottom: 32px;
  }

  .legal-main-content h3 {
    font-size: 26px;
  }

  .legal-main-content {
    padding: 22px;
  }

  .legal-profile-wrap img {
    height: 300px;
  }

  .legal-profile-caption {
    padding: 18px;
  }

  .legal-profile-caption h4 {
    font-size: 20px;
  }

  .legal-focus-grid {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .legal-focus-card {
    padding: 20px 18px;
  }

  .legal-focus-card h4 {
    font-size: 18px;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1299px) {
  #advisory-board .advisor-hover p {
    font-size: 12px;
  }
}

@media (max-width: 1299px) {
  #advisory-board .advisor-hover p {
    font-size: 11.7px;
  }
}

@media (max-width: 1299px) {
  #advisory-board .advisor-hover p {
    font-size: 10.7px;
  }
}

@media (max-width: 1080px) {
  .menu-links {
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .legal-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-side-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 767px) {
  /* #advisory-board .advisor-hover p {
    font-size: 12px;
  } */
}

@media (max-width: 576px) {
  .legal-side-inner {
    padding: 22px;
  }

  .legal-point h4 {
    font-size: 18px;
  }

  .contact-info-card {
    WIDTH: 100%;
    MAX-WIDTH: 100%;
    MIN-WIDTH: 100%;
    padding: 20px;
  }

  .contact-info-card .info-txt a {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .contact-info-card .info-p {
    font-size: 14px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-all;
  }

  .info-ic {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}


/* ===== COMMODITIES HERO VIDEO ===== */

.commodities-hero-video {
  position: relative;
  overflow: hidden;
  background: none;
}

.commodities-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* overlay so text stays readable */
.commodities-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.55) 50%,
      rgba(0, 0, 0, 0.75) 100%);
  z-index: -1;
}



.disposables-hero-slider {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: background-image 1.5s ease-in-out;
}

.disposables-hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 29%) 0%, rgb(0 0 0 / 57%) 45%, rgb(0 0 0 / 15%) 100%);
}

.disposables-hero-slider .container {
  position: relative;
  z-index: 2;
}

.disposables-hero-slider .pf {
  background: rgb(0 0 0 / 50%);
}


/* LOGISTICS HERO VIDEO */

.logistics-hero-video {
  position: relative;
  overflow: hidden;
  background: none;
}

/* video layer */

.logistics-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* overlay for text readability */

.logistics-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(0 0 0 / 36%) 0%, rgb(0 0 0 / 33%) 45%, rgb(0 0 0 / 69%) 100%);
}

#gloves .duo-img img {
  object-fit: contain;
}

#gloves .duo-img {
  background: #ffffffa3;
}


.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  padding: 40px 60px;
}

.testimonial-slide {
  display: none;
  text-align: center;
  animation: fade 0.5s ease;
}

.testimonial-slide.active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* client info */

.client-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

/* arrows */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.slider-btn.prev {
  left: 0;
}

.slider-btn.next {
  right: 0;
}

.slider-btn:hover {
  background: #ff7a00;
}

@media (max-width:768px) {
  .logistics-capabilities .cap-ico {
    width: 42px;
    height: 42px;
}
.about-media {
    gap: 15px;
}
.logistics-capabilities .capability-item {
    padding: 20px;
}
  .client-sliderbtns {
    margin-bottom: 70px;
  }

  .testimonial-slider {
    padding: 0px;
  }

  .testimonial-slider {
    margin-bottom: 40px;
  }

  .slider-btn {
    top: auto;
    bottom: -75px;
    transform: none;
  }

  .slider-btn.prev {
    left: calc(50% - 45px);
  }

  .slider-btn.next {
    left: calc(50% + 5px);
  }

}

@media (max-width:480px) {

  .slide::after {
    background: linear-gradient(to top, rgb(0 0 0 / 19%), #0000003d 40%);
}
  .btn-orange {
    padding: 14px 20px;
    font-size: 14px;
  }

  .btn-white {
    padding: 14px 20px;
    font-size: 14px;
  }

  .btn-blue {
    padding: 14px 20px;
    font-size: 14px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .footer-contact .icon {
    width: 15px;
    height: 15px;
  }

  .footer-contact li {
    gap: 4px;
  }
}

.mt-20 {
  margin-top: 20px;
}
.bggreylight {
  background-color: #f6f3f1;
}


/* ABOUT SECTION CONTENT POLISH */
.about-content h4 {
  font-family: 'Jost', sans-serif;
  font-size: 28px;
  line-height: 1.3;
  color: #fff;
  font-weight: 600;
  margin: 26px 0 12px;
}

.about-content p {
  color: #e8e6e6;
  margin-bottom: 16px;
}

.about-content p strong {
  color: #fff;
  font-weight: 600;
}

.about-content blockquote {
  margin: 26px 0 18px;
  padding: 18px 22px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.7;
}

.about-content .mt20 {
  margin-top: 22px;
}

.about-content .btn-orange {
  margin-top: 16px;
}

/* better readability for this long content */
.about-content {
  max-width: 720px;
}
.about-content .highlight-line {
  margin-top: 24px;
  padding: 18px 20px;
  border-radius: 10px;
  background: rgba(255, 140, 0, 0.08);
  border-left: 3px solid var(--orange);
  color: #fff;
  font-weight: 500;
  line-height: 1.7;
}
.about-highlight-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 10px;
}

.about-highlight-item {
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.about-highlight-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.about-highlight-title {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 6px;
}

.about-highlight-item p {
  margin: 0;
  color: #e8e6e6;
}

@media (max-width: 576px) {
  .about-highlight-item {
    padding: 14px 16px;
  }

  .about-highlight-title {
    font-size: 16px;
  }
}
/* mobile polish */
@media (max-width: 992px) {
  .about-content h4 {
    font-size: 22px;
    margin: 22px 0 10px;
  }

  .about-content blockquote {
    font-size: 16px;
    padding: 16px 18px;
  }
}



.aboutinnerpage {
    display: grid;
    grid-template-columns: 1fr;
    gap: 70px;
    align-items: center;
}
.aboutinnerpage  .about-content {
    max-width: 100%;
}



/* ABOUT HERO BANNER */
.about-hero-banner {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.about-hero-banner .hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    rgba(0, 0, 0, 0.2) 100%
  );
  z-index: 1;
}

.about-hero-banner .container {
  position: relative;
  z-index: 2;
}

.about-hero-banner .inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

.about-hero-banner .inner-hero-content {
  max-width: 760px;
}

.about-hero-banner .inner-hero-content h1,
.about-hero-banner .inner-hero-content p,
.about-hero-banner .inner-hero-content .hero-small {
  color: #fff;
}

.about-hero-banner .inner-hero-content h1 {
  margin-bottom: 18px;
}

.about-hero-banner .hero-subtext {
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .about-hero-banner {
    min-height: 520px;
  }

  .about-hero-banner .inner-hero-content {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .about-hero-banner {
    min-height: 460px;
  }
}