@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

html {
      scroll-behavior: smooth;
}

:root {
  --primary: #fcb900;
  --primary-dark: #e6a800;
  --secondary: #ff5e00;
  --accent: #00d2ff;
  --dark: #0f3460;
  --darker: #16213e;
  --darkest: #000000;
  --light: #ffffff;
  --gray: #a0a0b0;
  /* --dark-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%); */
/* --dark-bg: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%); */
--dark-bg: #fff;

}

iframe {
    transform: translateZ(0);
}

a {
  color: #e6a800;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  color: #cc9100;
  text-decoration: none;
}

/* Add this to your CSS */
nav ul li a.active {
  color: var(--primary) !important;
  font-weight: 600;
}

nav ul li a.active::after {
  width: 100% !important;
  background: var(--primary) !important;
}

/* For mobile menu */
.mobile-menu ul li a.active {
  background: rgba(252, 185, 0, 0.1) !important;
  color: var(--primary) !important;
  border-color: rgba(252, 185, 0, 0.2) !important;
}

body {
  background: var(--dark-bg);
  color: var(--light);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--darkest);
}

#header {
  position: sticky;
  top: 0;
  z-index: 1000;
  /* background: #0C0B0B; */
  background: #0c0b0b;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /* border-radius: 16px; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 30px;
  max-width: 1200px;
  margin: 0;
}

/* Logo Styles */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.logo img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps it sharp */
  display: block;
  border-radius: 50%;
}

.logo img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  position: relative;
  left: -10px;
  background-clip: text;
}

/* Navigation Styles */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s ease;
  will-change: transform;
}

nav ul li a:hover {
  color: var(--primary);
}

nav ul li a:hover::after {
  width: 100%;
}

/* Auth Buttons */
.auth-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.login-btn,
.signup-btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  will-change: transform;
}

.login-btn {
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.signup-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  position: relative;
  overflow: hidden;
}

.signup-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.signup-btn:hover::before {
  left: 100%;
}

.signup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(252, 185, 0, 0.4);
}

/* Mobile Menu Toggle - Fixed Hamburger */
.menu-toggle {
  display: none;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darkest);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  position: relative;
}

.menu-toggle a i {
  transition: all 0.4s ease;
  position: absolute;
}

.menu-toggle a .fa-bars {
  opacity: 1;
  transform: rotate(0deg);
}

.menu-toggle a .fa-times {
  opacity: 0;
  transform: rotate(-180deg);
}

.menu-open .menu-toggle a .fa-bars {
  opacity: 0;
  transform: rotate(180deg);
}

.menu-open .menu-toggle a .fa-times {
  opacity: 1;
  transform: rotate(0deg);
}

/* Sidebar Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #0C0B0B;
  backdrop-filter: blur(15px);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px 25px 30px;
  transition: right 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-menu ul li {
  margin-bottom: 8px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  will-change: transform;
}

.mobile-menu.active ul li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu ul li:nth-child(2) {
  transition-delay: 0.15s;
}
.mobile-menu ul li:nth-child(3) {
  transition-delay: 0.2s;
}
.mobile-menu ul li:nth-child(4) {
  transition-delay: 0.25s;
}

.mobile-menu ul li a {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  text-decoration: none;
  color: var(--light);
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 5px;
}

.mobile-menu ul li a i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: var(--primary);
}

.mobile-menu ul li a:hover {
  background: rgba(252, 185, 0, 0.1);
  color: var(--primary);
  transform: translateX(5px);
  border-color: rgba(252, 185, 0, 0.2);
}

.mobile-auth {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
}

.mobile-auth a {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-auth .login-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth .signup-btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--darkest);
}

.mobile-auth a:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive Design */
@media (max-width: 992px) {
  nav,
  .desktop-auth {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-container {
    padding: 15px 20px;
  }
}

@media (max-width: 576px) {
  .logo-text {
    font-size: 1.5rem;
  }

  /* .logo img {
    height: 35px;
  } */

  .header-container {
    padding: 12px 15px;
  }

  .mobile-menu {
    width: 280px;
    padding: 70px 20px 20px;
  }

}


/* Hero Section - More Feint Background */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 0;
  background:
  linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)),
  url("../images/5.jpg") center center / cover no-repeat;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;

    /* Prevent text selection on the entire hero section */
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  
  /* Also prevent dragging the background */
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;

}

.hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(252, 185, 0, 0.15) 0%,
    transparent 70%
  );
  animation: pulse 8s infinite alternate;
  z-index: -1;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-text h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.6;
}


.primary-btn {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--light);
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(252, 185, 0, 0.3);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(252, 185, 0, 0.4);
}

.hero .desktop-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
  display: block;
  width: 80%;
  height: 400px;
  /* top: -300px; */
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.5s ease;
  will-change: transform;
}

.hero .desktop-image img {
  width: 60%;
  height: 100%;
  object-fit: cover;
  position: relative;
  right: -250px;
  -webkit-transform: translateZ(0); /* force GPU rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast; /* Safari */
  image-rendering: crisp-edges; /* Chrome + Firefox (sometimes ignored) */
  image-rendering: high-quality; /* fallback */

  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.hero .desktop-image:hover img {
  transform: perspective(1000px) rotateY(0) rotateX(0);
      -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.hero .mobile-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  -webkit-transform: translateZ(0); /* force GPU rendering */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast; /* Safari */
  image-rendering: crisp-edges; /* Chrome + Firefox (sometimes ignored) */
  image-rendering: high-quality; /* fallback */
  margin-top: 2rem;

      -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

.hero .mobile-image {
  display: none;
}

.hero-text {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s cubic-bezier(.2,.9,.2,1), transform 0.8s cubic-bezier(.2,.9,.2,1);
    will-change: transform;
}

.hero-text.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Accessibility: don't animate if user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero .mobile-image,
  .hero-text {
    transition: none;
    transform: none;
    opacity: 1 !important;
  }
}


/* hero section animations ends*/

/* Market Data Ticker - FIXED */
.market-ticker {
background: black;
  padding: 20px 0;
  overflow: hidden;
  position: relative;
  /* border-radius: 12px; */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker-content {
  display: flex;
  width: 200%;
  /* Double width for seamless looping */
  animation: tickerScroll 40s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  margin: 0 40px;
  white-space: nowrap;
  gap: 10px;
  flex-shrink: 0;
}

.ticker-item .pair {
  font-weight: 600;
  color: var(--light);
}

.ticker-item .price {
  font-weight: 700;
}

.positive {
  color: var(--primary);
}

.negative {
  color: #ff6b6b;
}


/*--------------------- After Hero Section -------------------------*/

.after-hero-section {
  padding: 40px 0px 0px 0px;
  background-color: #ffffff;
}

.after-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* --- VIDEO --- */
.after-hero-video {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.after-hero-video iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* --- CONTENT --- */
.after-hero-content {
  flex: 1 1 45%;
  color: #222;
}

.after-hero-content h2 {
  font-size: 2rem;
  color: #0a1f44;
  margin-bottom: 15px;
}

.after-hero-content p {
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* --- FEATURE LIST --- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.feature-list li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6a800;
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  margin-right: 10px;
  flex-shrink: 0;
}

/* --- BUTTONS --- */
.download-buttons a img {
  width: 140px;
  margin-right: 12px;
  transition: transform 0.2s ease;
}

.download-buttons a img:hover {
  transform: scale(1.05);
}


/* -------------unleash-section------------------ */

.words-gen {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px 0px;
}

.mobile-unleash .words-gen h2 {
  color: var(--darkest);
  font-weight: 700;
  font-size: 34px;
  font-family: sans-serif;
}

.mobile-unleash .words-gen p {
  color: #0C0B0B;
  font-weight: 600;
}
.words-indoors {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: start;
  margin-top: 20px;
  margin-bottom: 20px;
}

.shape-controller {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.second-shape-controller {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.phone-mockup {
  position: relative;
  width: 370px;
  height: 700px;
  background: linear-gradient(135deg, #1c1c1c, #3a3a3a); /* deep graphite blend */
  border-radius: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border: 4px solid #2b2b2b;
  overflow: hidden;
  margin: 0 auto;
}

/* Screen */
.phone-screen {
  position: absolute;
  top: 20px;
  left: 10px;
  right: 10px;
  bottom: 20px;
  background: black;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Notch */
.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 25px;
  background: #2b2b2b;
  border-radius: 0 0 15px 15px;
  z-index: 10;
}

/* Power Button */
.phone-button-power {
  position: absolute;
  right: -4px;
  top: 120px;
  width: 4px;
  height: 60px;
  background: #444;
  border-radius: 0 2px 2px 0;
}

/* Volume Buttons */
.phone-button-volume {
  position: absolute;
  left: -4px;
  top: 80px;
  width: 4px;
  height: 100px;
  background: #444;
  border-radius: 2px 0 0 2px;
}

.phone-button-volume::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 4px;
  height: 25px;
  background: #666;
  border-radius: 2px 0 0 2px;
}

.phone-button-volume::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 4px;
  height: 25px;
  background: #666;
  border-radius: 2px 0 0 2px;
}

/* Speaker */
.phone-speaker {
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

/* Screen Content */
.screen-content {
  padding: 50px 20px 20px;
  color: white;
  text-align: center;
}

.time {
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 10px;
}

.date {
  font-size: 1rem;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* Home Indicator */
.home-indicator {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.phone-middle {
  position: relative;
  width: 350px;
  height: 500px;
  overflow: hidden;
  bottom: -10px;
  left: -6px;
}

.phone-middle img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}


.halfphone-holder {
  width: 370px;
  height: 260px;
  background-color: black;
  margin: 0 auto;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.halfphone-image {
  width: 350px;
  height: 200px;
  overflow: hidden;
  border-radius: 22px;
  margin: 0 auto;
  position: relative;
  left: -10px;
}

.halfphone-image img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps it sharp */
  display: block;
}

.fullphone-holder {
  width: 370px;
  height: auto;
  background-color: black;
  margin: 0 auto;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.fullphone-image {
  width: auto;
  height: auto;
  overflow: hidden;
  border-radius: 22px;
}

.fullphone-image-v {
  position: relative;
  width: 325px;
  height: 185px;
  overflow: hidden;
  border-radius: 20px;
}

.fullphone-image-v iframe {
  width: 100%;
  height: 100%;
  border: none;
}


/* unleash-section ends  */

/* Features Section */
.features {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-title h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.section-title2 {
  text-align: center;
  margin-bottom: 30px;
}

.section-title2 h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  /* margin-bottom: 20px; */
  /* background: var(--primary-dark); */
  background: #000000;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title2 p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #0C0B0B;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(-10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: -1;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 25px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.05);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: rotateY(180deg) scale(1.1);
  background: rgba(252, 185, 0, 0.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--light);
}

.feature-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* About Section */
.about {
  padding: 30px 10px;
  background: rgba(0, 0, 0, 0.1);
}

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

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

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

.about-image::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  border-radius: 20px;
  top: 15px;
  left: 15px;
  z-index: -1;
  transition: all 0.3s ease;
}

.about-image:hover::after {
  top: 10px;
  left: 10px;
}

.about-text h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  transition: transform 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.stat-label {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Trading Pairs Section */
.trading-pairs {
  padding: 30px 0;
  overflow: hidden;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

.pairs-scroll-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.pairs-container {
  display: flex;
  width: max-content; /* Allow container to expand based on content */
  gap: 20px;
  animation: pairScroll 20s linear infinite;
}

.pair-card {
   background: #0C0B0B;
  /* background: rgba(255, 255, 255, 0.03); */
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-width: 300px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.pair-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(252, 185, 0, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

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

.pair-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.pair-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.pair-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  font-size: 20px;
  color: var(--primary);
}

.pair-name {
  font-weight: 700;
  font-size: 1.2rem;
}

.pair-price {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 5px;
  color: var(--light);
}

.pair-change {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.positive {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
}

.negative {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
}

.pair-volume {
  margin-top: 15px;
  color: var(--gray);
  font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  /* background: rgba(0, 0, 0, 0.1); */
  background: #0C0B0B;
  background-image: url("../images/23.png");
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 50%,
    rgba(252, 185, 0, 0.1) 0%,
    transparent 50%
  );
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--light);
}

.section-title p {
  color: var(--gray);
  font-size: 1.1rem;
}

/* Swiper customization */
.swiper {
  width: 100%;
  padding: 30px 10px 70px;
}

.swiper-slide {
  height: auto; /* Allow slide to adjust to content height */
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%; /* Make all cards equal height */
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.swiper-slide-active .testimonial-card::before {
  transform: scaleX(1);
}

.swiper-slide-active .testimonial-card {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--primary);
  flex-shrink: 0; /* Prevent avatar from shrinking */
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--light);
}

.testimonial-info span {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-text {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1; /* Allow text area to grow and fill space */
}

.testimonial-rating {
  color: var(--primary);
  font-size: 1rem;
  margin-top: auto; /* Push rating to bottom of card */
}

/* Pagination bullets */
.swiper-pagination {
  bottom: 10px !important;
  visibility: hidden;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Custom navigation bullets */
.testimonial-nav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.testimonial-nav-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.testimonial-nav-btn-active {
  background: var(--primary);
  transform: scale(1.2);
}

/* FAQ Section - CLEAN GOLD & WHITE THEME */
#faq {
  position: relative;
  min-height: 100vh;
  background: #ffffff;
  margin-top: 2rem;
}

.faq {
  padding: 50px 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #111;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.04);
}

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.3s ease;
  color: #444;
  line-height: 1.6;
}

/* Active FAQ Item */
.faq-item.active .faq-question {
  color: var(--primary);
  background: rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--primary);
}

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

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


/* Phone Gallery Section */

.scroll-phone-display {
  min-height: auto;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.phone-display-wrapper {
  position: relative;
  top: 0;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-phone-image {
  position: relative;
  z-index: -999;
  width: 300px;
  height: 600px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.main-phone-image img {
  width: 100%;
  height: 100%;
}

.flanking-image {
  position: absolute;
  transition: all 0.8s ease;
    will-change: transform;
  z-index: 5;
}

.flanking-image img {
  width: 100%;
  height: auto;
}

.phone-display-wrapper .left-side {
  width: 200px;
  height: 300px;
  left: 10%;
  top: 10%;
  transform: translateX(-200px) rotate(-5deg);
    will-change: transform;
  border-radius: 20px;
  overflow: hidden;
}

.phone-display-wrapper .left-side img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-display-wrapper .right-side {
  width: 250px;
  height: 160px;
  right: 12%;
  bottom: 35%;
  transform: translateX(200px) rotate(5deg);
    will-change: transform;
  /* opacity: 1; */
  border-radius: 25px;
  overflow: hidden;
}

.phone-display-wrapper .right-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 22px;
}

/* When scrolled into view */
.flanking-image.in-view {
  /* opacity: 1; */
  transform: translateX(20px) rotate(0);
    will-change: transform;
}

/* phone-scroll text div */

.full-width-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}
.full-width-container h3 {
  color: #0C0B0B !important;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
background: linear-gradient(90deg, #000000 0%, #050505 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: start;
}

.heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  text-align: start;
}

.description {
  font-size: 1.1rem;
  /* color: white; */
    color: #2b2b2b;
  max-width: 700px;
  margin: 0 auto 40px;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-align: start;
}

.boxed-container {
  width: 100%;
  max-width: 800px;
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.counter {
  text-align: center;
}

.counter-number-wrapper {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  font-size: 3.5rem;
  font-weight: 700;
  color: transparent;
  line-height: 1;
  margin-bottom: 10px;
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary);
}

.counter-number-suffix {
  /* color: white; */
  color: #2b2b2b;
}

.counter-title {
  font-size: 1.1rem;
  /* color: white; */
  color: #2b2b2b;
  font-weight: 500;
}

.icon-list {
  display: flex;
  justify-content: center;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.icon-list-item {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  /* color: white; */
  color: #2b2b2b;
  font-weight: 500;
  transition: color 0.3s;
  gap: 0;
}

.icon-list-item:hover {
  color: #4299e1;
}

.icon-list-icon {
  margin-right: 7px;
  font-size: 1.5rem;
  color: var(--primary);
}

.icon-list-text {
  font-size: 14px;
  text-align: start;
}

/* Get started slant section */

.Get-started {
  padding: 30px 20px;
}

.slantphoto-words {
  position: relative;
  width: 1200px;
  background-color: black;
  border-radius: 40px;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.slantphoto-words::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/23.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 40px;
  opacity: 1;
}

.get-words {
  width: 600px;
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  /* top: -65px; */
}

.slant-image-container {
  width: 600px;
  padding: 20px;
  position: relative;
  /* top: -65px; */
  margin: 0 auto;
}

.slant-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* App Download Section */
.app-download {
  padding: 100px 0;
  text-align: center;
  background: rgba(0, 0, 0, 0.1);
}

.app-content {
  max-width: 800px;
  margin: 0 auto;
}

.app-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.app-btn {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  color: var(--light);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  min-width: 200px;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.app-btn i {
  font-size: 28px;
  margin-right: 15px;
  color: var(--primary);
}

.app-btn span {
  text-align: left;
}

.app-btn strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

.app-btn small {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Footer */
footer {
  background: #0C0B0B;
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(252, 185, 0, 0.1) 0%,
    transparent 40%
  );
  z-index: -1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-bottom: 60px;
}

.footer-column h3 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: var(--primary);
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-column p {
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--light);
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--darkest);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  margin-top: 20px;
}

.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 50px 0 0 50px;
  padding: 0 20px;
  color: var(--light);
  outline: none;
}

.newsletter-button {
  background: var(--primary);
  color: var(--darkest);
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.newsletter-button:hover {
  background: var(--primary-dark);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--gray);
  font-size: 0.9rem;
}

/******************************** Animations *********************************************/
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

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

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

@keyframes pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Move only half the width */
  }
}

@keyframes pairScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    /* Calculate translation based on total content width */
    transform: translateX(calc(-50% - 10px));
  }
}

/* Pause animation on hover */
.pairs-container:hover {
  animation-play-state: paused;
}

/* scroll phone */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responsive Design */
@media (max-width: 1200px) {
  .hero-text h1 {
    font-size: 3.2rem;
  }
}

@media (max-width: 992px) {
  .hero-content,
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-text {
    text-align: start;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: var(--darker);
    width: 280px;
    height: 100vh;
    padding: 100px 30px 30px;
    transition: 0.4s;
    z-index: 1000;
    gap: 20px;
  }

  .nav-links.active {
    right: 0;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  }

  .menu-toggle {
    display: flex;
  }

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

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .auth-buttons {
    margin-top: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .desktop-auth {
    display: none;
  }

  .unleash{
  padding: 30px 10pX;
}

  .flanking-image.left-side {
    left: 10%;
  }

  .flanking-image.right-side {
    right: 10%;
  }
}

@media (max-width: 768px) {
  .header {
    margin-bottom: 0px;
  }

  .hero {
    padding: 20px 20px;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .hero .mobile-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
  }

  .hero .mobile-image img {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hero .mobile-image:hover img {
    transform: perspective(1000px) rotateY(0) rotateX(0);
  }

  .hero .mobile-image {
    display: block;
  }

  .hero .desktop-image {
    display: none;
  }

  .hero-text h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 50px;
  }

  .hero-text p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
  }

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

  
  /* --- VIDEO --- */
.after-hero-video {
  width: 370px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
  .after-hero-video iframe {
    height: 300px;
    width: 100%;
  }

  .after-hero-content h2 {
    font-size: 1.6rem;
    text-align: start;
  }

  .after-hero-content p,
  .feature-list {
    display: flex;
    align-items: start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .feature-list li {
    justify-content: center;
  }

  .download-buttons {
    text-align: center;
  }

  .mobile-unleash {
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto; 
    padding: 0 20px;
  }

  .shape-controller {
    display: flex;
    flex-direction: column;
    /* gap: 30px; */
  }
/* .mobile-unleash h4{
  font-size: 18px;
} */
  .phone-mockup {
    left: 0;
    margin: 0 auto;
    width: 370px;
    height: 700px;
  }

  .phone-middle {
  position: relative;
  width: 350px;
  height: 500px;
  overflow: hidden;
  bottom: -25px;
  left: -6px;
}

.phone-middle img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps it sharp */
  display: block;
}
.halfphone-holder h3{
  font-size: 25px;
  text-align: start;
}
.halfphone-holder {
  width: 370px;
  height: 240px;
  background-color: black;
  margin: 0 auto;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.halfphone-image {
  width: 350px;
  height: 140px;
  overflow: hidden;
  border-radius: 22px;
  margin: 0 auto;
  position: relative;
  left: -10px;
}

.halfphone-image img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps it sharp */
  display: block;
}

.fullphone-holder {
  width: 370px;
  height: auto;
  background-color: black;
  margin: 0 auto;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.fullphone-holder h3{
  font-size: 29px;
  margin-bottom: 1rem;
}

.fullphone-image-v {
  position: relative;
  width: 325px;
  height: 170px;
  overflow: hidden;
  border-radius: 20px;
}


  .stats {
    /* grid-template-columns: 1fr; */
    display: none;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }

  .app-buttons {
    flex-direction: column;
    align-items: center;
  }

  .app-btn {
    width: 100%;
    max-width: 300px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ticker-item {
    margin: 0 20px;
  }

  /* Features Section */
  .features {
    padding: 30px 10px;
  }

  .section-title {
    text-align: center;
    margin-bottom: 30px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  /* testimonial */

  .testimonials {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .swiper {
    padding: 20px 5px 60px;
  }
  .swiper-slide {
  /* height: auto; Allow slide to adjust to content height  */
    height: 340px   !important;
}

  .testimonial-card {
    padding: 20px;
    height: 340px   !important;

  }
/* FAQ Section - IMPROVED */
  #faq {
    position: relative;
    min-height: 60vh;
}

.faq {
  padding: 30px 0;
}

.scroll-phone-display {
  padding: 0px 10px;
}
  .phone-display-wrapper {
    height: 600px;
  }
  .full-width-container {
    padding: 30px 0;
  }

  .main-phone-image {
    width: 280px;
    height: 530px;
  }

  /* When scrolled into view */
  .flanking-image.in-view {
    opacity: 1;
    transform: translateX(0px) rotate(0);
  }

  .phone-display-wrapper .left-side {
    top: 15%;
    left: 1%;
    opacity: 1;
    width: 170px;
    height: 240px;
  }
  .phone-display-wrapper.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .phone-display-wrapper .right-side {
    right: 2%;
    opacity: 1;
    width: 190px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
  }

  .phone-display-wrapper .right-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .heading {
    font-size: 30px;
  }

  .boxed-container {
    gap: 30px;
  }

  .counter-number-wrapper {
    font-size: 2.5rem;
  }

  .counter-number {
    font-size: 2.5rem;
  }

  .scroll-phone-display {
    display: flex;
    flex-direction: column;
  }

  .Get-started {
    padding: 30px 20px;
  }

  .slantphoto-words {
    position: relative;
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0px;
    background-image: url("../images/23.png");
  }
  .get-words {
    width: auto;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    top: -40px;
  }

  .slant-image-container {
    width: auto;
    padding: 20px;
    position: relative;
    top: -50px;
    margin: 0 auto;
    z-index: 999;
  }
}

@media (max-width: 640px) {
  .flanking-image {
    width: 160px;
  }
}

@media (max-width: 576px) {
  .hero-text h1 {
    font-size: 60px;
  }

  .primary-btn,
  .secondary-btn {
    padding: 14px 25px;
    font-size: 0.9rem;
  }

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

  .section-title h2 {
    font-size: 1.8rem;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

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

@media (max-width: 400px) {
   .flanking-image.left-side {
    top: 13%;
    left: -1%;
    opacity: 1;
    width: 150px;
  }

  .flanking-image.right-side {
    right: 2%;
    opacity: 1;
    width: 150px;
    border-radius: 10px;
}
}

@media (max-width: 380px) {
  /* --- VIDEO --- */
  .after-hero-video {
    width: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  .after-hero-video iframe {
    height: 300px;
    width: 100%;
  }

  .after-hero-content h2 {
        font-size: 1.5rem;
        text-align: start;
    }

  .phone-mockup {
    left: 0;
    margin: 0 auto;
    width: 320px;
    height: 700px;
  }

  .phone-middle {
  position: relative;
  width: 300px;
  height: 500px;
  overflow: hidden;
  bottom: -25px;
  left: -7px;
}

.phone-middle img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps it sharp */
  display: block;
}
.halfphone-holder h3{
  font-size: 25px;
  text-align: start;
}
.halfphone-holder {
  width: 320px;
  height: 240px;
  background-color: black;
  margin: 0 auto;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.halfphone-image {
  width: 300px;
  height: 140px;
  overflow: hidden;
  border-radius: 22px;
  margin: 0 auto;
  position: relative;
  left: -10px;
}

.halfphone-image img {
  width: 100%;
  height: auto;
  object-fit: contain; /* keeps it sharp */
  display: block;
}

.fullphone-holder {
  width: 320px;
  height: auto;
  background-color: black;
  margin: 0 auto;
  padding: 20px;
  border-radius: 22px;
  overflow: hidden;
}

.fullphone-holder h3{
  font-size: 29px;
  margin-bottom: 1rem;
}


.fullphone-image-v {
  position: relative;
  width: 280px;
  height: 150px;
  overflow: hidden;
  border-radius: 20px;
}

.scroll-phone-display {
  padding: 0px 10px;
}

  .phone-display-wrapper {
    height: 500px;
  }
  .main-phone-image {
    width: 260px;
    height: 480px;
  }

.phone-display-wrapper .left-side {
    top: 15%;
    left: 1%;
    opacity: 1;
    width: 150px;
    height: 210px;
  }
  .phone-display-wrapper.left-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .phone-display-wrapper .right-side {
    right: 2%;
    opacity: 1;
    width: 170px;
    height: 170px;
    border-radius: 20px;
    overflow: hidden;
  }

  .phone-display-wrapper .right-side img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .full-width-container h3 {
  font-size: 26px;
  font-weight: 600;
}

}

.full-width-container,
.slantphoto-words,
.stat-item,
.about-image,
.scrollss,
.about-words,
.words-gen,
.phone-mockup,
.halfphone-holder {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Stagger the animations for a more polished look */
.stat-item.in-view {
  transition-delay: 0.1s;
}
.words-gen.in-view {
  transition-delay: 0.25s;
}
.phone-mockup.in-view {
  transition-delay: 0.15s;
}
.halfphone-holder.in-view {
  transition-delay: 0.2s;
}

.in-view {
  opacity: 1;
  transform: translateY(0);
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 10001; /* above other elements */
    transition: background 0.3s ease, transform 0.2s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #20b358;
    transform: scale(1.05);
}
