:root {
  --bg-dark: #05070a;
  --gold: #d4af37;
  --gold-light: #f1c40f;
  --white: #ffffff;
  --glass-bg: rgba(10, 12, 16, 0.98);
  --nav-height: 100px;
  --footer-bg: #070719;
  --test-gold: #d4af37;
  --test-bg: #05070a;
  --test-white: #ffffff;
  --test-gold-glow: rgba(255, 225, 0, 0.4);
  --test-border: rgba(255, 255, 255, 0.1);
  --trade-gold: #ecc43e;
  --trade-dark: #05051a;
  --trade-card-bg: #11112e;
  --trade-text: #aeb1d7;
  --gold-dark: #d4af37;
  --gold-glow: rgba(255, 225, 0, 0.4);
  --hero-gold-grad: linear-gradient(135deg, #bf953f, #f5dd08, #b38728, #aa771c);
  --hero-text-muted: #a0a0a0;
  --gray: #888888;
  --card-bg: rgba(212, 175, 55, 0.03);
  --card-border: rgba(212, 175, 55, 0.15);
  --glow-1: rgba(241, 196, 15, 0.12);
  --glow-2: rgba(212, 175, 55, 0.08);
  --fn-payout-gold: #ecc43e;
  --fn-payout-green: #4fec3e;
  --fn-payout-dark: rgba(49, 45, 29, 0.059);
  --fn-payout-text: #ffffff;
  --fn-payout-dim: rgba(255, 255, 255, 0.6);
  --fn-payout-border: rgba(236, 195, 62, 0.827);
  --highlight: #d4af37;
  --trade-black: #0a0a0a;
  --trade-dark-gray: #121212;
  --trade-gold: #d4af37;
  --trade-gold-glow: rgba(212, 175, 55, 0.4);
  --white: #ffffff;
  --text-gray: #b0b0b0;
  --glass-bg: rgba(255, 255, 255, 0.03);
  --border-color: rgba(212, 175, 55, 0.2);
  --feature-gold: #ecc43e;
  --feature-dark: #191407;
  --feature-text: #aeb1d7;
  --feature-white: #ffffff;
  --feature-card-bg: rgba(39, 33, 9, 0.12);
  --trade-black: #050505;
  --trade-gold: #d4af37; /* Image dynamic sharing wala gold */
  --trade-card-bg: #11112b; /* Image profit box wala navy blue */
  --white: #ffffff;
  --text-gray: #b0b0b0;
  --how-gold: #d4af37;
  --how-dark-bg: #0a0a0a;
  --how-card: #121212;
  --how-text-muted: #b0b0b0;
  --how-gradient: linear-gradient(135deg, #d4af37 0%, #ffb800 100%);
  --trade-black: #050505;
  --trade-gold: #d4af37;
  --trade-card-bg: #11112b;
  --white: #ffffff;
  --text-gray: #b0b0b0;
}

@font-face {
  font-family: "Aventa";
  src: url("assets/fonts/Aventa-Regular.ttf") format("truetype");
  src: url("assets/fonts/Aventa-Bold.ttf") format("truetype");
  src: url("assets/fonts/Aventa-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Aventa";
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-dark);
  color: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

/* --- Navigation Bar --- */
.navbar {
  background-color: var(--bg-dark);
  height: var(--nav-height);
  padding: 0 5%;
  border-bottom: 1px solid #1a1a1a;
  /* position: sticky; */
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  /* The Blur Effect */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.nav-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.logo-box img {
  height: 80px;
  display: block;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a.active {
  color: var(--gold);
  position: relative;
}

/* Desktop Buttons */
.nav-auth {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-login {
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  display: inline-block;
}

.btn-login:hover {
  background: var(--gold);
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 238, 0, 0.4);
  color: #000;
}

.btn-register {
  color: #000;
  background: linear-gradient(to right, #d4af37, #ffb800);
  padding: 9px 25px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 900;
  border: none;
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.btn-register:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 238, 0, 0.4);
}

/* Mobile Specific Links (Hidden by default) */
.mobile-auth-links {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 15px;
  padding-top: 20px;
}

/* --- Mobile Toggle (Hamburger to X) --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1100;
}

.bar {
  width: 100%;
  height: 3px;
  background-color: var(--gold);
  border-radius: 10px;
  transition: 0.3s ease-in-out;
}

/* Transform to X */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  .desktop-only {
    display: none;
  }
  .mobile-auth-links {
    display: flex;
  } /* Show Login/Register in Mobile Menu */

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 25px;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
    border-left: 1px solid rgba(212, 175, 55, 0.1);
  }

  .nav-links.active {
    right: 0;
  }
  .nav-links a {
    font-size: 16px;
  }

  /* Mobile specific button scaling */
  .mobile-auth-links .btn-login,
  .mobile-auth-links .btn-register {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }
}

/*==============================================*/
/*-------hero section styling starts-------- */
/*===============================================*/

/* ---------------- HERO SECTION ---------------- */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px;
  overflow: hidden;
}

/* SPOTLIGHT BACKGROUND */

.hero-section::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -15%;
  width: 100%;
  height: 50%;
  background: conic-gradient(
    from 110deg at 10% 10%,
    transparent 0deg,
    rgba(212, 175, 55, 0.12) 10deg,
    rgba(212, 175, 55, 0.203) 25deg,
    transparent 40deg
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
  animation: beamSwing 5s ease-in-out infinite alternate;
}

@keyframes beamSwing {
  0% {
    transform: rotate(-2deg);
    opacity: 0.8;
  }
  100% {
    transform: rotate(2deg);
    opacity: 1;
  }
}

/* CONTAINER */

.hero-container {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1400px;
  width: 100%;
  gap: 60px;
  align-items: center;
  padding: 20px;
}

@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 10px;
  }
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .hero-container {
    gap: 40px;
    padding: 15px;
    grid-template-areas:
      "visual"
      "content";
  }

  .hero-content {
    grid-area: content;
  }

  .hero-visual {
    grid-area: visual;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .hero-container {
    gap: 30px;
    padding: 10px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "content";
  }

  .hero-content {
    grid-area: content;
  }

  .hero-visual {
    grid-area: visual;
  }
}

/* LEFT CONTENT */

.hero-content {
  text-align: center;
}

@media (min-width: 992px) {
  .hero-content {
    text-align: left;
  }
}

/* BADGE */

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #d4af37;
  color: #f1c40f;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

/* TITLE */

.hero-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 25px 0;
  position: relative;
  z-index: 10;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.hero-title-gold {
  color: #d4af37;
}

/* ANIMATED WORD */

#hero-changing-word {
  display: inline-block;
  min-width: 180px;

  background: linear-gradient(to right, #d4af37, #ffb800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  transition: opacity 0.45s ease;
}

/* DESCRIPTION */

.hero-description {
  font-size: 13px;
  color: #bdbdbd;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 40px;
  padding: 0 10px;
}

/* BUTTONS */

.hero-btn {
  padding: 20px 25px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.5s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
}

.hero-btn-primary {
  background: linear-gradient(to right, #d4af37, #ffb800);
  color: #000;
  border: none;
  box-shadow: 0 10px 25px rgba(191, 149, 63, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(191, 149, 63, 0.5);
  filter: brightness(1.2);
}

.hero-btn-secondary {
  border: 2px solid #d4af37;
  color: white;
  background: rgba(255, 255, 255, 0.02);
}

.hero-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-5px);
  color: #f1c40f;
}

/* RIGHT VISUAL */

.hero-visual {
  display: flex;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(212, 175, 55, 0.252) 30%,
    transparent 70%
  );
  filter: blur(40px);
  z-index: -1;
  animation: glowPulse 2s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.hero-img-container {
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 40px;

  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.5s ease;
}

/* HERO FEATURES */
.hero-features {
  display: flex;
  flex-direction: column;

  margin: 30px 0;
  padding: 0 10px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 14px;
  font-weight: 600;
  /* color: #bdbdbd; */
  transition: transform 0.3s ease;
}

.hero-feature-item:hover {
  transform: translateX(5px);
  color: #d4af37;
}

.hero-feature-icon {
  color: #d4af37;
  margin-right: 15px;
  font-size: 20px;
}

/* HERO CTA GROUP */
.hero-cta-group {
  display: flex;
  gap: 20px;
  flex-direction: column;
  margin-top: 20px;
}

/* ================= RESPONSIVE DESIGN ================= */

/* MOBILE FIRST - Default Styles */
/* (Base styles already defined above) */

/* TABLET STYLES (768px and below) */
@media (max-width: 768px) {
  .hero-section {
    padding: 130px 15px;
  }

  .hero-container {
    gap: 40px;
    padding: 15px;
  }

  .hero-content {
    padding: 15px;
  }

  .hero-badge {
    padding: 8px 15px;
    font-size: 10px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 30px;
    max-width: 100%;
  }

  .hero-btn {
    padding: 12px 22px;
    font-size: 13px;
    margin-right: 10px;
  }

  .hero-img-container {
    max-width: 400px;
    aspect-ratio: 1/1;
    padding: 20px;
  }

  .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-features {
    gap: 12px;
    margin: 25px 0;
    text-align: center;
  }

  .hero-feature-item {
    font-size: 13px;
    gap: 10px;
    justify-content: center;
  }

  .hero-feature-icon {
    font-size: 14px;
  }
}

/* MOBILE STYLES (480px and below) */
@media (max-width: 480px) {
  .hero-section {
    padding: 130px 10px;
  }

  .hero-container {
    gap: 30px;
    padding: 10px;
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 10px;
  }

  .hero-badge {
    padding: 6px 12px;
    font-size: 9px;
    margin-bottom: 15px;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 15px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 25px;
    padding: 0 5px;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 12px;
    margin-right: 8px;
    display: block;
    margin-bottom: 10px;
  }

  .hero-img-container {
    max-width: 350px;
    aspect-ratio: 1/1;
    padding: 15px;
  }

  .hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-features {
    gap: 10px;
    margin: 20px 0;
    padding: 0 5px;
  }

  .hero-feature-item {
    font-size: 12px;
    gap: 8px;
  }

  .hero-feature-icon {
    font-size: 13px;
  }
}

/* DESKTOP STYLES (992px and above) */
@media (min-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 10px;
  }

  .hero-content {
    text-align: left;
  }
}

/* LARGE DESKTOP STYLES (1200px and above) */
@media (min-width: 1200px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-feature-item {
    font-size: 15px;
  }
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .hero-cta-group {
    justify-content: flex-start;
  }
}
/*==============================================*/
/*-------hero section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*------- stat section styling starts-------- */
/*===============================================*/

.stat-container {
  padding: 10px 20px 100px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  color: var(--white);
}

.stat-title {
  background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.stat-subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 300;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.stat-card {
  position: relative;
  padding: 20px;
}

/* The decorative line from the image */
.stat-card::after {
  content: "";
  position: absolute;
  bottom: 65px;
  left: 15%;
  width: 70%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-counter-wrapper {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  display: block;
  /* Using the gold theme for the numbers */
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-description {
  color: var(--gray);
  font-size: 0.85rem;
  text-transform: capitalize;
}

@media (max-width: 768px) {
  .stat-title {
    font-size: 1.8rem;
  }
  .stat-card::after {
    width: 50%;
    left: 25%;
  }
}
/*==============================================*/
/*------- stat section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*------- diffent form section styling starts-------- */
/*===============================================*/
.diff-section {
  position: relative;
  padding: 80px 24px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;

  justify-content: space-between;
  gap: 40px;
  /* background-color: var(--bg-dark); */
  /* background: radial-gradient(circle at center, #28280a 0%, #0a0a05 100%); */
  background: radial-gradient(
    circle at center,
    var(--glow-1) 0%,
    var(--bg-dark) 100%
  );

  /* background-image: radial-gradient(
    circle at bottom,
    var(--glow-1) 0%,
    transparent 40%
  ); */
}
/* .test-map-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 30%, transparent 85%);
  pointer-events: none;
} */
.diff-section-overlay {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 30%, transparent 85%);
  pointer-events: none;
}
/* .diff-section::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -15%;
  width: 150%;
  height: 150%;
  background-image: radial-gradient(
    circle at right,
    var(--glow-1) 0%,
    transparent 50%
  );
} */

/* --- Left Side: Text Content --- */
.diff-content {
  flex: 1;
}

.diff-header {
  margin-bottom: 35px;
}

.diff-title {
  /* background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent; */
  font-size: 2.9rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.diff-title-gold {
  background: linear-gradient(to right, #d4af37, #ffb800);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.diff-subtitle {
  color: var(--gray);
  font-size: 1rem;
  display: block;
}

.diff-feature-list {
  display: flex;
  flex-direction: column; /* Vertical list like the screenshot */
  gap: 28px;
}

.diff-feature-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.diff-icon-box {
  background-color: var(--gold);
  color: var(--bg-dark);
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 4px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.2);
}

.diff-feature-text h3 {
  font-size: 1.15rem;
  margin: 0 0 5px 0;
  font-weight: 700;
  color: var(--white);
}

.diff-feature-text p {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--gray);
  max-width: 500px;
}

/* --- Right Side: GIF --- */
.diff-visual-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diff-gif-container {
  width: 100%;
  max-width: 500px;
  height: 700px;
  /* Placeholder styling for your GIF */
  display: flex;
  justify-content: center;
  align-items: center;
}

.diff-gif-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .diff-section {
    flex-direction: column;
    padding: 50px 20px;
  }

  .diff-gif-container {
    width: 100%;
    max-width: 500px;
    height: 400px;
    /* Placeholder styling for your GIF */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .diff-gif-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .diff-visual-wrapper {
    order: -1; /* GIF moves to top */
    width: 100%;
    margin-bottom: 30px;
  }
  /* .diff-title {
    font-size: 1.8rem;
  } */
}

@media (max-width: 768px) {
  .diff-title {
    font-size: 1.5rem; /* Smaller font for small screens */
  }
  .diff-subtitle {
    font-size: 0.9rem;
  }
  .diff-feature-text h3 {
    font-size: 1.05rem;
  }
  .diff-feature-text p {
    font-size: 0.85rem; /* Compact text */
  }
  .diff-icon-box {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .diff-feature-list {
    gap: 20px;
  }
}
/*==============================================*/
/*------- diffent form section styling ends------- */
/*===============================================*/

/*==============================================*/
/*------- diff features section styling starts here-------- */
/*===============================================*/

/* --- Main Section Container --- */
/* .diff-carousel-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  width: 100%;
  color: var(--white);
  overflow: hidden;
} */

.diff-carousel-section {
  background-color: var(--bg-dark);
  padding: 80px 0;
  width: 100%;
  color: var(--white);
  overflow: hidden;
  position: relative; /* Beam positioning ke liye zaroori hai */
  scroll-margin-top: 80px; /* Account for navbar height */
}

/* --- Left Side Beam --- */
.diff-carousel-section::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -5%;
  width: 100%;
  height: 80%;
  background: conic-gradient(
    from 110deg at 10% 10%,
    transparent 0deg,
    rgba(212, 175, 55, 0) 15deg,
    rgba(212, 175, 55, 0.219) 30deg,
    transparent 50deg
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* --- Right Side Beam --- */
.diff-carousel-section::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 100%;
  height: 80%;
  background: conic-gradient(
    from 210deg at 90% 10%,
    transparent 0deg,
    rgba(212, 175, 55, 0) 15deg,
    rgba(212, 175, 55, 0.219) 30deg,
    transparent 50deg
  );
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* Ensure Carousel content is above the beams */
.diff-carousel-section > * {
  position: relative;
  z-index: 2;
}
/* Heading & Subheading inside the section */
.diff-carousel-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.diff-carousel-header p {
  /* color: var(--gold); */
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.diff-carousel-header h2 {
  background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.9rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -1px;
}

/* --- Infinite Carousel Logic --- */
.diff-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* Fading realistic overlays */
.diff-carousel-viewport::before,
.diff-carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 15%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.diff-carousel-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark) 0%, transparent 100%);
}

.diff-carousel-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark) 0%, transparent 100%);
}

.diff-carousel-track {
  display: flex;
  width: max-content;
  animation: diff-scroll 40s linear infinite;
  padding: 1rem;
}

.diff-carousel-viewport:hover .diff-carousel-track {
  animation-play-state: paused;
}

/* --- Card Styling --- */
.diff-card {
  flex: 0 0 auto;
  width: 280px;
  padding: 30px;
  margin: 0 15px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.diff-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  background: rgba(212, 175, 55, 0.08);
}

.diff-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--diff-gold);
  margin-bottom: 20px;
  font-size: 18px;
}

.diff-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.diff-card p {
  color: var(--gray);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0;
}

@keyframes diff-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .diff-carousel-header h2 {
    font-size: 1.7rem;
  }
  .diff-card {
    width: 240px;
    padding: 25px;
  }
  .diff-carousel-viewport::before,
  .diff-carousel-viewport::after {
    width: 10%;
  }
}
/*==============================================*/
/*------- diff features section styling ends here-------- */
/*===============================================*/

/*==============================================*/
/*-------  steps section styling ends-------- */
/*===============================================*/

.t24-steps-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.t24-steps-title {
  font-size: clamp(28px, 44px, 45px);
  background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 15px rgba(241, 196, 15, 0.25);
  max-width: 900px;
}

.t24-steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  width: 100%;
}

.t24-step-card {
  background: linear-gradient(
    180deg,
    rgba(248, 231, 2, 0.1) 0%,
    rgba(5, 7, 10, 1) 100%
  );
  border: 1px solid rgba(226, 237, 11, 0.15);
  border-radius: 16px;
  padding: 40px 25px 30px 25px;
  position: relative;
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

@media (hover: hover) {
  .t24-step-card:hover {
    border-color: var(--gold-light);
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  }
}

.t24-step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px; /* Fixed size */
  font-weight: 800;
  color: var(--gold-light);
  opacity: 0.1;
  line-height: 1;
}

.t24-step-name {
  font-size: 22px; /* Fixed size */
  font-weight: 700;
  margin-bottom: 12px;
  /* color: var(--white); */
  background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.t24-step-text {
  font-size: 15px; /* Fixed size */
  color: var(--text-muted);
  line-height: 1.6;
}

/* --- MEDIA QUERIES (Handling Screen Sizes) --- */

@media (max-width: 1024px) {
  .t24-steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 650px) {
  .t24-steps-section {
    padding: 40px 15px;
  }
  .t24-steps-container {
    grid-template-columns: 1fr;
    max-width: 380px;
  }
  .t24-steps-title {
    font-size: 30px;
    margin-bottom: 35px;
  }
}

/*==============================================*/
/*-------  steps section styling ends-------- */
/*===============================================*/

/*=========================================================*/
/*------- exchages supported section styling STARTS-------- */
/*=========================================================*/

.supp-wrapper {
  background: linear-gradient(135deg, #0a0a0a 0%, #0f0f0f 50%, #050505 100%);
  padding: 80px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.supp-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(212, 175, 55, 0.04) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 60%
    );
  z-index: 1;
  pointer-events: none;
}

.supp-wrapper > * {
  position: relative;
  z-index: 2;
}

.supp-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap; /* Mobile ke liye zaroori hai */
  align-items: center;
  padding: 0 20px;
}

/* Left Section: 50% Desktop */
.supp-visuals {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  padding: 20px;
}

.supp-main-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.15));
}

/* Right Section: 50% Desktop */
.supp-content {
  flex: 1 1 50%;
  padding: 20px;
  overflow: hidden; /* Container ke andar hi rakhega marquee ko */
}

.supp-title {
  font-size: clamp(45px, 10%, 76px); /* Dynamic font size */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.supp-highlight {
  color: var(--highlight);
}

.supp-info {
  color: var(--gray);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* --- Marquee Box Fix --- */
.supp-marquee-box {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: 20px 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.supp-scroll-track {
  display: flex;
  width: max-content;
  margin: 1rem;
  gap: 15px;
  animation: suppScroll 18s linear infinite;
}

@keyframes suppScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.supp-card {
  flex-shrink: 0;
  background: #111;
  border: 1px solid #222;
  padding: 12px 24px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  min-width: 200px;
  height: 70px;
  gap: 10px;
  font-weight: 700;
  font-size: 25px;
}

.supp-icon-img {
  height: 42px;
  width: auto;
}

.supp-soon {
  font-size: 9px;
  color: #2ecc71;
  border: 1px solid #2ecc71;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 400;
}

.supp-disclaimer {
  color: var(--gray);
  font-size: 13px;
  opacity: 0.7;
  margin-top: 20px;
}

/* --- Responsive Breakpoints --- */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .supp-container {
    gap: 20px;
  }
  .supp-visuals,
  .supp-content {
    flex: 1 1 100%; /* Full width on tablet */
    text-align: center;
  }
  .supp-content {
    padding-top: 0;
  }
  .supp-info {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .supp-wrapper {
    padding: 50px 0;
  }

  .supp-title {
    font-size: clamp(28px, 10%, 76px); /* Dynamic font size */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
  }
  .supp-main-img {
    max-width: 280px;
  }
  .supp-card {
    padding: 10px 18px;
    font-size: 14px;
  }
  .supp-scroll-track {
    animation-duration: 12s; /* Mobile par thoda tez loop */
  }
}
/*=========================================================*/
/*------- exchages supported section styling ENDS-------- */
/*=========================================================*/

/*==============================================*/
/*------- diff cta section styling starts-------- */
/*===============================================*/

.diff-cta-section {
  background: linear-gradient(135deg, #050505 0%, #0a0a0a 50%, #0f0f0f 100%);
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.diff-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 30% 50%,
      rgba(212, 175, 55, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 50%,
      rgba(212, 175, 55, 0.03) 0%,
      transparent 50%
    );
  z-index: 1;
  pointer-events: none;
}

.diff-cta-section > * {
  position: relative;
  z-index: 2;
}

/* Top Image/Badges Container */
.diff-cta-awards {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.diff-cta-awards img {
  max-width: 600px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

/* Main Heading - VW removed, using fixed sizes with media queries */
.diff-cta-title {
  font-size: 56px; /* Large desktop size */
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 25px;
  line-height: 1.1;
  letter-spacing: -1px;
}

/* Subtext Paragraph */
.diff-cta-description {
  color: var(--gray);
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

/* Checkbox/Highlight Row */
.diff-cta-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 500;
}

.diff-cta-check {
  color: #2ecc71;
  font-size: 22px;
}

/* Animation classes */
.diff-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.diff-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Adjustments (VW ki jagah Fixed Steps) --- */

/* Tablets */
@media (max-width: 1024px) {
  .diff-cta-title {
    font-size: 42px;
  }
}

/* Mobile Phones */
@media (max-width: 768px) {
  .diff-cta-section {
    padding: 60px 20px;
  }
  .diff-cta-title {
    font-size: 32px;
  }
  .diff-cta-description {
    font-size: 16px;
  }
  .diff-cta-highlight {
    font-size: 15px;
  }
}

/* Small Phones */
@media (max-width: 480px) {
  .diff-cta-title {
    font-size: 28px;
  }
}
/*==============================================*/
/*------- diff cta section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*------- exchange support section styling starts-------- */
/*===============================================*/

/* Hidden by default */
.t24-video-section {
  display: none;
}

@media (min-width: 1024px) {
  .t24-video-section {
    position: relative;
    width: 100%;
    height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;

    /* ❌ REMOVE GPU FORCE FROM CONTAINER */
    transform: none;
    will-change: auto;
  }

  .t24-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;

    /* ✅ GPU ISOLATION — VIDEO ONLY */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  .t24-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
    pointer-events: none;

    /* 🔴 IMPORTANT */
    transform: none;
    will-change: auto;
  }
}

/*==============================================*/
/*------- video section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*-------fn-payout section styling starts-------- */
/*===============================================*/

.fn-payout-wrapper {
  background-color: var(--fn-payout-dark);
  border: 1px solid var(--fn-payout-border);
  border-radius: 16px;
  padding: 25px 15px;
  width: 90%;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
  flex-direction: column; /* Mobile first */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* Stats Section: Mobile Optimized */
.fn-payout-stats-area {
  display: grid;
  /* Phone ke liye rows mein convert kiya */
  grid-template-columns: 1fr;
  /* grid-template-rows: repeat(1, auto); */
  gap: 20px;
  width: 100%;
  text-align: center;
}

.fn-payout-stat-card h2 {
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
  color: var(--fn-payout-gold);
  font-weight: 800;
}
.fn-payout-stat-card p {
  margin: 4px 0 0;
  color: var(--fn-payout-dim);
  font-size: 0.8rem;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
}

/* Divider: Mobile Horizontal */
.fn-payout-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--fn-payout-gold),
    transparent
  );
  opacity: 0.3;
  margin: 25px 0;
}

/* Scroller Section */
.fn-payout-scroll-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin: auto;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 10%,
    black 90%,
    transparent
  );
}

.fn-payout-track {
  display: flex;
  width: max-content;

  animation: fn-payout-scroll 40s linear infinite;
}

.fn-payout-item {
  display: flex;
  flex-direction: column;
  min-width: 160px;
  padding: 0 20px;
  text-align: center;
}

.fn-payout-name {
  font-size: 0.85rem;
  color: var(--fn-payout-text);
}
.fn-payout-amount {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fn-payout-green);
  margin: 3px 0;
}
.fn-payout-time {
  font-size: 0.7rem;
  color: var(--fn-payout-dim);
}

@keyframes fn-payout-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  /* .fn-payout-stats-area {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 30px;
  } */
}
/* Desktop Layout (992px+) */
@media (min-width: 992px) {
  .fn-payout-wrapper {
    flex-direction: row;
    padding: 35px 40px;
  }

  .fn-payout-stats-area {
    width: auto;
    display: flex; /* Desktop par side-by-side */
    gap: 50px;
    text-align: center;
  }

  .fn-payout-stat-card h2 {
    /* padding: 1rem; */
    font-size: 1.8rem;

    text-align: center;
    margin-bottom: 0.5rem;
  }

  .fn-payout-stat-card p {
    font-size: 0.7rem;
    width: 80%;
    margin: 0 auto;
  }

  .fn-payout-divider {
    width: 5px;
    height: 100px;
    background: linear-gradient(
      transparent,
      var(--fn-payout-gold),
      transparent
    );
    margin: auto 50px;
  }

  .fn-payout-item {
    text-align: left;
    min-width: 190px;
  }
}

@media (min-width: 1200px) {
  .fn-payout-stat-card h2 {
    /* padding: 1rem; */
    font-size: 1.8rem;

    text-align: center;
    margin-bottom: 0.5rem;
  }
}
/* Flag styling */
.fn-flag {
  width: 20px; /* Flag ki width */
  height: auto;
  border-radius: 2px; /* Thode rounded corners */
  object-fit: contain;
}

.fn-payout-name {
  font-size: 0.85rem;
  color: var(--fn-payout-text);
  display: flex;
  align-items: center;
  gap: 10px; /* Flag aur naam ke beech ka gap */
  justify-content: center;
}

@media (min-width: 992px) {
  .fn-payout-name {
    justify-content: flex-start;
  }
}
/*====================================*/
/* ------ fn-payout section Styles ends ------- */
/*=====================================*/

/*==============================================*/
/*------- income section styling starts-------- */
/*===============================================*/

#inc-wrapper {
  --inc-bg: #05070a;
  --inc-gold: #ffe100;
  --inc-glass: rgba(255, 255, 255, 0.03);
  --inc-border: rgba(255, 255, 255, 0.08);

  background-color: var(--inc-bg);
  color: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Center glow */
#inc-wrapper::before {
  content: "";
  position: absolute;
  inset: -25%;
  background: radial-gradient(
    circle at center,
    rgba(255, 225, 0, 0.08),
    rgba(255, 225, 0, 0.04) 35%,
    rgba(5, 7, 10, 0.95) 65%
  );
  animation: incCenterPulse 24s ease-in-out infinite;
  z-index: 0;
}

/* Content stays above */
#inc-wrapper > * {
  position: relative;
  z-index: 1;
}

@keyframes incCenterPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

/* --- Background Pattern --- */
.inc-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.08) 1.5px,
    transparent 0
  );
  background-size: 35px 35px;
  mask-image: radial-gradient(circle at center, black 10%, transparent 80%);
  -webkit-mask-image: radial-gradient(
    circle at center,
    black 10%,
    transparent 80%
  );
  z-index: 1;
  pointer-events: none;
}

/* --- Header --- */
.inc-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.inc-title {
  /* color: var(--inc-gold); */
  background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(2rem, 5vw, 2.9rem);
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.inc-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--inc-gold), transparent);
  margin: 0 auto;
}

/* --- Grid & Cards --- */
.inc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1100px;
  position: relative;
  z-index: 2;
}

.inc-card {
  background: var(--inc-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--inc-border);
  border-radius: 30px;
  padding: 40px;
  position: relative;
  transition: 0.4s ease;
  overflow: hidden;
}

/* Shine Reflection Effect */
.inc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transform: skewX(-25deg);
  transition: 0.7s;
}

.inc-card:hover::after {
  left: 150%;
}

.inc-card:hover {
  transform: translateY(-10px);
  border-color: var(--inc-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Icon & Text */
.inc-icon-box {
  width: 60px;
  height: 60px;
  background: rgba(255, 184, 0, 0.1);
  border: 1.5px solid var(--inc-gold);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
  box-shadow: 0 0 15px rgba(255, 184, 0, 0.2);
}

.inc-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.inc-card p {
  color: #8a8f98;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Button */
.inc-btn {
  /* background: linear-gradient(90deg, #ffd000, #fbff00); */
  /* background-color: var(--gold); */
  background: linear-gradient(to right, #d4af37, #ffb800);
  border: none;
  padding: 12px 35px;
  border-radius: 50px;
  color: black;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.inc-btn:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 238, 0, 0.4);
}

/* Gold Corner Design */
.inc-corner {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 60px;
  background: var(--inc-gold);
  border-radius: 20px;
  filter: blur(20px);
  opacity: 0.3;
  z-index: -1;
  transition: 0.4s;
}

.inc-card:hover .inc-corner {
  opacity: 0.7;
  filter: blur(10px);
}

/* Mobile View */
@media (max-width: 850px) {
  .inc-card {
    text-align: center;
  }
  .inc-icon-box {
    margin: 0 auto 20px;
  }
  .inc-btn {
    width: 100%;
  }
}
/*==============================================*/
/*------- income section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*------- subscription section styling starts-------- */
/*===============================================*/

/* --- MAIN SECTION --- */
.t24-subscription-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--dark-bg);

  background-image:
    radial-gradient(circle at center, var(--glow-1) 0%, transparent 40%),
    radial-gradient(circle at bottom, var(--glow-1) 0%, transparent 40%);
}

/* --- VORTEX ANIMATION --- */
.t24-vortex-container {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.t24-vortex-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  transform-origin: bottom center;
  opacity: 0;
  animation: t24-spiral 4s infinite linear;
}

@keyframes t24-spiral {
  0% {
    transform: rotate(var(--angle)) translateY(0) scale(0);
    opacity: 0;
  }
  30% {
    opacity: 0.8;
  }
  100% {
    transform: rotate(calc(var(--angle) + 220deg)) translateY(-150vh) scale(1.5);
    opacity: 0;
  }
}

/* --- WRAPPER & BOXES --- */
.t24-sub-wrapper {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 800px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.t24-sub-content-box {
  flex: 1;
  border: 2px solid var(--border-color);
  border-right: none;
  border-radius: 30px 0 0 30px;
  padding: 50px;
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(10px);
}

.t24-sub-content-box h2 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--gold);
  margin: 0 0 15px 0;
  text-transform: uppercase;
  line-height: 1.1;
}

.t24-sub-content-box p {
  color: #bbb;
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0;
  max-width: 400px;
}

/* --- PRICING CARD --- */
/* .t24-pricing-card {
  flex: 0 0 360px;
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 0 50px rgba(241, 196, 15, 0.1);
  box-sizing: border-box;
  box-shadow: 0 0 20px rgba(241, 196, 15, 0.2);
  animation: all 0.5s ease-in-out;
}
.t24-pricing-card:hover {
  box-shadow: 0 0 40px rgba(241, 196, 15, 0.4);
  transform: translateY(-5px);
} */
/* --- PRICING CARD --- */
.t24-pricing-card {
  flex: 0 0 360px;
  position: relative;
  background: var(--card-bg);
  border-radius: 25px;
  padding: 40px;
  text-align: center;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  /* Transparent border space reserve karne ke liye */
  border: 2px solid transparent;
}

/* Moving animated border using your Static Card technique */
.t24-pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px; /* Border ki thickness */
  border-radius: 25px;

  /* Gold gradient jo left-to-right move karega */
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: t24-moveBorder 3s linear infinite;

  /* Masking: Ye center hide kar deta hai */
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out; /* Standard strategy for masking */
  mask-composite: exclude;

  pointer-events: none;
}

@keyframes t24-moveBorder {
  0% {
    background-position: 200% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
}

/* Content visibility */
.t24-pricing-card > * {
  position: relative;
  z-index: 2;
}

.t24-annual-tag {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.t24-price {
  font-size: 4rem;
  font-weight: 800;
  margin: 15px 0;
  color: #fff;
}

.t24-price span {
  font-size: 1.2rem;
  color: #777;
}

.t24-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.t24-features li {
  padding: 10px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  color: #ddd;
}

.t24-features li::before {
  content: "✦";
  color: var(--gold);
  margin-right: 12px;
}

.t24-subscribe-btn {
  display: block;
  background: linear-gradient(to right, #d4af37, #ffb800);
  color: black;
  text-decoration: none;
  padding: 18px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: 0.3s;
  text-align: center;
}

.t24-subscribe-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(241, 196, 15, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 850px) {
  .t24-sub-wrapper {
    flex-direction: column;
    max-width: 450px;
  }
  .t24-sub-content-box {
    border-right: 2px solid var(--border-color);
    border-bottom: none;
    border-radius: 30px 30px 0 0;
    padding: 40px 25px;
    text-align: center;
    border: 2px solid var(--gold);
  }
  .t24-sub-content-box p {
    margin: 0 auto;
  }
  .t24-pricing-card {
    flex: none;
    width: 100%;
    border-radius: 0 0 30px 30px;
  }
}

/*==============================================*/
/*------- subscription section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*-------profit section styling starts-------- */
/*===============================================*/
.profit-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px; /* Mobile friendly padding */
  background: radial-gradient(
    circle at Center,
    var(--glow-1) 0%,
    var(--bg-dark) 100%
  );
}

.profit-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  z-index: 10;
}

/* --- Content Side --- */
.profit-headline {
  font-size: clamp(2.9rem, 15%, 3.5rem); /* Responsive font size */
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}
.profit-badge {
  display: inline-block;
  width: fit-content;

  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--gold-dark);
  color: var(--gold-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.profit-headline span {
  background: linear-gradient(to bottom, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.profit-main-card {
  background: var(--card-bg);
  padding: clamp(20px, 4rem, 40px);

  box-shadow: 0 0 40px rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  margin-bottom: 30px;
}
.profit-main-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold-dark);
}

.profit-split-value {
  font-size: clamp(2.5rem, 4rem, 4.5rem);

  font-weight: 900;
  display: flex;
  gap: 15px;
}
.val-gold {
  background: linear-gradient(to right, #d4af37, #ffb800);
  --webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- YOUR ORIGINAL RING ANIMATION (UNTOUCHED) --- */
.profit-visual-area {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.ring,
.track {
  position: absolute;
  border-radius: 50%;
  box-sizing: border-box;
}

.track-outer {
  width: 85%;
  height: 85%;
  border: 2px solid rgba(255, 153, 0, 0.1);
}
.track-inner {
  width: 65%;
  height: 65%;
  border: 2px solid rgba(255, 153, 0, 0.1);
}

.outer-ring {
  width: 85%;
  height: 85%;
  border: 4px solid transparent;
  border-top: 4px solid var(--gold-dark);
  border-left: 4px solid var(--gold-dark);
  filter: drop-shadow(0 0 15px var(--gold-glow));
  animation: rotate-clockwise 8s linear infinite;
}

.inner-ring {
  width: 65%;
  height: 65%;
  border: 3px solid transparent;
  border-left: 3px solid var(--gold-dark);
  border-right: 3px solid #ffcc00;
  filter: drop-shadow(0 0 10px rgba(255, 204, 0, 0.3));
  animation: rotate-counter-clockwise 7s linear infinite;
}

.profit-main-image {
  width: 50%;
  z-index: 5;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
  pointer-events: none;
}

@keyframes rotate-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-counter-clockwise {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* --- RESPONSIVE FIXES --- */
@media (max-width: 992px) {
  .profit-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .profit-visual-area {
    order: -1; /* Animation stays on top for mobile */
    max-width: 320px; /* Slightly smaller for mobile screens */
  }
  .profit-split-value {
    justify-content: center;
  }
  .profit-main-card::before {
    height: 4px;
    width: 50px;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .profit-headline {
    font-size: 1.8rem;
  }
  .profit-split-value {
    font-size: 2.2rem;
  }
}

/* Container Area */
.profit-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* 1. Badge */
.profit-badge {
  display: inline-block;
  width: fit-content;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #d4af37;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 15px;
}

/* 2. Headline */

.profit-gradient-text {
  background: linear-gradient(180deg, #ffffff 30%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3. Main Card */
.profit-main-card {
  display: flex;
  align-items: center;
  gap: 50px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 45px;
  border-radius: 20px;
  width: fit-content;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.profit-stat-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.profit-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profit-stat-value {
  font-size: 4rem; /* Desktop Hero Size */
  font-weight: 800;
  line-height: 1;
}

.profit-gold-text {
  color: #ffd700;
  text-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.profit-white-text {
  color: #ffffff;
}

.profit-stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
}

/* 4. Description */
.profit-description {
  font-size: 1.1rem;
  color: #a0a0a0;
  line-height: 1.6;
  max-width: 500px;
}

/* --- Responsive Layout --- */

@media (max-width: 992px) {
  .profit-content {
    align-items: center;
    text-align: center;
  }
  .profit-main-card {
    margin: 0 auto 25px auto;
  }
  .profit-description {
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* .profit-headline {
    font-size: 2.2rem;
  } */
  .profit-main-card {
    padding: 20px;
    gap: 20px;
    width: 100%;
    justify-content: space-around;
  }
  .profit-stat-value {
    font-size: 2.2rem; /* Clean size for phones */
  }
  .profit-stat-label {
    font-size: 10px;
  }
  .profit-stat-divider {
    height: 40px;
  }
}
/*==============================================*/
/*-------profit section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*-------cta section styling starts-------- */
/*===============================================*/

.t24-final-cta {
  position: relative;
  padding: 100px 5%;
  background-color: var(--bg-dark); /* Using your root background color */
  overflow: hidden;
}

.cta-glass-card {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(212, 175, 55, 0.05);
  border: 1px solid var(--card-border); /* Matches your feature cards */
  border-radius: 40px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(15px);
}

.cta-background-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: var(--gold);
  filter: blur(150px);
  opacity: 0.1;
  pointer-events: none;
}

.cta-text-side {
  flex: 1.2;
}

.cta-headline {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.cta-para {
  color: var(--hero-text-muted); /* Consistent text color */
  font-size: 1.1rem;
  margin-bottom: 35px;
  max-width: 550px;
  line-height: 1.6;
}

.cta-action-btns {
  display: flex;
  align-items: center;
  gap: 25px;
}

.cta-secondary-link {
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.cta-secondary-link:hover {
  color: var(--gold);
}

.cta-img-side {
  flex: 0.8;
  display: flex;
  justify-content: center;
}

.cta-main-asset {
  width: 100%;
  max-width: 380px;
  /* filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.3)); */
  /* Reusing your hero float animation for consistency */
  animation: t 5s ease-in-out infinite;
}

@media (max-width: 992px) {
  .cta-glass-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }
  .cta-headline {
    font-size: 2rem;
  }
  .cta-action-btns {
    flex-direction: column;
  }
  .cta-para {
    margin: 0 auto 30px;
  }
  .cta-img-side {
    order: -1;
  }
}
/*==============================================*/
/*-------cta section styling ends-------- */
/*===============================================*/

/*==============================================*/
/*-------testemonial section styling starts-------- */
/*===============================================*/
.test-testimonial-section {
  padding: 80px 0;
  text-align: center;
  background: radial-gradient(circle at center, #0a1128 0%, #05070a 100%);
  position: relative;
  min-height: 850px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(60px);
  transition:
    opacity 1s ease-out,
    transform 1s ease-out;
}

/* Active class triggered by JS */
.test-section-active {
  opacity: 1;
  transform: translateY(0);
}

.test-map-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.06) 1.5px,
    transparent 1.5px
  );
  background-size: 40px 40px;
  mask-image: radial-gradient(circle, black 30%, transparent 85%);
  pointer-events: none;
}

.test-main-container {
  position: relative;
  width: 100%;
  max-width: 1300px;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.test-center-focus {
  position: relative;
  z-index: 20;
  max-width: 600px;
  padding: 20px;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

/* Initial hidden state for center content */
.test-content-hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

.test-main-frame {
  width: 160px;
  height: 160px;
  margin: 0 auto 25px;
  border-radius: 50%;
  border: 4px solid var(--test-gold);
  padding: 6px;
  box-shadow: 0 0 50px var(--test-gold-glow);
  background: var(--test-bg);
}

.test-main-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.test-quote-icon {
  color: var(--test-gold);
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

.test-feedback-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--test-white);
  font-style: italic;
  margin-bottom: 15px;
  min-height: 100px;
}

.test-client-name {
  color: var(--test-gold);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.test-orbit-avatar {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 2px solid var(--test-border);
  overflow: hidden;
  cursor: pointer;
  transform: translate(0, 0) scale(0);
  opacity: 0;
  transition:
    transform 1s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.5s ease;
  z-index: 10;
  background: #0d0f1a;
}

.test-orbit-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.5;
  transition: 0.4s;
}

.test-orbit-avatar.active {
  transform: scale(0) !important;
  opacity: 0;
  pointer-events: none;
}

.test-orbit-avatar:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.test-footer-area {
  width: 100%;
  z-index: 10;
  padding: 20px;
  margin-top: 40px;
}

.test-footer-title {
  color: var(--test-gold);
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 900;
}

.test-footer-desc {
  font-size: 1rem;
  color: var(--test-white);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.test-bottom-spacer {
  height: 30vh;
}

@media (max-width: 768px) {
  .test-testimonial-section {
    min-height: 700px;
    padding: 40px 0;
  }
  .test-main-container {
    height: 450px;
  }
  .test-main-frame {
    width: 110px;
    height: 110px;
  }
  .test-orbit-avatar {
    width: 45px;
    height: 45px;
  }
  .test-feedback-text {
    font-size: 0.95rem;
  }
}
/*==============================================*/
/*-------testemonial section styling ends-------- */
/*===============================================*/

/*====================================*/
/* ------ Footer Styles starts ------- */
/*=====================================*/

@keyframes fallingMoney {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}
/* ================= FOOTER ================= */
.footer {
  background: var(--footer-bg);
  width: 100%;
  position: relative;
  overflow: hidden;
  color: white;
}

/* Dark overlay */
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 25, 0.8);
  z-index: 1;
}

/* Top Shape */
.footerTopShape {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 3;
  pointer-events: none;
}

/* ================= MOVING BACKGROUND ================= */
.shapes_banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  z-index: 0;
  animation: fallingMoney 30s linear infinite;
  will-change: transform;
}

.shapes_banner img {
  width: 100%;
  height: 50%;
  display: block;
  object-fit: cover;
}

/* ================= CONTENT ================= */
.footerTop {
  position: relative;
  z-index: 2;
  padding: 120px 0 40px;
  text-align: center;
}

/* .footer-container {
  max-width: 1140px;
  margin: auto;
  padding: 0 15px;
}

.method ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

*/
.method ul li {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.method img {
  width: 30px;
}

/* Navigation */
.footerNav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.footerNav ul li {
  display: inline-block;
  border-right: 2px solid #686fc5;
}

.footerNav ul li:last-child {
  border: none;
}

.footerNav ul li a {
  color: #fff;
  margin: 0 12px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.footerNav ul li a:hover {
  color: var(--gold);
}

/* Newsletter */
/* .newsletterInner {
  max-width: 500px;
  margin: auto;
}

.custom-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(104, 111, 197, 0.4);
  border-radius: 8px;
  overflow: hidden;
}

.footer-form-input {
  flex: 1;
  width: 100%;

  padding: 0 14px;
  font-size: 16px;
  line-height: 50px;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  -webkit-appearance: none;
  appearance: none;
}

.btnTheme {
  background: linear-gradient(to right, #d4af37, #ffb800);
  border: none;
  padding: 0 25px;
  font-weight: bold;
  cursor: pointer;
}

.btnTheme:hover {
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 15px 30px rgba(255, 238, 0, 0.4);
} */

/* Copyright */
.copy {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* ================= MOBILE ================= */
@media (max-width: 575px) {
  .footerTop {
    padding: 80px 0 30px;
  }

  .footerNav ul li {
    display: block;
    border-right: none;
    border-bottom: 1px solid rgba(104, 111, 197, 0.2);
    padding: 8px 0;
  }

  .custom-input-group {
    flex-direction: column;
    gap: 10px;
    background: transparent;
    border: none;
  }

  .footer-form-input {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    text-align: center;
  }

  .btnTheme {
    width: 100%;
    height: 50px;
    border-radius: 6px;
  }
}

/* Footer Container Layout */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px; /* Space between sections */
  padding: 20px 20px;
}

/* Social Icons Styling */
.footer-socials {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.1); /* Low opacity gold */
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  transition: all 0.4s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gold);
  color: var(--bg-dark);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Nav & Method Adjustments */
.footerNav ul,
.method ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footerNav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footerNav a:hover {
  color: var(--gold);
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
  .footer-container {
    gap: 25px;
  }
  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
/*=====================================*/
/* ------ Footer Styles ends ------- */
/*=====================================*/
/* Class: .gold-flow-bg */
.gold-flow-bg {
  background: radial-gradient(
    from center,
    #d4af3753,
    #f1c40f72,
    #d4af371d,
    transparent
  );
  background-size: 200% 200%;
  animation: goldFlow 3s ease infinite;
}

@keyframes goldFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Class: .gold-shine-bg */
.gold-shine-bg {
  background: linear-gradient(135deg, #d4af37 25%, #f1c40f 50%, #d4af37 75%);
  background-size: 400% 400%;
  animation: metallicShine 5s linear infinite;
}

@keyframes metallicShine {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

/* Class: .gold-pulse-bg */
.gold-pulse-bg {
  background: radial-gradient(circle, #f1c40f 0%, #d4af37 100%);
  background-size: 150% 150%;
  animation: goldPulse 4s ease-in-out infinite alternate;
}

@keyframes goldPulse {
  0% {
    background-size: 100% 100%;
    opacity: 0.9;
  }
  100% {
    background-size: 130% 130%;
    opacity: 1;
  }
}

/*=====================================*/
/* ------ aniamtion starts ------- */
/*=====================================*/

/* --- Core Setup --- */
.animate-on-scroll {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform, opacity;
}

/* Common Trigger Class */
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1) rotate(0) skew(0);
}

/* --- [1] SLIDE EFFECTS (All 4 Sides) --- */
.slide-up {
  transform: translateY(60px);
}
.slide-down {
  transform: translateY(-60px);
}
.slide-left {
  transform: translateX(-100px);
}
.slide-right {
  transform: translateX(100px);
}

/* --- [2] DIAGONAL EFFECTS (Corners) --- */
.slide-top-left {
  transform: translate(-100px, -100px);
}
.slide-top-right {
  transform: translate(100px, -100px);
}
.slide-bottom-left {
  transform: translate(-100px, 100px);
}
.slide-bottom-right {
  transform: translate(100px, 100px);
}

/* --- [3] FADE + SCALE (Modern Pop) --- */
.fade-scale-up {
  transform: scale(0.5);
}
.fade-scale-down {
  transform: scale(1.5);
}
.fade-only {
  transform: none;
} /* Sirf dhundla se saaf hona */
.fade-blur {
  filter: blur(10px);
} /* Blur se clear hona */

/* --- [2] FADE + DIRECTION (In/Out Effects) --- */
.fade-up {
  transform: translateY(40px);
}
.fade-down {
  transform: translateY(-40px);
}
.fade-left {
  transform: translateX(50px);
}
.fade-right {
  transform: translateX(-50px);
}

/* --- [3] FADE + SCALE (Zoom In/Out) --- */
.fade-zoom-in {
  transform: scale(0.8);
}
.fade-zoom-out {
  transform: scale(1.1);
}
/* --- [4] SPECIAL CREATIVE EFFECTS --- */
.rotate-in {
  transform: rotate(-15deg) scale(0.7);
}
.skew-in {
  transform: skewX(10deg) translateX(-50px);
}
.blur-in {
  filter: blur(10px);
} /* Iske liye is-visible mein filter: blur(0) add karein */

/* Blur logic addition */
.animate-on-scroll.blur-in.is-visible {
  filter: blur(0);
}

/* --- [5] DELAY UTILITIES --- */
.d1 {
  transition-delay: 100ms;
}
.d2 {
  transition-delay: 200ms;
}
.d3 {
  transition-delay: 300ms;
}
.d4 {
  transition-delay: 400ms;
}
.d5 {
  transition-delay: 500ms;
}

/*=====================================*/
/* ------ aniamtion ends ------- */
/*=====================================*/

#read-particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}
/* ============================
about page styling starts here
=========================== */

.feature-about-section {
  /* background-color: var(--feature-dark); */
  background-color: var(--bg-dark);
  color: var(--feature-white);
  padding: 150px 20px;
  overflow: hidden;
}

.feature-about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px;
}

/* --- Left Side: Image --- */
.feature-about-image {
  flex: 1;
  min-width: 220px;
  position: relative;
}

.feature-about-image img {
  width: 100%;
  height: auto;
  border-radius: 4px; /* Image layout jaisa thoda sharp look */

  transition: 0.5s ease;
}

.feature-about-image:hover img {
  transform: translatey(-5px);
}

/* Decoration element like in image */
.feature-about-shape {
  position: absolute;
  top: -30px;
  left: -30px;
  z-index: -1;
  opacity: 0.3;
}

/* --- Right Side: Content --- */
.feature-about-content {
  flex: 1.2;
  min-width: 220px;
}

.feature-about-content h4 {
  color: var(--feature-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-about-content h2 {
  font-size: clamp(
    32px,
    10vw,
    56px
  ); /* Bada impact heading jaisa image mein hai */
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.feature-about-content p {
  color: var(--feature-text);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.feature-about-content .feature-highlight {
  border-left: 3px solid var(--feature-gold);
  padding-left: 20px;
  font-style: italic;
  color: var(--feature-white);
  margin-top: 30px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .feature-about-container {
    flex-direction: column;
    text-align: center;
  }
  .feature-about-content {
    text-align: center;
  }
  .feature-about-content .feature-highlight {
    text-align: left;
  }
  /* .feature-about-image img {
    box-shadow: 10px 10px 0px var(--feature-gold);
  } */
}

@media (max-width: 575px) {
  .feature-about-section {
    padding: 130px 15px;
  }
  .feature-about-content h2 {
    font-size: 32px;
  }
}

/* ============================= */
/* feature vision section starts */
/* ============================= */

.feature-vision-section {
  /* background-color: var(--feature-dark); */
  background-color: var(--bg-dark);
  color: var(--feature-white);
  padding: 80px 20px;
  overflow: hidden;
}

.feature-vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* --- Left Side Content --- */
.feature-vision-content {
  flex: 1.2;
  min-width: 220px;
}

.feature-vision-badge {
  display: inline-block;
  background: rgba(236, 196, 62, 0.1);
  color: var(--feature-gold);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 25px;
  border: 1px solid var(--feature-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-vision-content h2 {
  font-size: clamp(26px, 4vw, 38px);
  margin-bottom: 25px;
  line-height: 1.3;
  font-weight: 700;
}

.feature-vision-content h2 span {
  color: var(--feature-gold);
}

.feature-vision-content p {
  color: var(--feature-text);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/* Mission Statement Style */
.feature-mission-highlight {
  color: var(--feature-gold);
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 25px;
  padding-top: 15px;
}

/* --- Right Side Visual Grid --- */
.feature-vision-visual {
  flex: 1;
  min-width: 220px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-vision-card {
  background: var(--feature-card-bg);
  padding: 35px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-vision-card:hover {
  border-color: var(--feature-gold);
  transform: translateY(-10px);
  background: rgba(236, 196, 62, 0.05);
}

.feature-vision-icon {
  font-size: 35px;
  margin-bottom: 15px;
  display: block;
}

.feature-vision-card h4 {
  font-size: 14px;
  color: var(--feature-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Desktop Specific: Staggered Layout --- */
@media (min-width: 992px) {
  .feature-vision-card:nth-child(even) {
    margin-top: 40px;
  }
}

/* --- Tablet & Mobile Optimizations --- */
@media (max-width: 991px) {
  .feature-vision-container {
    flex-direction: column;
    text-align: center;
  }
  .feature-vision-visual {
    width: 100%;
    margin-top: 20px;
  }
  .feature-mission-highlight {
    text-align: center;
  }
}

@media (max-width: 575px) {
  .feature-vision-section {
    padding: 50px 15px;
  }
  .feature-vision-visual {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .feature-vision-content h2 {
    font-size: 24px;
  }
  .feature-vision-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/* ============================= */
/* feature vision section starts */
/* ============================= */

.testimonial-header {
  text-align: center;
  padding: 40px 20px;
}

.subheading {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--feature-gold); /* Indigo accent */
  font-weight: 600;
  font-size: 0.85rem;
}

.testimonial-header h2 {
  font-size: 2.5rem;
  color: white;
  margin: 10px 0;
}

/* ============================= */
/* feature vision section ends */
/* ============================= */

/* =============================== */
/* -------about page styling ends-------- */
/*===============================================*/

/* =============================== */
/* -------contact page styling starts-------- */
/*===============================================*/

.contact-body {
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(212, 175, 55, 0.168) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(212, 175, 55, 0.156) 0%,
      transparent 40%
    ),
    #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  color: var(--white);
  overflow-x: hidden;
}

/* Home Button */
.home-btn {
  position: fixed;
  top: 30px;
  left: 30px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.home-btn:hover {
  background: var(--trade-gold);
  color: var(--trade-black);
  border-color: var(--trade-gold);
}

/* Header Section - Visibility Fixed */
.header-section {
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px; /* Space for home button */
  z-index: 10;
}

.header-section h1 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.header-section p {
  color: var(--trade-gold);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* Form Container */
.contact-box {
  width: 100%;
  max-width: 1100px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  display: flex;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Form Area */
.form-area {
  flex: 1.6;
  padding: 60px;
}
.form-area h2 {
  color: var(--white);
  margin-bottom: 35px;
  font-weight: 600;
  font-size: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.input-group {
  display: flex;
  flex-direction: column;
}
.full-width {
  grid-column: span 2;
}

label {
  font-size: 0.75rem;
  color: var(--trade-gold);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

input,
textarea {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  outline: none;
  font-size: 1rem;
  transition: 0.3s;
  background: transparent;
  color: var(--white);
}

input:focus,
textarea:focus {
  border-bottom: 2px solid var(--trade-gold);
  outline: none;
}

/* Mobile focus styles with border-radius */
@media (max-width: 900px) {
  input:focus,
  textarea:focus {
    border: 2px solid var(--trade-gold);
    border-radius: 8px;
  }
}
input::placeholder,
textarea::placeholder {
  color: #444;
}

/* Phone Input Adjustment */
.iti {
  width: 100%;
  color: #000;
}

.iti__country-list {
  background-color: #ffffff !important;
  border: 1px solid #000000 !important;
  color: #000 !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
  margin-top: 10px !important;
  z-index: 9999 !important;

  width: 85vw !important;
  max-width: 300px !important;
  min-width: 150px !important;

  max-height: 250px !important;
  overflow-y: auto !important;
}

.send-btn {
  background: var(--trade-gold);
  color: var(--trade-black);
  border: none;
  padding: 18px 45px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  margin-top: 40px;
  transition: 0.4s;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.2);
}

.send-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(245, 166, 35, 0.4);
  filter: brightness(1.1);
}

/* Sidebar */
.info-sidebar {
  flex: 1;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  padding: 60px 40px;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: white;
}

.tab-menu {
  margin-bottom: 40px;
}
.tab-menu span.active {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--trade-gold);
  border-bottom: 2px solid var(--trade-gold);
  padding-bottom: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
}
.info-item i {
  background: rgba(245, 166, 35, 0.1);
  color: var(--trade-gold);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}
.info-item a {
  color: var(--text-gray);
  text-decoration: none;
  transition: 0.3s;
  font-size: 1rem;
}
.info-item a:hover {
  color: var(--white);
}

.social-links {
  margin-top: 40px;
  display: flex;
  gap: 15px;
}
.social-links a {
  color: var(--text-gray);
  font-size: 1.2rem;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  transition: 0.3s;
  background: rgba(255, 255, 255, 0.03);
}
.social-links a:hover {
  background: var(--trade-gold);
  color: var(--trade-black);
  border-color: var(--trade-gold);
  transform: translateY(-5px) rotate(-8deg);
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-box {
    flex-direction: column;
  }
  .header-section h1 {
    font-size: 2.5rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .full-width {
    grid-column: span 1;
  }
  .info-sidebar {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .form-area {
    padding: 40px 20px;
  }
  input,
  textarea {
    font-size: 0.8rem;
  }
}

/* =============================== */
/* -------contact page styling ends-------- */
/*===============================================*/

/* =============================
faq section starts here
============================ */

.feature-faq-section {
  background-color: var(--feature-dark);
  color: #fff;
  max-width: 900px;
  padding: 150px 40px;
  margin: 0 auto;
}

.feature-faq-container {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 50px;
  align-items: flex-start;
}

/* --- Left Side: Sticky Heading --- */
.feature-faq-info {
  flex: 1;
  min-width: 200px;
  position: -webkit-sticky; /* For Safari */
  position: sticky;
  top: 100px;
  padding-bottom: 20px;
}

.feature-faq-info h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.feature-faq-info h2 span {
  color: var(--feature-gold);
}

.feature-faq-info p {
  color: var(--feature-text);
  font-size: 16px;
  line-height: 1.6;
}

/* --- Right Side: Accordion --- */
.feature-faq-accordion {
  flex: 1.6;
  min-width: 220px;
}

/* .feature-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 5px;
} */
.feature-faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--feature-border);
  border-radius: 20px; /* Rounded corners like the image */
  margin-bottom: 15px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.feature-faq-question {
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}

/* Glow and border color on active/hover */
.feature-faq-item:hover,
.feature-faq-item.active {
  border-color: var(--feature-green);
  box-shadow: 0 0 20px var(--feature-glow);
  background: rgba(255, 247, 0, 0.02);
}

.feature-faq-question:hover {
  color: var(--feature-gold);
}

.feature-faq-question::after {
  content: "+";
  font-size: 30px;
  color: var(--feature-gold);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 15px;
  font-weight: 300;
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.feature-faq-item.active .feature-faq-question {
  color: var(--feature-gold);
  font-weight: 600;
}

.feature-faq-item.active .feature-faq-question::after {
  content: "−";
  transform: rotate(180deg) scale(1.1);
  background: rgba(212, 175, 55, 0.2);
  border-color: var(--feature-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.feature-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0, 1, 0, 1);
  color: var(--feature-text);
  font-size: 14px;
  line-height: 1.7;
}

.feature-faq-item.active .feature-faq-answer {
  max-height: 1000px;
  padding-bottom: 25px;
  transition: all 0.4s cubic-bezier(1, 0, 1, 0);
}

.feature-faq-answer ul {
  padding-left: 20px;
  margin-top: 10px;
}

.feature-faq-answer li {
  margin-bottom: 8px;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .feature-faq-info {
    position: static; /* Mobile par sticky hata diya */
    text-align: center;
    margin-bottom: 30px;
  }
  .feature-faq-container {
    gap: 20px;
  }
  .feature-faq-section {
    padding: 130px 20px;
  }
}

/* =============================
fasq page styling ends here
============================= */
/* 
===============================
how page styling starts here
=============================== */

/* Global Reset for Section */
.how-section {
  padding: 130px 20px;
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  /* background-color: var(--how-dark-bg); */
}

/* --- Header --- */
.how-header {
  text-align: center;
  margin-bottom: 60px;
}

.how-header h1 {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.how-header h1 span {
  color: var(--how-gold);
}

.how-header p {
  color: var(--how-text-muted);
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* --- Timeline Logic --- */
.how-timeline {
  position: relative;
  padding: 20px 0;
}

@media (min-width: 992px) {
  .how-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(236, 196, 62, 0.15);
    transform: translateX(-50%);
  }
}

.how-step {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .how-step:nth-child(odd) {
    justify-content: flex-start;
  }
  .how-step:nth-child(even) {
    justify-content: flex-end;
  }

  .how-step::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 14px;
    height: 14px;
    background: var(--how-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 15px var(--how-gold);
    z-index: 2;
  }
}

.how-content-box {
  width: 45%;
  background: var(--how-card);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: 0.4s ease;
}

.how-content-box:hover {
  border-color: var(--how-gold);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.how-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.6);
  /* background: rgba(212, 175, 55, 0.1); */
  width: auto;
  height: auto;
  line-height: 1;
  text-align: center;
  /* border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px); */
  padding: 5px 10px;
}

.how-content-box h2 {
  color: var(--how-gold);
  font-size: 20px;
  margin-bottom: 12px;
}

.how-sub-points {
  margin-top: 15px;
  display: grid;
  gap: 10px;
}

.how-point {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px;
  border-radius: 10px;
  font-size: 13px;
  border-left: 3px solid var(--how-gold);
}

.how-point strong {
  color: #fff;
  display: block;
  margin-bottom: 2px;
}

/* --- Getting Started (Image Style) --- */
.how-start-now {
  margin-top: 80px;
  padding: 60px 20px;
  background: radial-gradient(
    circle at center,
    rgba(236, 196, 62, 0.05) 0%,
    transparent 70%
  );
  text-align: center;
}

.how-start-now h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 40px;
  color: #fff;
}

.get-started-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.start-card {
  flex: 1;
  background: rgba(12, 12, 43, 0.8);
  border: 1px solid rgba(236, 196, 62, 0.3);
  padding: 30px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  transition: 0.3s;
}

.start-card:hover {
  border-color: var(--how-gold);
  box-shadow: 0 0 25px rgba(236, 196, 62, 0.2);
}

.step-num {
  font-size: 50px;
  font-weight: 800;
  color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.15);
  width: auto;
  height: auto;
  line-height: 1;
  text-align: center;
  border-radius: 8px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(5px);
  padding: 5px 10px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.start-card-content h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 5px;
}
.start-card-content p {
  color: var(--how-text-muted);
  font-size: 13px;
  margin: 0;
}

.step-arrow {
  color: var(--how-gold);
  font-size: 24px;
  font-weight: bold;
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .how-content-box {
    width: 100%;
  }
  .get-started-grid {
    flex-direction: column;
  }
  .step-arrow {
    transform: rotate(90deg);
    margin: 10px 0;
  }
  .start-card {
    width: 100%;
    box-sizing: border-box;
  }
}

.how-btn-gold {
  /* background: var(--how-gradient); */
  background: linear-gradient(to right, #d4af37, #ffb800);
  color: #000;
  padding: 16px 45px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 5px 20px rgba(236, 196, 62, 0.3);
  transition: 0.3s;
}

.how-btn-gold:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(236, 196, 62, 0.5);
}
/* ============================
how page styling ends here
============================ */

/* ===============================
login page  styling starts here
=============================== */

.login-body {
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(212, 175, 55, 0.168) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(212, 175, 55, 0.156) 0%,
      transparent 40%
    ),
    #0a0a0a;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.login-home-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: 0.3s;
}
.login-home-btn:hover {
  background: var(--trade-gold);
  color: var(--trade-black);
}

.login-main-wrapper {
  width: 100%;
  max-width: 450px; /* Login box narrow hota hai desktop par */
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.login-header-section {
  text-align: center;
}
.login-header-section h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 2px;
}
.login-header-section p {
  color: var(--trade-gold);
  font-size: 1rem;
}

.login-contact-box {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.login-form-area {
  padding: 40px 30px;
}

.login-input-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
  position: relative;
}

.login-label {
  font-size: 0.7rem;
  color: var(--trade-gold);
  margin-bottom: 8px;
  font-weight: 600;
  text-transform: uppercase;
}

.login-input {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: var(--white);
  outline: none;
  font-size: 1rem;
  width: 100%;
}

.login-input:focus {
  border-bottom-color: var(--trade-gold);
}

/* Eye Icon for Password */
.login-toggle-password {
  position: absolute;
  right: 0;
  bottom: 12px;
  cursor: pointer;
  color: var(--text-gray);
  font-size: 0.9rem;
}
.login-toggle-password:hover {
  color: var(--trade-gold);
}

.login-forgot-pass {
  text-align: right;
  margin-top: -15px;
  margin-bottom: 25px;
}
.login-forgot-pass a {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-decoration: none;
}
.login-forgot-pass a:hover {
  color: var(--trade-gold);
}

.login-send-btn {
  background: var(--trade-gold);
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  color: var(--trade-black);
  transition: 0.3s;
}
.login-send-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.login-footer-links {
  margin-top: 25px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-gray);
}
.login-footer-links a {
  color: var(--trade-gold);
  text-decoration: none;
  font-weight: 600;
}

.login-help-box {
  background: rgba(255, 255, 255, 0.03);
  padding: 15px;
  border-radius: 12px;
  margin-top: 25px;
  font-size: 0.75rem;
  text-align: center;
  border: 1px dashed rgba(245, 166, 35, 0.2);
}

@media (max-width: 480px) {
  .login-body {
    padding: 80px 20px 40px 20px;
    display: block;
  }
  .login-form-area {
    padding: 30px 20px;
  }
}
/* ===============================
login page  styling ends here
=============================== */
/* ================================
read page styling  starts here
================================ */
/* --- READ PARTICLE CANVAS --- */
#read-particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.read-main-container {
  width: 100%;
  padding: 80px 5%;
  display: flex;
  flex-direction: column;
  gap: 120px;
  position: relative;
  z-index: 1;
}

/* --- ROTATING BORDER ANIMATION --- */
@keyframes read-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.read-section-wrapper {
  position: relative;
  width: 100%;
  border-radius: 30px;
  padding: 2px; /* Border thickness */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease;
}

.read-section-wrapper::before {
  content: "";
  position: absolute;
  width: 150%;
  height: 400%;
  background: conic-gradient(
    #ffcc00,
    transparent 30%,
    transparent 70%,
    #ffcc00
  );

  animation: read-rotate 6s linear infinite;
  z-index: -2;
}

.read-section-wrapper::after {
  content: "";
  position: absolute;
  background: black;
  border-radius: 28px;
  inset: 2px;
  z-index: -1;
}
.read-inner-content {
  background: rgba(10, 10, 10, 0.95);
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  z-index: 1;
  backdrop-filter: blur(12px);
}

.read-reverse {
  direction: rtl;
}

.read-reverse .read-text-area {
  direction: ltr;
}

/* --- TYPOGRAPHY --- */
.read-title {
  font-size: 2.8rem;
  color: #ffcc00;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
}

.read-description {
  font-size: 1.1rem;
  color: #d1d1d1;
  line-height: 1.8;
  margin-bottom: 25px;
}

.read-feature-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 204, 0, 0.1);
  border: 1px solid #ffcc00;
  border-radius: 50px;
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 0.85rem;
  text-transform: uppercase;
}

/* --- IMAGE STYLING --- */
.read-img-container {
  width: 100%;
  height: 380px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.read-img-container img {
  max-width: 70%;
  filter: drop-shadow(0 0 30px rgba(255, 204, 0, 0.5));
  transition: transform 0.5s ease;
}

.read-section-wrapper:hover .read-img-container img {
  transform: scale(1.1);
}

/* --- SIMPLE GRADIENT TABLE STYLING --- */
.read-data-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.1) 0%,
    rgba(10, 10, 10, 0.6) 100%
  );
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.read-data-table th {
  text-align: left;
  padding: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 204, 0, 0.2);
}

.read-data-table td {
  padding: 18px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.1rem;
}

/* --- Simple Gradient Text --- */
.gold-gradient-text {
  background: linear-gradient(to right, #ffcc00, #ffed99, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  font-size: 1.2rem;
}

.bonus-tag {
  font-size: 0.85rem;
  color: #ffcc00;
  margin-left: 8px;
}

.dots {
  color: #ffcc00;
  margin-left: 5px;
}

.read-highlight {
  color: #ffcc00;
  font-weight: bold;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .read-inner-content {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }
  .read-reverse {
    direction: ltr;
  }
  .read-title {
    font-size: 2rem;
  }
  .read-img-container {
    height: 250px;
  }
}

/* --- NEW BONUS SECTION CLASSES --- */
.read-bonus-card {
  background: rgba(255, 204, 0, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px dashed rgba(255, 204, 0, 0.3);
  margin-top: 20px;
}

.read-bonus-title {
  color: #ffcc00;
  margin-bottom: 10px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.read-validity-text {
  color: #888;
  font-size: 0.9rem;
  font-style: italic;
  display: block;
  margin-top: 5px;
}

.read-margin-bottom {
  margin-bottom: 25px;
}

/* --- HEADER SECTION STYLING --- */
.read-header-section {
  text-align: center;
  padding: 60px 20px 20px;
  position: relative;
  z-index: 10;
}

.read-page-title {
  font-size: 4rem; /* Desktop size */
  color: #ffcc00;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
  margin: 0;
  text-shadow: 0 0 30px rgba(255, 204, 0, 0.4);
}

.read-title-underline {
  width: 150px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffcc00, transparent);
  margin: 15px auto 0;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(255, 204, 0, 0.6);
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 900px) {
  .read-page-title {
    font-size: 2.5rem;
    letter-spacing: 3px;
  }
  .read-header-section {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .read-page-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  .read-title-underline {
    width: 100px;
  }
}
/* ===========================
read page styling ends here
=========================== */

/* ===========================
register page styling starts here
=========================== */

.register-main-container {
  display: flex;
  width: 100%;
  max-width: 1920px;
  height: 100vh;
}

/* --- HOME BUTTON (WAPAS ADD KIYA GAYA) --- */
.register-home-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  z-index: 100;
  width: fit-content;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}
.register-home-btn:hover {
  background: var(--trade-gold);
  color: var(--trade-black);
  border-color: var(--trade-gold);
}

/* --- LEFT SECTION (SLIDER) --- */
.register-left-section {
  flex: 1;
  background-color: var(--trade-black);
  height: 100vh;
  max-width: 40%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 50px;
  padding-top: 100px; /* Space for home button */
  position: relative;
  border-right: 1px solid var(--border-color);
}

.register-brand-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 40px;
  z-index: 10;
}
.register-brand-logo span {
  color: var(--trade-gold);
}

.register-slider-wrapper {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  margin-bottom: 20px;
  border-radius: 20px;
}
.register-slides-container {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.register-slide {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}

.register-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 70%);
  z-index: 1;
}

.register-slide h2,
.register-slide p {
  position: relative;
  z-index: 2;
}
.register-slide h2 {
  color: var(--trade-gold);
  font-size: 2rem;
  margin-bottom: 10px;
}

/* Individual slide background images */
#slide-1 {
  background-image: url("assets/images/botimg.webp");
}

#slide-2 {
  background-image: url("assets/images/aitoken.webp");
}

#slide-3 {
  background-image: url("assets/images/custodial.webp");
}

#slide-4 {
  background-image: url("assets/images/rocket\'.webp");
}

#slide-5 {
  background-image: url("assets/images/coin1.webp");
}

#slide-6 {
  background-image: url("assets/images/feature.webp");
}

#slide-7 {
  background-image: url("assets/images/bot03.webp");
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 15px;
  position: relative;
  z-index: 2;
}

.slide-features span {
  background: rgba(212, 175, 55, 0.2);
  color: var(--trade-gold);
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

.register-dot-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}
.register-dot {
  width: 8px;
  height: 8px;
  background: #333;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.register-dot.active {
  width: 25px;
  background: var(--trade-gold);
  border-radius: 10px;
  box-shadow: 0 0 10px var(--trade-gold-glow);
}

/* --- RIGHT SECTION (GRADIENT BACKGROUND) --- */
.register-right-section {
  flex: 1.5;
  height: 100vh;
  overflow-y: auto;
  padding: 40px 60px;
  max-width: 60%;
  background:
    radial-gradient(
      circle at 70% 20%,
      rgba(212, 175, 55, 0.168) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(212, 175, 55, 0.156) 0%,
      transparent 40%
    ),
    #0a0a0a;
  position: relative;
}

/* --- PREMIUM BONUS CARD --- */

.register-premium-bonus-card {
  position: relative;
  background: #0a0a0a; /* Dark background */
  border-radius: 24px;
  padding: 25px 35px;
  margin: 50px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden; /* Zaroori hai taaki glow bahar na nikal jaye */
  z-index: 1;
  border: 3px solid rgba(212, 175, 55, 0.2); /* Base border */
}

/* Ye hai wo chamakti hui border line */
.register-premium-bonus-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250%; /* Card se bada taaki rotate ho sake */
  height: 250%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    transparent 70%,
    #d4af37 90%,
    /* Gold color */ transparent 100%
  );
  animation: rotateGlow 4s linear infinite;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Card ka andar wala hissa jo animation ko chhupayega */
.register-premium-bonus-card::after {
  content: "";
  position: absolute;
  inset: 3px; /* Border ki motai (thickness) yahan se set karo */
  background: #0f0f0f; /* Dark theme background */
  border-radius: 22px;
  z-index: -1;
}

/* Smooth Rotation Animation */
@keyframes rotateGlow {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.register-bonus-content-left {
  flex: 1;
}
.register-bonus-content-left h3 {
  color: var(--trade-gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.register-bonus-content-left h2 {
  font-size: 3.6rem;
  font-weight: 900;
  margin-bottom: 8px;
}
.register-bonus-content-left h2 span {
  font-size: 2rem;
}
.register-bonus-content-left p {
  color: var(--text-gray);
  font-size: 0.85rem;
  max-width: 280px;
}

.register-bonus-visual-right {
  /* background: rgba(212, 175, 55, 0.1); */
  /* width: 300px;
        height: 300px; */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid rgba(212, 175, 55, 0.3); */
}
.register-bonus-visual-right img {
  object-fit: contain;
  max-width: 350px;
  max-height: 350px;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* --- FORM STYLES --- */
.register-header-section {
  margin-bottom: 30px;
  text-align: center;
}
.register-header-section h1 {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.register-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.register-full-width {
  grid-column: span 2;
}

.register-input-group {
  display: flex;
  flex-direction: column;
}
.register-label {
  font-size: 0.7rem;
  color: var(--trade-gold);
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.register-input,
.register-select {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  transition: 0.3s;
  font-size: 1rem;
}

/* DROPDOWN FIX */
.register-select option {
  background-color: #ffffff;
  color: #000000;
}

/* Phone input width fix */
.register-input-group.register-full-width input[type="tel"] {
  width: 100% !important;
}

/* intl-tel-input dropdown fixes */
.iti__country-list {
  background-color: #ffffff !important;
  color: #000000 !important;
}
.iti__country {
  color: #000000 !important;
}
.iti__country:hover {
  background-color: #f0f0f0 !important;
}
.iti__selected-flag {
  color: #000000 !important;
}

.iti--separate-dial-code .iti__selected-dial-code {
  margin-left: 6px;
  color: white;
}

.register-input:focus,
.register-select:focus {
  border-color: var(--trade-gold);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

/* Validation Styles */
.register-input-error {
  border-color: #ff6b6b !important;
  background: rgba(255, 107, 107, 0.1) !important;
}

.register-error-message {
  color: #ff6b6b;
  font-size: 0.75rem;
  margin-top: 5px;
  display: none;
}

.register-error-message.show {
  display: block;
}

.register-input-success {
  border-color: var(--trade-gold) !important;
  background: rgba(212, 175, 55, 0.1) !important;
}

.register-checkbox-group {
  margin: 20px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
}
.register-checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--trade-gold);
  cursor: pointer;
}
.register-checkbox-group a {
  color: var(--trade-gold);
  text-decoration: none;
  font-weight: bold;
}

.register-send-btn {
  width: fit-content;
  background: var(--trade-gold);
  color: var(--trade-black);
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: 0.3s;
  text-transform: uppercase;
  margin: 0 auto;
  display: block;
}
.register-send-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px var(--trade-gold-glow);
}

/* --- FOOTER LINKS --- */
.register-footer-links {
  text-align: center;
  margin-top: 25px;
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.8;
}
.register-footer-links a {
  color: var(--trade-gold);
  text-decoration: none;
  font-weight: 700;
}

.register-metamask-box {
  margin-top: 30px;
  background: rgba(212, 175, 55, 0.05);
  border: 1px dashed var(--border-color);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.register-metamask-box img {
  width: 22px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .register-left-section {
    display: none;
  }
  .register-right-section {
    padding: 60px 5%;
    height: auto;
    width: 100%;
    max-width: 100%;
  }
  .register-home-btn {
    left: 20px;
    top: 20px;
    background: var(--trade-black);
  }
}
@media (max-width: 768px) {
  .register-right-section {
    padding: 40px 4%;
  }
  .register-header-section h1 {
    font-size: 1.8rem;
  }
  .register-premium-bonus-card {
    padding: 20px;
    margin: 30px 0;
  }
  .register-bonus-content-left h2 {
    font-size: 2.8rem;
  }
}
@media (max-width: 600px) {
  .register-premium-bonus-card {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .register-bonus-content-left h2 {
    font-size: 2.5rem;
  }
  .register-bonus-content-left p {
    max-width: 100%;
  }
  .register-bonus-visual-right img {
    max-width: 200px;
    max-height: 200px;
  }

  .register-form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .register-full-width {
    grid-column: span 1;
  }

  .register-input,
  .register-select {
    padding: 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .register-send-btn {
    padding: 16px;
    font-size: 1rem;
  }

  .register-header-section h1 {
    font-size: 1.6rem;
  }

  .register-footer-links {
    font-size: 0.85rem;
  }

  .register-metamask-box {
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  .register-right-section {
    padding: 30px 3%;
  }
  .register-header-section h1 {
    font-size: 1.4rem;
  }
  .register-bonus-content-left h2 {
    font-size: 2.2rem;
  }
  .register-bonus-content-left h3 {
    font-size: 0.65rem;
  }
  .register-input,
  .register-select {
    padding: 12px;
    width: 100%;
  }
  .register-send-btn {
    padding: 14px;
  }
  .register-home-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }
  .register-bonus-val-container {
    /* display: flex;
          gap: 20px; */
    justify-content: center;
  }
}

.register-bonus-val-container {
  display: flex;
  gap: 20px;
  margin: 10px;
}
.register-val {
  display: flex;
  align-items: center;
  font-size: 3.8rem;
  font-weight: 900;
}
.register-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===========================
register pade styling ends here
=========================== */
