* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter, system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
  /* Matches your .main-navbar height exactly */
}

body {
  background: #050505;
  color: #fff;
  padding-top: 78px;
}

/* FIX overlap */
/* body {
  padding-top: 78px;
} */

#home {
  scroll-margin-top: 78px;
}

/* ===== NAVBAR ===== */
/* Navbar Animation */
.main-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 2000;
  transition: transform 0.3s ease;
}

.main-navbar.scroll-down {
  transform: translateY(-100%);
}

.main-navbar.scroll-up {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* CONTAINER */
.nav-container {
  max-width: 1400px;
  margin: auto;
  height: 100%;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.nav-logo span {
  color: #2a6df4
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 28px;
  /* ✅ CHANGED: 36px → 28px */
}

.nav-links a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 14px;
  /* ✅ CHANGED: 15px → 14px */
  font-weight: 500;
  position: relative;
  padding-bottom: 6px;
  white-space: nowrap;
  /* ✅ ADDED: prevents text wrapping */
}

/* blue underline hover (Skills bhi) */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #2a6df4;
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 3000;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease, width 0.35s ease;
  transform-origin: center;
}

/* Hamburger X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 78px;
  left: 0;
  width: 100%;
  height: calc(100vh - 78px);
  background: rgba(0, 0, 0, 0.96);
  backdrop-filter: blur(12px);
  padding: 32px;
  display: flex;
  flex-direction: column;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s ease, opacity .25s ease;
  z-index: 3000;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transform: translateY(20px);
  opacity: 0;
  transition: color 0.2s, transform 0.35s ease, opacity 0.35s ease;
}

/* Link animations with stagger */
.mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.active a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.active a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.active a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu a:hover {
  color: #2a6df4;
}

/* OPEN STATE */
.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* RESPONSIVE */
@media(max-width:768px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }
}

/* STOP SCROLL WHEN MENU OPEN */
.no-scroll {
  overflow: hidden;
}



/* HERO SECTION */
.hero-section {
  /* min-height: 100vh; */
  padding-top: 30px;
  padding-bottom: 20px;
  background:
    radial-gradient(circle at 100% 5%, rgba(41, 38, 238, 0.22), transparent 45%),
    linear-gradient(to bottom, #0a0a0a, #050505);
  color: #fff;
  text-align: center;
}

.hero-inner {
  max-width: 1100px;
  margin: auto;
  padding: 0 32px;
}

/* EYEBROW */
.hero-eyebrows {
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #9aa3b2;
  margin-bottom: 10px;
  text-transform: uppercase;
  /* text-align: center; */
}

.eyebrows {
  display: block;
  font-size: 16px;
  letter-spacing: .18em;
  color: #9a9a9a;
  margin-bottom: 6px;
  text-align: center;
}

/* TITLE */
.hero-title {
  font-size: 45px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 15px;
  margin-top: 15px;
}

/* SUBTITLE */
.hero-subtitle {
  max-width: 760px;
  margin: auto;
  font-size: 17px;
  line-height: 1.6;
  color: #c6c6c6;
  margin-bottom: 40px;
}

/* CTA */
.hero-cta {
  margin-top: 20px;
  /* margin-bottom: 30px; */
}

.hero-btn {
  display: inline-block;
  padding: 15px 50px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
  background: #3B82F6;
  color: #fff;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(42, 109, 244, 0.4);
}

@media(max-width: 768px) {
  .hero-btn {
    padding: 12px 40px;
    /* ✅ Mobile padding */
    font-size: 16px;
    /* Optional: font size bhi chota kar sakte ho */
  }
}

/* VIDEO */
/* VIDEO */
.hero-video {
  max-width: 900px;
  /* ✅ Desktop width */
  height: 506.25px;
  /* ✅ Desktop height */
  margin: 80px auto 0;
  margin-top: 30px;
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

/* MAIN MAGIC */
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE HERO VIDEO */
@media(max-width: 1024px) {
  .hero-video {
    max-width: 900px;
    height: 506.25px;
  }
}

@media(max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  /* ✅ Mobile view - YE SAHI HAI, NO CHANGES */
  .hero-video {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 */
  }

  .hero-video video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media(max-width: 480px) {
  .hero-video video {
    height: 100%;
  }
}


/* ================= SKILLS SECTION ================= */
#skills {
  padding: 0px 20px;
  margin-top: 25px;
}

.video-section-container {
  /* margin-bottom: 20px; */
  padding-top: 40px;
  padding-bottom: 15px;

}

.video-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 10px;
  padding: 0px 15px;
}

.video-card {
  width: 100%;
  max-width: 700px;
  padding-top: 15px;
  border-radius: 12px;
  text-align: center;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 405.25px;
  overflow: hidden;
  border-radius: 18px;
  margin: 0 auto;
}

.video-wrapper video,
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-text {
  margin: 15px 0;
  font-size: 15px;
  color: #ccc;
  line-height: 1.6;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 15px 50px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}

@media(max-width: 768px) {
  .btn {
    padding: 12px 40px;
    /* ✅ Mobile padding */
    font-size: 16px;
    /* Optional: font size bhi chota kar sakte ho */
  }
}

.btn-primary {
  background: #3B82F6;
  color: #fff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(42, 109, 244, 0.4);
}

/* 🔥 Mobile responsive */
@media (max-width: 768px) {
  .video-section {
    flex-direction: column;
    gap: 25px;
  }

  .video-wrapper {
    height: auto;
    padding-bottom: 56.25%;
    /* 16:9 ratio */
    border-radius: 10px;
  }

  .video-wrapper video,
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* ===== TESTIMONIALS SLIDER ===== */
.testimonials-section {
  padding: 80px 0;
}

.ts-sub {
  font-size: 14px;
  color: #9a9a9a;
  margin: 8px 0 0;
}

.ts-slider-outer {
  overflow: hidden;
  width: 100%;
}

.ts-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
  padding: 20px;
}

.ts-card {
  flex: 0 0 calc(25% - 12px);
  margin-right: 16px;
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 28px;
  box-sizing: border-box;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.ts-card:hover {
  border-color: rgba(74, 144, 217, 0.4);
  transform: translateY(-4px);
}

.ts-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(74, 144, 217, 0.12);
  color: #a8e063;
  padding: 4px 10px;
  border: 1px solid rgba(74, 144, 217, 0.2);
  border-radius: 4px;
}

.ts-quote {
  font-size: 56px;
  line-height: 0.7;
  color: rgba(74, 144, 217, 0.2);
  font-weight: 900;
  margin-bottom: 8px;
}

.ts-text {
  font-size: 13px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 24px;
  font-style: italic;
}

.ts-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ts-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.ts-name {
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.ts-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

.ts-stars {
  color: #F59E0B;
  font-size: 12px;
  margin-top: 3px;
  letter-spacing: 1px;
}

.ts-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.ts-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.2s;
}

.ts-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ts-dots {
  display: flex;
  gap: 6px;
}

.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.2s;
}

.ts-dot.active {
  background: #a8e063;
}

@media (max-width: 900px) {
  .ts-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 600px) {
  .ts-card {
    flex: 0 0 100%;
    margin-right: 0;
  }
}

/* Header fix — center karo */
.reviews-ss-header {
  text-align: center;
  /* already hai, check kar ke add karo */
  margin-bottom: 50px;
}

/* Quote mark fix */
.ts-quote {
  font-family: Georgia, 'Times New Roman', serif;
  /* serif font chahiye quote ke liye */
  font-size: 72px;
  line-height: 0.6;
  color: rgba(74, 144, 217, 0.25);
  font-weight: 900;
  margin-bottom: 12px;
  display: block;
}

/* Card internal spacing fix */
.ts-card {
  padding: 28px 24px 24px 24px;
  /* top thoda zyada for badge space */
}

/* Badge positioning fix — text ke upar aa raha tha */
.ts-badge {
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(74, 144, 217, 0.15);
  color: #a8e063;
  padding: 5px 10px;
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: 4px;
  white-space: nowrap;
  /* badge text wrap na ho */
}

/* Text thoda neeche shift karo taaki badge se overlap na ho */
.ts-quote {
  margin-top: 20px;
  /* badge ke liye space */
}

@media (max-width: 768px) {
  .ts-card {
    flex: 0 0 100%;
    margin-right: 0;
  }

  .ts-quote {
    font-size: 48px;
  }

  .ts-text {
    font-size: 13px;
    line-height: 1.7;
  }

  .reviews-ss-inner {
    padding: 0 20px;
    /* side padding kam karo */
  }

  .testimonials-section {
    padding: 50px 0;
  }
}

/* REVIEWS SECTION */
.reviews-section {
  padding: 25px 0;
  /* background: radial-gradient(circle at top, #0e0e0e, #050505); */
}

.reviews-container {
  max-width: 1400px;
  margin: auto;
  padding: 10px 48px;
  /* background:
    radial-gradient(circle at 100% 5%, rgba(41, 38, 238, 0.22), transparent 40%),
    linear-gradient(to top, #0a0a0a, #050505); */
}

/* HEADER */
.reviews-header {
  text-align: center;
  margin-bottom: 35px;
}

.eyebrow {
  display: block;
  font-size: 16px;
  letter-spacing: .18em;
  color: #9a9a9a;
  margin-bottom: 16px;
}

.reviews-header h2 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
}

/* GRID */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* STACK (text + video same column) */
.review-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* CARD BASE */
.review-card {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .55);
  transition: transform .25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
}

/* TEXT CARD */
.text-card {
  background: #ffffff;
  color: #111;
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
}

/* VIDEO CARD */


.video-card video {
  width: 100%;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-header h2 {
    font-size: 32px;
  }
}

/* MEMBERSHIP SECTION */
/* ================= PRICING BASE ================= */
/* .pricing-section {
  padding: 50px 0;
  background: radial-gradient(circle at top, #0e0e0e, #050505);
  color: #fff;
} */

.pricing-box {
  max-width: 820px;
  margin: auto;
  padding: 30px 30px;
  background: linear-gradient(180deg, #0c1220, #050505);
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  /* box-shadow: 0 60px 120px rgba(0, 0, 0, .7); */
  text-align: center;
}

/* ================= TITLES ================= */
.pricing-title {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-title span {
  color: #2a6df4;
}

.tm {
  font-size: 18px;
  vertical-align: super;
}

.pricing-subtitle {
  font-size: 14px;
  letter-spacing: .25em;
  color: #9aa3b2;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pricing-note {
  font-size: 14px;
  color: #bdbdbd;
  margin-bottom: 24px;
}

/* ================= DESCRIPTION ================= */
.pricing-description {
  font-size: 16px;
  line-height: 1.7;
  color: #cfcfcf;
  margin-bottom: 15px;
}

/* ================= PRICE BLOCK ================= */
.price-block {
  margin: 40px 0;
  padding: 28px;
  border-radius: 18px;
  /* background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08); */
}

.price-block p {
  font-size: 18px;
  margin-bottom: 12px;
}

.price-block span {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

/* ================= WHAT YOU GET ================= */
.what-you-get {
  margin: 25px 0 30px;
  text-align: left;
}

.what-you-get h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.what-you-get ul {
  list-style: none;
}

.what-you-get li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: #d0d0d0;
}

.what-you-get li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #2a6df4;
  border-radius: 50%;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ================= PROGRAM TITLE ================= */
.program-title {
  margin: 30px 0 30px;
}

.program-title h3 {
  font-size: 25px;
  font-weight: 700;
}

.program-title span {
  color: #2a6df4;
}

.program-title p {
  font-size: 14px;
  letter-spacing: .18em;
  color: #9aa3b2;
  margin-top: 8px;
}

/* ================= OPTIONS ================= */
.pricing-options {
  display: flex;
  /* grid-template-columns: 1fr auto 1fr; */
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}

/* .option {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  padding: 20px;
} */
.option {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 144, 217, 0.25);
  /* ✅ same border add kiya */
  border-radius: 18px;
  padding: 20px;
  backdrop-filter: blur(10px);
  /* ✅ same blur effect */
}

.option h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.price {
  font-size: 30px;
  font-weight: 700;
}

.price span {
  font-size: 14px;
  color: #9aa3b2;
}

.small-text {
  font-size: 13px;
  color: #aaa;
  margin-top: 8px;
}

.divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.12);
}

/* ================= WARNING ================= */
.pricing-warning {
  font-size: 15px;
  line-height: 1.6;
  color: #bdbdbd;
  margin-bottom: 40px;
}

/* ================= CTA BUTTON ================= */
.vip-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 10px;
  background: #2a6df4;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .15s ease;
  box-shadow: 0 8px 30px rgba(31, 36, 169, 0.18);
}

.vip-btn:hover {
  background: #000000;
  transform: translateY(-3px);
  /* box-shadow: 0 20px 50px rgba(169, 50, 38, 0.25); */
}

/* ================= VIP SPECIAL FEEL ================= */
.vip-pricing .pricing-box {
  border-color: rgba(1, 45, 93, 0.3);
}

.vip-pricing .pricing-title span {
  color: #2a6df4;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {
  .pricing-box {
    padding: 25px 20px;
  }

  .pricing-title {
    font-size: 26px;
  }

  .pricing-options {
    grid-template-columns: 1fr;
  }

  .divider {
    display: none;
  }
}

/* ================= SIDE-BY-SIDE SECTIONS WRAPPER ================= */
.pricing-sections-wrapper {
  display: block;
  /* ✅ CHANGED */
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  background: radial-gradient(circle at top, #000000, #0b0b0f);
}

/* ✅ ADD THIS - Style for eyebrows */
.pricing-sections-wrapper .eyebrows {
  text-align: center;
  font-size: 14px;
  letter-spacing: .25em;
  color: #9aa3b2;
  text-transform: uppercase;
  margin-bottom: 30px;
}

/* ✅ ADD THIS - Container for the two pricing boxes */
.pricing-cards-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.pricing-cards-container .pricing-section {
  flex: 1;
  max-width: 600px;
}

@media (max-width: 1100px) {
  .pricing-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .pricing-cards-container .pricing-section {
    max-width: 100%;
    width: 100%;
  }
}

@media (max-width: 768px) {
  #vip-pricing .price-block {
    gap: 15px;
  }

  #vip-pricing .price-block p {
    font-size: 0.95rem;
    padding: 15px 18px;
  }

  #vip-pricing .price-block span {
    font-size: 1.3rem;
  }
}

/* VIP: box, divider and note styling to match the provided image */
#vip-pricing .pricing-box {
  max-width: 750px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(255, 215, 160, 0.15);
  padding: 30px 20px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(8px);
}

#vip-pricing .pricing-note {
  color: #2a6df4;
  font-style: italic;
  margin-bottom: 20px;
}

#vip-pricing .price-block {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: nowrap;
  padding: 0px 0;
  /* margin-bottom: 25px; */
}

#vip-pricing .price-block p {
  flex: 1;
  max-width: 280px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(74, 144, 217, 0.25);
  border-radius: 18px;
  padding: 20px 23px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

/* #vip-pricing .price-block p:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  border-color: rgba(74, 144, 217, 0.6);
} */

#vip-pricing .price-block span {
  color: #2a6df4;
  font-weight: 700;
  font-size: 1.6rem;
  display: block;
  margin-top: 10px;
}


/* Ensure SVGs keep their original colors (no tint/filters) */
.footer-social img {
  filter: none;
  opacity: 1;
  height: 30px;
}

/* Hover effects for footer social icons with brand color shadows */
.footer-social a:hover {
  transform: translateY(-3px);
}

/* Instagram: Pink/Magenta */
.footer-social a:nth-child(1):hover {
  box-shadow: 0 12px 30px rgba(224, 64, 139, 0.35);
}

/* YouTube: Red */
.footer-social a:nth-child(2):hover {
  box-shadow: 0 12px 30px rgba(255, 0, 0, 0.35);
}

/* TikTok: Dark/Black */
.footer-social a:nth-child(3):hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}


/* ===== FOOTER FIXED ===== */
.site-footer {
  background: #000;
  padding: 30px 0 30px;
  /* ⬅️ pehle 120px tha */
  color: #fff;
  background-color: rgba(4, 2, 118, 0.22);
}

.footer-container {
  max-width: 1400px;
  margin: auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: flex-start;
  gap: 40px;
  /* ⬅️ gap kam */
}

/* LEFT */
.footer-logo {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
}

.footer-logo span {
  color: #2a6df4;
}

.footer-social {
  display: flex;
  gap: 16px;
  font-size: 20px;
}

/* CENTER */
.footer-center {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* ⬅️ gap kam */
}

.footer-center a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-center a:hover {
  color: #2a6df4;
}

/* RIGHT */
.footer-right {
  display: flex;
  justify-content: flex-end;
}


/* BOTTOM */
.footer-bottom {
  margin-top: 30px;
  /* ⬅️ pehle 120px tha */
  text-align: center;
  color: #777;
  font-size: 12px;
  letter-spacing: .15em;
}

.footer-bottom strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 20px;
  letter-spacing: .12em;
}

/* Make footer credit link white and remove underline */
.footer-bottom strong a {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

.footer-bottom strong a:hover,
.footer-bottom strong a:focus {
  color: #fff;
  text-decoration: none;
}

/* MOBILE */
@media(max-width:900px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .footer-right {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }
}

/* ===== CONTENT PAGES (SUPPORT & POLICY) ===== */
.content-section {
  padding: 30px 0;
  background: radial-gradient(circle at top, #0e0e0e, #050505);
  min-height: 100vh;
  color: #fff;
}

.content-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 0 48px;
}

.content-inner {
  animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ===== MAIN HEADING ===== */
.content-inner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #fff;
  line-height: 1.1;
}

.last-updated {
  font-size: 14px;
  color: #9aa3b2;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.intro-text {
  font-size: 18px;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 50px;
  max-width: 800px;
}

/* ===== SUPPORT METHODS ===== */
.support-methods {
  margin-bottom: 80px;
}

.support-methods h2,
.common-issues h2,
.contact-form-section h2,
.policy-section h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 36px;
  color: #fff;
}

.support-item {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.08), rgba(42, 109, 244, 0.02));
  border: 1px solid rgba(42, 109, 244, 0.25);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.support-item:hover {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.12), rgba(42, 109, 244, 0.05));
  transform: translateY(-4px);
  border-color: rgba(42, 109, 244, 0.4);
  box-shadow: 0 20px 50px rgba(42, 109, 244, 0.15);
}

.support-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #2a6df4;
}

.support-item p {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.6;
}

/* ===== COMMON ISSUES ===== */
.common-issues {
  margin-bottom: 80px;
}

.issue {
  background: rgba(255, 255, 255, 0.02);
  border-left: 4px solid #2a6df4;
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.issue:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(8px);
  border-left-color: #3B82F6;
  box-shadow: 0 15px 40px rgba(42, 109, 244, 0.12);
}

.issue h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
  display: flex;
  align-items: center;
}

.issue h3::before {
  content: "→";
  display: inline-block;
  margin-right: 12px;
  color: #2a6df4;
  font-size: 22px;
}

.issue ul {
  list-style: none;
  padding: 0;
}

.issue li {
  font-size: 15px;
  color: #c6c6c6;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
}

.issue li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: #2a6df4;
  font-weight: bold;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  margin-bottom: 80px;
}

.support-form {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.05), rgba(42, 109, 244, 0.02));
  border: 1px solid rgba(42, 109, 244, 0.2);
  border-radius: 18px;
  padding: 40px;
  max-width: 600px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(42, 109, 244, 0.3);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  border-color: #2a6df4;
  box-shadow: 0 0 0 3px rgba(42, 109, 244, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  background: #2a6df4;
  color: #fff;
  padding: 16px 40px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.submit-btn:hover {
  background: #3B82F6;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(42, 109, 244, 0.3);
}

.submit-btn:active {
  transform: translateY(-1px);
}

/* ===== POLICY SECTIONS ===== */
.policy-section {
  margin-bottom: 50px;
  animation: fadeInUp 0.6s ease backwards;
}

.policy-section:nth-child(1) {
  animation-delay: 0.1s;
}

.policy-section:nth-child(2) {
  animation-delay: 0.2s;
}

.policy-section:nth-child(3) {
  animation-delay: 0.3s;
}

.policy-section:nth-child(4) {
  animation-delay: 0.4s;
}

.policy-section:nth-child(5) {
  animation-delay: 0.5s;
}

.policy-section:nth-child(6) {
  animation-delay: 0.6s;
}

.policy-section:nth-child(7) {
  animation-delay: 0.7s;
}

.policy-section:nth-child(8) {
  animation-delay: 0.8s;
}

.policy-section h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  display: flex;
  align-items: center;
}

.policy-section h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 28px;
  background: #2a6df4;
  border-radius: 2px;
  margin-right: 16px;
}

.policy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 16px;
}

.prohibited-list,
.guidelines-list,
.disclaimer-list,
.consequences-list {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.prohibited-list li,
.guidelines-list li,
.disclaimer-list li,
.consequences-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #c6c6c6;
  margin-bottom: 18px;
  padding-left: 32px;
  position: relative;
  background: rgba(42, 109, 244, 0.04);
  padding: 16px 16px 16px 40px;
  border-radius: 8px;
  border-left: 3px solid #2a6df4;
  transition: all 0.3s ease;
}

.prohibited-list li:hover,
.guidelines-list li:hover,
.disclaimer-list li:hover,
.consequences-list li:hover {
  background: rgba(42, 109, 244, 0.08);
  transform: translateX(8px);
}

.prohibited-list li::before,
.guidelines-list li::before,
.disclaimer-list li::before,
.consequences-list li::before {
  content: "✓";
  position: absolute;
  left: 12px;
  top: 16px;
  color: #2a6df4;
  font-weight: bold;
  font-size: 18px;
}

.policy-section strong {
  color: #2a6df4;
  font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media(max-width: 768px) {
  .content-inner h1 {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .support-methods h2,
  .common-issues h2,
  .contact-form-section h2,
  .policy-section h2 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .support-item {
    padding: 20px;
    margin-bottom: 16px;
  }

  .issue {
    padding: 20px;
    margin-bottom: 16px;
  }

  .support-form {
    padding: 24px;
  }

  .intro-text {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .prohibited-list li,
  .guidelines-list li,
  .disclaimer-list li,
  .consequences-list li {
    font-size: 14px;
    padding: 12px 12px 12px 32px;
  }

  .policy-section h2::before {
    width: 3px;
    height: 24px;
  }
}

/* ===== REFUND POLICY SPECIFIC STYLES ===== */
.highlight-box {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.08), rgba(42, 109, 244, 0.03));
  border: 1px solid rgba(42, 109, 244, 0.25);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.highlight-box:hover {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.12), rgba(42, 109, 244, 0.05));
  border-color: rgba(42, 109, 244, 0.4);
}

.highlight-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  margin-top: 0;
}

.warning-box {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(255, 69, 0, 0.03));
  border-left: 4px solid #ff4500;
  border-radius: 8px;
  padding: 20px;
  margin: 24px 0;
  transition: all 0.3s ease;
}

.warning-box:hover {
  background: linear-gradient(135deg, rgba(255, 69, 0, 0.12), rgba(255, 69, 0, 0.05));
  box-shadow: 0 12px 30px rgba(255, 69, 0, 0.1);
}

.warning-box p {
  font-size: 15px;
  color: #d0d0d0;
  margin: 0;
  font-weight: 600;
}

.warning-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.warning-box li {
  font-size: 15px;
  color: #c6c6c6;
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.warning-box li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #ff4500;
  font-size: 14px;
}

.example-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.example-box:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.example-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #2a6df4;
  margin-bottom: 16px;
  margin-top: 0;
}

.example-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.example-box li {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
}

.example-box li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #2a6df4;
  font-size: 16px;
}

.process-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  counter-reset: step-counter;
}

.process-list li {
  counter-increment: step-counter;
  font-size: 15px;
  color: #d0d0d0;
  line-height: 1.8;
  padding-left: 40px;
  margin-bottom: 16px;
  position: relative;
  background: rgba(42, 109, 244, 0.03);
  padding: 12px 16px 12px 40px;
  border-radius: 8px;
  border-left: 3px solid #2a6df4;
  transition: all 0.3s ease;
}

.process-list li:hover {
  background: rgba(42, 109, 244, 0.08);
  transform: translateX(8px);
}

.process-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: #2a6df4;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 12px;
}

.refund-table {
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 10px;
  overflow: hidden;
}

.refund-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.refund-row:last-child {
  border-bottom: none;
}

.refund-row:hover {
  background: rgba(42, 109, 244, 0.05);
  padding-left: 24px;
}

.refund-row .day {
  font-weight: 600;
  color: #2a6df4;
  min-width: 80px;
}

.refund-row .amount {
  font-size: 14px;
  color: #d0d0d0;
  text-align: right;
  flex: 1;
  margin-left: 20px;
}

@media(max-width: 768px) {

  .highlight-box,
  .example-box,
  .warning-box {
    padding: 16px;
  }

  .process-list li {
    padding: 12px 16px 12px 36px;
  }

  .refund-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .refund-row .amount {
    text-align: left;
    margin-left: 0;
  }
}

/* ===== PRIVACY POLICY SPECIFIC STYLES ===== */
.info-category {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.06), rgba(42, 109, 244, 0.02));
  border: 1px solid rgba(42, 109, 244, 0.2);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.info-category:nth-child(1) {
  animation-delay: 0.2s;
}

.info-category:nth-child(2) {
  animation-delay: 0.3s;
}

.info-category:nth-child(3) {
  animation-delay: 0.4s;
}

.info-category:hover {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.1), rgba(42, 109, 244, 0.04));
  border-color: rgba(42, 109, 244, 0.35);
  box-shadow: 0 15px 40px rgba(42, 109, 244, 0.12);
  transform: translateY(-4px);
}

.info-category h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2a6df4;
  margin-bottom: 16px;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.info-category h3::before {
  content: "●";
  display: inline-block;
  margin-right: 12px;
  font-size: 12px;
  color: #2a6df4;
}

.security-box {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.03));
  border-left: 4px solid #4caf50;
  border-radius: 12px;
  padding: 24px;
  margin: 20px 0;
  transition: all 0.3s ease;
}

.security-box:hover {
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12), rgba(76, 175, 80, 0.05));
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.12);
}

.security-box .guidelines-list {
  margin: 0;
  padding: 0;
}

.contact-box {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.08), rgba(42, 109, 244, 0.03));
  border: 1px solid rgba(42, 109, 244, 0.25);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

.contact-box:hover {
  background: linear-gradient(135deg, rgba(42, 109, 244, 0.12), rgba(42, 109, 244, 0.05));
  border-color: rgba(42, 109, 244, 0.4);
}

.contact-box p {
  margin: 0;
  font-size: 15px;
  color: #d0d0d0;
}

.contact-box a {
  color: #2a6df4;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-box a:hover {
  color: #3B82F6;
  text-decoration: underline;
}

.retention-table {
  margin: 20px 0;
  background: rgba(255, 255, 255, 0.01);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.retention-row {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
  animation: fadeInUp 0.6s ease backwards;
}

.retention-row:nth-child(1) {
  animation-delay: 0.5s;
}

.retention-row:nth-child(2) {
  animation-delay: 0.6s;
}

.retention-row:nth-child(3) {
  animation-delay: 0.7s;
}

.retention-row:nth-child(4) {
  animation-delay: 0.8s;
}

.retention-row:last-child {
  border-bottom: none;
}

.retention-row:hover {
  background: rgba(42, 109, 244, 0.06);
  padding-left: 28px;
}

.retention-row .data-type {
  font-weight: 600;
  color: #2a6df4;
  font-size: 15px;
  display: flex;
  align-items: center;
}

.retention-row .data-type::before {
  content: "▸";
  margin-right: 12px;
  font-size: 18px;
  color: #2a6df4;
}

.retention-row .retention-period {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.6;
}

@media(max-width: 768px) {
  .info-category {
    padding: 16px;
  }

  .security-box {
    padding: 16px;
  }

  .retention-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .retention-row .data-type {
    margin-bottom: 8px;
  }
}

/* ================= VIDEO REVIEWS SLIDER CUSTOMIZATION ================= */

/* Override the default grid on the container because we moved the grid logic to swiper-wrapper */
.reviews-grid.video-reviews-swiper {
  display: block;
  overflow: hidden;
  /* Needed for Swiper */
  padding-bottom: 40px;
  /* Space for pagination */
  position: relative;
}

/* When Swiper is NOT initialized, the wrapper should act as the grid */
.video-reviews-swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Grid Fallback (matching .reviews-grid media queries) */
@media (max-width: 1100px) {
  .video-reviews-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .video-reviews-swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Pagination Styling */
/* ─── VIDEO SWIPER CUSTOM CONTROLS ─── */
.video-ts-controls {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  grid-column: 1 / -1;
  /* spans all columns if inside a grid */
}

.reviews-grid:not(.swiper-initialized) .video-ts-controls {
  display: none !important;
}

.video-reviews-pagination.swiper-pagination-bullets {
  position: static !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: auto !important;
  margin: 0 !important;
  transform: none !important;
}

.video-reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  margin: 0 !important;
  opacity: 1;
  transition: background 0.2s;
}

.video-reviews-pagination .swiper-pagination-bullet-active {
  background: #a8e063;
}