* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at top left, #0f1a3a, #050814);
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 80px;
  background: #050816f2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.header h1 {
  width: 80px;
}

.header h1 img {
  display: block;
  width: 100%;
}

.header .nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s;
}

.header .nav a:hover {
  color: #ffffffcb;
}

.header .sign-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 100px;
  background: #ffc83d;
  color: #000;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s;
}

.header .sign-btn:hover {
  background: #f4b41a;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 6px 0;
  transition: .3s;
}

/* header end */

.hero {
  min-height: calc(100vh - 80px);
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background: radial-gradient(circle at top left, #0f1a3a, #050814); */
}

.hero .hero-content {
  width: 50%;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #fff;
}

.hero h1 span {
  color: #ffc83d;
}

.hero .subtitle {
  font-size: 15px;
  color: #cbd5f5;
  margin-bottom: 30px;
}

.hero .buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.hero .primary {
  background: #ffc83d;
  color: #000;
  border: none;
  padding: 12px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  text-decoration: none;
}

.hero .secondary {
  background: transparent;
  color: #fff;
  border: 1px solid #555;
  padding: 12px 18px;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
}

.hero .languages {
  font-size: 13px;
  color: #aab3d6;
  margin-bottom: 30px;
}

.hero .stats {
  display: flex;
  gap: 40px;
}

.hero .stats div strong {
  display: block;
  font-size: 20px;
  color: #fff;
  font-weight: 600;
}

.hero .stats div span {
  font-size: 12px;
  color: #aab3d6;
}

.hero .hero-video {
  width: 40%;
  background: rgba(255, 255, 255, 0.05);
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .hero-video iframe {
  width: 100%;
  height: 300px;
  border-radius: 8px;
}

.modules {
  padding: 80px;
  /* background: radial-gradient(circle at top left, #0f1a3a, #050814); */
  color: #fff;
}

.modules-header {
  max-width: 650px;
  margin-bottom: 40px;
}

.modules-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.modules-header p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.module-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  align-items: center;
}

/* Image square */
.module-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
  background: #000;
}

/* Image fills the square */
.module-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.module-content {
  padding: 20px;
}

.module-content h3 {
  margin: 10px 0 6px;
  font-size: 18px;
  color: #fff;
}

.module-content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}

.tracks {
  padding: 80px;
  color: #fff;
}

.tracks-header {
  max-width: 650px;
  margin-bottom: 40px;
}

.tracks-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.tracks-header p {
  font-size: 14px;
  color: #cbd5f5;
  line-height: 1.6;
}

.tracks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.track-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.track-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.track-card p {
  font-size: 13px;
  color: #cbd5f5;
  line-height: 1.5;
  margin-bottom: 16px;
}

.track-card .tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.track-card .tags span {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #cbd5f5;
}

.track-card:hover {
  border-color: #ffc83d;
  background: linear-gradient(135deg,
      rgba(255, 200, 61, 0.15),
      rgba(255, 255, 255, 0.03));
}

.track-card:hover h3 {
  color: #ffc83d;
}


/* Section Background */
.why-ttfx {
  /* background: radial-gradient(circle at top, #0f172a, #020617); */
  padding: 80px;
  font-family: "Inter", sans-serif;
  color: #e5e7eb;
}



/* Heading */
.heading {
  max-width: 700px;
  margin-bottom: 50px;
}

.heading h2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}

.heading h2 span {
  color: #38bdf8;
}

.heading p {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #94a3b8;
}

/* Cards Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* Card Style */
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(56, 189, 248, 0.15);
}

/* Accent Line */
.feature-card .line {
  width: 40px;
  height: 4px;
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
  border-radius: 10px;
  margin-bottom: 16px;
}

/* Card Text */
.feature-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5f5;
}


.programs {
  padding: 80px;
  font-family: Inter, system-ui, sans-serif;
  color: #e5e7eb;
}



/* Header */
.section-head {
  max-width: 600px;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 34px;
  font-weight: 700;
  color: #fff;
}

.section-head p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: #9ca3af;
}

/* Cards layout */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Card base */
.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), rgba(255, 255, 255, .01));
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 32px;
  transition: .35s ease;
}

.card:hover {
  transform: translateY(-6px);
  border: 1px solid #facc15;
  background: radial-gradient(circle at top, rgba(250, 204, 21, .25), rgba(255, 255, 255, .02));
  box-shadow: 0 0 0 1px rgba(250, 204, 21, .2),
    0 30px 60px rgba(250, 204, 21, .15);
}



/* Text */
.card h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.inr {
  font-size: 13px;
  margin-top: 4px;
  color: #9ca3af;
}

/* List */
.card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}

.card ul li {
  font-size: 14px;
  margin-bottom: 10px;
  padding-left: 18px;
  position: relative;
  color: #cbd5f5;
}

.card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #facc15;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.btn.outline {
  background: transparent;
  border: 1px solid #475569;
  color: #e5e7eb;
}

.btn.outline:hover {
  background: #1e293b;
}

.btn.primary {
  background: linear-gradient(90deg, #facc15, #fde68a);
  border: none;
  color: #000;
  font-weight: 600;
}

/* Footer note */
.footnote {
  margin-top: 35px;
  font-size: 14px;
  color: #9ca3af;
}


.testimonial-section {
  padding: 80px;
  color: #fff;
}

.testimonial-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.sub {
  color: #aab0c0;
  max-width: 520px;
  margin-bottom: 40px;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  flex: 0 0 33.333%;
  padding: 15px;
  box-sizing: border-box;
}

.testimonial-card>p {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 25px;
  line-height: 1.6;
  min-height: 140px;
}

.profile {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 600;
  background: linear-gradient(135deg, #6b8cff, #ff6fb1);
}

.profile h4 {
  margin: 0;
  font-size: 15px;
}

.profile span {
  font-size: 13px;
  color: #8fa1ff;
}

.slide-nav {
  margin-top: 25px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.slide-nav button {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

.slide-nav button:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* Tablet */
@media (max-width: 991px) {
  .testimonial-card {
    flex: 0 0 50%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-card {
    flex: 0 0 100%;
  }
}



.payment-section {
  padding: 80px;
  color: #fff;
}

.payment-header {
  max-width: 520px;
  margin-bottom: 50px;
}

.payment-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
}

.payment-header p {
  color: #b4bbd6;
  line-height: 1.6;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.payment-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 26px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.payment-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.08),
      transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.payment-card:hover {
  transform: translateY(-6px);
  border-color: rgba(140, 160, 255, 0.4);
}

.payment-card:hover::after {
  opacity: 1;
}

.payment-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.payment-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #c9d1ff;
}

/* Highlight card */
.payment-card.highlight {
  border-color: rgba(255, 150, 220, 0.5);
  background: linear-gradient(180deg,
      rgba(255, 150, 220, 0.08),
      rgba(255, 255, 255, 0.04));
}

/* Tablet */
@media (max-width: 991px) {
  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .payment-grid {
    grid-template-columns: 1fr;
  }
}



.team-curved {
  padding: 80px;
}


.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-header h2 {
  font-size: 34px;
  margin-bottom: 12px;
  color: #fff;
}

.team-header p {
  color: #b4bbd6;
  line-height: 1.6;
}

.team-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.curved-card {
  position: relative;
  text-align: center;
}

.photo {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #0b1633;
  position: relative;
  z-index: 2;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  margin-top: -70px;
  padding: 100px 25px 35px;
  background: #fff;
  color: #0b1633;
  border-radius: 80px 80px 24px 24px;
}

.card-body h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.card-body span {
  font-size: 14px;
  color: #0b1633;

}

.card-body p {
  font-size: 14px;
  line-height: 1.6;
  margin: 6px 0 12px;
  color: #0b1633;
}

/* Tablet */
@media (max-width: 991px) {
  .team-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-wrap {
    grid-template-columns: 1fr;
  }
}



.contact-page {
  padding: 80px;
  color: #fff;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.contact-info p {
  color: #b4bbd6;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  margin-bottom: 10px;
  color: #cdd4ff;
}

.contact-form {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 30px;
  backdrop-filter: blur(14px);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
}

.contact-form textarea {
  min-height: 120px;
  resize: none;
}

.contact-form button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, #6b8cff, #ff6fb1);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

#formStatus {
  margin-top: 10px;
  font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}



.site-footer {
  background: #070a15;
  color: #cfd7ff;
  padding: 70px 20px 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 22px;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #6b8cff, #ff6fb1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 14px;
  color: #fff;
}

.footer-col p {
  line-height: 1.6;
  color: #b4bbd6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cfd7ff;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #8fa1ff;
}

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
}

.disclaimer {
  margin-top: 6px;
  color: #8b93b8;
}

/* Tablet */
@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
  }

  .hero .hero-content,
  .hero .hero-video {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 50px 30px;
    gap: 40px;
  }

  .modules,
  .tracks,
  .why-ttfx,
  .programs,
  .testimonial-section,
  .payment-section,
  .team-curved,
  .contact-page {
    padding: 30px 30px;
  }

  .hero h1,
  .modules-header h2,
  .tracks-header h2,
  .heading h2,
  .section-head h2,
  .testimonial-section h2,
  .payment-header h2,
  .team-header h2,
  .contact-info h2 {
    font-size: 26px;
  }

  .hero .subtitle,
  .heading p {
    font-size: 14px;
  }

  .hero .primary,
  .hero .secondary {
    font-size: 14px;
  }

  .hero .stats div strong {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 1026px) {

  .nav,
  .auth {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #020617;
    flex-direction: column;
    padding: 20px;
    gap: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }

  .nav a {
    font-size: 16px;
  }

  .nav.active {
    display: flex;
  }
}
