/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background: url("background.png") no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  overflow-x: hidden;
}

/* GLOBAL CONTAINER */
.container {
  width: 100%;
  max-width: 1300px; /* Funnel width (adjust if needed) */
  margin: 0 auto;
  padding-left: 30px;
  padding-right: 30px;
}

/* HEADER */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5, 10, 25, 0.9);
  background-opacity: 0.95rem
  backdrop-filter: blur(20px);
  z-index: 100;
  padding: 15px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 10px;
}

.logo img {
  height: 30px; /* reduced from 50px */
  width: auto;
  display: block;
}

nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

nav ul li a {
  color: #cfd4da;
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  white-space: nowrap;
}

nav ul li a:hover {
  color: #00e0ff;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-outline,
.btn-filled {
  padding: 10px 28px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
  white-space: nowrap;
}

.btn-outline {
  border: 1px solid #00e0ff;
  color: #00e0ff;
}

.btn-outline:hover {
  background: #00e0ff;
  color: #000;
}

.btn-filled {
  background: #00e0ff;
  color: #000;
}

.btn-filled:hover {
  opacity: 0.8;
}

/* HERO SECTION */
.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.4);
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-top: 70px;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3.6rem;
  line-height: 1.2;
  color: #e8f9ff;
}

.hero-content span {
  color: #00e0ff;
}

.hero-content h3 {
  margin: 20px 0 15px;
  font-weight: 500;
  color: #cfd4da;
}

.hero-content p {
  color: #a8b3c0;
  line-height: 1.7;
  margin-bottom: 25px;
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.phones {
  max-width: 540px;
  width: 100%;
  height: auto;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1100px) {
  nav ul {
    gap: 20px;
  }

  .btn-outline,
  .btn-filled {
    padding: 8px 20px;
  }

  .logo img {
    height: 40px;
  }
}

@media (max-width: 992px) {
  .header-container {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  nav ul {
    display: none; /* hide menu on mobile for now */
  }

  .header-buttons {
    margin-top: 10px;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 100px 0 80px;
  }

  .hero-images {
    justify-content: center;
  }

  .phones {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content h3 {
    font-size: 1rem;
  }

  .phones {
    max-width: 300px;
  }
}

/* ABOUT SECTION */
.about {
background:rgba(0, 0, 0, 0.4); 
  padding-bottom: 100px;
  padding-top: 100px;
  color: #cfd4da;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.about-content {
  flex: 1;
  max-width: 580px;
}

.about-content h2 {
  font-size: 2.5rem;
  color: #e8f9ff;
  margin-bottom: 25px;
}

.about-content h2 span {
  color: #00e0ff;
}

.about-content p {
  line-height: 1.7;
  color: #a8b3c0;
  margin-bottom: 20px;
}

/* STAT BOXES */
.about-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat-box {
  background: rgba(0, 224, 255, 0.08);
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 10px;
  padding-top: 16px;
  text-align: center;
  flex: 1;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(0, 224, 255, 0.15);
  transform: translateY(-5px);
}

.stat-box h3 {
  color: #00e0ff;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.stat-box p {
  color: #cfd4da;
  font-size: 0.95rem;
}

/* RIGHT IMAGE */
.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-content {
    max-width: 100%;
  }

  .about-stats {
    justify-content: center;
  }

  .about-image {
    margin-top: 50px;
  }

  .about-image img {
    max-width: 400px;
  }
}

@media (max-width: 600px) {
  .about-content h2 {
    font-size: 2rem;
  }

  .stat-box {
    padding-top: 20px;
  }

  .about-stats {
    flex-direction: column;
  }

  .about-image img {
    max-width: 320px;
  }
}

/* DEVICES SECTION */
.devices {
  background: rgba(0, 0, 0, 0.4);
  text-align: center;
  padding: 100px 0;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
}

.devices-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.devices h2 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.devices h2 span {
  color: #00bde5;
}

.devices-subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 40px;
  font-weight: 200
}

/* TOGGLE BUTTONS */
.device-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.device-buttons button {
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid #ccc;
  background: #fff;
  color: #000;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.device-buttons button:hover {
  border-color: #00bde5;
  color: #0085a0;
}

.device-buttons .active {
  background: #00bde5;
  color: #fff;
  border-color: #00bde5;
}

/* IMAGE SETS */
.device-set {
  display: none;
  animation: fadeIn 0.6s ease forwards;
}

.device-set.active {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.device-set#mobile img {
  flex: 0 0 auto;
  width: 220px;
  border-radius: 25px;
  scroll-snap-align: center;
}

.device-set#mobile::-webkit-scrollbar {
  display: none;
}


/* override only for mobile slider */
@media (max-width: 768px) {
  .device-set.active#mobile {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
  }
}

/* Default images (Mobile) */
.device-set#mobile img {
  width: 280px;
  height: auto;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.device-set#mobile img:hover {
  transform: translateY(-8px);
}

/* Desktop image – combined width of 4 mobiles */
.device-set#desktop img {
  /* 4 images (280px each) + 3 gaps (20px each) = 1180px */
  width: calc(280px * 3 + 60px);
  max-width: 100%;
  height: auto;
  border-radius: 25px;
  transition: transform 0.4s ease;
}

.device-set#desktop img:hover {
  transform: translateY(-8px);
}

/* Trading result image (normal size) */
.device-set#trading img {
  width: 100%;
  max-width: 1100px;
  border-radius: 25px;
}

/* FADE EFFECT */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile slider for the 4 screenshots */
@media (max-width: 768px) {
  .device-set#mobile {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 0;
    justify-content: flex-start;   /* left align for horizontal scroll */
    flex-wrap: nowrap;              /* keep in a single row */
  }

  .device-set#mobile img {
    flex: 0 0 auto;                 /* prevent shrinking */
    width: 220px;                   /* card width on phones */
    height: auto;
    border-radius: 25px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
  }

  /* Hide scrollbar (WebKit) */
  .device-set#mobile::-webkit-scrollbar {
    display: none;
  }

  /* Keep desktop image responsive on phones */
  .device-set#desktop img {
    width: 100%;
  }

  .device-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

/* FEATURES SECTION */
.features {
  padding-top: 100px;
  background: rgba(0, 0, 0, 0.4)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-box {
  border: 1px solid rgba(0, 224, 255, 0.2);
  border-radius: 14px;
  padding: 40px 35px;
  background: rgba(0, 0, 0, 0.15); /* subtle dark overlay */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 224, 255, 0.2);
}

.feature-box h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.3;
}

.feature-box h3 span {
  background: linear-gradient(90deg, #00e0ff, #00bde5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.feature-box p {
  font-size: 1rem;
  line-height: 1.7;
  color: #a8b3c0;
  margin-bottom: 25px;
}

/* REUSE BUTTON STYLE */
.feature-box .btn-filled {
  background: #00e0ff;
  color: #000;
  padding: 10px 26px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.feature-box .btn-filled:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-box {
    text-align: center;
  }

  .feature-box h3 {
    font-size: 1.4rem;
  }
}


/* REVIEWS SECTION */
.reviews {
  padding-top: 100px;
  background: rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.reviews-header h2 span {
  background: linear-gradient(90deg, #00e0ff, #00bde5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.review-stars {
  font-size: 1.8rem;
  color: #ffc107;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.review-stars p {
  font-size: 1rem;
  color: #cfd4da;
  margin: 0;
}

/* SLIDER */
.review-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.review-track {
  display: flex;
  width: max-content;       /* grow to actual content width */
  gap: 30px;
  will-change: transform;
  animation: reviews-scroll 60s linear infinite; /* slow, continuous */
}

/* Pause when hovered */
.review-slider:hover .review-track {
  animation-play-state: paused;
}

/* One card */
.review-card {
  background: rgba(5, 10, 25, 0.9);
  border: 1px solid rgba(0, 224, 255, 0.15);
  border-radius: 14px;
  padding: 30px 25px;
  flex: 0 0 360px;          /* fixed width on desktop for smooth scroll */
  min-width: 360px;
  box-shadow: 0 10px 25px rgba(0, 224, 255, 0.1);
  transition: transform 0.25s ease;
}

.review-card:hover {
  transform: translateY(-6px);
}

.review-card p {
  color: #a8b3c0;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-footer img {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  object-fit: cover;
  padding: 8px;
}

.reviewer-info .stars {
  color: #ffc107;
  font-size: 1rem;
  line-height: 1;
}

.reviewer-info h4 {
  color: #fff;
  font-size: 1rem;
  margin-top: 5px;
}

/* Continuous scrolling keyframes
   We duplicate the track content once; moving -50% equals one full set */
@keyframes reviews-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 992px) {
  .review-card {
    flex-basis: 70vw;
    min-width: 70vw; /* big readable cards on tablet */
  }
}

@media (max-width: 600px) {
  .reviews-header h2 { font-size: 2rem; }
  .review-card {
    flex-basis: 82vw;
    min-width: 82vw; /* wide card on mobile for nice continuous scroll */
  }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .review-track { animation: none; }
}


/* FAQ SECTION */
.faq { padding: 120px 0; background: rgba(0, 0, 0, 0.4); color: #fff; }

.faq-wrapper {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 80px;
}

.faq-left { flex: 1; }
.faq-left h2 { font-size: 3rem; margin-bottom: 15px; }
.faq-left h2 span {
  background: linear-gradient(90deg,#00e0ff,#00bde5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; font-weight: 700;
}
.faq-left p { color:#a8b3c0; margin-bottom:30px; }
.faq-left .btn-filled {
  background:#00e0ff; color:#000; padding:12px 28px; border-radius:25px; text-decoration:none; font-weight:600; transition:.3s;
}
.faq-left .btn-filled:hover { opacity:.85; }

/* RIGHT SIDE (details/summary) */
.faq-right { flex: 1.8; width: 100%; }

.faq-item {
  border-bottom: 1px solid rgba(0,224,255,.2);
  padding: 0; margin: 0 0 6px 0;
}

/* remove default marker */
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary { list-style: none; }

.faq-item summary {
  width:100%; display:flex; align-items:center; justify-content:space-between;
  padding:20px 0; cursor:pointer; color:#e8f9ff; font-weight:600; font-size:1.1rem;
  transition: color .3s ease;
}
.faq-item summary:hover { color:#00e0ff; }

.faq-item .arrow {
  width:22px; height:22px; color:#00e0ff; flex:0 0 22px;
  transition: transform .3s ease;
}

.faq-answer {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
  will-change: max-height;
}
.faq-answer p { color:#a8b3c0; line-height:1.7; padding:0 0 16px 0; }

/* open state */
.faq-item[open] .faq-answer { max-height: 420px; opacity: 1; }
.faq-item[open] .arrow { transform: rotate(180deg); }

/* Responsive */
@media (max-width: 992px){
  .faq-wrapper { flex-direction: column; gap: 50px; }
  .faq-left { text-align: left; }
}

/* FOOTER */
.footer {
  padding: 80px 0 30px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border-top: 1px solid rgba(0, 224, 255, 0.2);
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.footer-logo img {
  width: 150px;
  height: auto;
}

.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cfd4da;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #00e0ff;
}

.footer-about p {
  color: #a8b3c0;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

.footer-about .email {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.footer-about .email:hover {
  color: #00e0ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 224, 255, 0.1);
  padding-top: 20px;
  margin-top: 50px;
}

.footer-bottom .left {
  color: #a8b3c0;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom .right {
  color: #a8b3c0;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom .right:hover {
  color: #00e0ff;
}
/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-about {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo img {
    margin: 0 auto 20px;
  }

  .footer h4 {
    margin-top: 30px;
  }
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* or your brand color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease; /* smooth fade */
}

#loader img {
  width: 120px;
}



/* ===== TERMS PAGE ===== */
.terms {
  background: #050a19; /* same dark tone as main site */
  color: #fff;
  padding-top: 200px;
  padding-bottom: 100px
  min-height: 100vh;
}

.terms .container {
  max-width: 1000px;
  margin: auto;
  padding: 0 20px;
}

.terms h1 {
  font-family: "Mont Bold", sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: #fff;
}

.terms h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 22px;
  margin-top: 40px;
  color: #00e0ff; /* highlight color */
}

.terms p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #ccc;
  margin-bottom: 15px;
}

.terms hr {
  margin: 60px 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* ===== PERFORMANCE CARD ===== */
.performance-card {
  background: radial-gradient(circle at top left, rgba(15, 30, 60, 0.9), rgba(5, 10, 25, 0.95));
  border: 1px solid rgba(0, 224, 255, 0.3);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 0 35px rgba(0, 224, 255, 0.25);
  color: #fff;
  width: 480px;
  max-width: 90%; /* ✅ Prevents cutting on mobile */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  margin: auto;
  transition: all 0.4s ease;
}

/* ===== MOBILE VIEW (up to 480px) ===== */
@media (max-width: 480px) {
  .performance-card {
    width: 340px;
    max-width: 95%;
    padding: 40px 25px;
    border-radius: 25px;
    margin: 40px auto;
  }

  .performance-card h2 {
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 15px;
  }

  .performance-card p {
    font-size: 14px;
    line-height: 1.5;
  }

  .performance-card button {
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 20px;
  }
}

.performance-card:hover {
  box-shadow: 0 0 45px rgba(0, 224, 255, 0.4);
  transform: translateY(-5px);
}

.performance-card h3 {
  font-family: "Mont Bold", sans-serif;
  font-size: 26px;
  color: #00e0ff;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
}

.performance-card span {
  display: block;
  color: #ffffff;
}

/* ===== ALIGNMENT FIX ===== */
.performance-columns {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.performance-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.performance-column button {
  background: transparent;
  border: 1px solid rgba(0, 224, 255, 0.4);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.performance-column button.active,
.performance-column button:hover {
  background: rgba(0, 224, 255, 0.15);
  box-shadow: 0 0 10px rgba(0, 224, 255, 0.3);
}

.performance-column p {
  font-size: 26px;
  font-weight: 700;
  color: #00e0ff;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-shadow: 0 0 10px rgba(0, 224, 255, 0.3);
  animation: pulseGlow 3s infinite ease-in-out;
}

/* ✅ Glow Animation */
@keyframes pulseGlow {
  0% { text-shadow: 0 0 5px rgba(0, 224, 255, 0.2); }
  50% { text-shadow: 0 0 25px rgba(0, 224, 255, 0.6); }
  100% { text-shadow: 0 0 5px rgba(0, 224, 255, 0.2); }
}

.last-updated {
  margin-top: 30px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* ===== RESPONSIVE FIX ===== */
@media (max-width: 768px) {
  .performance-card {
    padding: 40px 20px;
  }

  .performance-columns {
    gap: 25px;
  }

  .performance-column p {
    font-size: 22px;
  }
}


.hero-images .phones {
  width: 100%;
  max-width: 470px;
  animation: floatImage 2s ease-in-out infinite;
  padding-top: 100px;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); } /* Moves upward slightly */
  100% { transform: translateY(0); } /* Returns to original position */
}

/* ===== DEVICE VIEW RESPONSIVENESS ===== */

/* Hide extra mobile images */
@media (max-width: 768px) {
  .device-set#mobile .hide-mobile {
    display: none !important;
  }

  .device-set#mobile img {
    width: 260px;
    height: auto;
    border-radius: 25px;
    margin: 0 auto;
    display: block;
  }

  .devices-gallery {
    text-align: center;
  }
}

/* Keep all visible on desktop */
@media (min-width: 769px) {
  .device-set#mobile .hide-mobile {
    display: inline-block !important;
  }
}


/* ===== MOBILE PADDING FIX ===== */
@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* For hero and about sections (to avoid text touching screen edges) */
  .hero-content,
  .about-content,
  .about,
  .features,
  .reviews,
  .faq,
  .footer {
    padding-left: 15px;
    padding-right: 15px;
  }


  /* ===== MOBILE DEVICES SECTION FIX ===== */
@media (max-width: 768px) {
  /* Hide extra images */
  .device-set#mobile .hide-mobile {
    display: none !important;
  }

  /* Show only the first image and center it */
  .device-set#mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden; /* no scroll */
    padding: 10px 0;
  }

  .device-set#mobile img {
    width: 260px;
    height: auto;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
  }
}


@media (max-width: 768px) {
  .device-set#mobile {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 0;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
}


/* ===== MOBILE DEVICE DISPLAY FIX ===== */

/* Desktop default: keep everything as it is */
.device-set#mobile img {
  width: 280px;
  height: auto;
  border-radius: 25px;
  transition: transform 0.3s ease;
}
.device-set#mobile img:hover {
  transform: translateY(-8px);
}

/* Mobile view (≤768px): show only 1st phone (m1), hide others + hide laptop */
@media (max-width: 768px) {
  /* Hide 2nd, 3rd, and 4th phone */
  .device-set#mobile img:nth-child(n+2) {
    display: none !important;
  }

  /* Hide laptop */
  .device-set#desktop {
    display: none !important;
  }

  /* Center the single phone image */
  .device-set#mobile {
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
  }

  .device-set#mobile img:first-child {
    width: 260px;
    height: auto;
    border-radius: 25px;
    display: block;
    margin: 0 auto;
  }
}

/* ===== STOP HORIZONTAL SCROLL ON MOBILE ===== */
html, body {
  overflow-x: hidden; f!important;
  width: 100%;
  position: relative;
}

/* ===== FIX 2: No section wider than screen ===== */
section, .container, .devices, .devices-wrapper, .devices-gallery, .device-set {
  max-width: 100% !important;
  overflow-x: hidden !important;
  box-sizing: border-box;
}

/* Prevent any section from pushing layout */
section, .container, .devices-gallery, .device-set {
  max-width: 100%;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden !important;
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ===== RESPONSIVE FOOTER FIX ===== */
@media (max-width: 480px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 40px 20px;
  }

  /* Logo on top */
  .footer-logo {
    order: 1;
  }

  .footer-logo img {
    width: 150px;
    height: auto;
  }

  /* Group links + follow sections */
  .footer-links,
  .footer-follow {
    order: 2;
  }

  .footer-links h4,
  .footer-follow h4 {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .footer-links ul,
  .footer-follow ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li,
  .footer-follow li {
    margin: 6px 0;
  }

  .footer-links a,
  .footer-follow a {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
  }

  .footer-links a:hover,
  .footer-follow a:hover {
    opacity: 1;
  }

  /* About section centered */
  .footer-about {
    order: 3;
    font-size: 13px;
    line-height: 1.6;
    max-width: 340px;
    margin-top: 20px;
    opacity: 0.9;
  }

  .footer-about a.email {
    color: #00e0ff;
    text-decoration: none;
  }

  .footer-bottom {
    text-align: center;
    font-size: 12px;
    padding: 20px 0;
    opacity: 0.8;
  }
}

/* ===== HEADER / LOGO ALIGNMENT FIX ===== */
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 0;
}

/* ensure logo block is centered */
header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* optional: center the buttons below logo */
header .cta-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

/* ===== MOBILE ADJUSTMENT ===== */
@media (max-width: 480px) {
  header {
    padding-top: 25px;
  }

  header .logo img {
    width: 160px;
    height: auto;
  }

  header .cta-buttons {
    flex-wrap: wrap;
  }
}

/* ===== HIDE DESKTOP BUTTON ON MOBILE ===== */
@media (max-width: 480px) {
  .desktop-btn {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .header-btn {
    display: none !important;
  }
}


