/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.6)
  );
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 1.5rem;
  text-align: center;
  color: var(--white);
}

.animated-headline {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

/* CTA BUTTONS */

.cta-buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #1f7a5a, #0f3d2e);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  transition: all 0.4s ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}



/* =========================
   PROCESS SECTION
========================= */
.process {
  padding: 5rem 3rem;
  background: #0f3d2e; /* unchanged */
  color: #ffffff;
  text-align: center;
}

.process h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: auto;
}

.step {
  background: #ffffff;
  color: #333;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  gap: 20;
}

.step img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.step-number {
  display: inline-block;
  margin-top: -18px;
  background: #1f7a5a;
  color: #ffffff;
  font-weight: 700;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.step h4 {
  margin: 1rem 0 0.5rem;
  color: #0f3d2e;
}

.step p {
  padding: 0 1.5rem 2rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}

.step:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* .process {
  padding: 5rem 3rem;
  background: #0f3d2e;
  color: #ffffff;
}

.process h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: linear-gradient(145deg, #1f7a5a, #145c43);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.step::before {
  content: "✔";
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #ffd700;
}

.step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
} */
/* ===== FORCE CTA VISIBILITY (DEBUG + FIX) ===== */

.cta-buttons,
.cta-buttons a {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.cta-buttons a {
  position: relative;
  z-index: 9999;
}
.export-categories {
  padding: 5rem 3rem;
  background: linear-gradient(135deg, #ffffff, #f6fff9);
  text-align: center;
}

.export-categories h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #0f3d2e;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
}

.category-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  text-align: left;
}

.category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.category-card h3 {
  font-size: 1.4rem;
  margin: 1.5rem;
  color: #1f7a5a;
}

.category-card p {
  margin: 0 1.5rem 2rem;
  color: #444;
  line-height: 1.6;
}

.category-card:hover {
  transform: translateY(-10px);
}
/* ===== FORCE EXPORT CATEGORIES VISIBILITY ===== */

.export-categories {
  position: relative;
  z-index: 5;
  min-height: 400px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem; /* 🔥 THIS FIXES IT */
}
.category-card {
  position: relative !important;
  float: none !important;
}

.footer .badges img {
  width: 80px;          /* ✅ ideal size */
  max-width: 100%;
  height: auto;
  opacity: 0.85;        /* subtle, professional */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer .badges img:hover {
  transform: scale(1.05);
  opacity: 1;
}
/* =========================
   CERTIFICATIONS SCROLL STRIP
========================= */

/* =========================
   CERTIFICATIONS LOGO STRIP
========================= */

/* =========================
   CERTIFICATIONS LOGO MARQUEE
========================= */

.certifications-strip {
  background: linear-gradient(135deg, #f6fff9, #ffffff);
  padding: 2rem 0;
  overflow: hidden;
  border-top: 1px solid #e6eee9;
  border-bottom: 1px solid #e6eee9;
}

.certifications-marquee {
  width: 100%;
  overflow: hidden;
}

.certifications-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: marquee 25s linear infinite;
}

/* Logos */
.certifications-track img {
  height: 55px;
  width: auto;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

/* Subtle hover (NO color change) */
.certifications-track img:hover {
  transform: scale(1.05);
}

/* Pause ONLY when hovering the marquee */
.certifications-marquee:hover .certifications-track {
  animation-play-state: paused;
}

/* Perfect infinite loop */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =========================
   EXPORT DESTINATIONS MAP
========================= */

.export-map-section {
  padding: 6rem 3rem;
  background: linear-gradient(135deg, #ffffff, #f6fff9);
  text-align: center;
}

.export-map-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #0f3d2e;
}

.map-subtitle {
  margin-top: 0.8rem;
  color: #555;
  font-size: 1.05rem;
}

.map-container {
  position: relative;
  max-width: 1100px;
  margin: 4rem auto 0;
}

/* World map */
.world-map {
  width: 100%;
  opacity: 0.95;
  display: block;
  position: relative;
  z-index: 1;
}

/* 🔴 FIX: Map points MUST be above SVG */
.map-point {
  position: absolute;
  z-index: 4; /* ✅ THIS FIXES INVISIBLE TEXT */
  background: #1f7a5a;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 20px;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  white-space: nowrap;
}

.map-point.origin {
  background: #ffd700;
  color: #0f3d2e;
  font-weight: 700;
}

/* Pulse animation */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31,122,90,0.6); }
  70% { box-shadow: 0 0 0 12px rgba(31,122,90,0); }
  100% { box-shadow: 0 0 0 0 rgba(31,122,90,0); }
}

/* Flight paths (SVG overlay) */
.flight-paths {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}
.flight-paths path {
  fill: none;
  stroke: #1f7a5a;
  stroke-width: 0.6;      /* ⬅️ slightly thicker */
  stroke-dasharray: 3 3; /* ⬅️ clearer dotted pattern */
  animation: dash 3s linear infinite;
  opacity: 0.8;
}

@keyframes dash {
  to {
    stroke-dashoffset: -20;
  }
}


/* Plane */
.plane {
  position: absolute;
  z-index: 5;
  width: 32px;
  height: 32px;

  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%);
}
