/* =========================================================
   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 */
}

/* ===== Scrollbar Styling ===== */
::-webkit-scrollbar {
  width: 4px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #8b5cf6, #6d28d9); /* purple gradient */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}

/* Dark mode support */
body.dark-mode ::-webkit-scrollbar-track {
  background: #1e1e2f;
}

body.dark-mode ::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
}


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

body {
  background: #f9f9fc;
  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: 50px;           /* adjust as needed */
    width: auto;
    display: block;
}

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

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

header.scrolled {
  background: linear-gradient(135deg, #0a0a1a 40%, #1a0033 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

header.scrolled .menu a:hover {
  color: #cf68ff; /* 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, #6A11CB, #2575FC);
  transition: width 0.3s ease;
}

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

.menu a:hover {
  color: #b168f9;
}

/* Login Button */
.login-btn a {
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  color: #fff;
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.login-btn a:hover {
  background: linear-gradient(90deg, #110a96, #4d0276);
  transform: scale(1.08);
  color: white;
}

.dropdown{
    position: relative;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  min-width: 220px;
  border-radius: 12px;
  overflow: hidden;
  /* Glass */
  background: rgba(26, 0, 51, 0.75);
  backdrop-filter: blur(14px);
  /* Glow border */
  border: 1px solid rgba(156, 64, 248, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
              0 0 20px rgba(156, 64, 248, 0.25);

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

.dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.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;
}

.dropdown-menu li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 0%;
  width: 3px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  border-radius: 4px;
  transform: translateY(-50%);
  transition: height 0.3s ease;
}

.dropdown-menu li a:hover {
  background: rgba(156, 64, 248, 0.15);
  color: #a95af8;
  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, #0a0a1a 40%, #1a0033 100%);
  color: white;
  clip-path: ellipse(150% 100% at 50% 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(166, 76, 227, 0.35), transparent 60%),
    radial-gradient(40% 50% at 85% 20%, rgba(72, 75, 165, 0.28), transparent 60%),
    radial-gradient(30% 40% at 60% 80%, rgba(0, 153, 255, 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(156, 64, 248, 0.14) 2px, transparent 3px) 0 0 / 48px 48px,
    radial-gradient(circle, rgba(76, 157, 255, 0.10) 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; /* place above stars but behind content */
  pointer-events: none;
}

.trading-shapes span {
  position: absolute;
  bottom: -60px;
  width: 8px;
  height: 30px;
  background: linear-gradient(180deg, #00d5ffcd, #6b11cbc5);
  border-radius: 2px;
  opacity: 0.7;
  animation: rise 12s linear infinite;
  box-shadow: 0 0 12px rgba(0,212,255,0.4);
}

/* 25 spans with randomized positions/speeds */
.trading-shapes span:nth-child(1)  { left: 3%;  height: 40px; animation-duration: 9s; }
.trading-shapes span:nth-child(2)  { left: 7%;  height: 30px; animation-duration: 11s; }
.trading-shapes span:nth-child(3)  { left: 11%; height: 55px; animation-duration: 13s; }
.trading-shapes span:nth-child(4)  { left: 15%; height: 45px; animation-duration: 8s; }
.trading-shapes span:nth-child(5)  { left: 20%; height: 25px; animation-duration: 14s; }
.trading-shapes span:nth-child(6)  { left: 24%; height: 35px; animation-duration: 10s; }
.trading-shapes span:nth-child(7)  { left: 28%; height: 60px; animation-duration: 12s; }
.trading-shapes span:nth-child(8)  { left: 33%; height: 30px; animation-duration: 9s; }
.trading-shapes span:nth-child(9)  { left: 37%; height: 50px; animation-duration: 15s; }
.trading-shapes span:nth-child(10) { left: 42%; height: 40px; animation-duration: 11s; }
.trading-shapes span:nth-child(11) { left: 46%; height: 28px; animation-duration: 13s; }
.trading-shapes span:nth-child(12) { left: 50%; height: 52px; animation-duration: 10s; }
.trading-shapes span:nth-child(13) { left: 55%; height: 33px; animation-duration: 9s; }
.trading-shapes span:nth-child(14) { left: 60%; height: 47px; animation-duration: 12s; }
.trading-shapes span:nth-child(15) { left: 64%; height: 35px; animation-duration: 14s; }
.trading-shapes span:nth-child(16) { left: 68%; height: 45px; animation-duration: 10s; }
.trading-shapes span:nth-child(17) { left: 72%; height: 50px; animation-duration: 13s; }
.trading-shapes span:nth-child(18) { left: 76%; height: 40px; animation-duration: 11s; }
.trading-shapes span:nth-child(19) { left: 80%; height: 60px; animation-duration: 9s; }
.trading-shapes span:nth-child(20) { left: 84%; height: 25px; animation-duration: 15s; }
.trading-shapes span:nth-child(21) { left: 88%; height: 55px; animation-duration: 12s; }
.trading-shapes span:nth-child(22) { left: 91%; height: 30px; animation-duration: 10s; }
.trading-shapes span:nth-child(23) { left: 94%; height: 42px; animation-duration: 14s; }
.trading-shapes span:nth-child(24) { left: 97%; height: 38px; animation-duration: 13s; }
.trading-shapes span:nth-child(25) { left: 99%; height: 48px; 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(166, 76, 227, 0.25);
}

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

/* Gradient text */
.gradient-text {
  background: linear-gradient(90deg, #a64ce3, #4c2dff, #00d4ff, #a64ce3);
  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, #e3d9f3, #afaffc, #c17efb, #e9c0c0);
  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, #6A11CB, #2575FC);
  color: #fff;
}

.hero-buttons a:first-child:hover {
  background:  linear-gradient(90deg, #110a96, #4d0276);
  transform: scale(1.08);
}

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

.hero-buttons a:last-child:hover {
  background:  linear-gradient(90deg, #110a96, #4d0276);
  border-color: transparent;
}

/* Hero image */
.hero-image img {
  max-width: 430px;
  animation: 
    floatLive 6s ease-in-out infinite,
    glowPulse 4s ease-in-out infinite,
    fadeInRight 1s ease forwards,
    float 4s ease-in-out 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: #f9f9fc; /* light background */
  padding: 100px 30px;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}
body.dark-mode .about {
  background: #0f0f1a; /* dark mode support */
  color: #f1f1f1;
}

/* 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: 50%; width: 100px; animation-delay: 3s; } /*coin 1*/
.about-coins img:nth-child(2) { top: 5%; left: 80%; width: 120px; animation-delay: 1s; } /*coin 2*/
.about-coins img:nth-child(3) { top: 45%; left: 85%; 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(106,17,203,0.4),
    rgba(37,117,252,0.4),
    rgba(106,17,203,0.4)
  );
  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: #1a1a2e;
  margin-bottom: 20px;
  position: relative;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Highlighted span in heading */
.about-text h2 span {
  background: linear-gradient(90deg, #6a11cb, #2575fc); /* 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: #444;
  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: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

body.dark-mode .stat-card {
  background: #1a1a2e;
  color: #eee;
}

.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 === */
.stat-card.black {
  background: linear-gradient(145deg, #1111117e, #1e1e1e81);
  color: #f0f0f0;
}

.stat-card.black h3 {
  color: #000000; /* black glow text */
}

.stat-card.black p {
  color: #000000; /* black glow text */
}

.stat-card.blue {
  background: linear-gradient(145deg, #0d48a179, #1976d275);
  color: #e3f2fd;

}

.stat-card.blue h3 {
  color: #0c71c4;
}

.stat-card.blue p {
  color: #0c71c4;
}

.stat-card.purple {
  background: linear-gradient(145deg, #6b11cb82, #a4508b80);
  color: #fbeaff;
}

.stat-card.purple h3 {
  color: #5f1f89;
}

.stat-card.purple p {
  color: #5f1f89;
}

/* 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: #fff;
  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;
}

/* Dark Mode Compatibility */
body.dark-mode .feature-card {
  background: #1a1a2e;
  color: #eee;
}

/* 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(106,17,203,0.3), 
              0 0 40px rgba(33,150,243,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(135deg, #6a11cb, #2575fc, #000);
   -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: 40px;
  margin-bottom: 15px;
  color: #6a11cb;
  transition: color 0.3s ease;
}

.feature-card:hover i {
  color: #2575fc;
}

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

body.dark-mode .feature-card h3 {
  color: #fff;
}

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

body.dark-mode .feature-card p {
  color: #ccc;
}

/* About Section Button */
.about-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  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(106, 17, 203, 0.4);
}

/* Hover Effect */
.about-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6);
  background: linear-gradient(90deg, #2575fc, #6a11cb);
}

/* 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%;
}

/* Dark Mode */
body.dark-mode .about-btn {
  background: linear-gradient(90deg, #9b59b6, #2980b9);
  color: #fff;
}

/* 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 */
  }
}


/* ==============================
   DARK MODE SUPPORT FOR TEXT
   ============================== */

/* About Section */
body.dark-mode .about-text h2 {
  color: #ffffff; /* Heading white */
}

body.dark-mode .about-text h2 span {
  background: linear-gradient(90deg, #8e2de2, #4a00e0); /* Brighter gradient in dark */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .about-text p {
  color: #cccccc; /* Lighter gray for readability */
}

/* Stats Text */
body.dark-mode .stat-card h3 {
  color: #9f7aea; /* Purple highlight */
}

body.dark-mode .stat-card p {
  color: #aaa; /* Muted gray */
}

/* Features Cards Text */
body.dark-mode .feature-card h3 {
  color: #f5f5f5; /* white-ish heading */
}

body.dark-mode .feature-card p {
  color: #bbbbbb; /* softer paragraph text */
}

/* Global Icon Adjustment in Dark Mode */
body.dark-mode .feature-card i {
  color: #9f7aea; /* Purple icons */
}

body.dark-mode .feature-card:hover i {
  color: #4a90e2; /* Blue hover */
}


/* =========================================================
   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;
  background: linear-gradient(135deg, #f5f6f9, #eef1f5);
  color: #3e2d9e;
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  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(90deg, #6a11cb, #2575fc); /* 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: black; /* 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: #ffffff;
  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;
}

.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: linear-gradient(135deg, #6a11cb, #2575fc, #000);
}

/* 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: #020202;
  transition: 0.3s ease;
}

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

/* Button */
.product-card .arrow-link {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  color: #f8f6f6;
  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, #110a96, #4d0276);
  transform: translateY(-3px);
}

/* ===== 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: #9500ff; /* 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: #f9f9fc;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

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

/* Highlighted Gradient Span */
#create-account h2 span {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* ======================
   Timeline Wrapper
   ====================== */
.steps-wrapper {
  max-width: 1200px;
  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(180deg, #6a11cb, #2575fc);
  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(90deg, #6a11cb, #2575fc);
  color: #fff;
  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 {
  background: #fff;
  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: #3e1253;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 1rem;
  color: rgba(60, 60, 60, 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(135deg, #f8f9fb, #eef1f5);
  padding-bottom: 70px;
}

.pricing-container h2 {
  font-size: 40px;
  font-weight: 1000;
  background: linear-gradient(90deg, #6a08d2, #2575fc); /* 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: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 1000;
  font-size: 40px;
}

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

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

/* ================= CARD ================= */
.pricing-card {
  background: #fff;
  border: 2px solid #e0e0e0;
  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: #7725fc;
  box-shadow: 0 12px 35px rgba(37, 117, 252, 0.2);
}

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

/* ================= PRICE ================= */
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7025fc;
  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, #6b11cb45, #2574fc4a);
  border-radius: 2px;
}

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

/* ================= 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: #726683;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #fafafa;
  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: #5725fc;
  font-weight: bold;
  flex-shrink: 0;
}

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

/* ================= BUTTON ================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 10px;
  background: white;
  color: #4a13b9;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: solid 1px;
  border-color:linear-gradient(90deg, #2575FC, #6A11CB);
}

.btn:hover {
  background: linear-gradient(90deg, #2575FC, #6A11CB);
  box-shadow: 0 6px 18px rgba(37, 117, 252, 0.3);
  color: white;
}

/* ================= 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 #7725fc;       /* Purple border */
  background: #f5f0ff;             /* Slightly lighter purple background */
  box-shadow: 0 10px 30px rgba(119, 37, 252, 0.2);
}

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

.pricing-card.highlight-card .btn {
  background: linear-gradient(90deg, #2575FC, #6A11CB);             /* Button purple */
  color: #fff;
  border: none;
}

.pricing-card.highlight-card .btn:hover {
  background: linear-gradient(90deg, #2575FC, #6A11CB);             /* Darker purple on hover */
}

/* ===============================
   HIGHLIGHTED PRICING CARD - DARK MODE
================================= */

body.dark-mode .pricing-card.highlight-card {
  border: 2px solid #a96bff;             /* lighter purple border for dark */
  background: rgba(55, 0, 110, 0.6);    /* semi-transparent dark purple bg */
  box-shadow: 0 10px 30px rgba(169, 107, 255, 0.3);
}

body.dark-mode .pricing-card.highlight-card .price {
  color: #d9b5ff;                        /* lighter purple text */
}

body.dark-mode .pricing-card.highlight-card .btn {
  background: linear-gradient(90deg, #661eed, #8b52f5); /* purple gradient */
  color: #fff;
  border: none;
}

body.dark-mode .pricing-card.highlight-card .btn:hover {
  background: linear-gradient(90deg, #7725fc, #a96bff); /* slightly lighter purple on hover */
}

/* Features list */
body.dark-mode .pricing-card.highlight-card ul li {
  background: rgba(65, 0, 130, 0.6);
  color: #cfcfcf;
  border-color: transparent;
}

body.dark-mode .pricing-card.highlight-card ul li::before {
  color: #9b6dff;
}

body.dark-mode .pricing-card.highlight-card ul li:hover {
  background:rgba(75, 1, 148, 0.6);
  border-color: #9b6dff;
  box-shadow: 0 4px 12px rgba(155, 109, 255, 0.25);
}

/* ===== Testimonial Section ===== */
#testimonials {
  padding: 180px 20px;
  background: #f8f9fa;
  text-align: center;
}

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

#testimonials .section-header h2 span {
  color: #7700ff;
}

#testimonials .section-header .btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  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(106, 17, 203, 0.4);
}

.section-header .btn:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 117, 252, 0.6);
  background: linear-gradient(90deg, #2575fc, #6a11cb);
}

.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: 350px;
  background: #fff;
  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: #9d00ff;
  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: #ffffff; /* your theme bg */
  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;
  filter: drop-shadow(0 0 12px rgba(0, 195, 255, 0.6))
          drop-shadow(0 0 24px rgba(0, 195, 255, 0.3));
  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: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Title */
.faq-container h2 {
  font-size: 40px;
  font-weight: 1000;
  background: linear-gradient(90deg, #6a08d2, #2575fc);
  -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: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 1000;
  font-size: 40px;
}

/* FAQ Item */
.faq-item {
  background: #ffffff;
  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: #222;
}

.faq-question:hover {
  color: #8925fc;
}

.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: #444;
  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: auto; /* 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: radial-gradient(circle, rgba(106,17,203,0.6), rgba(37,117,252,0.2) 70%);
  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;
  background: #ffffff; /* mint background */
  overflow: hidden;
}

/* ===== Logo Slider ===== */
.partner-slider {
  overflow: hidden;
  width: 100%;
  margin: 0%;
  padding: 20px;
  background: linear-gradient(90deg, #e7d6f3, #d1caf9, #b3e9f4, #d7b0f1);
 
}

.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, #0a0a1a 40%, #1a0033 100%);
  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, #6A11CB, #2575FC);
  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: #8a12f3;
}

/* 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: #7712f3;      /* circle background on hover */
  color: #fff;              /* icon color on hover */
  transform: scale(1.1);    /* slight zoom effect */
  box-shadow: 0 4px 12px rgba(119, 18, 243, 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: #bb8bf6;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-legal h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #6A11CB, #2575FC);
  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: 90px;   /* moved up so it doesn’t overlap */
  right: 35px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #7712f3, #5a0dcf);
  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(0,0,0,0.3);
}

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

.back-to-top:hover {
  background: linear-gradient(135deg, #5a0dcf, #3a0aa3);
  transform: scale(1.1);
}

/* Floating Dark Mode Toggle */
.dark-toggle {
  position: fixed;
  left: 20px;
  bottom: 20px;   /* stays at bottom */
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  z-index: 1200;
}

.dark-toggle:hover {
  background: #333;
  transform: scale(1.1);
}

/* ================================
   DARK MODE STYLES
   ================================ */
body.dark-mode {
  background: #0f0f1a; /* dark mode support */
  color: #f1f1f1;
}

/* Header */
body.dark-mode header {
  background: linear-gradient(135deg, #11111100 40%, #1a003300 100%);
}

/* Dark mode header after scroll */
body.dark-mode header.scrolled {
  background: linear-gradient(135deg, #0d0d0d 40%, #1a0033 100%);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

body.dark-mode .menu a {
  color: #ddd;
}

body.dark-mode .menu a:hover {
  color: #c57aff;
}

body.dark-mode .login-btn a {
  background: linear-gradient(90deg, #150c55, #220944);
}

/* Hero */
body.dark-mode .hero {
  background: linear-gradient(135deg, #050505 40%, #0e0022 100%);
  color: #fff;
}

body.dark-mode .hero-content p {
  color: #bbb;
}

/* Dropdown */
body.dark-mode .dropdown-menu {
  background: rgba(20, 20, 20, 0.95);
  border: 1px solid rgba(156, 64, 248, 0.4);
}

/* Buttons */
body.dark-mode .hero-buttons a:last-child {
  border: 2px solid #555;
  color: #ddd;
}

body.dark-mode .hero-buttons a:last-child:hover {
  background: linear-gradient(90deg, #150c55, #220944);
  border-color: transparent;
}

/* Cards, sections, faq, testimonials (if you add them later) */
body.dark-mode .card,
body.dark-mode .section,
body.dark-mode .pricing-card,
body.dark-mode .faq-item,
body.dark-mode .testimonial-card {
  background: #161616;
  color: #f5f5f5;
  border: 1px solid rgba(255,255,255,0.05);
}

/* ================================
   DARK MODE → PRODUCTS SECTION
   ================================ */
body.dark-mode #products {
  background: linear-gradient(135deg, #0a0a0a, #111);
  color: #eee;
}

body.dark-mode #products h2 {
  background: linear-gradient(90deg, #c57aff, #4a90e2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode #products h2 span {
  background: linear-gradient(90deg, #fff, #ddd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Product Cards */
body.dark-mode .product-card {
  background: #161616;
  color: #f5f5f5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.05);
}

body.dark-mode .product-card:hover {
  border: solid 2px;
  border-color: rgb(79, 0, 128);
}

body.dark-mode .product-card h3 {
  color: #fff;
}

body.dark-mode .product-card p {
  color: #aaa;
}

body.dark-mode .product-card .arrow-link {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: #fff;
}

body.dark-mode .product-card .arrow-link:hover {
  background: linear-gradient(90deg, #4a00e0, #8e2de2);
}

/* Dots */
body.dark-mode .slider-dots span {
  background: #555;
}

body.dark-mode .slider-dots span.active {
  background: #c57aff;
}

/* ================================
   DARK MODE → CREATE ACCOUNT SECTION
   ================================ */
body.dark-mode #create-account {
  background: #0d0d0f; /* Deep dark background */
  color: #eee;
}

body.dark-mode #create-account h2 {
  color: #fff;
}

body.dark-mode #create-account h2 span {
  background: linear-gradient(90deg, #c57aff, #4a90e2); /* Purple → Blue glow */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Timeline Vertical Line */
body.dark-mode .steps-wrapper::before {
  background: linear-gradient(180deg, #8e2de2, #4a00e0); /* Gradient line */
}

/* Step number */
body.dark-mode .step-number {
  background: linear-gradient(90deg, #8e2de2, #4a00e0);
  color: #fff;
  box-shadow: 0 6px 16px rgba(142, 45, 226, 0.4);
}

/* Step content container */
body.dark-mode .step-content {
  background: #1a1a2b; /* Dark card background */
  color: #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Step content text */
body.dark-mode .step-content h3 {
  color: #f5f5f5;
}

body.dark-mode .step-content p {
  color: #aaa;
}

/* Left / Right spacing of numbers remain same */
body.dark-mode .step.left .step-number {
  margin-left: 20px;
}

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

/* ================================
   DARK MODE → PRICING SECTION
   ================================ */
body.dark-mode #pricing {
  background: linear-gradient(135deg, #0b0b12, #141421); /* Dark gradient */
  color: #eee;
}

body.dark-mode .pricing-container h2 {
  background: linear-gradient(90deg, #b06bff, #4a90e2); /* Purple → Blue glow */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.dark-mode .pricing-container h2 span {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Card */
body.dark-mode .pricing-card {
  background: #1a1a24;
  border: 2px solid #2c2c3a;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

body.dark-mode .pricing-card:hover {
  border-color: #7a42ff;
  box-shadow: 0 12px 35px rgba(122, 66, 255, 0.25);
}

/* Price text */
body.dark-mode .price {
  color: #b06bff;
}

/* Plan title */
body.dark-mode .pricing-card h3 {
  color: #f1f1f1;
}

body.dark-mode .pricing-card h3::after {
  background: linear-gradient(90deg, #8e2de259, #4a00e055);
}

/* Features list */
body.dark-mode .pricing-card ul li {
  background: #242433;
  color: #cfcfcf;
  border-color: transparent;
}

body.dark-mode .pricing-card ul li::before {
  color: #9b6dff;
}

body.dark-mode .pricing-card ul li:hover {
  background: #2e2e41;
  border-color: #9b6dff;
  box-shadow: 0 4px 12px rgba(155, 109, 255, 0.25);
}

/* Buttons */
body.dark-mode .btn {
  background: transparent;
  color: #b06bff;
  border: 1px solid #b06bff;
}

body.dark-mode .btn:hover {
  background: linear-gradient(90deg, #2575FC, #6A11CB);
  color: white;
  box-shadow: 0 6px 18px rgba(155, 109, 255, 0.3);
}


/* ================= TESTIMONIALS ================= */
#testimonials {
  padding: 10px 20px;
  background: #f8faff;
  padding-top: 80px;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Dark Mode Background */
.dark-mode #testimonials {
  background: #0f0f17;
}

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

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

.dark-mode .section-header h2 {
  color: #fff;
}

.section-header h2 span {
  background: linear-gradient(90deg, #6a11cb, #2575fc);
  -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: 1500px;
  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: #fff;
  padding: 25px;
  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: #400a96;
}

.dark-mode .testimonial-card {
  background: #1c1c28;
  color: #eaeaea;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.dark-mode .testimonial-card:hover {
  border-color: #6a11cb;
}

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

.dark-mode .testimonial-card p {
  color: #c9c9d4;
}

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

.dark-mode .client-info {
  border-color: #333;
}

.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: #400a96;
}

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

.dark-mode .client-info h4 {
  color: #8d6bff;
}

.client-info span {
  font-size: 0.85rem;
  color: #907ba0;
  transition: color 0.3s ease;
}

.dark-mode .client-info span {
  color: #a8a8c3;
}

/* ============================= */
/* 🌙 FAQ DARK THEME STYLES */
/* ============================= */

body.dark-mode #faq {
  background: #0d0d1a; /* Deep dark bg */
  color: #f1f1f1;
}

body.dark-mode .faq-item {
  background: #1a1a2e;
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
}

body.dark-mode .faq-question {
  color: #f1f1f1;
}

body.dark-mode .faq-question:hover {
  color: #6a11cb; /* Gradient accent */
}

body.dark-mode .faq-answer p {
  color: #d1d1d1;
}

body.dark-mode .faq-icon {
  color: #6a11cb;
}

body.dark-mode .faq-item.active .faq-answer {
  background: rgba(255, 255, 255, 0.02);
}

body.dark-mode .faq-container h2 {
  background: linear-gradient(90deg, #8a2be2, #4facfe);
   background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.dark-mode .faq-container h2 span {
  background: linear-gradient(90deg, #ffffff, #cccccc);
   background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Floating icons (light blue glow on dark bg) */
body.dark-mode .faq-floating img {
  filter: drop-shadow(0 0 18px rgba(0, 195, 255, 0.9))
          drop-shadow(0 0 36px rgba(0, 195, 255, 0.6));
  opacity: 0.25;
}

/* Image glow update */
body.dark-mode .faq-image::before {
  background: radial-gradient(circle, rgba(106,17,203,0.9), rgba(37,117,252,0.4) 70%);
}

/* =========================
   🌙 Dark Mode for Partner Section
========================= */
body.dark-mode .partner-section {
  background: #0d0d1a; /* deep dark bg */
}

body.dark-mode .partner-slider {
  background: linear-gradient(
    90deg,
    #a595ff,
    #816eff,
    #65aaff,
    #a468ff
  );
}

body.dark-mode .partner-track img {
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

body.dark-mode .partner-track img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ================= DARK MODE FOOTER ================= */
.dark-mode .footer {
  background: linear-gradient(135deg, #000000 40%, #0d0d2e 100%);
  color: #e0e0e0;
}

.dark-mode .footer-col h4 {
  color: #fff;
}

.dark-mode .footer-col h4::after {
  background: linear-gradient(90deg, #bb86fc, #3700b3);
}

.dark-mode .footer-col ul li {
  color: #ccc;
}

.dark-mode .footer-col ul li i {
  color: #bb86fc; /* icons match dark theme accent */
}

.dark-mode .footer-col ul li a {
  color: #aaa;
}

.dark-mode .footer-col ul li a:hover {
  color: #bb86fc;
}

/* Social icons */
.dark-mode .footer-social a {
  border-color: rgba(255,255,255,0.2);
  color: #aaa;
}

.dark-mode .footer-social a:hover {
  background: #bb86fc;
  color: #fff;
  box-shadow: 0 4px 12px rgba(187,134,252,0.4);
}

/* Legal section */
.dark-mode .footer-legal {
  color: #bbb;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.dark-mode .footer-legal h3 {
  color: #bb86fc;
}

.dark-mode .footer-legal h3::after {
  background: linear-gradient(90deg, #bb86fc, #3700b3);
}

.dark-mode .footer-legal p {
  color: #aaa;
}

/* Footer bottom */
.dark-mode .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
}

.dark-mode .footer-bottom p {
  color: #aaa;
}


/* ===== 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;
}
