:root {
  --black: #0b0b0b;
  --ink: #171717;
  --muted: #6e706f;
  --line: #e7e2db;
  --soft: #f7f5f1;
  --white: #ffffff;
  --copper: #e31616;
  --copper-dark: #b34412;
  --silver: #bfc4c9;
  --radius: 18px;
  --shadow: 0 18px 55px rgba(28, 25, 22, 0.1);
  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

.reveal-up,
.reveal-fade {
  opacity: 1 !important;
  transform: none !important;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #f7f6f3 0%, #fff 40%, #f7f6f3 100%);
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container-wide {
  width: min(100% - 56px, 1320px);
  margin-inline: auto;
}
.section-white {
  background: rgba(255, 255, 255, 0.72);
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #fff;
  display: grid;
  place-items: center;
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease;
}
.preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-mark {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--copper), #ff8647);
  color: #fff;
  font: 900 36px/62px var(--font-head);
  text-align: center;
  box-shadow: 0 20px 50px rgba(227, 95, 22, 0.25);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 15, 15, 0.08);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
}
.nav-shell {
  width: min(100% - 32px, 1360px);
  height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  min-width: 190px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.desktop-nav a {
  position: relative;
  text-transform: uppercase;
  font: 800 12px/1 var(--font-head);
  letter-spacing: 0.075em;
  color: #161616;
  padding: 31px 0;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: 0.3s ease;
  transform: translateX(-50%);
}
.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--copper-dark);
}
.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  /* width: 22px; */
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.quote-btn,
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 3px;
  background: linear-gradient(135deg, var(--copper), #f37c2e);
  color: #fff !important;
  text-transform: uppercase;
  font: 900 12px/1 var(--font-head);
  letter-spacing: 0.075em;
  border: 0;
  box-shadow: 0 12px 30px rgba(227, 95, 22, 0.22);
  transition: 0.28s ease;
}
.quote-btn:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(227, 95, 22, 0.3);
  background: linear-gradient(135deg, #f06f20, var(--copper-dark));
}
.quote-btn span,
.primary-btn i {
  transition: 0.28s ease;
}
.quote-btn:hover span,
.primary-btn:hover i {
  transform: translateX(4px);
}
.menu-toggle {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  width: 18px;
  height: 2px;
  background: #111;
  display: block;
}
.mobile-panel {
  background: #fff;
}
.mobile-logo {
  height: 46px;
}
.mobile-panel .offcanvas-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-panel .offcanvas-body > a:not(.quote-btn) {
  font: 800 14px var(--font-head);
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

/* ================= RESPONSIVE HEADER FIX ================= */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-shell {
  width: min(100% - 48px, 1600px);
  min-height: 86px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo img {
  width: 155px;
  height: auto;
  display: block;
}

.desktop-nav {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.25s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #f15a16;
}

.nav-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 0;
  background: #f15a16;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}

.quote-btn:hover {
  background: #111;
  color: #fff;
}

.menu-toggle {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: #111;
  display: block;
}

/* tablet + mobile */
@media (max-width: 1199px) {
  .nav-shell {
    width: calc(100% - 32px);
    min-height: 76px;
  }

  .desktop-nav {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .brand-logo img {
    width: 145px;
  }
}

/* small mobile */
@media (max-width: 576px) {
  .nav-shell {
    width: calc(100% - 24px);
    min-height: 72px;
    gap: 12px;
  }

  .brand-logo img {
    width: 128px;
  }

  .quote-btn {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
  }
}

/* 320px fix */
@media (max-width: 360px) {
  .nav-shell {
    width: calc(100% - 18px);
  }

  .brand-logo img {
    width: 116px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }
}

/* ================= MOBILE OFFCANVAS MENU ================= */

.mobile-panel {
  width: min(360px, 88vw) !important;
  border-left: 0;
}

.mobile-panel .offcanvas-header {
  min-height: 82px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-logo {
  width: 145px;
  height: auto;
}

.mobile-panel .offcanvas-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.mobile-panel .offcanvas-body > a {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  text-decoration: none;
}

.mobile-panel .offcanvas-body > a:hover {
  color: #f15a16;
}

.mobile-panel .quote-btn {
  display: inline-flex;
  border-bottom: 0 !important;
  color: #fff !important;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-dropdown {
  position: relative;
}

.drop-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #111;
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.drop-btn i {
  font-size: 10px;
  transition: 0.3s;
}

.nav-dropdown:hover .drop-btn i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;

  top: 100%;

  left: 0;

  min-width: 250px;

  background: #fff;

  border-radius: 10px;

  padding: 10px 0;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

  opacity: 0;

  visibility: hidden;

  transform: translateY(15px);

  transition: 0.35s;

  z-index: 99999;

  display: block;
}

.dropdown-menu a {
  display: block;

  padding: 12px 20px;

  color: #222;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: 0.3s;
}

.dropdown-menu a:hover {
  background: #fff3eb;

  /* color:#f15a16; */

  padding-left: 28px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;

  visibility: visible;

  transform: translateY(0);
}
.mobile-dropdown {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-drop-btn {
  width: 100%;
  border: none;
  background: none;
  padding: 16px 0;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.mobile-drop-btn i {
  transition: 0.3s;
}

.mobile-drop-menu {
  display: none;
  padding: 5px 0 15px 15px;
}

.mobile-drop-menu a {
  display: block;
  padding: 10px 0;
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.mobile-dropdown.active .mobile-drop-menu {
  display: block;
}

.mobile-dropdown.active i {
  transform: rotate(180deg);
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 620px;
  padding: 56px 0 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-section::before {
  content: "";
  position: absolute;
  left: -160px;
  bottom: 24px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(227, 95, 22, 0.12);
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  align-items: center;
  min-height: 420px;
  gap: 18px;
  position: relative;
}
.hero-copy {
  padding: 36px 0 58px;
  max-width: 560px;
  z-index: 2;
}
.mini-line {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  text-transform: uppercase;
  color: #171717;
  font: 900 11px/1 var(--font-head);
  letter-spacing: 0.12em;
}
.mini-line span + span {
  color: #777;
}
.hero-copy h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(42px, 5.15vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 28px;
  color: #090909;
}
.hero-copy h1 span {
  display: block;
  color: #f15f10;
  letter-spacing: -0.045em;
}
.hero-copy p {
  max-width: 430px;
  color: #555b5a;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font: 900 12px/1 var(--font-head);
  letter-spacing: 0.07em;
  color: #171717;
}
.story-link span {
  width: 34px;
  height: 34px;
  border: 1px solid #c9c9c9;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #111;
  transition: 0.25s ease;
}
.story-link:hover span {
  background: #111;
  color: #fff;
  border-color: #111;
}
.hero-art {
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
}
.hero-curve {
  position: absolute;
  left: 40px;
  top: -95px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(80, 80, 80, 0.18);
  border-radius: 50%;
  z-index: 0;
}
.hero-art-img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 755px;
  height: 392px;
  object-fit: cover;
  object-position: center;
  border-radius: 0 0 0 82px;
  filter: drop-shadow(0 30px 48px rgba(0, 0, 0, 0.08));
}
.trusted-strip {
  position: relative;
  z-index: 3;
  margin-top: -22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 1.1fr repeat(7, 1fr) 0.65fr;
  align-items: center;
  gap: 20px;
  padding: 16px 38px;
  box-shadow: var(--shadow);
}
.trusted-title,
.trusted-more {
  text-transform: uppercase;
  font: 900 12px/1.35 var(--font-head);
  letter-spacing: 0.075em;
  color: #2d2d2d;
}
.trusted-more {
  font-size: 11px;
  color: #454545;
  text-transform: none;
  font-weight: 700;
}
.brand-word {
  text-align: center;
  color: #111;
  opacity: 0.72;
  filter: grayscale(1);
  font-weight: 900;
  font-size: 25px;
  line-height: 1;
}
.brand-word.serif,
.brand-word.burberry {
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.brand-word.hm {
  font-family: var(--font-head);
  font-style: italic;
  color: #111;
}
.brand-word.denim {
  font-family: var(--font-head);
  font-size: 22px;
}
.brand-word.mango {
  font:
    500 24px/1 Georgia,
    serif;
  letter-spacing: 0.14em;
}
.brand-word.replay {
  font-family: Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.brand-word.diesel {
  font-family:
    Impact,
    Arial Black,
    sans-serif;
  letter-spacing: 0.04em;
}

/* Shared */
.section-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  color: #111;
  font: 900 12px/1 var(--font-head);
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--copper);
  display: inline-block;
}
h2 {
  font-family: var(--font-head);
  letter-spacing: -0.035em;
  color: #111;
}
.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font: 900 12px/1 var(--font-head);
  letter-spacing: 0.08em;
  color: #111;
  transition: 0.25s ease;
}
.line-btn:hover {
  color: var(--copper);
}
.line-btn i {
  transition: 0.25s ease;
}
.line-btn:hover i {
  transform: translateX(5px);
}
.reveal-up,
.reveal-fade {
  will-change: transform, opacity;
}

/* About + products */
/* ================= ABOUT + PRODUCT FAMILIES EXACT STYLE ================= */

.about-products {
  padding: 54px 0 46px;
  background: #f7f6f3;
}

.about-products-layout {
  display: grid;
  grid-template-columns: 320px 370px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

/* left text */
.about-card {
  padding: 28px 0 0;
  background: transparent;
  box-shadow: none;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: #c96d2d;
  font-size: 13px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #f15a16;
}

.about-desc {
  margin: 0;
  max-width: 300px;
  color: #2b2b2b;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 500;
}

.clean-list {
  list-style: none;
  padding: 0;
  margin: 44px 0 44px;
  display: grid;
  gap: 22px;
}

.clean-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #333;
  font-size: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.clean-list i {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(11, 11, 11, 0.15);
  border-radius: 50%;
  color: #8f8f8f;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: transparent;
}

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  text-decoration: none;
}

.line-btn:hover {
  color: #c96d2d;
}

/* middle image */
.building-card {
  position: relative;
  height: 430px;
  border-radius: 0 24px 24px 0;
  overflow: hidden;
  background: #eee;
  box-shadow: none;
}

.building-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.building-card::before {
  content: "";
  position: absolute;
  left: -95px;
  bottom: -105px;
  width: 285px;
  height: 285px;
  background: linear-gradient(135deg, #ff9a36, #e86110);
  transform: rotate(45deg);
  opacity: 0.82;
  z-index: 2;
}

/* right products */
.product-families {
  min-width: 0;
  padding-top: 28px;
}

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 30px;
}

.product-head .section-kicker {
  margin-bottom: 0;
}

.product-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.product-nav button {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(11, 11, 11, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.product-nav button:hover {
  background: #f15a16;
  border-color: #f15a16;
  color: #fff;
}

/* owl fix */
.product-carousel.owl-carousel {
  display: block !important;
  width: 100%;
}

.product-carousel .owl-stage {
  display: flex;
}

.product-carousel .owl-item {
  display: flex;
}

.product-card {
  width: 100%;
  min-height: 330px;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 0;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* =========================================================
   PERMANENT FIX: PREVENT PRODUCT IMAGE CROPPING ON ALL SCREENS
========================================================= */

/* Sirf Product Cards ke liye (Gallery ko affect nahi karega) */
.product-card img {
  object-fit: contain !important;
  object-position: center !important;
  background-color: #c4c4c4 !important; /* Khali jagah ko white fill karega */
  padding: 15px !important; /* Image ko box ke borders se thoda gap dega */
  width: 100% !important;
}

/* Mobile Screens ke liye padding adjustment */
@media (max-width: 767px) {
  .product-card img {
    padding: 10px !important;
  }
}

.product-info {
  padding: 24px 24px 58px;
}

.product-info h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 18px;
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: normal;
}

.product-info p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.product-card > a {
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f15a16;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* responsive */
@media (max-width: 1299px) {
  .about-products-layout {
    grid-template-columns: 290px 330px minmax(0, 1fr);
    gap: 22px;
  }

  .building-card {
    height: 400px;
  }
}

@media (max-width: 1099px) {
  .about-products-layout {
    grid-template-columns: 1fr 1fr;
  }

  .product-families {
    grid-column: 1 / -1;
    padding-top: 14px;
  }

  .about-card {
    padding-top: 18px;
  }

  .building-card {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .about-products {
    padding: 38px 0;
  }

  .about-products-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-card {
    padding: 0;
  }

  .about-desc {
    max-width: 100%;
  }

  .clean-list {
    margin: 28px 0;
    gap: 16px;
  }

  .building-card {
    height: 300px;
    border-radius: 18px;
  }

  .product-head {
    margin-bottom: 20px;
  }

  .product-card {
    min-height: 315px;
  }

  .product-card img {
    height: 170px;
  }
}

@media (max-width: 480px) {
  .section-kicker {
    font-size: 11px;
    letter-spacing: 1.4px;
  }

  .section-kicker::before {
    width: 30px;
  }

  .product-nav button {
    width: 38px;
    height: 38px;
  }
}

/* ================= ABOUT + PRODUCT SLIDER CLEAN ================= */

.about-products-fluid {
  padding: 68px 0;
  background: #f7f6f3;
  overflow: hidden;
}

.about-products-inner {
  width: min(100% - 80px, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.85fr 1.65fr;
  gap: 54px;
  align-items: start;
}

.about-content {
  padding-top: 10px;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #c96d2d;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: #f15a16;
}

.about-content h2 {
  margin: 0 0 22px;
  max-width: 520px;
  color: #111;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.about-content p {
  max-width: 540px;
  margin: 0 0 16px;
  color: #3f3f3f;
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 32px 0 34px;
  max-width: 560px;
}

.about-points div {
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 14px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
}

.about-points i {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #f15a16;
  background: rgba(241, 90, 22, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-points span {
  color: #222;
  font-size: 13.5px;
  line-height: 1.35;
  font-weight: 800;
}

.line-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: #111;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
}

.line-btn:hover {
  color: #f15a16;
}

/* product side */
.product-families {
  min-width: 0;
}

.product-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 26px;
}

.product-head h2 {
  max-width: 700px;
  margin: 0;
  color: #111;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1.02;
  letter-spacing: -1.4px;
  font-weight: 900;
}

.product-nav {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  padding-top: 36px;
}

.product-nav button {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.product-nav button:hover {
  background: #f15a16;
  color: #fff;
  border-color: #f15a16;
}

/* Owl carousel fix */
.product-carousel.owl-carousel {
  display: block !important;
  width: 100%;
  overflow: hidden;
}

.product-carousel .owl-stage {
  display: flex;
}

.product-carousel .owl-item {
  display: flex;
}

.product-card {
  width: 100%;
  min-height: 330px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.11);
}

.product-card img {
  width: 100%;
  height: 175px;
  /* object-fit: cover; */
  display: block;
}

.product-info {
  padding: 22px 22px 58px;
}

.product-info h3 {
  margin: 0 0 10px;
  color: #111;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  white-space: normal;
}

.product-info p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.product-card > a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f15a16;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

/* responsive */
@media (max-width: 1199px) {
  .about-products-inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-content h2,
  .about-content p,
  .about-points {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .about-products-fluid {
    padding: 44px 0;
  }

  .about-products-inner {
    width: 100%;
    padding-inline: 20px;
    gap: 34px;
  }

  .about-content h2 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .about-points {
    grid-template-columns: 1fr;
    margin: 26px 0 30px;
  }

  .product-head {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .product-head h2 {
    font-size: 30px;
  }

  .product-nav {
    padding-top: 28px;
  }

  .product-nav button {
    width: 40px;
    height: 40px;
  }

  .product-card {
    min-height: 315px;
  }

  .product-card img {
    height: 165px;
  }
}

@media (max-width: 480px) {
  .about-products-inner {
    padding-inline: 16px;
  }

  .section-kicker {
    font-size: 10.5px;
    letter-spacing: 1.4px;
  }

  .section-kicker::before {
    width: 30px;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .product-head {
    gap: 12px;
  }

  .product-head h2 {
    font-size: 26px;
  }

  .product-info h3 {
    font-size: 16px;
  }
}
/* Gallery */
/* ================= FEATURED GALLERY SLIDER ================= */

.featured-gallery-section {
  padding: 0 0 52px;
  background: #f7f6f3;
  overflow: hidden;
}

.featured-gallery-inner {
  width: min(100% - 70px, 1440px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.gallery-intro {
  min-height: 260px;
  padding: 34px 30px;
  background: #fff;
  border-radius: 18px 0 0 18px;
  border: 1px solid rgba(11, 11, 11, 0.07);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

.gallery-intro .section-kicker {
  margin-bottom: 18px;
}

.gallery-intro h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  font-weight: 900;
}

.gallery-intro p {
  margin: 0 0 24px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.gallery-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
}

.gallery-nav button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(11, 11, 11, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.gallery-nav button:hover {
  background: #f15a16;
  border-color: #f15a16;
  color: #fff;
}

.gallery-slider-wrap {
  min-width: 0;
  overflow: hidden;
  border-radius: 0 18px 18px 0;
}

.gallery-carousel.owl-carousel {
  display: block !important;
}

.gallery-carousel .owl-stage {
  display: flex;
}

.gallery-carousel .owl-item {
  display: flex;
}

.gallery-slide {
  position: relative;
  display: block;
  width: 100%;
  height: 260px;
  overflow: hidden;
  text-decoration: none;
  background: #111;
  border-right: 2px solid #f7f6f3;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.2) contrast(1.05);
  transition: 0.5s ease;
}

.gallery-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 35%,
    rgba(0, 0, 0, 0.72) 100%
  );
  opacity: 0;
  transition: 0.35s ease;
}

.gallery-slide span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: 0.35s ease;
}

.gallery-slide > i {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f15a16;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.85);
  transition: 0.35s ease;
}

.gallery-slide:hover img {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1.08);
}

.gallery-slide:hover::after,
.gallery-slide:hover span,
.gallery-slide:hover > i {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ================= IMAGE LIGHTBOX ================= */

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 5, 5, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
}

.image-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: min(1100px, 92vw);
  text-align: center;
  transform: scale(0.92);
  transition: 0.35s ease;
}

.image-lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.lightbox-content h3 {
  margin: 18px 0 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #f15a16;
  border-color: #f15a16;
}

/* Responsive */
@media (max-width: 991px) {
  .featured-gallery-inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 1440px);
  }

  .gallery-intro {
    border-radius: 18px 18px 0 0;
    min-height: auto;
  }

  .gallery-slider-wrap {
    border-radius: 0 0 18px 18px;
  }

  .gallery-slide {
    height: 240px;
  }
}

@media (max-width: 576px) {
  .featured-gallery-inner {
    width: 100%;
    padding-inline: 16px;
  }

  .gallery-intro {
    padding: 26px 22px;
  }

  .gallery-intro h2 {
    font-size: 28px;
  }

  .gallery-slide {
    height: 230px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 42px;
    height: 42px;
    top: auto;
    bottom: 26px;
    transform: none;
  }

  .lightbox-prev {
    left: calc(50% - 54px);
  }

  .lightbox-next {
    right: calc(50% - 54px);
  }

  .lightbox-content img {
    max-height: 68vh;
  }
}

/* ===== GALLERY HEIGHT EQUAL FIX ===== */

.featured-gallery-section {
  background: #fff !important;
  padding: 35px 0 !important;
  overflow: hidden;
}

.featured-gallery-inner {
  --gallery-height: 330px;

  width: calc(100% - 32px) !important;
  max-width: 1600px;
  margin-inline: auto;

  display: grid !important;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: stretch !important;
  border: 2px solid orange;
  border-radius: 10px;
  padding: 10px !important;
}

/* left card height */
.gallery-intro {
  height: var(--gallery-height) !important;
  min-height: var(--gallery-height) !important;
  padding: 32px 28px !important;

  background: #fff;
  border-radius: 16px 0 0 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-right: 0;

  display: flex !important;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

/* right slider height same */
.gallery-slider-wrap {
  height: var(--gallery-height) !important;
  min-height: var(--gallery-height) !important;
  overflow: hidden;
  border-radius: 0 16px 16px 0;
}

.gallery-carousel,
.gallery-carousel .owl-stage-outer,
.gallery-carousel .owl-stage,
.gallery-carousel .owl-item {
  height: var(--gallery-height) !important;
  min-height: var(--gallery-height) !important;
}

.gallery-carousel .owl-stage {
  display: flex !important;
}

.gallery-carousel .owl-item {
  display: flex !important;
}

/* image card equal */
.gallery-slide {
  height: var(--gallery-height) !important;
  min-height: var(--gallery-height) !important;
  width: 100%;
  display: block;
  overflow: hidden;
}

.gallery-slide img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* text size safe */
.gallery-intro h2 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 14px;
}

.gallery-intro p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.gallery-nav {
  margin-bottom: 18px;
}

/* tablet */
@media (max-width: 991px) {
  .featured-gallery-inner {
    --gallery-height: 280px;
    width: calc(100% - 24px) !important;
    grid-template-columns: 1fr;
  }

  .gallery-intro {
    height: auto !important;
    min-height: auto !important;
    border-radius: 16px 16px 0 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 0;
  }

  .gallery-slider-wrap {
    border-radius: 0 0 16px 16px;
  }
}

/* mobile */
@media (max-width: 576px) {
  .featured-gallery-section {
    padding: 26px 0 !important;
  }

  .featured-gallery-inner {
    --gallery-height: 240px;
    width: calc(100% - 18px) !important;
  }

  .gallery-intro {
    padding: 24px 20px !important;
  }

  .gallery-intro h2 {
    font-size: 26px;
  }
}

/* gallery image round + small gap */
.gallery-carousel .owl-stage {
  gap: 10px;
}

.gallery-carousel .owl-item {
  padding-inline: 5px;
}

.gallery-slide {
  border-radius: 16px !important;
  overflow: hidden !important;
  border-right: 0 !important;
}

.gallery-slide img {
  border-radius: 16px !important;
}
/* Why / industries */
/* ================= WHY CHOOSE + INDUSTRIES ================= */

.choice-industries {
  padding: 34px 0 46px;
  background: #fff;
}

.choice-industries-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  max-width: 1600px;
  margin-inline: auto;
}

.icon-row-block {
  background: #fff;
  border: 1px solid rgba(11, 11, 11, 0.08);
  border-radius: 18px;
  padding: 28px 30px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.icon-row-block::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(241, 90, 22, 0.06);
  pointer-events: none;
}

.row-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.row-head .section-kicker {
  margin-bottom: 0;
}

.row-head p {
  margin: 0;
  max-width: 300px;
  color: #666;
  font-size: 13.5px;
  line-height: 1.55;
  text-align: right;
}

.mini-icon-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}

.industries-row {
  grid-template-columns: repeat(6, 1fr);
}

.mini-icon-row article {
  min-height: 118px;
  padding: 20px 12px 18px;
  border: 1px solid rgba(11, 11, 11, 0.07);
  border-radius: 16px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  text-align: center;
  transition: 0.3s ease;
}

.mini-icon-row article i {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(241, 90, 22, 0.08);
  color: #f15a16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  transition: 0.3s ease;
}

.mini-icon-row article span {
  color: #222;
  font-size: 13.5px;
  line-height: 1.28;
  font-weight: 800;
}

.mini-icon-row article:hover {
  background: #111;
  border-color: #111;
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.mini-icon-row article:hover i {
  background: #f15a16;
  color: #fff;
}

.mini-icon-row article:hover span {
  color: #fff;
}

/* responsive */
@media (max-width: 1199px) {
  .choice-industries-wrap {
    grid-template-columns: 1fr;
  }

  .mini-icon-row,
  .industries-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .choice-industries {
    padding: 28px 0 36px;
  }

  .icon-row-block {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .row-head {
    display: block;
    margin-bottom: 18px;
  }

  .row-head p {
    max-width: 100%;
    margin-top: 10px;
    text-align: left;
  }

  .mini-icon-row,
  .industries-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .mini-icon-row article {
    min-height: 112px;
    padding: 18px 10px;
  }
}

@media (max-width: 420px) {
  .mini-icon-row,
  .industries-row {
    grid-template-columns: 1fr;
  }

  .mini-icon-row article {
    min-height: 95px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 16px;
  }
}

/* Process */
/* process full-width alignment */
.process-section {
  padding: 38px 0 48px;
  background: #fff;
  overflow: hidden;
}

.process-wrap {
  max-width: 1600px;
  margin-inline: auto;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.process-wrap .section-kicker {
  margin-bottom: 24px;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.process-line::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(241, 90, 22, 0.22);
  z-index: 0;
}

.process-line article {
  position: relative;
  z-index: 1;
  min-height: 185px;
  padding: 24px 14px 22px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.045);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.process-line article b {
  min-width: 48px;
  height: 28px;
  padding: 0 13px;
  border-radius: 40px;
  background: #f4f2ef;
  color: #777;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.process-line article i {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(241, 90, 22, 0.08);
  color: #f15a16;
  font-size: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-line article span {
  color: #222;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}

.process-line article.active,
.process-line article:hover {
  background: #111;
  border-color: #111;
  transform: translateY(-5px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.14);
}

.process-line article.active b,
.process-line article:hover b {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.78);
}

.process-line article.active i,
.process-line article:hover i {
  background: #f15a16;
  color: #fff;
}

.process-line article.active span,
.process-line article:hover span {
  color: #fff;
}

/* responsive */
@media (max-width: 1199px) {
  .process-line {
    grid-template-columns: repeat(3, 1fr);
  }

  .process-line::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 32px 0 40px;
  }

  .process-line {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .process-line article {
    min-height: 160px;
    padding: 20px 12px;
  }
}

@media (max-width: 420px) {
  .process-line {
    grid-template-columns: 1fr;
  }

  .process-line article {
    min-height: 110px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    gap: 15px;
  }

  .process-line article b,
  .process-line article i {
    margin-bottom: 0;
  }
}

/* Stats */
/* ================= STATS SECTION ================= */

.stats-section {
  padding: 34px 0 44px;
  background: #fff;
}

.stats-grid {
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.055);
}

.stats-grid article {
  min-height: 145px;
  padding: 26px 18px;
  background: #fff;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stats-grid article:last-child {
  border-right: 0;
}

.stats-grid article i {
  color: #d96b2a;
  font-size: 30px;
  line-height: 1;
}

.stats-grid article h3 {
  margin: 6px 0 0;
  color: #111;
  font-size: clamp(30px, 2.4vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1px;
}

.stats-grid article p {
  margin: 0;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dark-stat {
  position: relative;
  padding: 0 !important;
  align-items: flex-start !important;
  justify-content: flex-end !important;
  min-height: 145px;
  overflow: hidden;
  background: #111 !important;
}

.dark-stat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: grayscale(0.15) contrast(1.08);
}

.dark-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
}

.dark-stat span {
  position: relative;
  z-index: 2;
  max-width: 210px;
  padding: 22px;
  color: #fff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
}

/* responsive */
@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid article {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .stats-grid article:nth-child(3n) {
    border-right: 0;
  }

  .stats-grid article:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 767px) {
  .stats-section {
    padding: 28px 0 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }

  .stats-grid article {
    min-height: 135px;
  }

  .stats-grid article:nth-child(3n) {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
  }

  .stats-grid article:nth-child(2n) {
    border-right: 0;
  }

  .stats-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .stats-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .dark-stat span {
    font-size: 15px;
    padding: 18px;
  }
}

@media (max-width: 420px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article,
  .stats-grid article:nth-child(2n),
  .stats-grid article:nth-child(3n) {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .stats-grid article:last-child {
    border-bottom: 0;
  }
}

/* Infrastructure */
/* ================= NEW INFRA + TESTIMONIAL DESIGN ================= */

.ai-infra-showcase {
  padding: 44px 0 56px;
  background: #fff;
  overflow: hidden;
}

.ai-infra-wrap {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 22px;
  max-width: 1600px;
  margin-inline: auto;
  align-items: stretch;
}

.ai-infra-main {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  overflow: hidden;
  background: #111;
}

.ai-infra-main > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ai-infra-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.62) 42%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    radial-gradient(circle at 18% 20%, rgba(241, 90, 22, 0.32), transparent 34%);
}

.ai-infra-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  min-height: 440px;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.light-kicker {
  color: #fff;
}

.light-kicker::before {
  background: #f15a16;
}

.ai-infra-content h2 {
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 66px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: -1.8px;
  color: #fff;
}

.ai-infra-content p {
  margin: 0 0 30px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.75;
}

.ai-infra-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 34px;
  max-width: 560px;
}

.ai-infra-stats div {
  padding: 16px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.ai-infra-stats strong {
  display: block;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
}

.ai-infra-stats span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.light-link {
  color: #fff;
}

.light-link:hover {
  color: #f15a16;
}

/* testimonial */
.ai-testimonial-panel {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  padding: 46px 38px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f3 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.ai-testimonial-panel .quote-mark {
  position: absolute;
  top: 18px;
  right: 30px;
  color: #f15a16;
  font-size: 120px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.13;
}

.ai-testimonial-panel h2 {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: #111;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
}

.ai-testimonial-panel p {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
  color: #3c3c3c;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
}

.ai-client-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.ai-client-box strong {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.ai-client-box span {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 13px;
  font-weight: 600;
}

.ai-testimonial-img {
  position: absolute;
  right: -40px;
  bottom: -35px;
  width: 250px;
  height: 170px;
  object-fit: cover;
  border-radius: 80px 0 0 0;
  opacity: 0.28;
}

/* responsive */
@media (max-width: 991px) {
  .ai-infra-wrap {
    grid-template-columns: 1fr;
  }

  .ai-infra-main,
  .ai-testimonial-panel {
    min-height: 390px;
  }

  .ai-infra-content {
    min-height: 390px;
  }
}

@media (max-width: 767px) {
  .ai-infra-showcase {
    padding: 34px 0 42px;
  }

  .ai-infra-main,
  .ai-testimonial-panel {
    border-radius: 18px;
  }

  .ai-infra-content {
    padding: 36px 24px;
  }

  .ai-infra-content h2 {
    font-size: 36px;
  }

  .ai-infra-stats {
    grid-template-columns: 1fr;
  }

  .ai-testimonial-panel {
    padding: 34px 24px;
    min-height: auto;
  }

  .ai-testimonial-img {
    width: 210px;
    height: 140px;
    opacity: 0.18;
  }
}

@media (max-width: 480px) {
  .ai-infra-content h2 {
    font-size: 31px;
  }

  .ai-infra-content p,
  .ai-testimonial-panel p {
    font-size: 14px;
  }
}

/* testimonial slider */
.ai-testimonial-panel {
  position: relative;
  min-height: 440px;
  border-radius: 24px;
  padding: 40px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f6f3 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.testimonial-head {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.testimonial-head h2 {
  margin: 0;
  color: #111;
  font-size: clamp(26px, 2.2vw, 38px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
}

.testimonial-nav {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  padding-top: 34px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.testimonial-nav button:hover {
  background: #f15a16;
  color: #fff;
  border-color: #f15a16;
}

.testimonial-carousel {
  position: relative;
  z-index: 3;
}

.testimonial-carousel.owl-carousel {
  display: block !important;
}

.testimonial-slide {
  position: relative;
  min-height: 230px;
  padding-top: 18px;
}

.testimonial-slide .quote-mark {
  position: absolute;
  top: -24px;
  right: 10px;
  color: #f15a16;
  font-size: 110px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.12;
}

.testimonial-slide p {
  position: relative;
  z-index: 2;
  margin: 0 0 30px;
  color: #333;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
}

.ai-client-box {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
}

.ai-client-box strong {
  display: block;
  color: #111;
  font-size: 14px;
  font-weight: 900;
}

.ai-client-box span {
  display: block;
  margin-top: 3px;
  color: #777;
  font-size: 13px;
  font-weight: 600;
}

.ai-testimonial-img {
  position: absolute;
  right: -40px;
  bottom: -35px;
  width: 250px;
  height: 170px;
  object-fit: cover;
  border-radius: 80px 0 0 0;
  opacity: 0.22;
  pointer-events: none;
}

@media (max-width: 767px) {
  .ai-testimonial-panel {
    min-height: auto;
    padding: 32px 22px;
    border-radius: 18px;
  }

  .testimonial-head {
    margin-bottom: 20px;
  }

  .testimonial-nav {
    padding-top: 30px;
  }

  .testimonial-nav button {
    width: 38px;
    height: 38px;
  }

  .testimonial-slide {
    min-height: auto;
  }

  .testimonial-slide p {
    font-size: 14px;
  }

  .ai-testimonial-img {
    width: 200px;
    height: 130px;
    opacity: 0.16;
  }
}
/* CTA */
/* ================= CTA SECTION ================= */

.cta-section {
  padding: 38px 0 46px;
  background: #fff;
  overflow: hidden;
}

.cta-box {
  position: relative;
  max-width: 1600px;
  min-height: 210px;
  margin-inline: auto;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 34px 42px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.1);
}

.cta-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.68) 42%,
      rgba(0, 0, 0, 0.88)
    ),
    radial-gradient(circle at 78% 50%, rgba(241, 90, 22, 0.28), transparent 32%);
  pointer-events: none;
}

.cta-media {
  position: relative;
  z-index: 2;
  height: auto !important;
  border-radius: 18px;
  overflow: hidden;
}

.cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.06);
}

.cta-copy {
  position: relative;
  z-index: 2;
  color: #fff;
}

.cta-copy .section-kicker {
  margin-bottom: 14px;
}

.cta-copy h2 {
  margin: 0;
  max-width: 720px;
  color: #fff;
  font-size: clamp(30px, 3.3vw, 56px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.4px;
}

.cta-copy p {
  margin: 16px 0 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.7;
}

.cta-btn {
  position: relative;
  z-index: 2;
  white-space: nowrap;
  box-shadow: none;
}

/* responsive */
@media (max-width: 991px) {
  .cta-box {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px;
  }

  .cta-media {
    width: 100%;
    height: 180px;
  }

  .cta-btn {
    width: fit-content;
  }
}

@media (max-width: 576px) {
  .cta-section {
    padding: 28px 0 36px;
  }

  .cta-box {
    padding: 22px;
    border-radius: 18px;
  }

  .cta-media {
    height: 150px;
  }

  .cta-copy h2 {
    font-size: 29px;
  }

  .cta-copy p {
    font-size: 14px;
  }

  .cta-btn {
    width: 100%;
  }
}

/* Contact */
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 38px 0 54px;
  background: #fff;
  overflow: hidden;
}

.contact-grid {
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.05fr 1.15fr;
  gap: 22px;
  align-items: stretch;
}

.contact-info,
.map-card,
.contact-form {
  min-height: 430px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.055);
  overflow: hidden;
}

.contact-info {
  padding: 38px 32px;
}

.contact-info h2 {
  margin: 0 0 16px;
  color: #111;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.04;
  font-weight: 900;
  letter-spacing: -1px;
}

.contact-info p {
  margin: 0 0 28px;
  color: #555;
  font-size: 15px;
  line-height: 1.75;
}

.contact-info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.contact-info li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-info li i {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(241, 90, 22, 0.08);
  color: #f15a16;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.contact-info li span {
  color: #333;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 600;
}

/* map */
.map-card {
  position: relative;
  background: #f7f6f3;
}

.map-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
  filter: grayscale(0.15) contrast(1.02);
}

.map-card a {
  position: absolute;
  right: 20px;
  bottom: 20px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 50px;
  background: #111;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.map-card a:hover {
  background: #f15a16;
  color: #fff;
}

/* form */
.contact-form {
  padding: 38px 32px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(0, 0, 0, 0.11);
  border-radius: 12px;
  background: #fafafa;
  padding: 0 15px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  transition: 0.25s ease;
}

.form-grid textarea {
  grid-column: span 2;
  min-height: 126px;
  padding-top: 15px;
  resize: none;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #f15a16;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(241, 90, 22, 0.08);
}

.full-btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

/* responsive */
@media (max-width: 1199px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 30px 0 42px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-info,
  .map-card,
  .contact-form {
    min-height: auto;
    border-radius: 18px;
  }

  .contact-info,
  .contact-form {
    padding: 28px 22px;
  }

  .map-card img {
    min-height: 300px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-grid textarea {
    grid-column: span 1;
  }
}

@media (max-width: 420px) {
  .contact-info h2 {
    font-size: 27px;
  }

  .contact-info li span {
    font-size: 13.5px;
  }
}
/* Footer */
/* ================= FOOTER ================= */

.footer {
  padding: 56px 0 0;
  background:
    radial-gradient(circle at 12% 0%, rgba(241, 90, 22, 0.18), transparent 28%),
    linear-gradient(180deg, #111 0%, #070707 100%);
  color: #fff;
  overflow: hidden;
}

.footer-grid {
  max-width: 1600px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.85fr 0.8fr 1.2fr;
  gap: 42px;
  padding-bottom: 44px;
}

.footer-logo {
  width: 160px;
  max-width: 100%;
  margin-bottom: 22px;
  filter: brightness(0) invert(1);
}

.footer-brand p,
.footer-newsletter p,
.footer-grid p {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.75;
}

.footer-grid h4 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.footer-grid a {
  width: fit-content;
  display: flex;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  transition: 0.25s ease;
}

.footer-grid a:hover {
  color: #f15a16;
  transform: translateX(4px);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.socials a {
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

.socials a:hover {
  background: #f15a16;
  color: #fff;
  transform: translateY(-3px);
}

.newsletter {
  height: 52px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.newsletter input {
  flex: 1;
  height: 100%;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  padding: 0 18px;
  color: #fff;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.newsletter button {
  width: 54px;
  height: 54px;
  border: 0;
  background: #f15a16;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  max-width: 1600px;
  margin-inline: auto;
  min-height: 72px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.56);
  text-decoration: none;
  font-size: 13px;
  transition: 0.25s ease;
}

.footer-bottom a:hover {
  color: #f15a16;
}

/* responsive */
@media (max-width: 1199px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 34px;
  }

  .footer-newsletter {
    grid-column: span 2;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 22px;
    padding-bottom: 34px;
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: auto;
    padding: 22px 0;
    display: block;
  }

  .footer-bottom div {
    margin-top: 12px;
    gap: 18px;
    flex-wrap: wrap;
  }
}

@media (max-width: 420px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .footer-logo {
    width: 145px;
  }
}

/* footer end */

/* floting btn */
/* ================= FLOATING BUTTONS ================= */

.whatsapp-btn,
.back-top {
  position: fixed;
  right: 22px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transition: 0.3s ease;
}

.whatsapp-btn {
  bottom: 92px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
}

.back-top {
  bottom: 28px;
  background: #111;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.back-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-btn:hover {
  color: #fff;
  background: #1ebe5d;
  transform: translateY(-4px) scale(1.04);
}

.back-top:hover {
  background: #f15a16;
  color: #fff;
  transform: translateY(-4px);
}

@media (max-width: 576px) {
  .whatsapp-btn,
  .back-top {
    right: 16px;
    width: 46px;
    height: 46px;
  }

  .whatsapp-btn {
    bottom: 82px;
    font-size: 22px;
  }

  .back-top {
    bottom: 24px;
    font-size: 18px;
  }
}

/* floting btn  end */

/* ================= HERO REDESIGN ================= */

.hero-section {
  position: relative;
  min-height: calc(100vh - 105px);
  overflow: hidden;
  background: #050607;
  display: flex;
  align-items: center;
  padding: 120px 0 110px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
  transform: scale(1.02);
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.94) 0%,
    rgba(0, 0, 0, 0.86) 23%,
    rgba(0, 0, 0, 0.56) 43%,
    rgba(0, 0, 0, 0.16) 68%,
    rgba(0, 0, 0, 0.05) 100%
  ); */
}

.hero-soft-curve {
  position: absolute;
  top: -120px;
  left: 42%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  z-index: 3;
  opacity: 0.55;
  pointer-events: none;
}

.hero-soft-curve::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.hero-content-wrap {
  position: relative;
  z-index: 5;
  width: 100%;
}

.hero-copy {
  max-width: 660px;
  color: #fff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-badge span {
  width: 6px;
  height: 6px;
  background: #c96d2d;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(201, 109, 45, 0.16);
}

.hero-copy h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(46px, 5.4vw, 92px);
  line-height: 0.98;
  letter-spacing: -2px;
  font-weight: 800;
  color: #fff;
}

.hero-copy h1 span {
  display: block;
  margin-top: 8px;
  color: #c96d2d;
}

.hero-copy p {
  max-width: 520px;
  margin: 28px 0 0;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.hero-points {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-top: 38px;
  color: #fff;
}

.hero-points div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.hero-points i {
  color: #c96d2d;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 30px;
  border-radius: 0;
  background: #c96d2d;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.35s ease;
  box-shadow: 0 16px 38px rgba(201, 109, 45, 0.28);
}

.primary-btn:hover {
  background: #0b0b0b;
  color: #fff;
  transform: translateY(-3px);
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.story-link span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
}

.story-link:hover {
  color: #c96d2d;
}

.story-link:hover span {
  background: #c96d2d;
  border-color: #c96d2d;
  color: #fff;
}

.trusted-strip {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 7;
  width: min(1320px, calc(100% - 60px));
  min-height: 86px;
  padding: 18px 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  display: grid;
  grid-template-columns: 1.25fr repeat(7, 1fr) 0.8fr;
  align-items: center;
  gap: 24px;
}

.trusted-title {
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #111;
}

.brand-word {
  text-align: center;
  color: #161616;
  font-size: 22px;
  font-weight: 800;
  opacity: 0.82;
}

.brand-word.serif,
.brand-word.burberry,
.brand-word.replay {
  font-family: Georgia, serif;
  font-weight: 600;
}

.brand-word.hm {
  font-style: italic;
}

.brand-word.denim,
.brand-word.diesel {
  font-size: 18px;
  letter-spacing: -0.5px;
}

.trusted-more {
  font-size: 11px;
  line-height: 1.35;
  color: #444;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 1199px) {
  .trusted-strip {
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 40px auto 0;
    width: calc(100% - 40px);
  }

  .hero-section {
    display: block;
    padding: 110px 0 40px;
  }
}

@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 90px 0 35px;
  }

  .hero-bg-img {
    object-position: 65% center;
  }

  .hero-dark-overlay {
    /* background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.82) 45%,
      rgba(0, 0, 0, 0.35) 100%
    ); */
  }

  .hero-copy {
    max-width: 560px;
  }

  .trusted-strip {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 72px 0 30px;
  }

  .hero-bg-img {
    object-position: 72% center;
  }

  .hero-copy h1 {
    font-size: 42px;
    letter-spacing: -1px;
  }

  .hero-copy p {
    font-size: 15px;
  }

  .hero-points {
    gap: 16px;
    margin-top: 28px;
  }

  .hero-actions {
    margin-top: 34px;
    gap: 16px;
  }

  .trusted-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 22px;
    gap: 18px;
  }
}

@media (max-width: 480px) {
  .hero-copy h1 {
    font-size: 36px;
  }

  .primary-btn {
    width: 100%;
  }

  .story-link {
    width: 100%;
    justify-content: center;
  }

  .trusted-strip {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ===== FIX RESPONSIVE HERO + MARQUEE ===== */

html,
body {
  overflow-x: hidden;
}

.container-wide {
  width: min(100% - 40px, 1320px);
  margin-inline: auto;
}

.hero-section.hero-bg {
  position: relative;
  min-height: calc(100vh - 120px);
  padding: 120px 0 120px;
  overflow: hidden;
  background: #050505;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 1;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

}

.hero-content-wrap {
  position: relative;
  z-index: 5;
}

.hero-copy {
  max-width: 640px;
  color: #fff;
}

.hero-copy h1 {
  font-size: clamp(42px, 5vw, 82px);
  line-height: 1.02;
  letter-spacing: -1.8px;
  margin: 0;
}

.hero-copy h1 span {
  display: block;
  color: #c96d2d;
}

.hero-copy p {
  max-width: 520px;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}

.hero-badge {
  max-width: fit-content;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* marquee strip */
.trusted-marquee-wrap {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 9;
  width: min(1320px, calc(100% - 40px));
  min-height: 82px;
  padding: 16px 26px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  gap: 34px;
  overflow: hidden;
}

.trusted-title {
  min-width: 170px;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: #111;
}

.trusted-marquee {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.trusted-marquee::before,
.trusted-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 70px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.trusted-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}

.trusted-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #fff, transparent);
}

.trusted-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 60px;
  animation: brandMarquee 22s linear infinite;
}

.trusted-track span {
  white-space: nowrap;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  opacity: 0.78;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* tablet */
@media (max-width: 991px) {
  .hero-section.hero-bg {
    min-height: auto;
    padding: 95px 0 40px;
  }

  .hero-bg-img {
    object-position: 70% center;
  }

  .hero-dark-overlay {
    /* background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 45%,
      rgba(0, 0, 0, 0.38) 100%
    ); */
  }

  .trusted-marquee-wrap {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 50px auto 0;
    width: min(100% - 40px, 1320px);
  }
}

/* mobile */
@media (max-width: 576px) {
  .container-wide {
    width: 100%;
    padding-inline: 20px;
  }

  .hero-section.hero-bg {
    padding: 72px 0 28px;
    min-height: auto;
  }

  .hero-bg-img {
    object-position: 76% center;
  }

  .hero-dark-overlay {
    /* background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.88) 58%,
      rgba(0, 0, 0, 0.45) 100%
    ); */
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 8px 13px;
    max-width: 100%;
    white-space: normal;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -0.8px;
  }

  .hero-copy p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 92%;
  }

  .hero-points {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-points div {
    font-size: 13px;
  }

  .hero-actions {
    margin-top: 30px;
    gap: 14px;
  }

  .primary-btn {
    width: 100%;
    min-height: 52px;
  }

  .story-link {
    width: 100%;
    justify-content: center;
  }

  .trusted-marquee-wrap {
    width: calc(100% - 30px);
    padding: 14px 0;
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    border-radius: 12px;
    margin-top: 36px;
  }

  .trusted-title {
    min-width: auto;
    padding-inline: 18px;
    margin-bottom: 12px;
    font-size: 11px;
  }

  .trusted-marquee {
    width: 100%;
  }

  .trusted-track {
    gap: 42px;
    animation-duration: 18s;
  }

  .trusted-track span {
    font-size: 18px;
  }
}

/* extra small 320px */
@media (max-width: 360px) {
  .container-wide {
    padding-inline: 16px;
  }

  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-copy p {
    max-width: 100%;
  }
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.trusted-track img {
  height: 32px;
  width: auto;
  object-fit: contain;
  /* opacity:.7; */
  /* filter:grayscale(100%); */
  transition: 0.35s;
  flex-shrink: 0;
}

.trusted-track img:hover {
  /* opacity:1; */
  filter: none;
  transform: scale(1.08);
}

@media (max-width: 768px) {
  .trusted-track {
    gap: 40px;
  }

  .trusted-track img {
    height: 24px;
  }
}
.trusted-marquee {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 70px;
  width: max-content;
  flex-wrap: nowrap;
  animation: brandMarquee 30s linear infinite;
}

.trusted-track img {
  height: 52px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  transition: 0.35s ease;
}

.trusted-track {
  gap: 90px; /* logos ke beech thoda aur space */
}
.trusted-track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .trusted-track img {
    height: 32px;
  }

  .trusted-track {
    gap: 45px;
  }
}

.trusted-track img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.08);
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 35px));
  }
}
