/* ════════════════════════════════
   ROOT VARIABLES
════════════════════════════════ */
:root {
  --navy: #0a0f1e;
  --navy-mid: #111827;
  --navy-light: #111a33;
  --orange: #e86000;
  --white: #ffffff;
  --gray-100: #f5f6f8;
  --gray-200: #e6e6e6;
  --gray-400: #999;
  --gray-600: #666;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ════════════════════════════════
   GLOBAL RESET
════════════════════════════════ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--white);
  color: #111;
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ════════════════════════════════
   BUTTON SYSTEM
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 25px rgba(232, 96, 0, 0.25);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: #ff6a00;
  box-shadow: 0 14px 30px rgba(232, 96, 0, 0.35);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}

/* ════════════════════════════════
   SECTION LABELS & TITLES
════════════════════════════════ */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--navy);
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 16px;
}
.section-title.light { color: var(--white); }

/* ════════════════════════════════
   SCROLL REVEAL
════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal          { transform: translateY(40px); }
.reveal-left     { transform: translateX(-40px); }
.reveal-right    { transform: translateX(40px); }

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  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; }

/* ════════════════════════════════
   HERO  ← MAIN FIX
════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;          /* poori screen bharega */
  min-height: 600px;      /* chhoti screens ke liye minimum */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* SLIDER BACKGROUND */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;           /* parent ki poori height */
  overflow: hidden;
}

/* SCAN LINES OVERLAY */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.012) 2px,
    rgba(255,255,255,0.012) 4px
  );
  pointer-events: none;
}

/* EACH SLIDE */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;           /* parent ki poori height cover kare */
  background-size: cover;
  background-position: center center;
  opacity: 0;
  animation: heroSlider 12s infinite;
}

.s1 {
  background-image:
    linear-gradient(to right, rgba(10,15,30,0.95) 35%, rgba(10,15,30,0.55) 100%),
    url('../img/banner.webp');
}
.s2 {
  background-image:
    linear-gradient(to right, rgba(10,15,30,0.95) 35%, rgba(10,15,30,0.55) 100%),
    url('../img/banner2.webp');
    animation-delay: 4s;
}
.s3 {
  background-image:
    linear-gradient(to right, rgba(10,15,30,0.95) 35%, rgba(10,15,30,0.55) 100%),
    url('../img/banner3.webp');
    animation-delay: 8s; 
}

@keyframes heroSlider {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  33%  { opacity: 1; }
  41%  { opacity: 0; }
  100% { opacity: 0; }
}
/* LEFT ORANGE ACCENT BAR */
.hero-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--orange);
  z-index: 3;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 120px;   /* navbar height se thoda zyada */
  padding-bottom: 80px;
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.92;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero-h1 em { color: var(--orange); font-style: normal; }

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.5s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.65s forwards;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}

.hero-stat {
  border-left: 2px solid var(--orange);
  padding-left: 16px;
}
.hero-stat .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 2px;
}

/* SCROLL INDICATOR */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-8px); }
}

/* ════════════════════════════════
   TICKER
════════════════════════════════ */
.ticker {
  background: var(--orange);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   SERVICES
════════════════════════════════ */
#services {
  padding: 120px 0;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
#services::before {
  content: 'SERVICES';
  position: absolute;
  top: 50px;
  right: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px;
  color: rgba(0,0,0,0.03);
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}
.services-header p {
  margin-top: 16px;
  color: var(--gray-600);
  font-size: 17px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 4px;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.35s var(--ease);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,96,0,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: rgba(232,96,0,0.14); }
.service-icon svg {
  width: 26px; height: 26px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}
.service-num {
  position: absolute;
  top: 20px; right: 24px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: rgba(0,0,0,0.04);
  line-height: 1;
}

/* Product image cards */
.service-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 16px;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.service-card:hover .service-img img { transform: scale(1.08); }

/* ════════════════════════════════
   ABOUT
════════════════════════════════ */
#about {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(10,15,30,0.3), rgba(10,15,30,0.1)),
    url('../img/intro.webp');
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  background: var(--orange);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(232,96,0,0.35);
}
.about-badge .num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--white);
  line-height: 1;
}
.about-badge .label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 0 12px;
}
.about-accent-box {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 2px solid var(--orange);
  border-radius: 4px;
  opacity: 0.3;
}
.about-content > p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.point-check {
  width: 24px; height: 24px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.point-check svg {
  width: 12px; height: 12px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}
.about-point h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}
.about-point p { font-size: 14px; color: var(--gray-600); }

/* ════════════════════════════════
   GLOBAL REACH
════════════════════════════════ */
#reach {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#reach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(224,32,32,0.08) 0%, transparent 60%),
    radial-gradient(circle at 80% 50%, rgba(232,96,0,0.06) 0%, transparent 60%);
}
.reach-inner { position: relative; z-index: 1; }
.reach-header { text-align: center; margin-bottom: 72px; }
.reach-header p {
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  font-size: 17px;
}

.world-visual {
  position: relative;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 48px 40px;
  margin-bottom: 72px;
  overflow: hidden;
}
.world-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.world-map-svg {
  width: 100%;
  max-height: 260px;
  opacity: 0.18;
  display: block;
}
.route-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.route-pins {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.pin-dot {
  width: 14px; height: 14px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  box-shadow: 0 0 0 4px rgba(224,32,32,0.25), 0 0 20px rgba(224,32,32,0.4);
}
.pin-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  white-space: nowrap;
}
.route-line {
  height: 1px;
  width: 60px;
  background: linear-gradient(to right, rgba(224,32,32,0.6), rgba(232,96,0,0.6));
  position: relative;
}
.route-line::after {
  content: '›';
  position: absolute;
  right: -4px; top: -10px;
  color: var(--orange);
  font-size: 14px;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.stat-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
}
.stat-block:hover { background: rgba(255,255,255,0.06); }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--white);
  line-height: 1;
  letter-spacing: 1px;
}
.stat-number span { color: var(--orange); }
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 8px;
}

/* ════════════════════════════════
   SHIPPING PARTNERS
════════════════════════════════ */
#shipping-partners {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}
.section-header { margin-bottom: 40px; }
.logo-slider { overflow: hidden; position: relative; }
.logo-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: scroll 18s linear infinite;
  align-items: center;
}
.logo-item img {
  height: 60px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform 0.3s;
}
.logo-item img:hover {
  transform: scale(1.1);
}
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════
   CTA BAND
════════════════════════════════ */
.cta-band {
  background: var(--orange);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: 'GO GLOBAL';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 180px;
  color: rgba(255,255,255,0.06);
  letter-spacing: 10px;
  white-space: nowrap;
  pointer-events: none;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.cta-text p { color: rgba(255,255,255,0.7); font-size: 17px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
