/* ================= ROOT VARIABLES ================= */

:root {
  /* ===== BRAND COLORS ===== */

  --bg-primary: #398c9e;

  --bg-secondary: #ff6b2d;

  --accent-cyan: #2eaec3;

  --accent-teal: #37c6dd;

  --dark-bg: #2f2f2f;

  --dark-card: #3a8c9c;

  --dark-accent: #2a9db5;

  --dark-teal: #2f7a87;

  --stat-bg-light: #e9f6f8;

  --media-teal: #2f8f9d;

  /* ===== TEXT COLORS ===== */

  --text-white: #ffffff;

  --text-dark: #222222;

  --text-muted: rgba(255, 255, 255, 0.8);

  --text-gray: #555555;

  --text-light-gray: #666666;

  /* ===== SHADOW COLORS ===== */

  --shadow-sm: rgba(0, 0, 0, 0.08);

  --shadow-md: rgba(0, 0, 0, 0.18);

  --shadow-lg: rgba(0, 0, 0, 0.25);

  --shadow-xl: rgba(0, 0, 0, 0.35);

  /* ===== OVERLAY COLORS ===== */

  --overlay-dark: rgba(0, 0, 0, 0.6);

  --overlay-light: rgba(255, 255, 255, 0.04);

  /* ===== FONTS ===== */

  --font-primary:
    "Poppins", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  --font-weight-regular: 400;

  --font-weight-medium: 500;

  --font-weight-semibold: 600;

  --font-weight-bold: 700;

  --font-weight-extrabold: 800;

  /* ===== ANIMATIONS ===== */

  --anim-duration: 0.9s;

  --anim-duration-fast: 0.3s;

  --anim-duration-slow: 1.2s;

  --anim-ease: cubic-bezier(0.22, 1, 0.36, 1);

  --anim-ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --anim-ease-out: cubic-bezier(0, 0, 0.2, 1);

  /* ===== SPACING ===== */

  --spacing-xs: 8px;

  --spacing-sm: 12px;

  --spacing-md: 16px;

  --spacing-lg: 24px;

  --spacing-xl: 32px;

  --spacing-2xl: 48px;

  /* ===== BORDER RADIUS ===== */

  --radius-xs: 2px;

  --radius-sm: 8px;

  --radius-md: 12px;

  --radius-lg: 18px;

  --radius-full: 50px;

  /* ===== TRANSITIONS ===== */

  --transition-fast: all 0.25s var(--anim-ease-in-out);

  --transition-base: all 0.35s var(--anim-ease-in-out);

  --transition-slow: all 0.5s var(--anim-ease-in-out);
}

/* ================= ENHANCED GLOBAL POLISH ================= */

input:focus,
textarea:focus,
select:focus {
  outline: none;

  box-shadow: 0 0 0 3px rgba(46, 174, 195, 0.1) !important;

  border-color: var(--accent-cyan) !important;
}

a {
  color: var(--accent-teal);

  text-decoration: none;

  transition: all 0.3s ease;
}

a:hover {
  color: var(--accent-cyan);
}

/* Enhanced scrollbar for webkit browsers */

::-webkit-scrollbar {
  width: 8px;

  height: 8px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(46, 174, 195, 0.3);

  border-radius: 4px;

  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 174, 195, 0.5);
}

body {
  font-family: var(--font-primary);

  color: var(--text-gray);

  line-height: 1.6;
}

/* Hide scrollbar for Chrome, Safari, Edge */

::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE/Edge */

body {
  -ms-overflow-style: none;
}

/* ================= CUSTOM CONTAINER (WIDER) ================= */

.container {
  width: 100%;

  margin-inline: auto;

  padding-inline: 16px;
}

/* sm */

@media (min-width: 576px) {
  .container {
    max-width: 740px; /* was 540 */
  }
}

/* md */

@media (min-width: 768px) {
  .container {
    max-width: 920px !important; /* was 720 */
  }
}

/* lg */

@media (min-width: 992px) {
  .container {
    max-width: 1260px !important; /* was 960 */
  }
}

/* xl */

@media (min-width: 1200px) {
  .container {
    max-width: 1190px !important; /* was 1140 */
  }
}

/* xxl */

@media (min-width: 1400px) {
  .container {
    max-width: 1480px !important; /* was 1320 */
  }
}

/* ================= NAVBAR ================= */

.navbar {
  background: var(--bg-primary);

  position: sticky;

  top: 0;

  z-index: 1050;

  padding: 1rem 0rem;
}

/* ================= MODERN OFFCANVAS ================= */

.offcanvas {
  z-index: 1055 !important;

  background: linear-gradient(
    135deg,
    var(--bg-primary) 0%,

    var(--dark-card) 100%
  );

  backdrop-filter: blur(10px);

  border-left: 1px solid rgba(255, 255, 255, 0.1);

  animation: slideInRight 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);

    opacity: 0;
  }

  to {
    transform: translateX(0);

    opacity: 1;
  }
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

  padding: var(--spacing-lg) var(--spacing-lg);
}

.offcanvas-title {
  color: var(--text-white);

  letter-spacing: 1px;

  font-size: 18px;
}

.offcanvas-body {
  padding: var(--spacing-xl) var(--spacing-lg);
}

.offcanvas .navbar-nav {
  gap: 8px;
}

.offcanvas .nav-link {
  color: var(--text-muted) !important;

  font-weight: var(--font-weight-medium);

  padding: var(--spacing-md) 0 !important;

  position: relative;

  transition: all 0.3s ease;

  border-left: 3px solid transparent;

  padding-left: var(--spacing-md) !important;
}

.offcanvas .nav-link:hover {
  color: var(--accent-teal) !important;

  border-left-color: var(--accent-teal);

  transform: translateX(8px);
}

.offcanvas .btn-primary {
  background: var(--accent-teal);

  border: none;

  color: var(--text-white);

  font-weight: var(--font-weight-semibold);

  padding: var(--spacing-md) var(--spacing-lg);

  transition: all 0.3s ease;

  margin-top: var(--spacing-xl);
}

.offcanvas .btn-primary:hover {
  background: var(--accent-cyan);

  transform: translateY(-2px);

  box-shadow: 0 8px 20px rgba(46, 174, 195, 0.3);
}

.btn-close {
  filter: invert(1) brightness(2) !important;
}

.btn-close:focus {
  box-shadow: 0 0 0 0.25rem rgba(46, 174, 195, 0.25);
}

.navbar .nav-link {
  color: var(--text-white);

  font-weight: var(--font-weight-medium);

  position: relative;

  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  border-bottom: 3px solid transparent;
}

.navbar .nav-link:hover {
  color: var(--accent-cyan);

  border-bottom-color: var(--accent-cyan);

  transform: translateY(-2px);
}

@media (min-width: 1199px) {
  .navbar-expand-lg .navbar-nav {
    gap: 22px;
  }
}

/* ================= HERO ================= */

.hero {
  min-height: 92vh;

  background: url("../images/hero-bg.png") center / cover no-repeat;

  position: relative;

  color: var(--text-white);

  overflow: hidden;
}

.hero::before {
  content: "";

  position: absolute;

  inset: 0;

  /* BETTER OVERLAY */

  background: linear-gradient(
    to bottom,

    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.8)
  );

  /* Using inline rgba for gradient overlay */

  z-index: 1;
}

.hero-content {
  position: relative;

  z-index: 2;
}

/* ================= POLISHED BUTTON STYLES ================= */

.btn {
  font-weight: var(--font-weight-semibold);

  border-radius: var(--radius-sm);

  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  letter-spacing: 0.3px;

  position: relative;

  overflow: hidden;
}

.btn::before {
  content: "";

  position: absolute;

  top: 0;

  left: -100%;

  width: 100%;

  height: 100%;

  background: rgba(255, 255, 255, 0.1);

  transition: left 0.3s ease;

  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn:focus {
  outline: none;

  box-shadow: 0 0 0 3px rgba(46, 174, 195, 0.2) !important;
}

.btn-light {
  color: var(--bg-primary) !important;

  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.btn-light:hover {
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);

  transform: translateY(-2px);
}

.btn-primary {
  box-shadow: 0 4px 12px rgba(46, 174, 195, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 8px 24px rgba(46, 174, 195, 0.35);

  transform: translateY(-2px);
}

/* ================= HERO CONTENT ================= */

.hero-content {
  z-index: 3; /* text & buttons */
}

.trust-badge {
  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-sm) var(--spacing-lg);

  border-radius: var(--radius-full);

  font-size: var(--anim-duration);

  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  font-weight: var(--font-weight-semibold);

  box-shadow: 0 4px 16px rgba(255, 107, 45, 0.25);

  letter-spacing: 0.2px;
}

.hero-title {
  font-size: clamp(32px, 4vw, 56px);

  font-weight: var(--font-weight-bold);

  line-height: 1.2;

  margin-bottom: var(--spacing-lg);

  color: var(--text-white);
}

.hero-title span {
  color: var(--accent-teal);
}

.hero-desc {
  max-width: 780px;

  margin: 0 auto var(--spacing-xl);

  font-size: 16px;

  line-height: 1.7;

  color: var(--text-muted);
}

/* ================= CTA BUTTONS ================= */

.hero-cta {
  display: flex;

  justify-content: justify;

  align-items: center;

  flex-wrap: wrap;

  gap: var(--spacing-md);
  margin-top: 25px;
}

.btn-distributor {
  background: var(--bg-primary);

  color: var(--text-white);

  padding: var(--spacing-md) var(--spacing-lg);

  border-radius: var(--radius-sm);

  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  font-weight: var(--font-weight-semibold);

  transition: var(--transition-base);

  box-shadow: 0 4px 16px rgba(57, 140, 158, 0.25);

  cursor: pointer;

  border: none;

  text-decoration: none;
}

.btn-distributor:hover {
  background: var(--dark-card);

  color: var(--text-white);

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(57, 140, 158, 0.4);
}

.btn-shop {
  background: var(--text-white);

  color: var(--bg-primary);

  padding: var(--spacing-md) var(--spacing-xl);

  border-radius: var(--radius-sm);

  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  font-weight: var(--font-weight-semibold);

  transition: var(--transition-base);

  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);

  cursor: pointer;

  border: none;

  text-decoration: none;
}

.btn-shop:hover {
  background: var(--bg-secondary);

  color: var(--text-white);

  transform: translateY(-2px);

  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

/* ================= DECORATIVE KEYS ================= */

.hero-decor {
  position: absolute;

  inset: 0;

  z-index: 2; /* above overlay, below content */

  pointer-events: none;

  overflow: hidden;
}

.decor-key {
  position: absolute;

  opacity: 0.8;

  filter: blur(0.2px);
}

/* Left key */

.key-left {
  top: 18%;

  left: 66px;

  width: 107px;

  transform: rotate(-25deg);
}

/* Right key */

.key-right {
  bottom: 20%;

  right: 30px;

  width: 107px;

  transform: rotate(20deg);

  rotate: 300deg;
}

@keyframes floatY {
  0% {
    transform: translateY(0) rotate(-25deg);
  }

  50% {
    transform: translateY(-14px) rotate(-25deg);
  }

  100% {
    transform: translateY(0) rotate(-25deg);
  }
}

.key-left {
  animation: floatY 8s ease-in-out infinite;
}

.key-right {
  animation: floatY 10s ease-in-out infinite;
}

/* ================= STICKY WIDGETS ================= */

.left-widget,
.right-widget {
  position: fixed;

  top: 50%;

  transform: translateY(-50%);

  z-index: 1040;
}

.left-widget {
  background: var(--bg-primary);

  color: var(--text-white);

  padding: var(--spacing-lg) var(--spacing-sm);

  border-radius: 0 var(--radius-md) var(--radius-md) 0;

  margin-bottom: var(--spacing-sm);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  left: 42px;
}

.right-widget {
  right: 56px;
}

.widget-btn-right {
  background: var(--bg-primary);

  color: var(--text-white);

  padding: 12px 18px;

  border-radius: var(--radius-full);

  margin-bottom: var(--spacing-sm);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  font-size: 20px;
}

/* ================= WIDGET ANIMATION STATES ================= */

.left-widget,
.right-widget {
  opacity: 0;

  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Initial hidden positions */

.left-widget {
  transform: translateX(-40px) translateY(-50%);
}

.right-widget {
  transform: translateX(40px) translateY(-50%);
}

/* Active state */

.widget-show {
  opacity: 1;

  transform: translateX(0) translateY(-50%);
}

.widget-btn,
.widget-btn-right {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.widget-btn:hover,
.widget-btn-right:hover {
  transform: scale(1.08);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ================= MOBILE OPTIMIZATION ================= */

@media (max-width: 768px) {
  .left-widget,
  .right-widget {
    display: none;
  }
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp {
  from {
    opacity: 0;

    transform: translateY(24px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

@keyframes fadeScale {
  from {
    opacity: 0;

    transform: scale(0.95) translateY(12px);
  }

  to {
    opacity: 1;

    transform: scale(1) translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;

    transform: translateX(30px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;

    transform: translateX(-30px);
  }

  to {
    opacity: 1;

    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes floatY {
  0% {
    transform: translateY(0) rotate(-25deg);
  }

  50% {
    transform: translateY(-14px) rotate(-25deg);
  }

  100% {
    transform: translateY(0) rotate(-25deg);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;

    transform: scale(0.85);
  }

  to {
    opacity: 1;

    transform: scale(1);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;

    transform: rotate(-180deg) scale(0);
  }

  to {
    opacity: 1;

    transform: rotate(0) scale(1);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;

    transform: translateY(-30px);
  }

  to {
    opacity: 1;

    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;

  animation: fadeUp var(--anim-duration) var(--anim-ease) forwards;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

.delay-3 {
  animation-delay: 0.45s;
}

.delay-4 {
  animation-delay: 0.6s;
}

/* anout */

/* ================= ABOUT SECTION ================= */

.about-section {
  margin: 5% 0 0 0;

  background: #fff;

  overflow: hidden;
}

/* Pill */

.about-pill {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-xs);

  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-sm) var(--spacing-md);

  border-radius: var(--radius-full);

  font-size: 14px;

  font-weight: var(--font-weight-medium);

  margin-bottom: var(--spacing-lg);
}

/* Title */

.about-title {
  font-size: clamp(30px, 3.5vw, 46px);

  font-weight: var(--font-weight-bold);

  line-height: 1.2;

  margin-bottom: var(--spacing-xl);
}

.about-title span {
  color: var(--accent-cyan);
}

/* Text */

.about-text {
  font-size: 15.5px;

  line-height: 1.8;

  color: var(--text-gray);

  margin-bottom: var(--spacing-md);
}

/* ================= STATS BAR ================= */

.stats-bar {
  display: flex;

  align-items: center;

  justify-content: center;

  gap: 28px;

  margin-top: 40px;

  flex-wrap: wrap;
}

/* Each stat */

.stat-item {
  display: flex;

  align-items: center;

  gap: 12px;

  min-width: 130px;

  flex-direction: column;

  opacity: 0;

  transform: translateY(20px);

  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  cursor: pointer;
}

.stat-item:hover {
  transform: translateY(-6px);
}

.stat-item:hover .stat-icon {
  background: var(--accent-cyan);

  color: var(--text-white);

  transform: scale(1.15);
}

/* Icon circle */

.stat-icon {
  width: 36px;

  height: 36px;

  border-radius: var(--radius-full);

  background: var(--stat-bg-light);

  color: var(--accent-cyan);

  display: grid;

  place-items: center;

  font-size: 16px;

  transition: var(--transition-base);
}

/* Text */

.stat-text h4 {
  margin: 0;

  font-size: 18px;

  font-weight: var(--font-weight-bold);

  color: var(--text-dark);

  line-height: 1;
}

.stat-text p {
  margin: var(--spacing-xs) 0 0;

  font-size: 13px;

  color: var(--text-light-gray);
}

/* Vertical divider */

.stat-divider {
  width: 1px;

  height: 36px;

  background: var(--shadow-sm);
}

/* ================= STACKED MEDIA ================= */

.media-stack {
  position: relative;

  width: 100%;

  aspect-ratio: 1 / 1; /* square like your screenshot */
}

/* Back offset card */

.media-back {
  position: absolute;

  inset: 0;

  background: var(--media-teal);

  border-radius: var(--radius-lg);

  transform: translate(-22px, 22px);

  z-index: 1;

  height: 61%;
}

/* Front video card */

.about-video {
  position: relative;

  z-index: 2;

  width: 100%;

  height: 100%;

  border-radius: var(--radius-lg);

  overflow: hidden;

  background: var(--dark-bg);

  box-shadow: 0 30px 60px var(--shadow-md);

  height: 61%;

  transition: all var(--anim-duration);
}

.about-video:hover {
  box-shadow: 0 40px 80px var(--shadow-lg);

  transform: scale(1.02);
}

/* Poster + Video */

.video-poster,
.video-element {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

/* Play Button */

.play-btn {
  position: absolute;

  inset: 0;

  margin: auto;

  width: 64px;

  height: 64px;

  border-radius: var(--radius-full);

  background: var(--text-white);

  color: var(--bg-primary);

  font-size: 28px;

  border: none;

  display: grid;

  place-items: center;

  cursor: pointer;

  z-index: 3;

  box-shadow: 0 20px 40px var(--shadow-lg);

  transition: var(--transition-slow);

  animation: playPulse 2.5s ease-in-out infinite;
}

@keyframes playPulse {
  0% {
    box-shadow:
      0 20px 40px var(--shadow-lg),
      0 0 0 0 rgba(46, 174, 195, 0.4);
  }

  50% {
    box-shadow:
      0 20px 40px var(--shadow-lg),
      0 0 0 12px rgba(46, 174, 195, 0);
  }

  100% {
    box-shadow:
      0 20px 40px var(--shadow-lg),
      0 0 0 0 rgba(46, 174, 195, 0);
  }
}

.play-btn:hover {
  transform: scale(1.2);

  background: var(--accent-cyan);

  color: var(--text-white);

  box-shadow: 0 28px 56px var(--shadow-xl);

  animation: none;
}

/* Video hidden initially */

.video-element {
  opacity: 5;
}

.about-video.playing .video-element {
  opacity: 1;

  pointer-events: auto;
}

.about-video.playing .video-poster,
.about-video.playing .play-btn {
  opacity: 0;
}

@media (max-width: 768px) {
  .media-back {
    transform: translate(-12px, 12px);
  }
}

.media-stack:hover .media-back {
  transform: translate(-28px, 28px);

  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-video {
  position: relative;
  overflow: hidden;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play Button Base Style */
.play-btn {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show button on hover */
.about-video:hover .play-btn {
  opacity: 1;
}

/* BUT keep visible if video is paused */
.about-video.paused .play-btn {
  opacity: 1;
}

/* ================= ANIMATIONS ================= */

.fade-up,
.fade-scale {
  opacity: 0;

  transform: translateY(24px);

  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-scale {
  transform: scale(0.95) translateY(12px);

  animation: fadeScale var(--anim-duration) var(--anim-ease) forwards;
}

.show {
  opacity: 1;

  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

.delay-5 {
  transition-delay: 0.5s;
}

/* product swiper */

.productSwiper {
  padding: var(--spacing-xl) var(--spacing-sm);
}
.productSwiper .swiper-wrapper {
  align-items: stretch;
}

.productSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.product-category-section {
  background: #fff;

  position: relative;

  z-index: 5;
}

.product-badge {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-xs);

  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-sm) var(--spacing-md);

  border-radius: var(--radius-full);

  font-size: 14px;

  font-weight: var(--font-weight-medium);

  margin-bottom: var(--spacing-lg);
}

.product-card {
  border-radius: var(--radius-lg);

  padding: var(--spacing-xs);

  overflow: hidden;

  background: linear-gradient(
    135deg,
    #ffffff 0%,

    rgba(255, 255, 255, 0.95) 100%
  );

  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  position: relative;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.5);

  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 16px 40px rgba(46, 174, 195, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

  border-color: rgba(46, 174, 195, 0.2);
}

.product-card img {
  width: 100%;
  height: 280px; /* reduce fixed height */
  object-fit: cover;
  border-radius: var(--radius-md);

  transition: var(--transition-fast);
}
.card-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-content p {
  flex-grow: 1;
}
.card-content .btn-view {
  margin-top: auto;
}

.product-card:hover img {
  transform: scale(1.05);
}

.best-seller {
  position: absolute;

  top: var(--spacing-lg);

  left: var(--spacing-lg);

  background: var(--overlay-dark);

  color: var(--text-white);

  font-size: 11px;

  padding: var(--spacing-xs) var(--spacing-sm);

  border-radius: var(--radius-full);
}

.check-icon {
  position: absolute;

  top: 18px;

  right: 18px;

  background: #fff;

  width: 26px;

  height: 26px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;
}

.progress-pill {
  width: 90px;

  height: 30px;

  background: var(--shadow-sm);

  border-radius: var(--radius-full);
}

.btn-view {
  background: var(--accent-cyan);

  color: var(--text-white);

  border-radius: var(--radius-full);

  padding: var(--spacing-xs) var(--spacing-md);

  font-size: 13px;

  transition: var(--transition-fast);

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: var(--spacing-xs);

  border: none;

  cursor: pointer;

  text-decoration: none;

  font-weight: var(--font-weight-semibold);
}

.btn-view:hover {
  background: var(--dark-card);

  color: var(--text-white);

  transform: translateX(2px);
}

.btn-view span {
  background: #fff;

  color: var(--accent-cyan);

  border-radius: 50%;

  padding: 1px 4px;

  text-align: center;
}

.custom-nav {
  width: 42px;

  height: 42px;

  border-radius: var(--radius-full);

  background: var(--dark-teal);

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  color: var(--text-white);

  transition: var(--transition-fast);

  box-shadow: 0 4px 12px var(--shadow-md);

  border: none;

  font-size: 18px;
}

.custom-nav:hover {
  transform: scale(1.1);

  box-shadow: 0 6px 16px var(--shadow-lg);
}

.custom-nav.active {
  background: var(--accent-cyan);

  color: var(--text-white);
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "none";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "none";
}

.btn-catalog {
  background: var(--accent-cyan);

  color: var(--text-white);

  padding: var(--spacing-md) var(--spacing-xl);

  border-radius: var(--radius-md);

  font-weight: var(--font-weight-semibold);

  transition: var(--transition-base);

  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  box-shadow: 0 4px 16px var(--shadow-md);

  border: none;

  cursor: pointer;

  text-decoration: none;
}

.btn-catalog:hover {
  background: var(--dark-teal);

  color: var(--text-white);

  transform: translateY(-2px);

  box-shadow: 0 8px 24px var(--shadow-lg);
}

.swiper-button-prev,
.swiper-button-next {
  position: static;
}

/* ================= MANUFACTURING SECTION ================= */

.manufacturing-section {
  background: var(--dark-bg);

  position: relative;

  padding: var(--spacing-2xl) 0 160px;

  color: #fff;

  z-index: 10;
}

/* Bottom image */

/* .manufacturing-section::after {
  content: "";

  position: absolute;

  transform: translateX(-50%);

  background: url("../images/Group\ 634.png") center / contain no-repeat;

  z-index: 2;

  bottom: -55px;

  left: 50%;

  width: 270px;

  height: 117px;
} */

/* Pills */

.section-pill.orange {
  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-sm) var(--spacing-lg);

  border-radius: var(--radius-full);

  font-size: 13px;

  display: inline-flex;

  gap: var(--spacing-xs);

  margin-bottom: var(--spacing-md);
}

/* Title */

.section-title.light {
  font-size: clamp(30px, 4vw, 44px);

  font-weight: var(--font-weight-extrabold);

  margin-bottom: var(--spacing-sm);
}

.section-title.light span {
  color: var(--accent-cyan);
}

/* Subtitle */

.section-subtitle.light {
  max-width: 720px;

  margin: 0 auto var(--spacing-2xl);

  font-size: 14.5px;

  color: var(--text-muted);
}

/* ================= GRID ================= */

.manufacturing-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  margin-bottom: 70px;
}

/* Manufacturing Grid Responsive */

@media (max-width: 991px) {
  .manufacturing-grid {
    grid-template-columns: repeat(2, 1fr);

    gap: 18px;
  }
}

@media (max-width: 576px) {
  .manufacturing-grid {
    grid-template-columns: repeat(1, 1fr);

    gap: 16px;
  }
}

.manu-card {
  position: relative;

  border-radius: 12px;

  overflow: hidden;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);

  cursor: pointer;

  height: 280px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.manu-card:hover {
  transform: translateY(-8px);

  border-color: rgba(46, 174, 195, 0.3);

  box-shadow: 0 16px 40px rgba(46, 174, 195, 0.2);
}

.manu-image {
  position: absolute;

  width: 100%;

  height: 100%;

  object-fit: cover;

  display: block;

  transition: opacity 0.5s ease-in-out;
}

.manu-image.primary {
  opacity: 1;

  z-index: 1;
}

.manu-image.secondary {
  opacity: 0;

  z-index: 0;
}

.manu-card:hover .manu-image.primary {
  opacity: 0;
}

.manu-card:hover .manu-image.secondary {
  opacity: 1;
}

.manu-label {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 20px;

  margin: auto;

  background: rgba(46, 174, 195, 0.9);

  color: var(--text-white);

  padding: var(--spacing-xs) var(--spacing-lg);

  font-size: 12px;

  transition: opacity 0.5s ease-in-out;

  z-index: 5;

  text-align: center;

  opacity: 1;
}

.manu-card:hover .manu-label {
  opacity: 0;

  pointer-events: none;
}

.manu-overlay {
  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  background: linear-gradient(
    135deg,
    rgba(20, 30, 50, 0.54) 0%,

    rgba(13, 13, 13, 0.85) 100%
  );

  display: flex;

  align-items: center;

  justify-content: center;

  opacity: 0;

  transition: opacity 0.5s ease-in-out;

  z-index: 10;

  padding: 30px;

  /* 🔥 Blur magic */

  backdrop-filter: blur(10px);

  -webkit-backdrop-filter: blur(10px);

  /* Optional: improves glass effect */

  background-color: rgba(20, 30, 50, 0.4);
}

.manu-card:hover .manu-overlay {
  opacity: 1;
}

.manu-overlay-content {
  text-align: center;

  color: white;

  max-width: 100%;
}

.manu-icon {
  font-size: 48px;

  color: var(--accent-orange);

  margin-bottom: 16px;

  animation: pulse 2s ease-in-out infinite;
}

.manu-overlay-content h4 {
  font-size: 18px;

  font-weight: 600;

  margin-bottom: 12px;

  line-height: 1.4;

  letter-spacing: 0.5px;
}

.manu-overlay-content p {
  font-size: 13px;

  line-height: 1.6;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: 16px;
}

.manu-line {
  width: 40px;

  height: 3px;

  background: var(--accent-orange);

  margin: 0 auto;

  border-radius: 2px;
}

/* Overlay label */

.manu-label {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 20px;

  margin: auto;

  background: rgba(46, 174, 195, 0.9);

  color: var(--text-white);

  padding: var(--spacing-xs) var(--spacing-lg);

  font-size: 12px;

  transition: opacity 0.5s ease-in-out;

  z-index: 5;

  text-align: center;

  opacity: 1;
}

.manu-card:hover .manu-label {
  opacity: 0;

  pointer-events: none;

  /* border-radius: 20px; */

  font-weight: var(--font-weight-semibold);
}

/* ================= STATS WRAPPER ================= */

.manu-stats-wrap {
  padding: var(--spacing-xl) var(--spacing-md) 0;
}

/* Card */

.manu-stats-card2 {
  margin: auto;

  max-width: 100%;

  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,

    rgba(255, 255, 255, 0.05) 100%
  );

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: var(--radius-lg);

  padding: var(--spacing-2xl) var(--spacing-xl);

  display: grid;

  grid-template-columns: repeat(7, 1fr);

  align-items: center;

  gap: 0;

  backdrop-filter: blur(12px);

  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);

  overflow: hidden;

  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.manu-stats-card2:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,

    rgba(255, 255, 255, 0.08) 100%
  );

  border-color: rgba(46, 174, 195, 0.3);

  box-shadow:
    0 12px 48px rgba(46, 174, 195, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  transform: translateY(-4px);
}

/* Responsive Manufacturing Stats */

@media (max-width: 991px) {
  .manu-stats-card2 {
    grid-template-columns: repeat(4, 1fr);

    gap: var(--spacing-lg);

    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .stat-divider2 {
    display: none;
  }

  .stat-item2 {
    padding: var(--spacing-md) var(--spacing-sm);
  }
}

@media (max-width: 576px) {
  .manu-stats-card2 {
    grid-template-columns: 1fr;

    gap: var(--spacing-lg);

    padding: var(--spacing-lg) var(--spacing-md);
  }

  .stat-divider2 {
    display: none;
  }

  .stat-item2 {
    padding: var(--spacing-md);
  }

  .stat-item2 h4 {
    font-size: 18px !important;
  }

  .stat-item2 p {
    font-size: 12px !important;
  }

  .stat-icon2 {
    width: 38px !important;

    height: 38px !important;

    font-size: 16px !important;

    margin-bottom: var(--spacing-md) !important;
  }
}

/* Each stat */

.stat-item2 {
  text-align: center;

  padding: var(--spacing-md) var(--spacing-lg);

  transition: all 0.3s ease;
}

.stat-item2:hover {
  transform: scale(1.05);
}

/* Icon circle */

.stat-icon2 {
  width: 48px;

  height: 48px;

  margin: 0 auto var(--spacing-md);

  border-radius: var(--radius-full);

  background: linear-gradient(
    135deg,
    var(--accent-teal) 0%,

    var(--accent-cyan) 100%
  );

  display: grid;

  place-items: center;

  color: var(--text-white);

  font-size: 20px;

  font-weight: var(--font-weight-semibold);

  box-shadow: 0 8px 16px rgba(46, 174, 195, 0.3);

  transition: all 0.3s ease;
}

.stat-item2:hover .stat-icon2 {
  transform: rotateY(180deg) scale(1.1);

  box-shadow: 0 12px 24px rgba(46, 174, 195, 0.4);
}

/* Numbers */

.stat-item2 h4 {
  font-size: 28px;

  font-weight: var(--font-weight-extrabold);

  margin-bottom: var(--spacing-xs);

  color: var(--text-white);

  letter-spacing: -0.5px;

  background: linear-gradient(135deg, #ffffff 0%, var(--accent-teal) 100%);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;
}

/* Label */

.stat-item2 p {
  font-size: 13px;

  color: rgba(255, 255, 255, 0.75);

  margin: 0;

  font-weight: var(--font-weight-medium);

  line-height: 1.4;

  letter-spacing: 0.3px;
}

/* Divider */

.stat-divider2 {
  width: 1px;

  height: 56px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.1) 0%,

    rgba(46, 174, 195, 0.3) 50%,

    rgba(255, 255, 255, 0.1) 100%
  );

  justify-self: center;

  transition: all 0.3s ease;
}

/* ================= GSAP ANIMATION STYLES ================= */

/* Smooth 3D perspective for rotations */

.partner-card {
  perspective: 1000px;
}

/* Hardware acceleration for smoother animations */

.fade-up,
.fade-scale,
.product-card,
.manu-card,
.location-card,
.timeline-card,
.media-stack,
.about-title,
.section-title,
.about-text,
.stat-item,
.stat-item2,
.timeline-item,
.partner-card {
  will-change: transform, opacity;
}

/* Disable hardware acceleration on scroll trigger end */

.gsap-reveal {
  will-change: auto;
}

/* ================= SCROLL ANIMATION UTILITIES ================= */

.scroll-hidden {
  opacity: 0;

  transform: translateY(30px);
}

.scroll-visible {
  opacity: 1;

  transform: translateY(0);
}

/* Smooth scroll behavior */

html {
  scroll-behavior: smooth;
}

/* ================= GSAP GSAP ANIMATION CLASSES ================= */

/* For fade animations */

.gsap-fade {
  opacity: 0;
}

/* For scale animations */

.gsap-scale {
  opacity: 0;

  transform: scale(0.95);
}

/* For slide animations */

.gsap-slide-left {
  opacity: 0;

  transform: translateX(-40px);
}

.gsap-slide-right {
  opacity: 0;

  transform: translateX(40px);
}

.gsap-slide-up {
  opacity: 0;

  transform: translateY(40px);
}

.gsap-slide-down {
  opacity: 0;

  transform: translateY(-40px);
}

/* For rotate animations */

.gsap-rotate {
  opacity: 0;

  transform: rotate(-180deg) scale(0);
}

/* Tablet */

@media (max-width: 768px) {
  .manu-stats-card2 {
    grid-template-columns: repeat(7, 1fr);

    row-gap: 28px;
  }

  .stat-divider {
    display: none;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .manu-stats-card2 {
    grid-template-columns: 1fr;

    padding: var(--spacing-lg) var(--spacing-md);
  }

  .stat-item h4 {
    font-size: 18px;
  }
}

.section-key {
  text-align: center;
}

.section-key img {
  margin-bottom: -10%;
}

/* ===============*





/* ================= TIMELINE ================= */

.timeline-section {
  background: #fff;
}

/* ================= GLOBAL PRESENCE ================= */

.global-presence-section {
  margin: 5% 0;

  background: #fff;
}

/* Header */

.global-header {
  max-width: 720px;

  margin-bottom: 60px;
}

.section-pill {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-xs) var(--spacing-lg);

  border-radius: var(--radius-full);

  font-size: 13px;

  margin-bottom: var(--spacing-md);
}

.section-title {
  font-size: clamp(30px, 4vw, 44px);

  font-weight: var(--font-weight-extrabold);

  margin-bottom: var(--spacing-md);
}

.section-title span {
  color: var(--accent-cyan);
}

.section-subtitle {
  font-size: 14.5px;

  line-height: 1.7;

  color: var(--text-gray);
}

/* ================= MAP ================= */

.map-wrapper {
  position: relative;

  width: 100%;
}

.map-image {
  width: 100%;

  max-width: 100%;

  display: block;

  opacity: 0.9;
}

/* ================= LOCATION CARDS ================= */

.location-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-card {
  background: linear-gradient(
    135deg,
    var(--dark-card) 0%,

    var(--bg-primary) 100%
  );

  color: #fff;
  padding: 32px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);

  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.location-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46, 174, 195, 0.25);
  border-color: rgba(46, 174, 195, 0.4);
}

/* Top Section */
.location-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.location-title img {
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.title-text h4 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.title-text span {
  display: block;
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
}

/* Description */
.location-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0.95;
}

/* Bottom Tag */
.location-meta {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .location-cards {
    grid-template-columns: 1fr;
  }
}

/* ================= TIMELINE HEADER ================= */

.timeline-header {
  margin: 0 auto 80px;

  padding: 0 16px;
}

/* Pill */

.timeline-pill {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-xs);

  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-sm) var(--spacing-lg);

  border-radius: var(--radius-full);

  font-size: 13px;

  font-weight: var(--font-weight-medium);

  margin-bottom: var(--spacing-lg);
}

/* Title */

.timeline-title {
  font-size: clamp(32px, 4vw, 44px);

  font-weight: var(--font-weight-extrabold);

  color: var(--text-dark);

  margin-bottom: var(--spacing-sm);

  line-height: 1.2;
}

.timeline-title span {
  color: var(--accent-cyan);
}

/* Subtitle */

.timeline-subtitle {
  font-size: 15px;

  line-height: 1.7;

  color: var(--text-gray);

  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 576px) {
  .timeline-header {
    margin-bottom: 60px;
  }

  .timeline-subtitle {
    font-size: 14px;
  }
}

/* Timeline wrapper */

.timeline {
  position: relative;

  margin: var(--spacing-2xl) auto var(--spacing-xl);

  padding: 0 0 0;
}

/* Center line */

.timeline::before {
  content: "";

  position: absolute;

  top: 0;

  bottom: 0;

  left: 50%;

  width: 2px;

  background: var(--accent-teal);

  transform: translateX(-50%);
}

/* Item */

.timeline-item {
  position: relative;

  width: 50%;

  padding: var(--spacing-md) var(--spacing-xl);
}

.timeline-item.left {
  left: 0;

  text-align: right;
}

.timeline-item.right {
  left: 50%;

  text-align: left;
}

/* Dot */

.timeline-item::before {
  content: "";

  position: absolute;

  top: 30px;

  width: 10px;

  height: 10px;

  background: var(--accent-cyan);

  border-radius: var(--radius-full);

  z-index: 2;
}

.timeline-item.left::before {
  right: -6px;
}

.timeline-item.right::before {
  left: -6px;
}

/* Card */

.timeline-card {
  background: var(--text-white);

  border-radius: var(--radius-sm);

  padding: var(--spacing-md) var(--spacing-lg);

  box-shadow: 0 10px 26px var(--shadow-sm);

  transition: var(--transition-base);

  cursor: pointer;
}

.timeline-card:hover {
  box-shadow: 0 12px 32px var(--shadow-md);

  transform: translateY(-2px);

  border-left: 3px solid var(--accent-cyan);

  padding-left: 19px;
}

.timeline-card h4 {
  font-size: 15px;

  font-weight: var(--font-weight-bold);

  margin-bottom: var(--spacing-xs);

  color: var(--text-dark);
}

.timeline-card p {
  font-size: 13px;

  color: var(--text-gray);

  line-height: 1.6;

  margin: 0;
}

/* Year */

.year {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-xs);

  font-size: 13px;

  font-weight: var(--font-weight-semibold);

  color: var(--accent-cyan);

  margin-bottom: var(--spacing-xs);
}

/* Footer */

.timeline-footer {
  margin-top: var(--spacing-2xl);

  font-size: 14px;

  color: var(--text-gray);
}

/* Button */

.timeline-btn {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  margin-top: var(--spacing-md);

  background: var(--accent-cyan);

  color: var(--text-white);

  padding: var(--spacing-sm) var(--spacing-lg);

  border-radius: var(--radius-sm);

  text-decoration: none;

  font-weight: var(--font-weight-semibold);

  transition: var(--transition-base);

  box-shadow: 0 4px 12px var(--shadow-md);

  border: none;

  cursor: pointer;
}

.timeline-btn:hover {
  background: var(--accent-cyan);

  transform: translateY(-2px);

  box-shadow: 0 8px 24px var(--shadow-lg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    width: 100%;

    padding-left: 60px;

    padding-right: 20px;

    text-align: left;
  }

  .timeline-item.left,
  .timeline-item.right {
    left: 0;
  }

  .timeline-item::before {
    left: 16px;
  }
}

/* ================= SECTION ================= */

.distributor-section {
  background: var(--dark-bg);

  color: var(--text-white);

  padding: 120px 0;

  margin: 5% 0;
}

.container-custom {
  max-width: 1300px;

  margin: auto;

  padding: 0 16px;
}

/* Grid */

.distributor-grid {
  display: grid;

  grid-template-columns: 1.1fr 60px 1.2fr;

  gap: 40px;

  align-items: flex-start;
}

/* ================= LEFT ================= */

.dist-title {
  font-size: 44px;

  font-weight: var(--font-weight-extrabold);

  line-height: 1.2;

  margin: var(--spacing-md) 0;
}

.dist-title span {
  color: var(--accent-cyan);
}

.highlight {
  color: var(--accent-cyan);
}

.dist-desc {
  font-size: 15px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.9);

  max-width: 420px;
}

.dist-stats {
  display: flex;

  gap: var(--spacing-xl);

  margin-top: 50px;
}

.dist-stats h4 {
  font-size: 26px;

  margin-bottom: 4px;
}

.dist-stats p {
  font-size: 13px;

  opacity: 0.85;
}

/* ================= PROGRESS ================= */

.dist-progress {
  position: relative;

  height: 100%;

  display: flex;

  justify-content: center;
}

.progress-track {
  width: 4px;

  height: 100%;

  background: rgba(255, 255, 255, 0.25);

  border-radius: var(--radius-xs);
}

.progress-fill {
  position: absolute;

  top: 0;

  width: 4px;

  height: 0%;

  background: var(--accent-cyan);

  border-radius: var(--radius-sm);

  transition: height var(--transition-base);
}

/* ================= RIGHT ================= */

.dist-right {
  position: relative;
  height: 420px; /* control visible area */
  overflow: hidden;
}

.dist-scroll {
  height: 100%;
  overflow-y: auto;
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}
.dist-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  pointer-events: none;
}
.dist-scroll::-webkit-scrollbar {
  width: 6px;
}

.dist-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.dist-scroll::-webkit-scrollbar-thumb {
  background: var(--accent-cyan);
  border-radius: 10px;
}
.dist-progress {
  position: relative;
  display: flex;
  justify-content: center;
}

.progress-track {
  width: 4px;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
}

.feature-card {
  display: flex;

  gap: var(--spacing-lg);

  padding: var(--spacing-xl) var(--spacing-lg);

  border-radius: var(--radius-md);

  background: var(--overlay-light);

  border: 1px solid rgba(255, 255, 255, 0.6);

  opacity: 1.35;

  transform: translateY(20px);

  transition: var(--transition-base);

  cursor: pointer;
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);

  border-color: var(--accent-cyan);

  transform: translateY(18px);
}

.feature-card.active {
  opacity: 1;

  transform: translateY(0);

  background: rgba(46, 174, 195, 0.1);

  border-color: var(--accent-cyan);
}

.feature-num {
  font-size: 42px;

  font-weight: 800;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .distributor-grid {
    grid-template-columns: 1fr;
  }

  .dist-progress {
    display: none;
  }
}

/* ================= PARTNER CTA ================= */

.partner-cta-section {
  margin: 5% 0;

  background: #fff;
}

.container-custom {
  max-width: 1200px;

  margin: auto;

  padding: 0 16px;
}

/* Card */

.partner-card {
  background: var(--text-white);

  border: 2px solid var(--accent-cyan);

  border-radius: var(--radius-sm);

  padding: var(--spacing-2xl) var(--spacing-xl);

  text-align: center;

  box-shadow: 0 10px 28px var(--shadow-md);

  transition: var(--transition-base);
}

.partner-card:hover {
  box-shadow: 0 15px 40px var(--shadow-lg);

  transform: translateY(-4px);
}

/* Icon */

.partner-icon {
  width: 56px;

  height: 56px;

  border-radius: var(--radius-full);

  background: var(--bg-secondary);

  display: grid;

  place-items: center;

  margin: 0 auto var(--spacing-md);

  color: var(--text-white);

  font-size: 22px;
}

/* Title */

.partner-title {
  font-size: clamp(24px, 3vw, 36px);

  font-weight: 700;

  margin-bottom: 14px;

  color: #222;
}

.partner-title span {
  color: #2eaec3;
}

/* Description */

.partner-desc {
  max-width: 720px;

  margin: 0 auto 34px;

  font-size: 14.5px;

  line-height: 1.7;

  color: #555;
}

/* Features */

.partner-features {
  display: flex;

  justify-content: center;

  gap: 28px;

  flex-wrap: wrap;

  margin-bottom: 36px;
}

.feature-item {
  display: flex;

  align-items: center;

  gap: var(--spacing-sm);

  font-size: 14px;

  color: var(--text-dark);
}

.feature-item i {
  width: 22px;

  height: 22px;

  border-radius: var(--radius-full);

  background: var(--stat-bg-light);

  color: var(--accent-cyan);

  display: grid;

  place-items: center;

  font-size: 12px;
}

/* Buttons */

.partner-actions {
  display: flex;

  justify-content: center;

  gap: var(--spacing-md);

  flex-wrap: wrap;
}

.partner-btn {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  padding: var(--spacing-sm) var(--spacing-lg);

  border-radius: var(--radius-sm);

  font-size: 14px;

  font-weight: var(--font-weight-semibold);

  text-decoration: none;

  transition: var(--transition-fast);

  box-shadow: 0 4px 12px var(--shadow-sm);

  border: none;

  cursor: pointer;
}

.partner-btn.primary {
  background: var(--accent-cyan);

  color: var(--text-white);
}

.partner-btn.primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 28px var(--shadow-lg);

  background: var(--dark-accent);
}

.partner-btn.secondary {
  background: var(--dark-card);

  color: var(--text-white);
}

.partner-btn.secondary:hover {
  transform: translateY(-3px);

  box-shadow: 0 12px 28px var(--shadow-lg);

  background: var(--dark-teal);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .partner-card {
    padding: var(--spacing-xl) var(--spacing-lg);
  }

  .partner-features {
    gap: var(--spacing-md);
  }
}

/* ================= CTA SECTION ================= */

.cta-section {
  position: relative;

  width: 100%;

  min-height: 420px;

  background: url("../images/lucid-origin_Futuristic_automotive_technology_background_sleek_dark_metallic_surfaces_abstrac-0.jpg.jpeg")
    center / cover no-repeat;

  display: flex;

  align-items: center;

  /* overflow: hidden; */
}

/* Dark overlay */

.cta-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to right,

    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.65)
  );

  z-index: 1;
}

/* Content */

.cta-content {
  position: relative;

  z-index: 2;

  color: var(--text-white);
}

/* Pill */

.cta-pill {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  background: var(--bg-secondary);

  color: var(--text-white);

  padding: var(--spacing-xs) var(--spacing-lg);

  border-radius: var(--radius-full);

  font-size: 13px;

  margin-bottom: 18px;
}

/* Title */

.cta-title {
  font-size: clamp(28px, 4vw, 46px);

  font-weight: 700;

  line-height: 1.25;

  margin-bottom: 18px;
}

.cta-title span {
  color: #2eaec3;
}

.cta-title .highlight {
  color: #2eaec3;
}

/* Description */

.cta-desc {
  max-width: 720px;

  margin: 0 auto 34px;

  font-size: 15px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.9);
}

/* Buttons */

.cta-actions {
  display: flex;

  justify-content: center;

  gap: var(--spacing-md);

  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;

  align-items: center;

  gap: var(--spacing-sm);

  padding: var(--spacing-md) var(--spacing-xl);

  border-radius: var(--radius-md);

  font-weight: var(--font-weight-semibold);

  text-decoration: none;

  font-size: 14px;

  transition: var(--transition-fast);

  box-shadow: 0 6px 16px var(--shadow-md);

  border: none;

  cursor: pointer;
}

.cta-btn.primary {
  background: var(--accent-cyan);

  color: var(--text-white);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 30px var(--shadow-lg);

  background: var(--dark-accent);
}

.cta-btn.secondary {
  background: var(--dark-card);

  color: var(--text-white);
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);

  box-shadow: 0 14px 30px var(--shadow-lg);

  background: var(--dark-teal);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cta-section {
    min-height: 360px;

    padding: var(--spacing-2xl) 0;
  }
}

/* footer */

/* ================= FOOTER ================= */

.site-footer {
  background: var(--bg-primary);

  color: var(--text-white);

  padding: var(--spacing-2xl) 0 0px;

  position: relative;

  overflow: hidden;
}

/* GRID */

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: var(--spacing-2xl);
}
/* LEFT SIDE */
.footer-locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
}

.footer-location-block h5 {
  margin-bottom: var(--spacing-md);
}

/* RIGHT SIDE */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

/* 3 columns under description */
.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

/* ABOUT */

.footer-desc {
  font-size: 14px;

  line-height: 1.7;

  color: rgba(255, 255, 255, 0.9);

  margin-bottom: var(--spacing-lg);
}

.footer-contact {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-contact li {
  font-size: 14px;

  margin-bottom: var(--spacing-sm);

  display: flex;

  align-items: center;

  gap: var(--spacing-sm);
}

/* COLUMNS */

.footer-col h5 {
  font-size: 15px;

  font-weight: var(--font-weight-semibold);

  margin-bottom: var(--spacing-md);
}

.footer-col ul {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-col ul li {
  margin-bottom: var(--spacing-sm);
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.9);

  font-size: 14px;

  text-decoration: none;
}

.footer-col ul li a:hover {
  text-decoration: underline;
}

/* HUGE BRAND */

.footer-brand {
  font-size: clamp(80px, 18vw, 240px);

  font-weight: var(--font-weight-extrabold);

  text-align: center;

  line-height: 1;

  opacity: 2.15;

  pointer-events: none;

  color: var(--text-white);

  position: relative;

  margin-bottom: -3.9%;
}

/* SOCIAL */

.footer-social {
  display: flex;

  justify-content: center;

  gap: var(--spacing-md);

  margin-bottom: var(--spacing-md);
}

.footer-social a {
  width: 36px;

  height: 36px;

  border-radius: var(--radius-full);

  background: var(--bg-primary);

  display: grid;

  place-items: center;

  color: var(--text-white);

  font-size: 16px;

  transition: var(--transition-fast);

  box-shadow: 0 2px 8px var(--shadow-md);

  cursor: pointer;
}

.footer-social a:hover {
  background: var(--accent-cyan);

  transform: translateY(-3px) scale(1.1);

  box-shadow: 0 6px 16px var(--shadow-lg);
}

/* COPYRIGHT */

.footer-bottom {
  text-align: center;

  font-size: 13px;

  color: var(--bg-primary);

  margin-bottom: 29px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-locations {
    grid-template-columns: 1fr;
  }

  .footer-links-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-contact li {
    justify-content: center;
  }
}

.example::-webkit-scrollbar {
  display: none;
}

/* new timeline css  */

.timeline-card {
  background: #ffffff;

  border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  position: relative;

  padding: 20px 25px;
}

.timeline-card {
  background: #ffffff;

  border-radius: 12px;

  padding: 20px 60px 20px 25px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  position: relative;
}

/* ICON */

.timeline-icon {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 42px;

  height: 42px;

  background: #398c9e;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;
}

/* LEFT ITEMS → icon on right */

.timeline-item.left .timeline-icon {
  right: 10px;
}

/* RIGHT ITEMS → icon on left */

.timeline-item.right .timeline-icon {
  left: 10px;

  /* right: auto; */
}

/* IMAGE */

.timeline-icon img {
  width: 18px;

  height: 18px;
}

/* YEAR */

.timeline-card .year {
  display: block;

  font-weight: 700;

  font-size: 15px;

  margin-bottom: 4px;

  color: #111827;
}

/* TEXT */

.timeline-card p {
  margin: 0;

  font-size: 15px;

  color: #374151;
}

.timeline-item.right .timeline-card {
  padding-left: 60px;
}

.timeline-item.right .timeline-icon {
  left: 10px;
}

/* end timeline css  */

.gallery-section {
  padding: 80px 0;
}

.gallery-wrapper {
  position: relative;
}

/* Tabs */
.gallery-tabs a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
  color: #777;
}

.gallery-tabs a.active {
  color: #2eaec3;
  border-bottom: 2px solid #2eaec3;
}

/* Tab Content */
.gallery-content {
  display: none;
}

.gallery-content.active {
  display: block;
}

/* Masonry */
.gallery-track {
  column-count: 4;
  column-gap: 15px;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
}

.gallery-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Slide Animation */
.slide-out-left {
  transform: translateX(-60px);
  opacity: 0;
}

.slide-out-right {
  transform: translateX(60px);
  opacity: 0;
}

.slide-in {
  transform: translateX(0);
  opacity: 1;
}

/* Buttons */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--bg-primary);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
}

.gallery-prev { left: -25px; }
.gallery-next { right: -25px; }

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--accent-cyan);
}

/* Responsive */
@media (max-width: 992px) {
  .gallery-track { column-count: 2; }
}

@media (max-width: 576px) {
  .gallery-track { column-count: 1; }
}
/* Make gallery items consistent */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* Video styling */
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover zoom like images */
.gallery-item:hover video {
  transform: scale(1.05);
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

/* Play icon */
.video-overlay i {
  font-size: 28px;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Hover effects */
.gallery-item:hover .video-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.gallery-item:hover .video-overlay i {
  transform: scale(1.1);
}



/* contact form */
/* ===== Contact Section ===== */

.contact-section {
  padding: 100px 0;
  
}

/* Badge */
.contact-badge {
  background: var(--bg-secondary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Title */
.contact-title {
  font-size: 42px;
  font-weight: 700;
}

.contact-title span {
  color: var(--accent-cyan);
}

/* Card */
.contact-card {
  background: var(--bg-primary);
  padding: 60px;
  border-radius: 20px;
  scale: 82%;
}

/* Labels */
.contact-card label {
  color: var(--text-white);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.contact-card label span {
  color: red;
}

/* Inputs */
.contact-card .form-control {
  background: #f2f2f2;
  border: none;
  height: 48px;
  border-radius: 6px;
  padding: 10px 15px;
  font-size: 14px;
  box-shadow: none;
  transition: 0.3s ease;
}

.contact-card textarea.form-control {
  height: auto;
  resize: none;
}

.contact-card .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(46, 174, 195, 0.25);
}

/* Button */
.btn-contact {
  width: 100%;
  height: 50px;
  background: #f2f2f2;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  color: #2f8f9d;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background: #ffffff;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-card {
    padding: 40px 25px;
  }

  .contact-title {
    font-size: 32px;
  }
}

/* dropwdown */
.download-wrapper {
  position: relative;
  display: inline-block;
}

/* Main Button */
.download-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--accent-cyan);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Arrow rotation */
.download-btn svg {
  transition: transform 0.3s ease;
}

/* Dropdown Menu */
.download-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.download-menu a {
  display: block;
  padding: 12px 18px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: background 0.2s ease;
}

.download-menu a:hover {
  background: #f2f5ff;
}

/* Active State */
.download-wrapper.active .download-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.download-wrapper.active .download-btn svg {
  transform: rotate(180deg);
}
