:root {
  --orange: #F7931E;
  --orange-end: #FFBA00;
  --orange-dark: #d4790c;
  --orange-light: #FFF4E6;
  --orange-start: #F7931E;
  --black: #111111;
  --white: #FFFFFF;
  --off-white: #F8F6F3;
  --light-grey: #F8F6F3;
  --dark-bg: #111111;
  --text-dark: #111111;
  --text-body: #444444;
  --text-muted: #888888;
  --border: #EBEBEB;
  --border-warm: #F0E8DC;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 12px 40px rgba(247, 147, 30, 0.18);
  --transition: all 0.28s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Mulish', sans-serif;
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7
}

.gradient-text {
  background: linear-gradient(90deg, var(--orange), var(--orange-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text
}

.text-primary-accent {
  color: var(--orange) !important
}

.bg-light-grey {
  background-color: var(--off-white) !important
}

.section-padding {
  padding: 88px 0
}

.fw-600 {
  font-weight: 600 !important
}



/* Eyebrow tag — small label above headings */
.section-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 4px;
  margin-bottom: 14px
}

.section-tag-light {
  background: rgba(255, 255, 255, .15);
  color: #fff
}

.section-heading {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.28;
  margin-bottom: 14px;
  letter-spacing: -0.3px
}

.section-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.85
}

.orange-underline {
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 20px
}

/* BUTTONS */
.btn {
  font-family: 'Mulish', sans-serif;
  font-weight: 700;
  border-radius: 6px;
  padding: 12px 28px;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  letter-spacing: .2px
}

.btn-gradient-primary {
  background: var(--orange);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(247, 147, 30, .3)
}

.btn-gradient-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 8px 24px rgba(247, 147, 30, .45);
  transform: translateY(-2px)
}

.btn-outline-dark-custom {
  background: transparent;
  color: var(--black);
  border: 1.5px solid #ccc
}

.btn-outline-dark-custom:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
  transform: translateY(-2px)
}

.btn-become-distributor {
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(247, 147, 30, .28);
  transition: var(--transition)
}

.btn-become-distributor:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px)
}

.btn-read-more {
  background: transparent;
  color: var(--orange);
  border: 1.5px solid var(--orange);
  padding: 8px 20px;
  font-size: 13px;
  border-radius: 6px;
  transition: var(--transition)
}

.btn-read-more:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  transform: translateY(-2px)
}

.btn-cta-apply {
  background: #fff;
  color: var(--orange);
  border: none;
  font-size: 16px;
  padding: 14px 38px;
  font-weight: 800;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  transition: var(--transition)
}

.btn-cta-apply:hover {
  background: var(--black);
  color: #fff;
  transform: translateY(-2px)
}

.ripple-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .22);
  border-radius: inherit;
  transform: scale(0);
  opacity: 0;
  transition: transform .4s, opacity .4s
}

.ripple-btn:active::after {
  transform: scale(2.5);
  opacity: 0;
  transition: 0s
}

/* TOP HEADER */
#top-header {
  background: var(--black);
  overflow: hidden
}

.topbar-marquee {
  background: var(--orange);
  padding: 7px 0;
  overflow: hidden;
  white-space: nowrap
}

.marquee-track {
  display: inline-block;
  animation: marqueeScroll 32s linear infinite;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
  padding-left: 100%
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0)
  }

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

.topbar-main {
  padding: 10px 0
}

.top-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition)
}

.top-contact-pill:hover {
  color: var(--orange-end)
}

.top-pill-icon {
  width: 28px;
  height: 28px;
  background: var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0
}

.topbar-badge {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, .06);
  padding: 5px 12px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .1)
}

.topbar-socials {
  display: flex;
  gap: 8px
}

.topbar-socials a {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, .08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .1)
}

.topbar-socials a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent
}

/* NAVBAR */
#mainNavbar {
  background: #fff !important;
  padding: 8px 0;
  transition: all .3s ease;
  box-shadow: 0 1px 0 var(--border)
}

#mainNavbar.navbar-scrolled {
  padding: 5px 0;
  box-shadow: 0 2px 16px rgba(0, 0, 0, .08)
}

.navbar-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: var(--transition)
}

.navbar-scrolled .navbar-logo-img {
  height: 42px
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-body) !important;
  padding: 8px 14px !important;
  transition: var(--transition)
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important
}

/* ── HERO CAROUSEL ── */
.hero-carousel-section {
  position: relative;
  overflow: hidden
}

.hero-carousel {
  width: 100%
}

/* Each slide wrapper — 1920×800 aspect ratio (12:5) */
.hero-slide {
  position: relative;
  width: 100%;
  aspect-ratio: 1920/800;
  /* native image ratio */
  min-height: 480px;
  /* never collapse too small */
  max-height: 820px;
  /* cap on very large screens */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Dark gradient overlay — left heavy, fades to right */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(10, 10, 10, .80) 0%,
      rgba(10, 10, 10, .58) 48%,
      rgba(10, 10, 10, .18) 100%);
  z-index: 0;
}

/* Content sits above overlay */
.hero-slide-content {
  position: relative;
  z-index: 1;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.hc-row {
  width: 100%;
  padding: 64px 0 96px;
}

/* Eyebrow tag */
.hc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 22px;
}

/* Main heading */
.hc-heading {
  font-size: clamp(34px, 5.5vw, 68px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hc-accent {
  color: var(--orange)
}

/* Subtext */
.hc-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .78);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 26px;
}

/* Feature pills */
.hc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hc-pills span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .18);
  backdrop-filter: blur(4px);
}

.hc-pills span i {
  color: var(--orange);
  font-size: 11px
}

/* CTA buttons */
.hc-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.hc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(247, 147, 30, .45);
  transition: var(--transition);
  border: none;
}

.hc-btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-2px)
}

.hc-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .55);
  transition: var(--transition);
}

.hc-btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border-color: #fff
}

/* Prev / next arrow buttons */
.hero-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  z-index: 10;
}

.hero-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange)
}

.hero-prev {
  left: 24px
}

.hero-next {
  right: 24px
}

.hero-nav-btn i {
  pointer-events: none
}

/* hide Bootstrap's default icon spans */
.hero-nav-btn .carousel-control-prev-icon,
.hero-nav-btn .carousel-control-next-icon {
  display: none
}

/* Dot indicators — sit just above the stats bar */
.hero-indicators {
  bottom: 70px;
  z-index: 20;
  display: flex;
  gap: 8px;
  margin: 0;
  justify-content: flex-end;
  padding-right: calc((100% - min(1320px, 100% - 48px)) / 2 + 12px);
}

.hero-indicators [data-bs-slide-to] {
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .35);
  border: none;
  opacity: 1;
  transition: all .3s ease;
  flex-shrink: 0;
}

.hero-indicators [data-bs-slide-to].active {
  width: 48px;
  background: var(--orange);
}

/* ── STATS BAR ── */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, .78);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  z-index: 20;
}

.hc-stats-inner {
  display: flex;
  align-items: stretch;
  padding: 0;
}

/* Left brand accent block */
.hc-stats-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px 16px 20px;
  background: var(--orange);
  flex-shrink: 0;
  min-width: 160px;
}

.hc-stats-brand i {
  font-size: 22px;
  color: #fff;
  opacity: .9
}

.hc-stats-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.hc-stats-brand-text strong {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  letter-spacing: .3px
}

.hc-stats-brand-text span {
  font-size: 10px;
  color: rgba(255, 255, 255, .75);
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase
}

/* Individual stat items */
.hc-stat {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 12px;
  text-align: left;
  transition: background .25s;
}

.hc-stat:hover {
  background: rgba(255, 255, 255, .04)
}

.hc-stat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(247, 147, 30, .15);
  border: 1px solid rgba(247, 147, 30, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--orange);
  transition: all .25s;
}

.hc-stat:hover .hc-stat-icon {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.hc-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2
}

.hc-stat-num {
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
  letter-spacing: -.5px;
}

.hc-stat-lbl {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, .52);
  letter-spacing: .8px;
  text-transform: uppercase;
}

.hc-stat-divider {
  width: 1px;
  background: rgba(255, 255, 255, .08);
  align-self: stretch;
  flex-shrink: 0;
}

/* Slide-in animation for text on active slide */
.carousel-item.active .hc-eyebrow,
.carousel-item.active .hc-heading,
.carousel-item.active .hc-sub,
.carousel-item.active .hc-pills,
.carousel-item.active .hc-btns {
  animation: hcFadeUp .65s ease both;
}

.carousel-item.active .hc-heading {
  animation-delay: .1s
}

.carousel-item.active .hc-sub {
  animation-delay: .2s
}

.carousel-item.active .hc-pills {
  animation-delay: .3s
}

.carousel-item.active .hc-btns {
  animation-delay: .38s
}

@keyframes hcFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

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

/* Bootstrap carousel transition — zoom-pan */
.hero-carousel .carousel-item {
  transition: transform .7s ease
}

/* Keep old .badge-tag for other uses */
.badge-tag {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(247, 147, 30, .2)
}

.hero-heading {
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -.5px
}

.hero-subtext {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8
}

.stat-item {
  display: flex;
  flex-direction: column
}

.stat-number {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
  color: var(--orange)
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .5px;
  margin-top: 4px
}

.hero-img-wrap {
  position: relative;
  display: inline-block;
  max-width: 600px;
  width: 100%
}

.hero-real-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  object-fit: cover;
  display: block
}

.hero-img-placeholder {
  width: 100%;
  min-height: 380px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-warm)
}

.hero-door-icon {
  font-size: 80px;
  color: var(--orange)
}

.img-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  color: var(--black);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .08)
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  border: 1px solid var(--border);
  animation: floatAnim 3s ease-in-out infinite
}

.float-card-1 {
  bottom: 32px;
  left: -60px;
  animation-delay: 0s
}

.float-card-2 {
  top: 38%;
  right: -60px;
  animation-delay: 1.5s
}

@keyframes floatAnim {

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

  50% {
    transform: translateY(-8px)
  }
}

.hero-blob {
  display: none
}

.hero-section .container {
  position: relative;
  z-index: 1
}

/* Responsive carousel — 1920×800 image */
@media(max-width:1199.98px) {
  .hero-slide {
    max-height: 680px
  }

  .hc-stats-brand {
    min-width: 140px;
    padding: 16px 20px 16px 16px
  }
}

@media(max-width:991.98px) {
  .hero-slide {
    min-height: 380px;
    max-height: 520px
  }

  .hc-row {
    padding: 50px 0 84px
  }

  .hc-heading {
    font-size: clamp(24px, 5vw, 40px)
  }

  .hc-sub {
    font-size: 13px;
    max-width: 420px
  }

  .hero-indicators {
    padding-right: 16px;
    padding-left: 0;
    bottom: 58px
  }

  .hc-stats-brand {
    display: none
  }
}

@media(max-width:767.98px) {
  .hero-slide {
    min-height: 300px;
    max-height: 400px;
    aspect-ratio: auto
  }

  .hc-row {
    padding: 36px 0 72px
  }

  .hc-heading {
    font-size: clamp(22px, 6vw, 32px);
    margin-bottom: 10px
  }

  .hc-sub {
    display: none
  }

  .hc-pills {
    display: none
  }

  .hc-btns {
    gap: 8px
  }

  .hc-btn-primary,
  .hc-btn-outline {
    padding: 10px 18px;
    font-size: 13px
  }

  .hero-nav-btn {
    width: 38px;
    height: 38px;
    font-size: 13px
  }

  .hero-prev {
    left: 10px
  }

  .hero-next {
    right: 10px
  }

  .hero-indicators {
    bottom: 52px
  }

  .hc-stat {
    padding: 12px 8px;
    gap: 8px
  }

  .hc-stat-icon {
    width: 32px;
    height: 32px;
    font-size: 13px
  }

  .hc-stat-num {
    font-size: 18px
  }

  .hc-stat-lbl {
    font-size: 9px
  }
}

@media(max-width:480px) {
  .hc-eyebrow {
    font-size: 9px;
    padding: 4px 10px
  }

  .hc-stat-divider {
    display: none
  }

  .hc-stats-inner {
    flex-wrap: wrap
  }

  .hc-stat {
    min-width: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .hc-stat:nth-child(n+5) {
    border-bottom: none
  }
}

/* ══════════════════════════════════════════
   PRODUCT HIGHLIGHTS — ENHANCED
══════════════════════════════════════════ */
.prod-highlights {
  background: var(--off-white);
  padding: 90px 0 80px
}

/* Header */
.prh-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
  flex-wrap: wrap
}

.prh-header-left {
  flex: 1;
  min-width: 260px
}

.prh-header-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 520px
}

.prh-header-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
  padding-top: 8px
}

.prh-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-body);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.prh-trust-pill i {
  color: var(--orange);
  font-size: 13px
}

/* Grid */
.prh-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 36px
}

/* Card */
.prh-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .3s ease;
  position: relative
}

.prh-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-end));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
  z-index: 1
}

.prh-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(247, 147, 30, .14);
  border-color: rgba(247, 147, 30, .3)
}

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

/* Card Image */
.prh-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--off-white)
}

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

.prh-card:hover .prh-card-img img {
  transform: scale(1.06)
}

.prh-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: var(--orange-light)
}

.prh-img-fallback svg {
  width: 56px;
  height: 56px;
  color: var(--orange)
}

.prh-card-img.prh-img-error img {
  display: none
}

.prh-card-img.prh-img-error .prh-img-fallback {
  display: flex
}

/* Badge on image */
.prh-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--orange);
  color: #fff;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18)
}

.prh-badge-teal {
  background: #0891b2
}

.prh-badge-green {
  background: #16a34a
}

.prh-badge-dark {
  background: #374151
}

/* Card Body */
.prh-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.prh-card-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px
}

.prh-num {
  font-size: 11px;
  font-weight: 900;
  color: var(--orange);
  background: var(--orange-light);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: .5px;
  flex-shrink: 0
}

.prh-title {
  font-size: 15.5px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.25;
  margin: 0
}

.prh-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 14px
}

/* Specs list */
.prh-specs {
  list-style: none;
  padding: 12px 0 16px;
  margin: 0;
  border-top: 1px solid var(--border)
}

.prh-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-body);
  padding: 3px 0
}

.prh-specs li i {
  color: var(--orange);
  font-size: 11px;
  flex-shrink: 0
}

/* Card Footer */
.prh-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.prh-link {
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  transition: all .22s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px
}

.prh-link:hover {
  color: var(--orange-dark);
  gap: 9px
}

.prh-quote {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--orange);
  padding: 6px 14px;
  border-radius: 5px;
  text-decoration: none;
  transition: all .22s ease;
  white-space: nowrap
}

.prh-quote:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 4px 14px rgba(247, 147, 30, .35)
}

/* Bottom CTA Strip */
.prh-cta-strip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.prh-cta-left {
  display: flex;
  align-items: center;
  gap: 18px
}

.prh-cta-left>i {
  font-size: 28px;
  color: var(--orange);
  flex-shrink: 0
}

.prh-cta-left div {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.prh-cta-left strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.2
}

.prh-cta-left span {
  font-size: 13px;
  color: var(--text-muted)
}

.prh-cta-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0
}

.prh-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .22s ease
}

.prh-cta-wa:hover {
  background: #1ebe5a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35)
}

.prh-cta-wa i {
  font-size: 16px
}

.prh-cta-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .22s ease
}

.prh-cta-all:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(247, 147, 30, .35)
}

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

@media(max-width:768px) {
  .prh-header {
    flex-direction: column
  }

  .prh-header-right {
    flex-direction: row;
    flex-wrap: wrap
  }

  .prh-cta-strip {
    flex-direction: column;
    align-items: flex-start
  }

  .prh-cta-right {
    width: 100%
  }
}

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

  .prh-cta-right {
    flex-direction: column
  }

  .prh-cta-wa,
  .prh-cta-all {
    width: 100%;
    justify-content: center
  }
}

/* ══════════════════════════════════════════
   LATEST PROJECTS SECTION
══════════════════════════════════════════ */
.projects-section {
  background: #fff
}

/* Grid: 3 columns, 2 rows */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

/* Base card */
.proj-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s ease;
  display: flex;
  flex-direction: column
}

.proj-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .1);
  border-color: rgba(247, 147, 30, .25)
}

/* Image area */
.proj-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  background: var(--off-white);
  flex-shrink: 0
}

.proj-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
  display: block
}

.proj-card:hover .proj-img-wrap img {
  transform: scale(1.06)
}

.proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 16px;
  transition: background .3s ease
}

.proj-card:hover .proj-overlay {
  background: rgba(0, 0, 0, .25)
}

.proj-view-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transform: scale(0) rotate(-45deg);
  transition: transform .3s ease;
  box-shadow: 0 4px 14px rgba(247, 147, 30, .5)
}

.proj-card:hover .proj-view-btn {
  transform: scale(1) rotate(0deg)
}

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

/* Card body */
.proj-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1
}

.proj-cat {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: block
}

.proj-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  line-height: 1.35;
  margin-bottom: 8px
}

.proj-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0;
  flex: 1
}

/* Featured card (3rd — orange accent) */
.proj-card-featured {
  border-color: var(--orange)
}

.proj-card-featured .proj-body {
  background: var(--orange)
}

.proj-card-featured .proj-cat {
  color: #fff;
  opacity: .8
}

.proj-card-featured .proj-title {
  color: #fff
}

.proj-card-featured .proj-desc {
  color: rgba(255, 255, 255, .82)
}

/* CTA placeholder card */
.proj-card-cta {
  background: var(--off-white);
  border: 2px dashed var(--border-warm);
  justify-content: center;
  align-items: stretch;
  min-height: 300px
}

.proj-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  gap: 14px;
  height: 100%
}

.proj-cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px
}

.proj-cta-icon i {
  font-size: 26px;
  color: var(--orange)
}

.proj-cta-title {
  font-size: 17px;
  font-weight: 900;
  color: var(--black);
  line-height: 1.3;
  margin: 0
}

.proj-cta-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0
}

.proj-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 13.5px;
  font-weight: 800;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .22s ease;
  margin-top: 4px
}

.proj-cta-btn:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(247, 147, 30, .35)
}

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

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

  .proj-img-wrap {
    height: 200px
  }
}

/* ABOUT */
.about-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%
}

.about-real-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  display: block;
  min-height: 380px
}

.about-img-placeholder {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--border-warm)
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--orange);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(247, 147, 30, .4)
}

.exp-number {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  display: block
}

.exp-label {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  opacity: .92
}

.about-list {
  list-style: none;
  padding: 0
}

.about-list li {
  padding: 9px 0;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  color: var(--text-body)
}

/* PRODUCTS */
.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(247, 147, 30, .3)
}

.product-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: var(--off-white)
}

.product-real-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block
}

.product-card:hover .product-real-img {
  transform: scale(1.05)
}

.product-img-fallback {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center
}

.product-img-wrap.img-error .product-real-img {
  display: none
}

.product-img-wrap.img-error .product-img-fallback {
  display: flex
}

.product-icon {
  font-size: 60px;
  color: var(--orange)
}

.product-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column
}

.product-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 10px
}

.product-badge-dark {
  background: #F4F4F4;
  color: #444
}

.product-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1.3
}

.product-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px
}

/* SPEC TABLE */
.spec-table-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border)
}

.spec-table-heading {
  font-size: 17px;
  font-weight: 800;
  color: var(--black)
}

.spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px
}

.spec-table thead tr {
  background: var(--orange);
  color: #fff
}

.spec-table thead th {
  padding: 13px 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .2px
}

.spec-table thead th:first-child {
  border-radius: var(--radius) 0 0 0
}

.spec-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0
}

.spec-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: var(--transition)
}

.spec-table tbody tr:hover {
  background: var(--off-white)
}

.spec-table tbody td {
  padding: 12px 16px;
  color: var(--text-body);
  vertical-align: middle
}

.td-badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px
}

/* ADVANTAGES */
.adv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
  text-align: center
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(247, 147, 30, .25)
}

.adv-icon-wrap {
  width: 60px;
  height: 60px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--orange);
  transition: var(--transition)
}

.adv-card:hover .adv-icon-wrap {
  background: var(--orange);
  color: #fff
}

.adv-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px
}

.adv-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65
}

/* COMPARISON */
.comp-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition)
}

.comp-winner {
  border: 2px solid var(--orange);
  box-shadow: 0 8px 32px rgba(247, 147, 30, .16)
}

.comp-header {
  background: var(--orange);
  color: #fff;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap
}

.comp-header-grey {
  background: #888
}

.comp-badge-best {
  margin-left: auto;
  background: rgba(255, 255, 255, .22);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  letter-spacing: .5px
}

.comp-list {
  list-style: none;
  padding: 18px 20px;
  margin: 0
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 13.5px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  color: var(--text-body)
}

.comp-list li:last-child {
  border-bottom: none
}

.comp-list li.yes {
  color: #2a6e2a
}

.comp-list li.yes i {
  color: #27ae60
}

.comp-list li.no {
  color: #7a2020
}

.comp-list li.no i {
  color: #e74c3c
}

.comp-list li.partial {
  color: #7a5a2d
}

.comp-list li.partial i {
  color: var(--orange)
}

/* VIDEO */
.video-section {
  background: var(--black);
  position: relative;
  overflow: hidden
}

.video-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 147, 30, .08) 0%, transparent 70%);
  pointer-events: none
}

.video-section .section-heading {
  color: #fff
}

.video-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .35)
}

.video-thumb-wrap {
  position: relative;
  cursor: pointer;
  display: block
}

.video-thumb-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: var(--transition)
}

.video-thumb-wrap:hover .video-overlay {
  background: rgba(0, 0, 0, .3)
}

.video-play-btn {
  width: 68px;
  height: 68px;
  background: var(--orange);
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 0 10px rgba(247, 147, 30, .2), 0 6px 24px rgba(247, 147, 30, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulsePing 2s ease-in-out infinite
}

.video-play-btn:hover {
  transform: scale(1.08)
}

@keyframes pulsePing {

  0%,
  100% {
    box-shadow: 0 0 0 10px rgba(247, 147, 30, .2), 0 6px 24px rgba(247, 147, 30, .45)
  }

  50% {
    box-shadow: 0 0 0 18px rgba(247, 147, 30, .08), 0 6px 24px rgba(247, 147, 30, .45)
  }
}

.video-label {
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .4px
}

.video-iframe-wrap {
  width: 100%
}

.video-iframe-wrap iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block
}

.video-content {
  padding-left: 20px
}

.video-heading {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.3
}

.video-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.8
}

.video-steps {
  display: flex;
  flex-direction: column;
  gap: 16px
}

.vstep {
  display: flex;
  align-items: flex-start;
  gap: 14px
}

.vstep-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  color: #fff
}

.vstep-text strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 2px
}

.vstep-text p {
  color: rgba(255, 255, 255, .55);
  font-size: 13px;
  margin: 0
}

/* PROCESS */
.process-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px
}

.process-step {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center
}

.step-circle {
  width: 56px;
  height: 56px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  z-index: 1;
  box-shadow: 0 4px 16px rgba(247, 147, 30, .35);
  transition: var(--transition);
  flex-shrink: 0
}

.process-step:hover .step-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(247, 147, 30, .5)
}

.step-connector {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: var(--border-warm);
  z-index: 0
}

.last-step .step-connector {
  display: none
}

.step-content {
  margin-top: 16px;
  padding: 0 8px
}

.step-icon {
  font-size: 20px;
  color: var(--orange);
  margin-bottom: 8px
}

.step-title {
  font-weight: 800;
  font-size: 13.5px;
  color: var(--black);
  margin-bottom: 5px
}

.step-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6
}

.install-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--border);
  transition: var(--transition)
}

.install-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(247, 147, 30, .25)
}

.install-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px
}

.install-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 5px
}

.install-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7
}

/* GALLERY */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center
}

.gal-filter {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Mulish', sans-serif
}

.gal-filter:hover,
.gal-filter.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 3px 12px rgba(247, 147, 30, .28)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px
}

.gal-wide {
  grid-column: span 2
}

.gal-tall {
  grid-row: span 2
}

.gal-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition)
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block
}

.gal-item:hover img {
  transform: scale(1.06)
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(247, 147, 30, .85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity .3s ease
}

.gal-item:hover .gal-overlay {
  opacity: 1
}

.gal-overlay i {
  color: #fff;
  font-size: 24px;
  margin-bottom: 6px
}

.gal-overlay span {
  color: #fff;
  font-size: 13px;
  font-weight: 700
}

.gal-item.hide {
  display: none
}

/* LIGHTBOX */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  flex-direction: column;
  gap: 16px
}

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

#lightboxImg {
  max-width: 85vw;
  max-height: 75vh;
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  object-fit: contain
}

.lightbox-caption {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 600
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, .1);
  border: none;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center
}

.lightbox-close:hover {
  background: var(--orange-start)
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(247, 147, 30, .8);
  border: none;
  color: #fff;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center
}

.lightbox-prev {
  left: 20px
}

.lightbox-next {
  right: 20px
}

.lightbox-nav:hover {
  background: var(--orange-start)
}

/* WHY */
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .28s ease
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(247, 147, 30, .25)
}

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

.why-icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: var(--orange);
  transition: var(--transition)
}

.why-card:hover .why-icon-wrap {
  background: var(--orange);
  color: #fff
}

.why-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px
}

.why-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.7
}

/* ══════════════════════════════════════════
   TESTIMONIALS — What Our Clients Say (Carousel, 3 cards per slide)
══════════════════════════════════════════ */
.testimonials-section {
  background: var(--off-white)
}

.testimonials-carousel {
  position: relative;
  padding-bottom: 56px
}

.testimonials-carousel-three .carousel-inner {
  overflow: visible
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: var(--transition)
}

.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(247, 147, 30, .2)
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  color: var(--orange-light);
  opacity: .9
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
  flex: 1;
  font-style: italic
}

.testimonial-rating {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.testimonial-rating .fa-star-half-alt {
  opacity: .9
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: .5px
}

.testimonial-author strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 2px
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600
}

.testimonial-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0
}

.testimonial-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0
}

.testimonial-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff
}

.testimonial-indicators {
  position: static;
  margin: 0
}

.testimonial-indicators button {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  background: transparent;
  color: var(--text-body);
  border: 1px solid var(--border) !important;
  opacity: 1;
  margin: 0 5px;
  transition: var(--transition);
  text-indent: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 0 !important;
  box-sizing: border-box !important;
  flex: 0 0 auto !important;
}

.testimonial-indicators button.active {
  background: var(--orange) !important;
  color: #fff !important;
  border-color: var(--orange) !important;
  transform: scale(1.1)
}

@media(max-width:768px) {
  .testimonial-card {
    padding: 24px 20px 20px;
    min-height: 240px
  }

  .testimonial-text {
    font-size: 14px
  }
}

@media(max-width:576px) {
  .testimonial-card {
    padding: 22px 18px 18px;
    min-height: 220px
  }
}

/* CTA */
/* ══════════════════════════════════════════
   DISTRIBUTOR MAP SECTION — ENHANCED
══════════════════════════════════════════ */
.distmap-section {
  background: #0d1b2e;
  position: relative;
  overflow: hidden
}

.distmap-section--stats {
  overflow: visible
}

.distmap-section--stats .distmap-counter-bar {
  border-bottom: none
}

.distmap-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 147, 30, .08) 0%, transparent 70%);
  pointer-events: none
}

.distmap-section::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 147, 30, .05) 0%, transparent 70%);
  pointer-events: none
}

/* ── Counter bar ── */
.distmap-counter-bar {
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  padding: 22px 0
}

.distmap-counters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0;
  margin: 0
}

.distmap-counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  text-align: center;
  flex: 1 1 0;
  min-width: 0
}

.dmc-value {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  line-height: 1
}

.distmap-counter-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .12);
  flex-shrink: 0
}

.dmc-num {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1px
}

.dmc-plus {
  font-size: .5em;
  color: var(--orange);
  margin-left: 1px;
  margin-top: .15em;
  font-weight: 900
}

.dmc-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
  text-align: center
}

/* ── Body ── */
.distmap-body {
  padding: 72px 0 56px;
  position: relative;
  z-index: 1
}

/* LEFT content */
.distmap-content {
  display: flex;
  flex-direction: column;
  gap: 28px
}

.distmap-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(247, 147, 30, .1);
  border: 1px solid rgba(247, 147, 30, .2);
  padding: 6px 14px;
  border-radius: 4px;
  width: fit-content
}

.distmap-heading {
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin: 0
}

.distmap-heading span {
  color: var(--orange)
}

.distmap-sub {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.8;
  margin: 0
}

/* Feature list */
.distmap-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px
}

.distmap-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: var(--radius);
  transition: background .25s, border-color .25s
}

.distmap-features li:hover {
  background: rgba(247, 147, 30, .07);
  border-color: rgba(247, 147, 30, .2)
}

.dmf-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(247, 147, 30, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.dmf-icon i {
  font-size: 14px;
  color: var(--orange)
}

.distmap-features li strong {
  display: block;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px
}

.distmap-features li span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.6
}

/* Action buttons */
.distmap-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 4px
}

.distmap-btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s
}

.distmap-btn-primary:hover {
  background: var(--orange-dark);
  color: #fff;
  box-shadow: 0 6px 22px rgba(247, 147, 30, .4)
}

.distmap-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .7);
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .2);
  padding-bottom: 2px;
  transition: all .22s
}

.distmap-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .6)
}

/* ── Map right ── */
.distmap-map-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 20px auto;
  padding: 0;
  overflow: visible
}

/* Actual map PNG image */
.india-map-img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(.22) drop-shadow(0 0 40px rgba(247, 147, 30, .25));
  pointer-events: none;
  user-select: none
}

/* Pin base — positioned absolutely over image */
.mpin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3
}

.mpin-hit {
  position: relative;
  display: block;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none
}

.mpin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2px solid #fff;
  box-shadow: 0 0 8px rgba(247, 147, 30, .8);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s, width .2s, height .2s
}

.mpin-count {
  display: none;
  font-size: 11px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  font-family: Mulish, sans-serif
}

.mpin:hover .mpin-dot,
.mpin.is-active .mpin-dot {
  transform: scale(1.4)
}

.mpin.is-active {
  z-index: 8
}

.mpin.is-active .mpin-dot {
  width: 28px;
  height: 28px;
  transform: none;
  border-width: 2px;
  box-shadow: 0 0 16px rgba(247, 147, 30, 1), 0 0 28px rgba(247, 147, 30, .45)
}

.mpin.is-active .mpin-count {
  display: inline
}

.mpin.is-active .mpin-dot-hq {
  width: 32px;
  height: 32px
}

.mpin-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(247, 147, 30, .25);
  animation: pinPulse 2.5s ease-out infinite;
  z-index: 1;
  pointer-events: none
}

@keyframes pinPulse {
  0% {
    transform: translate(-50%, -50%) scale(.4);
    opacity: .8
  }

  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0
  }
}

.mpin-dot-hq {
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 3px solid #fff;
  box-shadow: 0 0 14px rgba(247, 147, 30, 1), 0 0 28px rgba(247, 147, 30, .5)
}

.mpin-pulse-hq {
  width: 36px;
  height: 36px;
  background: rgba(247, 147, 30, .3);
  animation: pinPulseHQ 2s ease-out infinite
}

@keyframes pinPulseHQ {
  0% {
    transform: translate(-50%, -50%) scale(.4);
    opacity: .9
  }

  100% {
    transform: translate(-50%, -50%) scale(2.6);
    opacity: 0
  }
}

/* Popup card on pin click — real link to details */
.mpin-card {
  position: absolute;
  top: 50%;
  width: 230px;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 12px;
  background: rgba(13, 27, 46, .96);
  border: 1px solid rgba(247, 147, 30, .45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-50%) scale(.96);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
  text-align: left;
  text-decoration: none;
  color: inherit;
  z-index: 9
}

.mpin.is-active .mpin-card {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) scale(1)
}

.mpin-card:hover {
  border-color: var(--orange);
  color: inherit;
  text-decoration: none
}

.mpin-card-right {
  left: 24px
}

.mpin-card-left {
  right: 24px
}

.mpin-card-img {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: #1a2a40
}

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

.mpin-card-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px
}

.mpin-card-name {
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2
}

.mpin-card-city {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 2px
}

.mpin-card-line {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, .72);
  line-height: 1.35
}

.mpin-card-line > span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden
}

.mpin-card-line i {
  color: var(--orange);
  font-size: 10px;
  margin-top: 2px;
  flex-shrink: 0
}

.mpin-card-cta {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 800;
  color: var(--orange)
}

.mpin-card-cta i {
  font-size: 9px;
  margin-left: 2px
}

.mpin-card:hover .mpin-card-cta {
  text-decoration: underline
}

/* Always-visible city name next to pin */
.mpin-label {
  position: absolute;
  top: 50%;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  color: rgba(255, 255, 255, .92);
  background: rgba(13, 27, 46, .88);
  border: 1px solid rgba(247, 147, 30, .35);
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
  transform: translateY(-50%);
  backdrop-filter: blur(4px);
  letter-spacing: .02em;
  z-index: 4;
  max-width: 110px;
  overflow: hidden;
  text-overflow: ellipsis
}

.mpin-label-right {
  left: 14px
}

.mpin-label-left {
  right: 14px
}

/* Western/edge pins: keep labels inland (to the right of the dot) */
.mpin[data-city="Bathinda"] .mpin-label,
.mpin[data-city="Sirsa"] .mpin-label,
.mpin[data-city="Hisar"] .mpin-label,
.mpin[data-city="Jaipur"] .mpin-label,
.mpin[data-city="Ahmedabad"] .mpin-label,
.mpin[data-city="Mumbai"] .mpin-label {
  left: 14px;
  right: auto
}

.mpin.is-active .mpin-label {
  opacity: 0;
  visibility: hidden
}

.mpin-hq .mpin-label {
  border-color: rgba(247, 147, 30, .7);
  color: #fff
}

/* Legend */
.distmap-legend {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-top: 16px
}

.distmap-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .5)
}

.dml-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0
}

.dml-hq {
  background: var(--orange);
  box-shadow: 0 0 8px rgba(247, 147, 30, .7)
}

.dml-dealer {
  background: rgba(247, 147, 30, .5);
  border: 1.5px solid var(--orange)
}

/* Bottom ticker */
.distmap-ticker {
  background: #fff;
  border-top: 1px solid #f3e8d8;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap
}

.distmap-ticker span {
  font-size: 13.5px;
  color: #4b5563
}

.distmap-ticker a {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity .2s
}

.distmap-ticker a:hover {
  opacity: .8
}

/* Counter JS animation */
.dmc-num.counted {
  color: var(--orange)
}

/* Responsive */
@media(max-width:991px) {
  .distmap-body {
    padding: 48px 0 40px
  }

  .distmap-counter-item {
    padding: 10px 8px
  }

  .distmap-counter-item:first-child,
  .distmap-counter-item:last-child {
    align-items: center;
    text-align: center;
    padding-left: 8px;
    padding-right: 8px
  }
}

@media(max-width:768px) {
  .distmap-counters {
    gap: 0;
    flex-wrap: wrap
  }

  .distmap-counter-item {
    padding: 10px 16px
  }

  .distmap-counter-item:first-child,
  .distmap-counter-item:last-child {
    align-items: center;
    text-align: center;
    padding-left: 16px;
    padding-right: 16px
  }

  .distmap-counter-divider {
    display: none
  }

  .distmap-counters {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, .07)
  }

  .distmap-counter-item {
    background: #0d1b2e
  }
}

@media(max-width:480px) {
  .distmap-actions {
    flex-direction: column;
    align-items: flex-start
  }

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

/* CTA section */
.cta-section {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%;
  pointer-events: none
}

.cta-section .container {
  position: relative;
  z-index: 1
}

.cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .3);
  margin-bottom: 14px
}

.cta-heading {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px
}

.cta-subtext {
  font-size: 15px;
  color: rgba(255, 255, 255, .88);
  max-width: 580px;
  line-height: 1.8
}

.cta-benefits {
  list-style: none;
  padding: 0
}

.cta-benefits li {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 14px
}

.cta-benefits li i {
  color: #fff3cc
}

/* FOOTER */
.footer-section {
  background: #0d0d0d
}

.footer-top {
  padding: 64px 0 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.85;
  max-width: 270px
}

.footer-heading {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  letter-spacing: .5px;
  text-transform: uppercase
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px
}

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

.footer-links li {
  margin-bottom: 10px
}

.footer-links a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center
}

.footer-links a i {
  color: var(--orange);
  font-size: 10px;
  transition: transform .25s
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px
}

.footer-links a:hover i {
  transform: translateX(3px)
}

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

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  color: rgba(255, 255, 255, .45);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.65
}

.footer-contact-list li i {
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--orange)
}

.footer-contact-list a {
  color: rgba(255, 255, 255, .45);
  text-decoration: none;
  transition: var(--transition)
}

.footer-contact-list a:hover {
  color: var(--orange)
}

.footer-social {
  display: flex;
  gap: 8px
}

.footer-social-icon {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, .06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  text-decoration: none;
  font-size: 13px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, .07)
}

.footer-social-icon:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent
}

.footer-input {
  width: 100%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  font-size: 13px;
  font-family: 'Mulish', sans-serif;
  font-weight: 500;
  transition: var(--transition)
}

.footer-input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255, 255, 255, .09)
}

.footer-input::placeholder {
  color: rgba(255, 255, 255, .3)
}

.footer-bottom {
  background: rgba(0, 0, 0, .4);
  padding: 16px 0
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, .3);
  font-weight: 500
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(247, 147, 30, .4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1000
}

.back-to-top.show {
  opacity: 1;
  visibility: visible
}

.back-to-top:hover {
  transform: translateY(-3px);
  color: #fff;
  box-shadow: 0 8px 22px rgba(247, 147, 30, .55)
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s ease, transform .7s ease
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0)
}

.delay-1 {
  transition-delay: .1s
}

.delay-2 {
  transition-delay: .2s
}

.delay-3 {
  transition-delay: .3s
}

.delay-4 {
  transition-delay: .4s
}

/* RESPONSIVE */
@media(max-width:1199.98px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

@media(max-width:991.98px) {
  .hero-section {
    padding: 60px 0 40px;
    min-height: auto
  }

  .hero-content {
    text-align: center
  }

  .hero-subtext {
    margin: 0 auto
  }

  .hero-btns,
  .hero-stats {
    justify-content: center
  }

  .float-card-1 {
    left: 10px
  }

  .float-card-2 {
    right: 10px
  }

  .process-track {
    flex-direction: column;
    align-items: center
  }

  .step-connector {
    display: none
  }

  .process-step {
    width: 100%;
    max-width: 340px
  }

  .about-exp-badge {
    right: 10px;
    bottom: -10px
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gal-wide,
  .gal-tall {
    grid-column: span 1;
    grid-row: span 1
  }

  .video-content {
    padding-left: 0;
    margin-top: 20px
  }

  .comp-winner {
    transform: none
  }

  .topbar-left {
    justify-content: center
  }
}

@media(max-width:767.98px) {
  .section-padding {
    padding: 60px 0
  }

  .hero-heading {
    font-size: 28px
  }

  .cta-heading {
    font-size: 24px
  }

  .cta-benefits {
    flex-direction: column;
    gap: 10px !important
  }

  .float-card {
    display: none
  }

  .about-exp-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin: 16px auto 0;
    display: inline-block
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px
  }

  .navbar-logo-img {
    height: 40px
  }

  .top-contact-pill span {
    display: none
  }
}

/* =============================================
   SLOGAN STRIP
============================================= */
.slogan-strip {
  background: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border)
}

.slogan-inner {
  display: flex;
  flex-direction: column
}

.slogan-track {
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap
}

.slogan-track-left {
  background: var(--orange)
}

.slogan-track-right {
  background: var(--black)
}

.slogan-items {
  display: inline-block;
  white-space: nowrap
}

.slogan-track-left .slogan-items {
  animation: sloganLeft 30s linear infinite
}

.slogan-track-right .slogan-items {
  animation: sloganRight 30s linear infinite
}

@keyframes sloganLeft {
  0% {
    transform: translateX(0)
  }

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

@keyframes sloganRight {
  0% {
    transform: translateX(-50%)
  }

  100% {
    transform: translateX(0)
  }
}

.slogan-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 8px
}

.slogan-item.slogan-dark {
  color: rgba(255, 255, 255, .82)
}

.slogan-divider {
  display: inline-block;
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  margin: 0 6px;
  vertical-align: middle
}

.slogan-divider.slogan-divider-dark {
  color: rgba(247, 147, 30, .65)
}

.slogan-track-left .slogan-item i,
.slogan-track-right .slogan-item i {
  font-size: 11px;
  opacity: .88
}

/* Hero tagline */
.hero-tagline {
  font-size: 15px;
  color: var(--orange-dark);
  font-weight: 700;
  margin-top: 12px;
  line-height: 1.65
}

.hero-tagline strong {
  color: var(--black)
}

/* Topbar marquee strip */
#top-header {
  background: transparent;
  overflow: hidden
}

/* ==============================================
   about.css — About Page Exclusive Styles
   Theme: Orange | No Blue | DKM Sirsa
   ============================================== */

/* ============================================
   ABOUT HERO BANNER
============================================ */
.about-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0 0;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&h=500&fit=crop&auto=format") center/cover no-repeat;
  z-index: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(17, 17, 17, 0.88) 0%, rgba(30, 15, 0, 0.82) 100%);
  z-index: 1;
}

.about-page-tag {
  display: inline-block;
  background: rgba(247, 147, 30, 0.2);
  color: var(--orange-end);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(247, 147, 30, 0.4);
  margin-bottom: 14px;
}

.about-hero-heading {
  font-size: clamp(34px, 6vw, 60px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}

.about-hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 24px;
  line-height: 1.8;
}

.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.about-breadcrumb a {
  color: var(--orange-end);
  text-decoration: none;
  transition: var(--transition);
}

.about-breadcrumb a:hover {
  color: #fff;
}

/* Floating Stats Bar */
.about-hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.97);
  border-top: 3px solid var(--orange-start);
  margin-top: 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.ahs-item {
  padding: 22px 16px;
  text-align: center;
  border-right: 1px solid #f0e8dd;
}

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

.ahs-num {
  display: block;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.ahs-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
}

/* ============================================
   COMPANY STORY
============================================ */
.story-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.story-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 50px rgba(247, 147, 30, 0.18);
  object-fit: cover;
  display: block;
  min-height: 360px;
}

.story-img-fallback {
  background: linear-gradient(135deg, #fff0d8, #ffe5b4);
  border-radius: 20px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(247, 147, 30, 0.3);
}

.story-badge-since {
  position: absolute;
  bottom: -16px;
  left: 24px;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 6px 20px rgba(247, 147, 30, 0.45);
}

.story-badge-made {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

/* Story Highlights */
.story-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sh-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 14px 18px;
  border-left: 3px solid var(--orange);
}

.sh-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.sh-item strong {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
  display: block;
  margin-bottom: 3px;
}

.sh-item span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================
   MISSION / VISION / VALUES
============================================ */
.mvv-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(247, 147, 30, .25);
}

.mvv-card-featured {
  background: var(--orange);
  border-color: transparent;
  box-shadow: 0 10px 36px rgba(247, 147, 30, 0.32);
}

.mvv-icon-wrap {
  width: 68px;
  height: 68px;
  background: var(--orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.mvv-card:hover .mvv-icon-wrap {
  background: var(--orange);
  color: #fff;
  transform: scale(1.08);
}

.mvv-icon-white {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.mvv-card:hover .mvv-icon-white {
  background: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.mvv-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
}

.mvv-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

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

.mvv-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid #f8f3ee;
}

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

.mvv-list li i {
  color: var(--orange-start);
  font-size: 13px;
}

/* ============================================
   PARTNER CARDS
============================================ */
.partner-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #fff0e0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 56px rgba(247, 147, 30, 0.18);
  border-color: rgba(247, 147, 30, 0.3);
}

.partner-card-featured {
  background: linear-gradient(160deg, #1a0e00 0%, #2d1800 100%);
  border-color: var(--orange-start);
  box-shadow: 0 12px 48px rgba(247, 147, 30, 0.25);
}

/* Partner Card Top */
.partner-card-top {
  background: #fff8f0;
  padding: 28px 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-bottom: 1px solid #fff0e0;
}

.partner-card-featured .partner-card-top {
  background: rgba(255, 255, 255, 0.07);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.partner-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
}

.partner-logo-wrap-dark {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 16px;
}

.partner-logo {
  max-height: 50px;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.partner-logo-fallback {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  color: var(--orange-start);
  flex-direction: column;
}

.partner-logo-text {
  font-size: 22px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}

.partner-logo-text-orange {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange-start);
  letter-spacing: -0.5px;
}

/* Badges */
.partner-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}

.partner-badge-gold {
  background: linear-gradient(90deg, #ffd700, #ffb300);
  color: #5a3a00;
}

.partner-badge-orange {
  background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
  color: #fff;
}

.partner-badge-dark {
  background: var(--black);
  color: #fff;
}

/* Card Body */
.partner-card-body {
  padding: 24px 24px 16px;
  flex: 1;
}

.partner-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 6px;
}

.partner-card-featured .partner-name {
  color: #fff;
}

.partner-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange-start);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.partner-card-featured .partner-category {
  color: var(--orange-end);
}

.partner-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.partner-card-featured .partner-desc {
  color: rgba(255, 255, 255, 0.7);
}

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

.partner-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  padding: 6px 0;
  border-bottom: 1px solid #f5f0e8;
}

.partner-points li:last-child {
  border-bottom: none;
}

.partner-points li i {
  color: var(--orange-start);
  font-size: 11px;
}

.partner-points-light li {
  color: rgba(255, 255, 255, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.partner-points-light li i {
  color: var(--orange-end);
}

/* Card Footer */
.partner-card-footer {
  padding: 16px 24px;
  background: #fff8f0;
  border-top: 1px solid #fff0e0;
}

.partner-card-footer-light {
  background: rgba(255, 255, 255, 0.07);
  border-top-color: rgba(255, 255, 255, 0.12);
}

.partner-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange-start);
  text-decoration: none;
  transition: var(--transition);
}

.partner-link:hover {
  color: var(--orange-dark);
  text-decoration: underline;
}

.partner-link-light {
  color: var(--orange-end);
}

.partner-link-light:hover {
  color: #fff;
}

/* Partner Trust Bar */
.partner-trust-bar {
  background: linear-gradient(90deg, var(--orange-dark), var(--orange-start), var(--orange-end));
  border-radius: 16px;
  padding: 22px 32px;
  box-shadow: 0 8px 32px rgba(247, 147, 30, 0.3);
}

.ptb-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.ptb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.ptb-item i {
  font-size: 18px;
  opacity: 0.9;
}

.ptb-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   TEAM CARDS
============================================ */
.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 34px 24px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  border: 1px solid #fff0e0;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(247, 147, 30, 0.15);
}

.team-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 18px;
}

.team-avatar-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(247, 147, 30, 0.4);
  transition: var(--transition);
}

.team-card:hover .team-avatar-placeholder {
  transform: scale(1.06);
}

.team-social {
  position: absolute;
  bottom: -4px;
  right: -4px;
  display: flex;
  gap: 5px;
}

.team-social a {
  width: 26px;
  height: 26px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid #fff;
}

.team-social a:hover {
  background: var(--orange-start);
}

.team-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.team-role {
  display: inline-block;
  background: linear-gradient(90deg, rgba(247, 147, 30, 0.12), rgba(255, 186, 0, 0.12));
  color: var(--orange-start);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.team-bio {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   TIMELINE
============================================ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--orange-start), var(--orange-end));
  transform: translateX(-50%);
  border-radius: 2px;
}

.tl-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 44px;
  position: relative;
}

.tl-left {
  flex-direction: row-reverse;
}

.tl-right {
  flex-direction: row;
}

.tl-dot {
  position: absolute;
  left: 50%;
  top: 16px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--orange-start), var(--orange-end));
  border-radius: 50%;
  border: 3px solid #fff;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px rgba(247, 147, 30, 0.25);
  z-index: 1;
}

.tl-card {
  width: 44%;
  background: #fff;
  border-radius: 14px;
  padding: 20px 22px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  border: 1px solid #fff0e0;
  transition: var(--transition);
}

.tl-card:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(247, 147, 30, 0.12);
}

.tl-left .tl-card {
  margin-right: auto;
  margin-left: 6%;
}

.tl-right .tl-card {
  margin-left: auto;
  margin-right: 6%;
}

.tl-year {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange-start), var(--orange-end));
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.tl-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 6px;
}

.tl-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width:767.98px) {
  .timeline::before {
    left: 18px;
  }

  .tl-item {
    flex-direction: row !important;
  }

  .tl-dot {
    left: 18px;
  }

  .tl-card {
    width: 85%;
    margin-left: 44px !important;
    margin-right: 0 !important;
  }

  .ahs-item {
    border-right: none;
    border-bottom: 1px solid #f0e8dd;
  }

  .ptb-divider {
    display: none;
  }

  .ptb-inner {
    gap: 12px;
  }

  .partner-card-top {
    flex-direction: column;
  }
}