/* =========================================================
   1) GLOBAL / BASE
   ========================================================= */
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  overscroll-behavior-y: auto;
  touch-action: pan-y;
  /* allows only vertical scroll */
}

:root {
  --primary-green: #00ff88;
  --secondary-green: #2d5a27;
  --accent-blue: #00d4ff;
  --warm-yellow: #ffeb3b;
  --deep-forest: #0a1a0a;
  --light-mint: #e8fff0;
  --glow-green: rgba(0, 255, 136, 0.3);
  --glow-blue: rgba(0, 212, 255, 0.3);
}


/* ===== Scrollbar Styling (Dark Green Theme) ===== */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: #e6f4ea;
  /* light green background */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #065f46, #064e3b);
  /* dark green gradient */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #047857, #065f46);
  /* slightly brighter green on hover */
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a2f1a 50%, #0f1f0f 100%);
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* =========================================================
   2) HEADER / NAVIGATION
   ========================================================= */
.logo img {
  height: 60px;
  /* adjust as needed */
  width: auto;
  display: block;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #16e0aa, #11ffbc, #85ffdc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .logo img {
    height: 40px;
    /* smaller logo for mobile */
  }
}

header {
  width: 100%;
  padding: 15px 40px;
  background: linear-gradient(135deg, #022c2200 40%, #064e3b00 100%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled {
  background: rgba(10, 26, 10, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled .menu a {
  color: #ffffff;
  /* make nav links dark for visibility */
}

header.scrolled .menu a:hover {
  color: #85ffdc;
  /* make nav links dark for visibility */
}

/*header.scrolled .logo h2 {
  color: #4c2dff;
}

.logo h2 {
  color: #a64ce3;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.3s ease;
}

.logo h2:hover {
  color: #3a44fe;
} */

/* Nav Menu */
.menu {
  list-style: none;
  display: flex;
  gap: 28px;
}

.menu li {
  position: relative;
}

.menu a {
  color: #fff;
  padding: 10px 5px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #14ebb2, #047857);
  transition: width 0.3s ease;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #85ffdc;
}

/* Login Button */
.login-btn a {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  color: #0c0c0c !important;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.login-btn a:hover {
  background: linear-gradient(90deg, #047857, #14ebb2);
  transform: scale(1.08);
  color: white !important;
}

/* Remove underline effect for login button */
.login-btn a::after {
  display: none;
}

.dropdown {
  position: relative;
}

/* Dropdown - Dark Green Theme */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 220px;
  border-radius: 6px;
  overflow: hidden;
  /* Glass effect */
  background: rgba(0, 50, 30, 0.75);
  /* dark green semi-transparent */
  backdrop-filter: blur(14px);
  /* Glow border */
  border: 1px solid rgba(0, 200, 100, 0.3);
  /* green glow */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(0, 200, 100, 0.25);
  /* subtle green glow */

  animation: dropdownFade 0.35s ease forwards;
  z-index: 999;
}

.dropdown-menu li {
  border-bottom: 1px solid rgba(0, 200, 100, 0.15);
  /* greenish separator */
}

/* Optional: hover effect for items */
.dropdown-menu li a {
  color: #b2f2bb;
  /* light green text */
  padding: 10px 16px;
  display: block;
  transition: background 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(0, 200, 100, 0.15);
  /* subtle green highlight */
  color: #fff;
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu li a {
  padding: 16px 22px;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: all 0.3s ease;
}

/* Left indicator for dropdown items */
.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 3px;
  background: linear-gradient(90deg, #0f5132, #28a745);
  /* dark green gradient */
  border-radius: 4px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

/* Hover effect for dropdown items */
.dropdown-menu li a:hover {
  background: rgba(0, 200, 100, 0.15);
  /* subtle green highlight */
  color: #b2f2bb;
  /* light green text */
  padding-left: 28px;
}

.dropdown-menu li a:hover::before {
  height: 60%;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown animation */
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.98);
  }

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  border-radius: 4px;
  transition: all 0.4s ease;
}

/* Animate to X when active */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================================================
   3) HERO SECTION
   ========================================================= */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 140px 100px 60px;
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1a0a 0%, #1a2f1a 50%, #0f1f0f 100%);
  /* dark green gradient */
  color: white;
  clip-path: ellipse(250% 200% at 100% 0%);
  overflow: hidden;
}

/* Aurora glow (no conic) 
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% -10% -10%;
  background:
    radial-gradient(35% 45% at 15% 30%, rgba(76, 227, 162, 0.35), transparent 60%),
    radial-gradient(40% 50% at 85% 20%, rgba(73, 165, 72, 0.28), transparent 60%),
    radial-gradient(30% 40% at 60% 80%, rgba(162, 255, 0, 0.18), transparent 60%);
  filter: blur(48px);
  opacity: 0.9;
  animation: auroraShift 16s ease-in-out infinite alternate;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}  */

/* Particle grid 
.hero::after {
  content: "";
  position: absolute;
  width: 320%;
  height: 320%;
  top: -110%;
  left: -110%;
  background:
    radial-gradient(circle, rgba(193, 248, 64, 0.14) 2px, transparent 3px) 0 0 / 48px 48px,
    radial-gradient(circle, rgba(76, 255, 106, 0.1) 2px, transparent 3px) 24px 24px / 48px 48px;
  animation: dotsDrift 30s linear infinite;
  z-index: 0;
  pointer-events: none;
} */

/* =========================================================
   TRADING SHAPES ANIMATION (candlestick-like bars)
   ========================================================= */
.trading-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  /* above background, behind content */
  pointer-events: none;
}

.trading-shapes span {
  position: absolute;
  bottom: -20px;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, #22c55e, #064e3b);
  border-radius: 50%;
  opacity: 0.7;
  animation: rise 12s linear infinite;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

/* Random horizontal positions */
.trading-shapes span:nth-child(odd) {
  width: 6px;
  height: 6px;
  animation-duration: 10s;
}

.trading-shapes span:nth-child(even) {
  width: 10px;
  height: 10px;
  animation-duration: 14s;
}

/* Floating animation */
@keyframes rise {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  20% {
    opacity: 0.7;
  }

  100% {
    transform: translateY(-110vh) scale(1.2);
    opacity: 0;
  }
}

/* 25 spans with randomized positions/speeds */
.trading-shapes span:nth-child(1) {
  left: 3%;
  height: 10px;
  animation-duration: 9s;
}

.trading-shapes span:nth-child(2) {
  left: 7%;
  height: 10px;
  animation-duration: 11s;
}

.trading-shapes span:nth-child(3) {
  left: 11%;
  height: 10px;
  animation-duration: 13s;
}

.trading-shapes span:nth-child(4) {
  left: 15%;
  height: 10px;
  animation-duration: 8s;
}

.trading-shapes span:nth-child(5) {
  left: 20%;
  height: 10px;
  animation-duration: 14s;
}

.trading-shapes span:nth-child(6) {
  left: 24%;
  height: 10px;
  animation-duration: 10s;
}

.trading-shapes span:nth-child(7) {
  left: 28%;
  height: 10px;
  animation-duration: 12s;
}

.trading-shapes span:nth-child(8) {
  left: 33%;
  height: 10px;
  animation-duration: 9s;
}

.trading-shapes span:nth-child(9) {
  left: 37%;
  height: 10px;
  animation-duration: 15s;
}

.trading-shapes span:nth-child(10) {
  left: 42%;
  height: 10px;
  animation-duration: 11s;
}

.trading-shapes span:nth-child(11) {
  left: 46%;
  height: 10px;
  animation-duration: 13s;
}

.trading-shapes span:nth-child(12) {
  left: 50%;
  height: 10px;
  animation-duration: 10s;
}

.trading-shapes span:nth-child(13) {
  left: 55%;
  height: 10px;
  animation-duration: 9s;
}

.trading-shapes span:nth-child(14) {
  left: 60%;
  height: 10px;
  animation-duration: 12s;
}

.trading-shapes span:nth-child(15) {
  left: 64%;
  height: 10px;
  animation-duration: 14s;
}

.trading-shapes span:nth-child(16) {
  left: 68%;
  height: 10px;
  animation-duration: 10s;
}

.trading-shapes span:nth-child(17) {
  left: 72%;
  height: 10px;
  animation-duration: 13s;
}

.trading-shapes span:nth-child(18) {
  left: 76%;
  height: 10px;
  animation-duration: 11s;
}

.trading-shapes span:nth-child(19) {
  left: 80%;
  height: 10px;
  animation-duration: 9s;
}

.trading-shapes span:nth-child(20) {
  left: 84%;
  height: 10px;
  animation-duration: 15s;
}

.trading-shapes span:nth-child(21) {
  left: 88%;
  height: 10px;
  animation-duration: 12s;
}

.trading-shapes span:nth-child(22) {
  left: 91%;
  height: 10px;
  animation-duration: 10s;
}

.trading-shapes span:nth-child(23) {
  left: 94%;
  height: 10px;
  animation-duration: 14s;
}

.trading-shapes span:nth-child(24) {
  left: 97%;
  height: 10px;
  animation-duration: 13s;
}

.trading-shapes span:nth-child(25) {
  left: 99%;
  height: 10px;
  animation-duration: 11s;
}

@keyframes rise {
  0% {
    transform: translateY(0) scaleY(1);
    opacity: 0.2;
  }

  25% {
    opacity: 0.6;
  }

  50% {
    transform: translateY(-50vh) scaleY(1.2);
    opacity: 0.9;
  }

  100% {
    transform: translateY(-120vh) scaleY(0.8);
    opacity: 0;
  }
}

/* Layering */
.hero-content,
.hero-image {
  position: relative;
  z-index: 2;
}

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

/* Content */
.hero-content {
  max-width: 50%;
  animation: fadeInLeft 1s ease forwards;
}

.hero-content h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 6px 30px rgba(76, 227, 169, 0.25);
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #aaa;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, #32c053, #8b8f22, #91eca6, #0bed61);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 6s ease infinite;
}

.gradient-text-small {
  background: linear-gradient(90deg, #4dd882, #aea32b, #46fb8e, #bbf8d3);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-buttons a {
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
  font-size: 16px;
}

.hero-buttons a:first-child {
  background: linear-gradient(90deg, #279b42, #3aef82);
  color: #fff;
}

.hero-buttons a:first-child:hover {
  background: linear-gradient(90deg, #07220d, #0d3a1d);
  transform: scale(1.08);
}

.hero-buttons a:last-child {
  background: transparent;
  color: #fff;
  border: 2px solid #57db8c;
}

.hero-buttons a:last-child:hover {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border-color: transparent;
}

/* Hero image */
.hero-image img {
  max-width: 550px;
  animation:
    floatLive 6s ease-in-out infinite,
    glowPulse 4s ease-in-out infinite,
    fadeInRight 1s ease forwards,
    float 4s ease-in-out infinite;
}

.hero-image::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: conic-gradient(from 180deg,
      rgba(11, 46, 19, 0.4),
      /* dark green */
      rgba(77, 83, 20, 0.4),
      /* lighter dark green */
      rgba(11, 46, 19, 0.4)
      /* dark green */
    );
  border-radius: 50%;
  z-index: 1;
  filter: blur(60px);
  animation: rotateGlow 12s linear infinite;
}


/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .hero::before,
  .hero::after,
  .hero-image img {
    animation: none !important;
  }
}

/* Hero Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 20px 40px;
    clip-path: none;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image img {
    max-width: 100%;
  }
}

/* =========================================================
   4) ABOUT SECTION
   ========================================================= */

.about {
  background: rgb(10, 26, 10);
  padding: 50px 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

/* Fixed Glowing Coins in About Background */
.about-coins {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  /* behind content */
  pointer-events: none;
}

.about-coins img {
  position: absolute;
  width: 120px;
  opacity: 0.2;
  /* transparent */
  filter: drop-shadow(0 0 12px rgba(255, 217, 0, 0.817)) drop-shadow(0 0 24px rgba(255, 217, 0, 0.655));
  animation: floatUpDown 6s ease-in-out infinite;
}

/* Slight variation per coin */
.about-coins img:nth-child(1) {
  top: 25%;
  left: 10%;
  width: 100px;
  animation-delay: 3s;
}

/*coin 1*/
.about-coins img:nth-child(2) {
  top: 5%;
  left: 40%;
  width: 120px;
  animation-delay: 1s;
}

/*coin 2*/
.about-coins img:nth-child(3) {
  top: 45%;
  left: 45%;
  width: 90px;
  animation-delay: 2s;
}

/*coin 3*/

/* ===== Responsive Coins ===== */
@media (max-width: 1024px) {
  .about-coins img {
    width: 80px !important;
  }
}

@media (max-width: 768px) {
  .about-coins img {
    width: 60px !important;
  }
}

@media (max-width: 480px) {
  .about-coins img {
    width: 40px !important;
  }
}

/* Floating animation */
@keyframes floatUpDown {

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

  50% {
    transform: translateY(-15px);
    /* gentle lift */
  }
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left: Info Grid */
.about-info {
  flex: 1 1 45%;
  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease;
}

.about-info.show {
  opacity: 1;
  transform: translateX(0);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Image wrapper */
.about-image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
}

/* Image */
.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 0.8s ease, filter 0.5s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Gradient glow bg */
.about-image::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: conic-gradient(from 180deg,
      rgba(11, 46, 19, 0.4),
      /* dark green */
      rgba(77, 83, 20, 0.4),
      /* lighter dark green */
      rgba(11, 46, 19, 0.4)
      /* dark green */
    );
  border-radius: 50%;
  z-index: 1;
  filter: blur(60px);
  animation: rotateGlow 12s linear infinite;
}

/* Text */
/* About Section Heading */
.about-text h2 {
  font-size: 40px;
  font-weight: 1000;
  color: #fafaff;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Highlighted span in heading */
.about-text h2 span {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  /* Purple → Blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* fallback for non-webkit */
  font-weight: 1000;
  font-size: 40px;
}

/* Decorative underline
.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
}*/

.about-text p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  text-align: justify;
}

/* Stats */
.about-stats {
  grid-column: span 2;
  display: flex;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 140px;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 20px;
  border-radius: 12px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.stat-card.show {
  opacity: 1;
  transform: translateY(0);
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #6a11cb;
}

.stat-card p {
  font-size: 20px;
  color: #555;
}

/* === Stat Card Variants (Dark Green Theme) === */

/* 1️⃣ Deep Forest Green */
.stat-card.green-dark {
  background: linear-gradient(145deg, #0b2e13cc, #14532dcc);
  color: #e6f4ea;
}

.stat-card.green-dark h3 {
  color: #22c55e;
  /* bright emerald accent */
}

.stat-card.green-dark p {
  color: #a7f3d0;
}


/* 2️⃣ Emerald Green */
.stat-card.green-emerald {
  background: linear-gradient(145deg, #064e3bcc, #047857cc);
  color: #eafff3;
}

.stat-card.green-emerald h3 {
  color: #34d399;
}

.stat-card.green-emerald p {
  color: #6ee7b7;
}


/* 3️⃣ Olive / Rich Green */
.stat-card.green-olive {
  background: linear-gradient(145deg, #1b4332cc, #2d6a4fcc);
  color: #f0fff4;
}

.stat-card.green-olive h3 {
  color: #52b788;
}

.stat-card.green-olive p {
  color: #95d5b2;
}

/* Right: Features Grid */
/* Right Side Features Container */
.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 10px;
  padding: 10px;
  width: 100%;
  margin-bottom: 5px;
}

/* Individual Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.2);
  padding: 25px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.5s ease;
  transform: translateY(40px);
  opacity: 0;
  position: relative;
  overflow: hidden;
}



/* On Scroll Animation (when class "show" is added) */
.feature-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effect - Pop and Glow Border */
.feature-card:hover {
  transform: translateY(-12px) scale(1.05);
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 25px rgba(76, 203, 17, 0.3),
    0 0 40px rgba(33, 243, 152, 0.3),
    0 0 60px rgba(0, 0, 0, 0.3);
}

/* 3-Color Border Gradient Effect */
.feature-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  /* important for pseudo-element */
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* shorthand for top/right/bottom/left = 0 */
  border-radius: 16px;
  padding: 3px;
  /* space for the "border" effect */
  background: linear-gradient(90deg, #4dd882, #aea32b, #46fb8e, #bbf8d3);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  /* replace deprecated destination-out */
  mask-composite: exclude;
  /* standard property */
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  /* prevents interaction issues */
  z-index: 1;
}

/* Example hover effect */
.feature-card:hover::before {
  opacity: 1;
}

.feature-card:hover::before {
  opacity: 1;
}

/* Icons */
.feature-card i {
  font-size: 30px;
  margin-bottom: 15px;
  color: #1c5a4d;
  padding: 0.8rem;
  background: #c0f1da;
  border-radius: 50%;
  border: 1px solid #0c2721;
  transition: color 0.3s ease;
}

.feature-card:hover i {
  color: #071f14;
}

/* Titles */
.feature-card h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #8fffd6;
}


/* Paragraphs */
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #eaeaea;
}


/* About Section Button */
.about-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #070707;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(17, 203, 129, 0.4);
}

/* Hover Effect */
.about-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: #fff;
  background: linear-gradient(90deg, #047857, #14ebb2);
}

/* Ripple Effect */
.about-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.4s ease;
}

.about-btn:hover::after {
  left: 100%;
}

/* Responsive Tweaks */
@media (max-width: 1024px) {
  .about-features {
    gap: 20px;
  }

  .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card i {
    font-size: 32px;
  }
}

/* About Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-container {
    flex-direction: column;
    gap: 40px;
  }

  .about-info {
    text-align: center;
    transform: translateY(40px);
  }
}

/* Responsive layout for smaller screens */
@media (max-width: 768px) {
  .about-stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-card {
    width: 100%;
    max-width: 400px;
    /* optional: keeps them nicely centered */
  }
}


/* =========================================================
   5) RESPONSIVE NAV (MOBILE ≤ 900px)
   ========================================================= */

@media (max-width: 1200px) {
  .hamburger {
    display: flex;
  }

  nav {
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    display: none;
    flex-direction: column;
    text-align: center;
    animation: slideDown 0.4s ease forwards;
  }

  nav.active {
    display: flex;
    padding: 20px;
  }

  .menu {
    flex-direction: column;
    gap: 20px;
  }

  .menu li {
    width: 100%;
  }

  .menu li a {
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .login-btn a {
    display: block;
    width: 80%;
    margin: 16px auto;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }

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

/* =========================================================
   6) UTILITY EFFECT CLASSES
   ========================================================= */

.fade-in-right {
  animation: fadeRight 0.8s ease forwards;
}

.fade-in-left {
  animation: fadeLeft 0.8s ease forwards;
}

.fade-out {
  animation: fadeOut 0.4s ease forwards;
}

/* =========================================================
   7) ANIMATIONS (single definitions, no duplicates)
   ========================================================= */

@keyframes glowPulse {

  0%,
  100% {
    filter: drop-shadow(0 0 20px rgba(156, 64, 248, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 40px rgba(144, 64, 248, 0.8));
  }
}

@keyframes float {

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

  50% {
    transform: translateY(-15px);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes moveDots {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100px 100px;
  }
}

@keyframes auroraShift {
  0% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.9;
    background-position:
      15% 30%,
      85% 20%,
      60% 80%;
  }

  100% {
    transform: translateY(-2%) translateX(1%) scale(1.02);
    opacity: 1;
    background-position:
      25% 40%,
      75% 25%,
      55% 70%;
  }
}

@keyframes dotsDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(100px, 100px, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

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

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

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

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

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

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/*------------------------------------------------------------------------------------------------------------*/
/* ==========================
   Products Section
   ========================== */
#products {
  padding: 40px 20px;

  color: #3e2d9e;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
  margin-bottom: 30px;
}

/* ================================
   Floating Trading Images (Up & Down Only)
   ================================ */
.products-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  /* behind content */
  pointer-events: none;
}

.products-bg img {
  position: absolute;
  width: 140px;
  opacity: 0.2;
  /* transparent */

  animation: floatUpDown 4s ease-in-out infinite;
}

/* Variations per image */
.products-bg img:nth-child(1) {
  top: 10%;
  left: 10%;
  width: 75px;
  animation-delay: 0s;
}

.products-bg img:nth-child(2) {
  top: 5%;
  right: 10%;
  width: 75px;
  animation-delay: 0s;
}

.products-bg img:nth-child(3) {
  bottom: 1%;
  left: 70%;
  width: 75px;
  animation-delay: 0;
}

/* Up & Down animation only */
@keyframes floatUpDown {

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

  50% {
    transform: translateY(-25px);
  }
}

/* Responsive scaling */
@media (max-width: 1024px) {
  .products-bg img {
    width: 90px !important;
  }
}

@media (max-width: 768px) {
  .products-bg img {
    width: 70px !important;
  }
}

@media (max-width: 480px) {
  .products-bg img {
    width: 50px !important;
  }
}

/* Heading */
#products h2 {
  font-size: 40px; 
  font-weight: 1000;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  /* Purple → Blue */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
  padding: 20px;
}

#products h2 span {
  background: rgb(255, 255, 255);
  /* Purple → Blue */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  /* fallback for non-webkit */
  font-weight: 1000;
  font-size: 40px;
}

/* ===== Slider ===== */
.products-slider {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  cursor: grab;
  gap: 40px;
  width: 100%;
}

/* ===== Product Card ===== */
.product-card {
  flex: 0 0 calc(50% - 20px);
  /* Show 2 cards fully on desktop */
  background: linear-gradient(145deg, #064e3bcc, #047857cc);
  border: 1px solid rgba(0, 255, 136, 0.2);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
  text-align: center;
  backdrop-filter: blur(20px);
}

.product-card.show {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  border: solid;
  border-color: #4dd882;
}

/* Image */
.product-card .product-img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

/* Title */
.product-card h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
  transition: 0.3s ease;
}

/* Description */
.product-card p {
  font-size: 1rem;
  color: #d7d7d79d;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Button */
.product-card .arrow-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  color: #000000;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.product-card .arrow-link:hover {
  background: linear-gradient(90deg, #047857, #14ebb2);
  transform: translateY(-3px);
  color: #fff;
}

/* ===== Slider Dots ===== */
.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 55px;
  gap: 10px;
}

.slider-dots span {
  width: 10px;
  height: 10px;
  background: #666;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slider-dots span.active {
  background: #00ffb7;
  /* Neon Yellow Active */
  transform: scale(1.2);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .products-slider {
    gap: 20px;
  }

  .product-card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .product-card {
    flex: 0 0 100%;
    /* Only 1 card per view on mobile */
  }

  .product-card .product-img {
    height: 160px;
  }

}

/* ===========================
   🚀 Onboarding / Get Started Section
   =========================== */

/* Section Base */
#create-account {
  background: linear-gradient(135deg, #010201 0%, #1c391c 50%, #030b03 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

#create-account h2 {
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Highlighted Gradient Span */
#create-account h2 span {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* ======================
   Timeline Wrapper
   ====================== */
.steps-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

/* Vertical Timeline Line */
.steps-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(45deg, #4dd882, #aea32b, #46fb8e, #bbf8d3);
  border-radius: 2px;
}

/* ======================
   Step Blocks
   ====================== */
.step {
  position: relative;
  width: 50%;
  padding: 25px 40px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.7s ease-in-out;
}

/* Appear Animation */
.step.show {
  opacity: 1;
  transform: translateY(0);
}

/* Left Side */
.step.left {
  left: 0;
  justify-content: flex-end;
  text-align: right;
}

/* Right Side */
.step.right {
  left: 50%;
  justify-content: flex-start;
  text-align: left;
}

/* Step Number */
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4dd882, #50ae2b, #46fbc2, #bbf8d3);
  color: #070707;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(106, 17, 203, 0.25);
  flex-shrink: 0;
  z-index: 2;
}

/* Adjust position of step numbers */
.step.left .step-number {
  margin-left: 20px;
}

.step.right .step-number {
  margin-right: 20px;
}

/* Step Content */
.step-content {
  border: 1px solid #25613c;
  border-radius: 10px;
  padding: 18px 22px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  max-width: 420px;
  z-index: 1;
  position: relative;
}

.step-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 1rem;
  color: rgba(230, 227, 227, 0.85);
  line-height: 1.6;
}


/* ======================
   Responsive Design
   ====================== */

@media (max-width: 992px) {
  .steps-wrapper {
    max-width: 95%;
  }
}

@media (max-width: 768px) {
  .steps-wrapper::before {
    left: 20px;
  }

  .step {
    width: 100%;
    left: 0 !important;
    justify-content: flex-start;
    text-align: left;
    padding: 20px 20px 20px 60px;
    transform: translateX(-40px);
  }

  .step.right {
    justify-content: flex-start;
  }

  .step-number {
    position: absolute;
    left: 0;
    top: 15px;
    transform: translateX(0);
  }

  .step-content {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .step-content {
    padding: 16px 18px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .step-content p {
    font-size: 0.95rem;
  }
}


/* ================= PRICING SECTION ================= */
#pricing {
  padding: 40px 20px;
  background: linear-gradient(45deg, #07100d, #19522f, #07100d);
  padding-bottom: 70px;
}

.pricing-container h2 {
  font-size: 40px;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  /* Purple → Blue */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
  text-align: center;
}

/* Highlighted span in heading */
.pricing-container h2 span {
  background: rgb(255, 255, 255);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 1000;
  font-size: 40px;
}

/* ================= GRID ================= */
.pricing-container {
  max-width: 1300px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

/* ================= CARD ================= */
.pricing-card {
  background: #5081643e;
  border: 1px solid #147a42;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  /* for scroll animation */
  opacity: 0;
  transform: translateY(50px);
}

/* Card Hover */
.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: #25fc98;
  box-shadow: 0 12px 35px rgba(37, 252, 238, 0.2);
}

/* Show animation when visible */
.pricing-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= PRICE ================= */
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9bffcf;
  margin-bottom: 10px;
  text-align: left;
}

/* Add underline divider for price + plan title */
.pricing-card h3 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  text-align: left;
}

.pricing-card h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1.2px;
  background: linear-gradient(90deg, #11cb8145, #25fcbf4a);
  border-radius: 2px;
}

/* ================= PLAN TITLE ================= */
.pricing-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #f7f3f3;
}

/* ================= FEATURES LIST ================= */
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.pricing-card ul li {
  font-size: 0.95rem;
  padding: 12px 15px;
  margin: 6px 0;
  color: #d6d2db;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #389c6e2c;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

/* Add ✔ symbol before each feature */
.pricing-card ul li::before {
  content: "✔";
  color: #25fc94;
  font-weight: bold;
  flex-shrink: 0;
}

/* Hover effect for features */
.pricing-card ul li:hover {
  transform: translateY(-4px);
  border-color: #25fcbf;
  background: #389c6e2c;
  box-shadow: 0 4px 12px rgba(37, 117, 252, 0.15);
}

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 10px;
  background: rgb(202, 251, 239);
  color: #063626;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: solid 1px;
  border-color: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
}

.btn:hover {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  box-shadow: 0 6px 18px rgba(37, 205, 252, 0.3);
  color: rgb(6, 5, 5);
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 768px) {
  .pricing-container {
    padding: 0 15px;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 20px 18px;
  }

  .price {
    font-size: 1.3rem;
    text-align: center;
  }

  .pricing-card h3 {
    text-align: center;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pricing-card {
    padding: 18px 15px;
  }

  .price {
    text-align: center;
    font-size: 1.2rem;
  }

  .pricing-card h3 {
    text-align: center;
    font-size: 1.1rem;
  }

  .pricing-card ul li {
    font-size: 0.9rem;
    padding: 10px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

.pricing-card.highlight-card {
  border: 2px solid #25fca6;
  /* Purple border */
  background: #f5f0ff00;
  /* Slightly lighter purple background */
  box-shadow: 0 20px 40px rgba(37, 252, 220, 0.2);
}

.pricing-card.highlight-card .price {
  color: #25fcbb;
  /* Price in purple */
}

.pricing-card.highlight-card .btn {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  /* Button purple */
  color: #000000;
  border: none;
}

.pricing-card.highlight-card .btn:hover {
  background: linear-gradient(90deg, #047857, #14ebb2);
  color: #fff;
  /* Darker purple on hover */
}

/* ===== Testimonial Section ===== */
#testimonials {
  padding: 180px 20px;

  text-align: center;
}

#testimonials .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}



#testimonials .section-header .btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #020202;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(17, 203, 160, 0.4);
}

.section-header .btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 252, 152, 0.6);
  background: linear-gradient(90deg, #047857, #14ebb2);
}

.testimonial-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 50px;
}

.testimonial-container {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.testimonial-card {
  min-width: 300px;
  max-width: 320px;
  background: #ffffff21;
  padding: 25px;
  margin: 0 15px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
  text-align: left;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: justify;
}

.client-info {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 12px;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.client-info span {
  font-size: 0.85rem;
  color: #777;
}

/* ===== Navigation Dots ===== */
.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 25px;
  margin-bottom: 25px;
  gap: 10px;
}

.testimonial-dots span {
  display: block;
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.testimonial-dots span.active {
  background: #7af6bc;
  transform: scale(1.2);
}

/* ==========================
   Responsive
========================== */

/* Medium devices - tablets */
@media (max-width: 1024px) {
  #testimonials {
    padding: 100px 30px;
  }



  #testimonials .btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Small devices - mobile */
@media (max-width: 768px) {
  #testimonials {
    padding: 80px 20px;
  }

  #testimonials .section-header {
    flex-direction: column;
    gap: 15px;
  }



  #testimonials .btn {
    width: 80%;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  #testimonials {
    padding: 60px 15px;
  }


  #testimonials .btn {

    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* FAQ Section */
#faq {
  position: relative;
  background: rgb(10, 26, 10);
  overflow: hidden;
  padding: 50px 20px;
  /* smaller side padding for mobile */
}

/* Floating background images */
.faq-floating {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.faq-floating img {
  position: absolute;
  width: 100px;
  opacity: 0.15;

  animation: floatUpDown 6s ease-in-out infinite;
}

.faq-floating img:nth-child(1) {
  top: 10%;
  left: 68%;
}

.faq-floating img:nth-child(2) {
  top: 20%;
  left: 85%;
  width: 80px;
}

.faq-floating img:nth-child(3) {
  top: 23%;
  left: 55%;
  width: 90px;
}

@keyframes floatUpDown {

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

  50% {
    transform: translateY(-20px);
  }
}

/* FAQ Layout */
.faq-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: start;
}

/* Title */
.faq-container h2 {
  font-size: 40px;
  font-weight: 1000;
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.faq-container h2 span {
  background: rgb(250, 250, 250);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 1000;
  font-size: 40px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff23;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  outline: none;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
}

.faq-question:hover {
  color: #25fc7b;
}

.faq-icon {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #d3d2d2;
  padding: 15px 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 15px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* Right Side Image */
.faq-image {
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faq-image img {
  width: 100%;
  max-width: 700px;
  height: 600px;
  /* responsive height */
  opacity: 0;
  transform: scale(0.5);
  transition: transform 1.5s ease, opacity 1.5s ease;
  position: relative;
  z-index: 1;
}

/* Glow background */
.faq-image::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: conic-gradient(from 180deg,
      rgba(11, 46, 19, 0.4),
      /* dark green */
      rgba(77, 83, 20, 0.4),
      /* lighter dark green */
      rgba(11, 46, 19, 0.4)
      /* dark green */
    );
  filter: blur(80px);
  opacity: 0;
  transform: scale(0.5);
  transition: transform 1.5s ease, opacity 1.5s ease;
  z-index: 0;
}

.faq-image.active img {
  opacity: 1;
  transform: scale(1);
}

.faq-image.active::before {
  opacity: 1;
  transform: scale(1.2);
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {

  0%,
  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.4);
    opacity: 0.9;
  }
}

/* RESPONSIVE DESIGN */

/* Tablets */
@media (max-width: 1024px) {
  .faq-wrapper {
    grid-template-columns: 1fr;
    /* stack columns */
    text-align: center;
  }

  .faq-image {
    margin-top: 40px;
  }

  .faq-floating img {
    width: 70px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  #faq {
    padding: 30px 15px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  .faq-floating img {
    width: 50px;
    opacity: 0.1;
  }

  .faq-image::before {
    width: 250px;
    height: 250px;
  }
}


/* ============================= */
/* 🚀 NEW FAQ ANIMATION ADDED */
/* ============================= */

/* FAQ Items default (hidden) */
.faq-item {
  opacity: 0;
  transform: translateY(30px);
}

/* When revealed */
.faq-item.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Image re-animate trigger */
.faq-image.active img {
  animation: appearScale 1.5s ease forwards;
}

/* =========================
   Partner Section Styling
========================= */
.partner-section {
  position: relative;
  /* mint background */
  overflow: hidden;
}

/* ===== Logo Slider ===== */
.partner-slider {
  overflow: hidden;
  width: 100%;
  margin: 0%;
  padding: 20px;
  background: rgba(116, 217, 180, 0.231);

}

.partner-track img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partner-track img:hover {
  transform: scale(1.1);
}

.partner-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: slideLeft 20s linear infinite;
  animation-play-state: running;
  /* default running */
}

.partner-track.paused {
  animation-play-state: paused;
  /* stop animation when class added */
}

/* ===== Animation Keyframes ===== */
@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }

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

/* =========================
   Responsive Design
========================= */
@media (max-width: 992px) {
  .partner-track {
    gap: 50px;
  }

  .partner-track img {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .partner-track {
    gap: 40px;
  }

  .partner-track img {
    height: 40px;
  }
}

@media (max-width: 576px) {
  .partner-section {
    padding: 40px 0;
  }

  .partner-track {
    gap: 30px;
  }

  .partner-track img {
    height: 30px;
  }
}

/* Footer Styles */
.footer {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a2f1a 50%, #0f1f0f 100%);
  /* dark green gradient */
  color: #fff;
  padding: 60px 25px 20px;
  line-height: 1.6;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #11cb8d, #25fc6d);
  display: block;
  margin-top: 8px;
}

.footer-col ul li {
  list-style: none;
  margin-bottom: 10px;
  font-size: 15px;
  display: flex;
  align-items: center;
  color: #ddd;

  /* Ensure icon stays left and text shrinks instead of overflowing */
  flex-wrap: nowrap;
  /* no wrapping to next line */
  overflow-wrap: anywhere;
  /* allow breaking within long words if necessary */
}

.footer-col ul li i {
  margin-right: 10px;
  /* gap between icon and text */
  flex-shrink: 0;
  /* icon never shrinks */
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;

  /* allow long emails to break within container */
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-col ul li a:hover {
  color: #95fede;
}

/* Logo & Social */
.footer-logo {
  max-width: 140px;
  margin-bottom: 20px;
}

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

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  /* circle size */
  height: 40px;
  border: solid 1px;
  border-radius: 50%;
  /* makes it a circle */
  background: #22222200;
  /* default circle background */
  color: #bbb;
  /* icon color */
  font-size: 16px;

  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #12f3bf;
  /* circle background on hover */
  color: #fff;
  /* icon color on hover */
  transform: scale(1.1);
  /* slight zoom effect */
  box-shadow: 0 4px 12px rgba(18, 243, 191, 0.4);
}

/* ================= LEGAL SECTION ================= */
.footer-legal {
  color: #ccc;
  padding: 10px 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.7;
}

.footer-legal h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #8bf6b8;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-legal h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #11cbaf, #25fc9b);
  margin-top: 6px;
  border-radius: 2px;
}

.footer-legal p {
  margin-bottom: 18px;
  color: #bbb;
  text-align: justify;
}

.footer-legal p:last-child {
  margin-bottom: 0;
  /* no gap after last paragraph */
}

/* Responsive */
@media (max-width: 768px) {
  .footer-legal {
    font-size: 13px;
    padding: 30px 15px;
  }

  .footer-legal h3 {
    font-size: 15px;
  }
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: #888;
}

.footer-bottom .footer-social {
  gap: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 500px) {
  .footer-logo {
    margin-left: 0;
    margin-right: auto;
    /* aligns left */
    display: block;
    /* ensure margin works */
    text-align: left;
    /* optional if needed inside container */
  }
}


/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 70px;
  /* moved up so it doesn’t overlap */
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: black;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1100;
  box-shadow: 0 4px 12px rgba(38, 58, 47, 0.3);
}

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

.back-to-top:hover {

  transform: scale(1.1);
}



/* ================= TESTIMONIALS ================= */
#testimonials {
  padding: 10px 20px;

  padding-top: 80px;
  transition: background 0.3s ease, color 0.3s ease;
}



/* ================= HEADER ================= */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 1000;
  color: #e5e5ec;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
  transition: color 0.3s ease;
}

.section-header h2 span {
  background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 1000;
  font-size: 40px;
}

.section-header .btn {
  padding: 10px 20px;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.section-header .btn:hover {
  background: linear-gradient(90deg, #110a96, #4d0276);
}

/* ================= WRAPPER ================= */
.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}

.nav-btn {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
}

.nav-btn:hover {
  background: linear-gradient(90deg, #110a96, #4d0276);
}

/* ================= CONTAINER ================= */
.testimonial-container {
  overflow: hidden;
  flex: 1;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
  padding: 20px 0 60px 0;
}

/* ================= CARD ================= */
.testimonial-card {
  background: #cdeedb12;
  padding: 25px;
  border: 1px solid #0b4c37;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  flex: 0 0 calc(33.333% - 20px);
  margin: 0 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border: solid;
  border-color: #0a966a;
}



/* ================= TEXT ================= */
.testimonial-card p {
  font-size: 0.95rem;
  color: #dddcdc;
  margin-bottom: 20px;
  line-height: 1.6;
  transition: color 0.3s ease;
}


/* ================= CLIENT INFO ================= */
.client-info {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
  transition: border-color 0.3s ease;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #eee;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.client-info img:hover {
  transform: scale(1.1);
  border-color: #0a966c;
}

.client-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #9dfbe0;
  transition: color 0.3s ease;
}


.client-info span {
  font-size: 0.85rem;
  color: #c4c3c4;
  transitrgb(230, 228, 231)lor 0.3s ease;
}



/* ===== Video Popup ===== */
.video-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

#closeVideo {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s;
}

#closeVideo:hover {
  color: #d33;
}