/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #000;
  color: #fff;
}

/* =========================
   COMMON
========================= */
a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =========================
   TOP MARQUEE
========================= */
.top-marquee {
  height: 38px;
  background: linear-gradient(90deg, #ff00cc, #3333ff, #00c6ff);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.marquee-track {
  width: 200%;
  display: flex;
  animation: marquee-scroll 20s linear infinite;
}

.marquee-track span {
  width: 100%;
  white-space: nowrap;
  display: inline-block;
  font-size: 14px;
  padding-left: 100%;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* =========================
   HEADER
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000;
}

.header-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  max-height: 48px;
  display: block;
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  font-size: 15px;
  color: #fff;
  position: relative;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #ffd700;
}

/* WHATSAPP */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #00e676;
  color: #000;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-only {
  display: flex;
}

/* MENU ICON */
.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
}

/* =========================
   ðŸ”¥ MOBILE MENU (FIXED)
========================= */
.mobile-menu {
  display: none;                 /* ðŸ”’ default hidden */
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10000;
}

.mobile-menu.show {
  display: block;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-header span {
  font-size: 18px;
  font-weight: 600;
}

.mobile-menu-header button {
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 20px;
  gap: 18px;
}

.mobile-nav a {
  font-size: 16px;
}

.mobile-whatsapp {
  padding: 20px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: radial-gradient(circle at left, #111 0%, #000 60%);
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 520px;
}

/* HERO TEXT */
.hero-content {
  padding-right: 40px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 800;
  color: #ffd700;
}

.hero-content h2 {
  font-size: 22px;
  margin-top: 8px;
}

.hero-content p {
  margin: 20px 0;
  max-width: 520px;
  color: #ccc;
  font-size: 15px;
  line-height: 1.6;
}

.hero-content h3 {
  margin: 30px 0 14px;
  font-size: 22px;
}

.hero-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00e676;
  color: #000;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

/* HERO IMAGE */
.hero-image img {
  width: 100%;
  border-radius: 18px;
}

/* =========================
   FLOATING BUTTONS
========================= */
.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 10px;
  z-index: 3000;
}

/* =========================
   MOBILE FIXES
========================= */
@media (max-width: 900px) {

  .desktop-nav,
  .desktop-only {
    display: none !important;
  }

  .menu-btn {
    display: block;
  }

  .hero-wrap {
    grid-template-columns: 1fr;
    padding: 40px 0;
  }

  .hero-content {
    order: 1;
    text-align: center;
    padding-right: 0;
  }

  .hero-image {
    order: 2;
    margin-top: 30px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
}

/* =========================
   DESKTOP SAFETY
========================= */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}


/* =========================
   WELCOME SECTION
========================= */
.welcome-section {
  background: #000;
  padding: 80px 0;
  text-align: center;
}

.welcome-wrap {
  max-width: 900px;
}

.welcome-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 18px;
}

.welcome-keywords {
  font-size: 12px;
  color: #ffd700;
  margin-bottom: 20px;
  opacity: 0.9;
}

.welcome-text {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 18px;
}

.welcome-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 25px;
  background: #00e676;
  color: #000;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

  .welcome-section {
    padding: 50px 0;
  }

  .welcome-title {
    font-size: 26px;
  }

  .welcome-text {
    font-size: 14px;
  }
}


/* =========================
   WHY SPRINTERS SECTION
========================= */
.why-sprinters {
  background: radial-gradient(circle at top, #1b1f3b 0%, #0b0d1a 70%);
  padding: 80px 0;
}

.why-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 10px;
}

.why-subtitle {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* CARD */
.why-card {
  background: #0e1129;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}

/* ICON */
.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,215,0,0.12);
  color: #ffd700;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #fff;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cfcfcf;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-sprinters {
    padding: 50px 0;
  }

  .why-title {
    font-size: 26px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   STATS / COUNTER SECTION
========================= */
.stats-section {
  background: #000;
  padding: 80px 0;
  text-align: center;
}

.stats-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* CARD */
.stat-card {
  background: #ffd11a;
  color: #000;
  border-radius: 18px;
  padding: 30px 20px;
}

.stat-card i {
  font-size: 28px;
  margin-bottom: 14px;
}

.stat-card h3 {
  font-size: 26px;
  font-weight: 800;
}

.stat-card p {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 600;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .stats-title {
    font-size: 24px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FLOATING TELEGRAM FIX
========================= */

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3000;
}

/* CONTACT BUTTON */
.contact-btn {
  background: #ffffff;
  color: #000000;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* TELEGRAM BUTTON */
.telegram-btn {
  width: 42px;
  height: 42px;
  background: #0088cc;
  color: #ffffff;
  border-radius: 50%;
  display: flex;              /* IMPORTANT */
  align-items: center;        /* IMPORTANT */
  justify-content: center;    /* IMPORTANT */
  font-size: 20px;
  line-height: 1;
  padding: 0;
}

/* TELEGRAM ICON */
.telegram-btn i {
  font-size: 20px;
  line-height: 1;
}

/* OPTIONAL HOVER */
.telegram-btn:hover {
  background: #0099e6;
  transform: scale(1.05);
}

/* =========================
   PAYMENT OPTIONS SECTION
========================= */
.payment-section {
  background: #000;
  padding: 80px 0;
  text-align: center;
}

.payment-title {
  font-size: 34px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 10px;
}

.payment-subtitle {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
}

/* LOGO GRID */
.payment-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  align-items: center;
}

/* LOGO CARD */
.payment-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.payment-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;   /* logo distort nahi hoga */
}


/* HOVER EFFECT */
.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .payment-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .payment-section {
    padding: 50px 0;
  }

  .payment-title {
    font-size: 24px;
  }

  .payment-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .payment-card {
    height: 80px;
  }
}

/* =========================
   FAQ SECTION
========================= */
.faq-section {
  background: #000;
  padding: 80px 0;
  text-align: center;
}

.faq-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 8px;
}

.faq-subtitle {
  font-size: 14px;
  color: #cfcfcf;
  margin-bottom: 40px;
}

/* FAQ BOX */
.faq-box {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px;
  box-shadow: 0 0 25px rgba(255,255,255,0.08);
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.faq-item:last-child {
  border-bottom: none;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #ffd700;
  text-align: left;
  padding: 18px 16px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  text-align: left;
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.6;
  padding: 0 16px;
  transition: max-height 0.35s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 16px;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 26px;
  }
  .faq-question {
    font-size: 14px;
  }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background: #000;
  padding: 70px 0 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}

/* TOP */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* BRAND */
.footer-brand img {
  max-width: 200px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: #cfcfcf;
  line-height: 1.6;
  max-width: 300px;
}

/* COLUMNS */
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 14px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  width: 26px;
  height: 2px;
  background: #a855f7;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: #ddd;
  transition: color 0.25s ease;
}

.footer-col ul li a:hover {
  color: #ffd700;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

.footer-social .whatsapp {
  background: #25d366;
}

.footer-social .telegram {
  background: #0088cc;
}

.footer-social .instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}


/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 18px 10px;
}

.footer-bottom p {
  font-size: 13px;
  margin-bottom: 6px;
}

.footer-bottom small {
  font-size: 11px;
  color: #aaa;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand p {
    margin: 0 auto;
  }
}

/* =========================
   CONTACT PAGE LAYOUT
========================= */

.contact-main {
  padding: 80px 0;
  background: #000;
}

.contact-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #ffd700;
  margin-bottom: 50px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* LEFT */
.contact-left h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
}

.contact-left h2 span {
  color: #ffd700;
}

.contact-left p {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 12px;
  margin-bottom: 12px;
  color: #000;
}

.contact-btn.whatsapp {
  background: #25d366;
}

.contact-btn.telegram {
  background: #0088cc;
  color: #fff;
}

/* RIGHT FORM */
.contact-right form {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: none;
  margin-bottom: 12px;
  font-size: 14px;
}

.contact-right button {
  width: 100%;
  background: #ffd700;
  color: #000;
  padding: 12px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* SOCIAL */
.contact-social {
  margin-top: 20px;
}

.contact-social p {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    font-size: 26px;
  }
}
/* =========================
   SOCIAL MEDIA ICONS – FIX
========================= */

.social-follow {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 0 0 2px rgba(0,0,0,0.6);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* COLORS */
.social-icon.whatsapp { background: #25d366; }
.social-icon.telegram { background: #0088cc; }
.social-icon.twitter { background: #1da1f2; }
.social-icon.instagram { background: #111; }
.social-icon.pinterest { background: #e60023; }

/* HOVER */
.social-icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

/* =========================
   CONTACT FORM OUTLINE FIX
========================= */

.contact-right form {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 0 0 2px rgba(255,215,0,0.15);
}

/* INPUTS */
.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #d6d6d6;
  margin-bottom: 14px;
  font-size: 14px;
  outline: none;
}

/* FOCUS STATE */
.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #ffd700;
  box-shadow: 0 0 0 2px rgba(255,215,0,0.25);
}

/* SUBMIT BUTTON */
.contact-right button {
  width: 100%;
  background: #ffd700;
  color: #000;
  padding: 14px;
  font-weight: 700;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

