/* ============================================
   Indian Transport Academy — Clean Stylesheet
   Palette: Saffron, White, India Green
   ============================================ */

:root {
  --saffron: #ff7800;
  --saffron-soft: #ff9933;
  --green: #138808;
  --green-soft: #1ea30f;
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --bg: #ffffff;
  --bg-soft: #fff8f1;
  --bg-alt: #f5faf3;
  --line: #ebe6df;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --radius: 14px;
  --maxw: 1180px;
  --font-sans: 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans Devanagari', sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  max-width: 100%;
  display: block
}

a {
  color: inherit;
  text-decoration: none
}

h1,
h2,
h3,
h4 {
  /* margin: 0 0 .5em; */
  line-height: 1.2;
  font-weight: 800
}

h1 {
  font-size: clamp(2rem, 5vw, 3.6rem)
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem)
}

h3 {
  font-size: 1.2rem
}

p {
  margin: 0 0 1em
}

mark {
  background: linear-gradient(transparent 60%, rgba(255, 120, 0, .35) 60%);
  color: inherit;
  padding: 0 .15em
}

.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  /* padding: 80px 0 */
}

.chapter {
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--saffron);
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 12px
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 780px
}

.accent {
  color: var(--saffron)
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s;
  text-align: center
}

.btn-primary {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-soft));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 120, 0, .35)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 120, 0, .45)
}

.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff
}

.btn-lg {
  padding: 16px 28px;
  font-size: 1.05rem
}

.btn-block {
  width: 100%;
  display: block
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line)
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--saffron), var(--green));
  color: #fff;
  font-weight: 900
}

.brand-name {
  font-weight: 800;
  letter-spacing: .05em;
  font-size: .95rem
}

.main-nav {
  margin-left: auto;
  display: flex;
  gap: 22px;
  font-weight: 600
}

.main-nav a:hover {
  color: var(--saffron)
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 120, 0, .35), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(19, 136, 8, .30), transparent 55%),
    linear-gradient(180deg, #fff, #fff8f1);
  /* padding: 90px 0 100px; */
  text-align: center;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto
}

.eyebrow {
  font-weight: 800;
  color: var(--green);
  letter-spacing: .25em;
  font-size: .85rem;
  margin-bottom: 18px
}

.hero .lead {
  margin: 18px auto 32px
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap
}

.hero-author {
  margin-top: 30px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .08em
}

/* About */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.bullets li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .9rem
}

blockquote {
  margin: 18px 0;
  padding: 18px 22px;
  border-left: 4px solid var(--saffron);
  background: var(--bg-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--ink)
}

blockquote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-weight: 700;
  color: var(--saffron);
  font-size: .85rem
}

.about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow)
}

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 18px
}

.t-item {
  padding: 16px;
  border-left: 3px solid var(--green);
  background: var(--bg-alt);
  border-radius: 0 12px 12px 0
}

.t-year {
  display: inline-block;
  font-weight: 800;
  color: var(--green);
  letter-spacing: .1em;
  font-size: .8rem;
  margin-bottom: 4px
}

.t-item h4 {
  margin: 0 0 4px;
  font-size: 1rem
}

.t-item p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem
}

.section.about .container {
  max-width: 1450px;
  padding: 0 24px;
  margin-top: 60px;
}

.section.about .about-hero-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  display: block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  max-width: 100%;
}

.section.about .about-hero-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 90, 34, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.section.about .avatar-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.about .avatar-ring {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  padding: 4px;
  background: conic-gradient(#138808 0deg 120deg,
      #ffffff 120deg 240deg,
      #F15A22 240deg 360deg);
  flex-shrink: 0;
}

.section.about .avatar-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #eee;
  overflow: hidden;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section.about .avatar-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section.about .founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff4ee;
  border: 1px solid #ffd4bc;
  color: #F15A22;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section.about .founder-badge::before {
  content: '★';
  font-size: 9px;
}

.section.about .hero-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 4px;
}

.section.about .hero-name em {
  font-style: italic;
  color: var(--saffron);
}

.section.about .name-underline {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  border-radius: 2px;
  margin-bottom: 14px;
}

.section.about .hero-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #000000;
  margin-bottom: 16px;
  font-weight: 700;
}

.section.about .hero-desc strong {
  color: var(--green);
  font-weight: 900;
}

.section.about .chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.section.about .chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.section.about .chip:nth-child(1) {
  background: #fff4ee;
  color: var(--saffron);
}

.section.about .chip:nth-child(1)::before {
  content: '●';
  font-size: 8px;
  color: var(--saffron);
}

.section.about .chip:nth-child(2) {
  background: #fff0f0;
  color: #e03e3e;
}

.section.about .chip:nth-child(2)::before {
  content: '●';
  font-size: 8px;
  color: #e03e3e;
}

.section.about .chip:nth-child(3) {
  background: #eef8f1;
  color: var(--green);
}

.section.about .chip:nth-child(3)::before {
  content: '●';
  font-size: 8px;
  color: var(--green);
}

.section.about .quote-card {
  background: var(--saffron);
  border-radius: 16px;
  padding: 40px 52px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.section.about .quote-mark-l,
.section.about .quote-mark-r {
  position: absolute;
  font-family: 'Rajdhani', sans-serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 900;
}

.section.about .quote-mark-l {
  top: -10px;
  left: 20px;
}

.section.about .quote-mark-r {
  bottom: -30px;
  right: 20px;
}

.section.about .quote-text {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.section.about .quote-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 10px;
}

.section.about .quote-divider-line {
  height: 1px;
  width: 50px;
  background: rgba(255, 255, 255, 0.5);
}

.section.about .quote-cite {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.section.about .timeline-card {
  background: #fff;
  border-radius: 16px;
  padding: 36px 36px 32px;
  margin-bottom: 20px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.section.about .chapter-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
  float: right;
  margin-top: 4px;
}

.section.about .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
  clear: both;
}

.section.about .section-label::before,
.section.about .section-label::after {
  content: '';
  display: inline-block;
  height: 2px;
  width: 20px;
  background: var(--saffron);
  border-radius: 2px;
}

.section.about .timeline-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}

.section.about .timeline-heading em {
  font-style: italic;
  color: var(--saffron);
}

.section.about .timeline-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 36px;
  line-height: 1.5;
}

.section.about .timeline-track {
  position: relative;
  margin-bottom: 0;
}

.section.about .timeline-line {
  position: absolute;
  top: 30px;
  left: 40px;
  right: 40px;
  height: 2px;
  border-top: 2px dashed #d0ccc4;
  z-index: 0;
}

.section.about .timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.section.about .t-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

.section.about .t-year-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.section.about .t-step:nth-child(1) .t-year-circle {
  background: var(--saffron);
}

.section.about .t-step:nth-child(2) .t-year-circle {
  background: #1A2B5C;
}

.section.about .t-step:nth-child(3) .t-year-circle {
  background: var(--green);
}

.section.about .t-step:nth-child(4) .t-year-circle {
  background: #d4a017;
}

.section.about .t-step-card {
  background: #fafaf8;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 12px;
  width: 100%;
}

.section.about .t-step-icon {
  font-size: 18px;
  margin-bottom: 6px;
  display: block;
}

.section.about .t-step-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  line-height: 1.3;
}

.section.about .t-step-desc {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
}

/* Mobile-only: vertical timeline + centered circle+box reveal (staggered) */
@media (max-width: 768px) {
  .section.about .timeline-steps {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 6px 12px 28px;
  }

  .section.about .timeline-line {
    display: none;
  }

  .section.about .t-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 8px 20px;
    position: relative;
  }

  /* center vertical connector behind steps */
  .section.about .t-step::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-1px);
    top: 0;
    width: 2px;
    height: 100%;
    background: var(--line);
    border-radius: 2px;
    z-index: 0;
    opacity: 0.9;
  }

  .section.about .t-year-circle {
    width: 64px;
    height: 64px;
    margin: 8px 0 16px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
    transition: transform 0.55s cubic-bezier(.2, .9, .2, 1), opacity 0.45s ease;
    opacity: 0;
    transform: translateY(16px) scale(.98);
  }

  .section.about .t-step-card {
    width: 96%;
    max-width: 560px;
    background: #fff;
    border-radius: 14px;
    padding: 18px 18px;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.55s cubic-bezier(.2, .9, .2, 1), opacity 0.45s ease;
    opacity: 0;
    transform: translateY(24px);
    z-index: 1;
  }

  /* when step is visible: animate circle first, then card */
  .section.about .t-step.in-view .t-year-circle {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .section.about .t-step.in-view .t-step-card {
    opacity: 1;
    transform: translateY(0);
  }

  /* stagger per-step delays: circle earlier, card slightly after */
  .section.about .t-step:nth-child(1).in-view .t-year-circle {
    transition-delay: 0s;
  }

  .section.about .t-step:nth-child(1).in-view .t-step-card {
    transition-delay: 0.12s;
  }

  .section.about .t-step:nth-child(2).in-view .t-year-circle {
    transition-delay: 0.12s;
  }

  .section.about .t-step:nth-child(2).in-view .t-step-card {
    transition-delay: 0.24s;
  }

  .section.about .t-step:nth-child(3).in-view .t-year-circle {
    transition-delay: 0.24s;
  }

  .section.about .t-step:nth-child(3).in-view .t-step-card {
    transition-delay: 0.36s;
  }

  .section.about .t-step:nth-child(4).in-view .t-year-circle {
    transition-delay: 0.36s;
  }

  .section.about .t-step:nth-child(4).in-view .t-step-card {
    transition-delay: 0.48s;
  }

  .section.about .t-step:nth-child(5).in-view .t-year-circle {
    transition-delay: 0.48s;
  }

  .section.about .t-step:nth-child(5).in-view .t-step-card {
    transition-delay: 0.60s;
  }

  .section.about .t-step:nth-child(6).in-view .t-year-circle {
    transition-delay: 0.60s;
  }

  .section.about .t-step:nth-child(6).in-view .t-step-card {
    transition-delay: 0.72s;
  }

  .section.about .t-step:nth-child(7).in-view .t-year-circle {
    transition-delay: 0.72s;
  }

  .section.about .t-step:nth-child(7).in-view .t-step-card {
    transition-delay: 0.84s;
  }

  .section.about .t-step:nth-child(8).in-view .t-year-circle {
    transition-delay: 0.84s;
  }

  .section.about .t-step:nth-child(8).in-view .t-step-card {
    transition-delay: 0.96s;
  }

  /* typography tweaks for mobile */
  .section.about .t-step-name {
    font-weight: 800;
  }

  .section.about .t-step-desc {
    font-size: 14px;
    color: var(--muted);
  }
}

.section.about .stats-card {
  background: #239B56;
  border-radius: 16px;
  padding: 40px 36px 36px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  width: 100%;
  background:
    url('images/map.png') center / cover no-repeat;
}

.section.about .stats-card::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(241, 90, 34, 0.12);
  pointer-events: none;
}

.section.about .stats-chapter {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: 600;
  float: right;
}

.section.about .stats-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
  clear: both;
}

.section.about .stats-section-label::before,
.section.about .stats-section-label::after {
  content: '';
  display: inline-block;
  height: 2px;
  width: 20px;
  background: var(--white);
  border-radius: 2px;
}

.section.about .stats-heading {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  line-height: 1.2;
}

.section.about .stats-heading em {
  font-style: italic;
  color: #fff;
}

.section.about .stats-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.5;
}

.section.about .stats-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 16px;
}

.section.about .stat-item {
  border-radius: 12px;
  padding: 20px 18px;
}

.section.about .stat-item:nth-child(1) {
  background: #FF7A1A;
}

.section.about .stat-item:not(:nth-child(1)) {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.section.about .stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 14px;
}

.section.about .stat-item:nth-child(1) .stat-icon {
  background: rgba(255, 255, 255, 0.25);
}

.section.about .stat-item:nth-child(2) .stat-icon {
  background: rgba(19, 136, 8, 0.3);
}

.section.about .stat-item:nth-child(3) .stat-icon {
  background: rgba(241, 90, 34, 0.3);
}

.section.about .stat-item:nth-child(4) .stat-icon {
  background: rgba(212, 160, 23, 0.3);
}

.section.about .stat-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.section.about .stat-number span {
  font-size: 22px;
}

.section.about .stat-label {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 6px;
}

.section.about .stat-desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.section.about .stat-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
}

.section.about .stat-link::before {
  content: '▶';
  font-size: 8px;
}

.section.about .closing-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 52px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0.0) 100%),
    url('images/down_truck.png') center / cover no-repeat;
}

.section.about .closing-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron) 33%, #fff 33% 66%, var(--green) 66%);
}

.section.about .tricolor-left,
.section.about .tricolor-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4px;
  display: flex;
  flex-direction: column;
}

.section.about .tricolor-left {
  left: 0;
}

.section.about .tricolor-right {
  right: 0;
}

.section.about .tricolor-left>div,
.section.about .tricolor-right>div {
  flex: 1;
}

.section.about .tricolor-left>div:nth-child(1),
.section.about .tricolor-right>div:nth-child(1) {
  background: var(--saffron);
}

.section.about .tricolor-left>div:nth-child(2),
.section.about .tricolor-right>div:nth-child(2) {
  background: #fff;
  border-left: 1px solid #eee;
}

.section.about .tricolor-left>div:nth-child(3),
.section.about .tricolor-right>div:nth-child(3) {
  background: var(--green);
}

.section.about .closing-quote-mark {
  font-family: 'Rajdhani', sans-serif;
  font-size: 52px;
  color: var(--saffron);
  line-height: 1;
  text-align: center;
  display: block;
  margin-bottom: 12px;
}

.section.about .closing-quote-text {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--ink);
  text-align: center;
  margin-bottom: 20px;
}

.section.about .closing-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
}

.section.about .closing-divider-line {
  height: 1px;
  width: 50px;
  background: var(--line);
}

.section.about .closing-cite {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--muted);
  text-transform: uppercase;
}

.section.about .cta-wrap {
  text-align: center;
  margin-top: 28px;
}

@media (max-width: 680px) {
  .section.about .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section.about .about-hero-card {
    text-align: center;
  }

  .section.about .hero-left {
    min-width: 0;
    width: 100%;
    padding: 24px 18px 28px;
    box-sizing: border-box;
  }

  .section.about .avatar-wrap {
    justify-content: center;
    float: none;
    margin-left: auto;
    margin-right: auto;
  }

  .section.about .chips {
    justify-content: center;
  }

  .section.about .name-underline {
    margin: 0 auto 14px;
  }

  .section.about .timeline-card {
    padding: 24px 18px 28px;
  }

  .section.about .timeline-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .section.about .timeline-line {
    display: none;
  }

  .section.about .stats-card {
    padding: 28px 18px 30px;
  }

  .section.about .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section.about .hero-name {
    font-size: 2rem;
  }

  .section.about .quote-text,
  .section.about .closing-quote-text {
    font-size: 17px;
  }

  .section.about .quote-card,
  .section.about .closing-card {
    padding: 28px 20px;
    background: #ffffff;
  }

  .section.about .chapter-label,
  .section.about .stats-chapter {
    position: static;
    float: none;
    display: block;
    text-align: center;
    margin: 0 0 10px;
  }
}

/* Dedication */
.dedication {
  background: var(--bg-alt)
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 36px 0
}

.stat {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow)
}

.stat .num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--saffron);
  display: block;
  line-height: 1
}

.stat h4 {
  margin: 8px 0 6px
}

.stat p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem
}

.philosophy {
  max-width: 760px;
  margin: 30px auto 0;
  text-align: center;
  border: none;
  background: transparent;
  font-size: 1.15rem
}

.philosophy cite {
  color: var(--green)
}

/* Opportunity */
.opportunity-section {
  position: relative;
  overflow: hidden;
  background-image: url("images/BG.png");
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  padding: 60px 40px;
}

.opportunity-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(175deg,
      rgba(250, 215, 160, 0.55) 0%,
      rgba(255, 151, 80, 0.24) 35%,
      rgba(10, 15, 30, 0.72) 72%,
      rgba(10, 15, 30, 0.92) 100%);
  z-index: 0;
}

.opportunity-section>* {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.opportunity-head {
  padding: 52px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.opportunity-sup {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #904308;
  opacity: 0.85;
}

.opportunity-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.opportunity-title,
.opportunity-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(26px, 5vw, 44px);
  line-height: 1.15;
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 768px) {

  .opportunity-title,
  .opportunity-subtitle {
    font-weight: 600;
  }
}

/* Tricolor 3-Layer Stroke Effect */
.tc-line {
  display: block;
  position: relative;
  font-size: clamp(30px, 5.5vw, 54px);
  font-weight: 900;
  font-family: 'Arial Black', Arial, sans-serif;
  height: 1.22em;
  margin-bottom: 6px;
  line-height: 1.2;
}

.tc-line>span {
  position: absolute;
  inset: 0;
  display: block;
  pointer-events: none;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
}

/* Layer 1 — Orange outer stroke (bottom layer) */
.tc-orange {
  color: #FF7800;
  -webkit-text-stroke: 16px #FF7800;
  paint-order: stroke fill;
  z-index: 1;
}

/* Layer 2 — Green middle stroke (middle layer) */
.tc-green {
  color: #138808;
  -webkit-text-stroke: 8px #138808;
  paint-order: stroke fill;
  z-index: 2;
}

/* Layer 3 — White text on top (visible fill) */
.tc-white {
  color: #FFFFFF;
  -webkit-text-stroke: 0;
  z-index: 3;
  text-shadow: 0 6px 0 rgba(0, 0, 0, 0.16), 0 12px 20px rgba(0, 0, 0, 0.12);
}

/* Accessible only text for screen-readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}


.text-orange {
  color: #ffffff;
}

.text-navy {
  color: #ffffff;
}

.opportunity-head-badge {
  position: absolute;
  top: 52px;
  right: 0;
  background: var(--saffron);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(255, 120, 0, 0.45);
}

.opportunity-reasons-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 12px;
  padding-left: 8px;
  border-left: 3px solid var(--saffron);
}

.opportunity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.opportunity-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: 14px;
  padding: 20px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.10);
  border-top: 4px solid transparent;
  transition: transform .22s ease, box-shadow .22s ease;
}

.opportunity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.card-orange {
  border-top-color: var(--saffron);
}

.card-blue {
  border-top-color: #2563EB;
}

.card-green {
  border-top-color: var(--green);
}

.card-number {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.45;
  color: #333;
}

.card-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 2px;
}

.card-orange .card-icon-wrap {
  background: rgba(255, 120, 0, 0.12);
}

.card-blue .card-icon-wrap {
  background: rgba(37, 99, 235, 0.10);
}

.card-green .card-icon-wrap {
  background: rgba(30, 163, 15, 0.12);
}

.card-title {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}

.card-copy {
  font-size: 11.5px;
  color: #555;
  line-height: 1.55;
  flex: 1;
}

.card-badge {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
  margin-top: 4px;
}

.card-orange .card-badge {
  background: rgba(255, 120, 0, 0.13);
  color: var(--saffron);
}

.card-blue .card-badge {
  background: rgba(37, 99, 235, 0.10);
  color: #2563EB;
}

.card-green .card-badge {
  background: rgba(30, 163, 15, 0.13);
  color: var(--green);
}

.opportunity-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(380px, 1.1fr) 1fr;
  gap: 32px;
  padding: 36px;
  min-height: 520px;
  background: linear-gradient(180deg, rgba(3, 6, 12, 0), rgba(5, 11, 22, 0) 45%, rgba(8, 14, 24, 0)),
    url("images/s1.2.png") right center/cover no-repeat;
  background-color: #07101f;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  overflow: hidden;
  margin-top: 100px;
  box-shadow: 0 32px 90px rgba(3, 6, 15, 0.45);
}

.opportunity-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 60%);
  pointer-events: none;
}

.opportunity-panel>* {
  position: relative;
  z-index: 1;
}

.opportunity-panel-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  max-width: 640px;
}

.opportunity-stats-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

.stats-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  width: fit-content;
  gap: 10px;
}

.stats-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.stats-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border: 1px solid rgba(255, 140, 0, 0.4);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

.opportunity-panel h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 800;
  color: #fff;
  line-height: 0.95;
}

.opportunity-panel h1 span {
  color: var(--saffron-soft);
}

.opportunity-panel .panel-copy {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.80);
  font-size: 1.28rem;
  line-height: 1.75;
}

.stats-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--saffron-soft);
}

.stats-big {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stats-unit {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.stats-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
  max-width: 320px;
}

.opportunity-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.opportunity-stat-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 18px 16px 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.2s;
}

.opportunity-stat-card:hover {
  background: rgba(255, 255, 255, 0.11);
}

.stat-number {
  font-family: var(--font-sans);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  line-height: 1;
}

.stat-orange .stat-number {
  color: var(--saffron-soft);
}

.stat-blue .stat-number {
  color: #60A5FA;
}

.stat-green .stat-number {
  color: var(--green-soft);
}

.stat-title {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.45;
  margin-top: 4px;
  flex: 1;
}

.stat-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 8px;
  padding: 3px 9px;
  border-radius: 20px;
  align-self: flex-start;
}

.stat-orange .stat-label {
  background: rgba(255, 120, 0, 0.25);
  color: var(--saffron-soft);
}

.stat-blue .stat-label {
  background: rgba(96, 165, 250, 0.20);
  color: #60A5FA;
}

.stat-green .stat-label {
  background: rgba(56, 212, 139, 0.20);
  color: var(--green-soft);
}

.panel-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  margin-bottom: 22px;
}

.opportunity-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.opportunity-cta-text {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 700;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.opportunity-cta-text span {
  color: var(--saffron-soft);
}

.opportunity-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-soft));
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(255, 120, 0, 0.50);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
}

.opportunity-button:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255, 120, 0, 0.60);
}

.opportunity-note {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  font-weight: 500;
}

.blinking-text {
  color: #FBBF24;
  font-weight: 700;
  animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.opportunity-banner {
  margin-top: 0;
  background: linear-gradient(90deg, var(--saffron) 0%, #F5A030 100%);
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-radius: 0 0 18px 18px;
}

.opportunity-banner-text {
  font-family: var(--font-sans);
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 800;
  color: #fff;
  flex: 1;
  min-width: 200px;
}

.opportunity-banner-text span {
  color: rgba(255, 255, 255, 0.80);
  font-weight: 600;
}

.banner-btn {
  display: inline-block;
  background: #fff;
  color: var(--saffron);
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 40px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}

.banner-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.20);
}

.banner-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
  font-weight: 500;
}

.banner-note .blinking-text {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 720px) {

  .opportunity-panel {
    grid-template-columns: 1fr;
    padding: 26px 20px;
    height: auto;
    min-height: 520px;
    margin-top: 32px;
    background-position: center center;
    background-size: cover;
  }

  .opportunity-panel-body {
    justify-content: flex-start;
    gap: 22px;
    max-width: 100%;
  }

  .opportunity-panel .panel-copy {
    max-width: 100%;
    font-size: 1.12rem;
    line-height: 1.65;
  }

  .opportunity-cards,
  .opportunity-stats {
    grid-template-columns: 1fr;
  }

  .opportunity-stats-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .opportunity-action {
    flex-direction: column;
    align-items: flex-start;
  }

  .opportunity-banner {
    flex-direction: column;
    border-radius: 0 0 12px 12px;
  }
}

@media (max-width: 480px) {
  .opportunity-panel {
    padding: 22px 16px 18px;
  }

  .opportunity-head {
    padding: 36px 0 20px;
  }
}

/* Skills */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px
}

.skills-grid article {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s
}

.skills-grid article:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--saffron)
}

.skills-grid .num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--saffron);
  display: block;
  margin-bottom: 6px
}

.skills-grid h3 {
  margin: 0 0 8px;
  font-size: 1.05rem
}

.skills-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem
}

/* Audience */
.audience {
  background: var(--bg-soft)
}

.aud-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 30px
}

.aud-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow)
}

.aud-card h3 {
  color: var(--saffron)
}

.aud-card p {
  margin: 0;
  color: var(--muted)
}

/* Challenges */
.ch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 30px
}

.ch-card {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--green)
}

.ch-card .num {
  display: inline-block;
  background: var(--green);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  font-weight: 800;
  margin-bottom: 10px
}

@media (max-width: 1200px) {
  .ch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 840px) {
  .ch-grid {
    grid-template-columns: 1fr;
  }
}

/* Courses */
.courses {
  background: var(--bg-alt)
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px
}

.course {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .2s
}

.course:hover {
  transform: translateY(-4px)
}

.course-no {
  font-weight: 800;
  color: var(--saffron);
  letter-spacing: .15em;
  font-size: .8rem
}

.course h3 {
  margin: 8px 0 4px;
  font-size: 1.15rem
}

.course-sub {
  color: var(--green);
  font-weight: 700;
  font-style: italic;
  margin-bottom: 10px
}

.tags {
  list-style: none;
  padding: 0;
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px
}

.tags li {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600
}

.outcome {
  margin-top: auto;
  font-weight: 800;
  color: var(--green)
}

/* YouTube */
.youtube {
  background: #0e0e0e;
  color: #fff;
  text-align: center
}

.youtube h2 {
  color: #fff
}

.brand-tag {
  color: var(--saffron-soft);
  font-weight: 700;
  letter-spacing: .2em;
  font-size: .85rem;
  margin-bottom: 6px
}

.yt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
  text-align: left
}

.yt-card {
  background: #1a1a1a;
  border: 1px solid #2b2b2b;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s
}

.yt-card:hover {
  transform: translateY(-3px);
  border-color: var(--saffron)
}

.yt-thumb {
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, var(--saffron), var(--green))
}

.yt-card h4 {
  margin: 14px 16px 4px
}

.yt-card p {
  /* margin: 0 16px 16px; */
  color: #bdbdbd;
  font-size: .9rem
}

.yt-stats {
  display: flex;
  /* flex-wrap: wrap; */
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-start;
  max-height: 250px;
}

.yt-stat-pill {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
  flex: 1 1 70px;
  padding: 18px 18px 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
  overflow: hidden;
}

.yt-stat-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 38%);
  opacity: 0.35;
  pointer-events: none;
}

.yt-stat-num,
.yt-stat-label {
  position: relative;
  z-index: 1;
}

.yt-stat-num {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  font-weight: 800;
  color: #fff;
}

.yt-stat-label {
  display: block;
  margin-top: 4px;
  color: #ffd27d;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.yt-stat-pill:nth-child(1) {
  border-color: rgba(255, 137, 84, 0.22);
}

.yt-stat-pill:nth-child(2) {
  border-color: rgba(80, 146, 255, 0.22);
}

.yt-stat-pill:nth-child(3) {
  border-color: rgba(77, 220, 87, 0.22);
}

@media (max-width: 860px) {
  .yt-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-height: none;
  }

  .yt-stat-pill {
    min-width: 0;
    flex: 1 1 calc(33.333% - 10px);
    max-width: 220px;
    padding: 14px 12px;
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
  }

  .yt-stat-num {
    font-size: 1.8rem;
  }

  .yt-stat-label {
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 580px) {
  .yt-stats {
    gap: 8px;
  }

  .yt-stat-pill {
    flex: 1 1 calc(33.333% - 8px);
    max-width: 150px;
    padding: 12px 10px;
  }

  .yt-stat-num {
    font-size: 1.5rem;
  }

  .yt-stat-label {
    font-size: 0.7rem;
  }
}

/* Outcomes */
.out-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px
}

.out-card {
  padding: 24px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow)
}

.badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--green);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700
}

/* FAQ */
.faq {
  background: var(--bg-soft)
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04)
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px
}

.faq summary::after {
  content: "+";
  color: var(--saffron);
  font-size: 1.4rem;
  line-height: 1
}

.faq details[open] summary::after {
  content: "–"
}

.faq details p {
  margin: 12px 0 0;
  color: var(--muted)
}

/* Register */
.register {
  background: linear-gradient(135deg, #fff7ee, #eefae9)
}

.register-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center
}

.price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 14px 0
}

.price .now {
  font-size: 3rem;
  font-weight: 900;
  color: var(--saffron)
}

.price .was {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 1.3rem
}

.timer {
  background: var(--ink);
  color: #fff;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .9rem
}

.register-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow)
}

.register-form h3 {
  margin: 0 0 6px;
  color: var(--green)
}

.register-form label {
  display: block;
  margin: 14px 0;
  font-weight: 600;
  font-size: .9rem
}

.register-form input {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit
}

.register-form input:focus {
  outline: 2px solid var(--saffron);
  border-color: var(--saffron)
}

/* Footer */

/* ==========================
   Mobile responsiveness overrides
   Applied as conservative, global fixes to improve stacking
   and spacing for small screens (phones/tablets)
   ========================== */
@media (max-width: 720px) {
  html {
    font-size: 15px;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* Make images scale down */
  img,
  .banner-img,
  .ft-logo-badge img {
    max-width: 100%;
    height: auto;
  }

  /* Header: stack brand + nav */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    margin-bottom: 4px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  /* Hero and intro: center content and reduce text size */
  .hero-inner {
    text-align: center;
  }

  .hero .lead {
    font-size: 1rem;
  }

  /* Force common grids to single column for narrow screens */
  .grid-2,
  .ft-grid,
  .course-grid,
  .skills-grid,
  .yt-grid,
  .aud-grid,
  .ch-grid,
  .out-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  /* Footer adjustments */
  .ita-footer .ft-inner {
    padding: 32px 16px 18px;
  }

  .ft-bottom {
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 14px;
    padding-left:10px;
  }

  /* Make CTAs and buttons easier to tap */
  .btn,
  .btn-lg,
  .btn-block,
  .banner-btn,
  .opportunity-button {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }

  /* Card spacing */
  .course,
  .yt-card,
  .aud-card,
  .ch-card,
  .out-card,
  .opportunity-card {
    padding: 16px;
  }

  /* Misc */
  .ft-brand-name {
    font-size: 1rem;
  }

  .hero .hero-author {
    display: none;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 14px;
  }

  .header-inner {
    padding: 8px 0;
  }

  .hero .lead {
    font-size: 0.95rem;
  }

  .ft-logo-badge {
    width: 48px;
    height: 48px;
  }

  .ft-brand-name .n-indian,
  .ft-brand-name .n-transport,
  .ft-brand-name .n-academy {
    font-size: 0.95rem;
  }
}

/* Hide small decorative/label badges on very small screens */
@media (max-width: 720px) {
  .opportunity-head-badge {
    display: none !important;
  }
}

.site-footer {
  background: #02123af0;
  color: #cfcfcf;
  padding: 60px 0 24px
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 14px
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px
}

.footer-grid a:hover {
  color: var(--saffron-soft)
}

.tag {
  color: var(--saffron-soft);
  font-weight: 700;
  margin-bottom: 10px
}

.socials {
  font-size: 1.4rem;
  margin-top: 10px
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #232323;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: .85rem;
  color: #9a9a9a
}

.footer-bottom a:hover {
  color: var(--saffron-soft)
}

/* Responsive */
@media (max-width:980px) {

  .grid-2,
  .register-inner {
    grid-template-columns: 1fr
  }

  .stats,
  .aud-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .opp-grid,
  .course-grid,
  .yt-grid,
  .out-grid,
  .num-grid {
    grid-template-columns: 1fr 1fr
  }

  .skills-grid,
  .ch-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .main-nav {
    display: none
  }
}

@media (max-width: 620px) {
  .section {
    /* padding: 60px 0 */
  }

  .container {
    padding: 0 16px
  }

  .stats,
  .aud-grid,
  .opp-grid,
  .course-grid,
  .yt-grid,
  .out-grid,
  .num-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  h1 {
    font-size: 2rem
  }

  .opportunity-cta-text,
  .opportunity-banner-text {
    min-width: 0
  }

  .cr-section .cr-header {
    padding: 22px 16px 0
  }

  .cr-section .cr-card-area {
    margin: 12px;
    padding: 18px 14px
  }

  .cr-section .cr-divider {
    margin: 12px 14px 0
  }

  .cr-section .cr-cta-banner {
    margin: 0 12px 14px
  }

  .oc-header {
    padding: 24px 16px 0
  }

  .oc-card-area {
    margin: 12px
  }

  .wb-wrap {
    padding-left: 0;
    padding-right: 0
  }

  .wb-left,
  .wb-right {
    min-width: 0
  }

  .wb-stats {
    border-radius: 12px;
    margin-left: 8px;
    margin-right: 8px
  }

  .sg-section {
    padding-left: 0;
    padding-right: 0
  }

  .site-footer .footer-grid li {
    overflow-wrap: anywhere;
    word-break: break-word
  }
}

@media (max-width: 768px) {
  .opportunity-section {
    background-attachment: scroll;
    padding: 44px 18px
  }

  .opportunity-head {
    padding: 40px 0 22px
  }

  .opportunity-head-badge {
    white-space: normal;
    text-align: center;
    max-width: min(100%, 280px)
  }

  #courses.courses-block {
    padding: 44px 0
  }

  #courses .courses-inner {
    padding: 22px clamp(12px, 3.5vw, 20px)
  }
}

@media (max-width: 520px) {

  .section.about .timeline-steps {
    grid-template-columns: 1fr
  }

  .section.about .stats-grid {
    grid-template-columns: 1fr
  }
}

/* Truck full-bleed hero — overrides generic .hero from this file (gradient) */
section.hero:has(> img.hero-image) {
  background: #ffffff;
  text-align: initial;
  padding: 0;
}

/* Courses block (was inline styles on #courses) */
#courses.courses-block {
  padding: 60px 0;
  background: #f0e8d8;
  box-sizing: border-box;
  max-width: 100%;
}

#courses .courses-inner {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px clamp(14px, 4vw, 40px);
  background: #f0e8d8;
  box-sizing: border-box;
}

@media (max-width: 480px) {

  .opportunity-button,
  .opportunity-banner .banner-btn {
    white-space: normal;
    text-align: center;
    line-height: 1.35
  }

  .btn.btn-lg,
  .btn-primary.btn-lg,
  .banner-btns a,
  .cr-cta-btn {
    min-height: 44px;
    box-sizing: border-box
  }

  .faq-cta .btn-wa,
  .faq-cta .btn-call {
    white-space: normal;
    min-height: 44px;
    justify-content: center;
    text-align: center
  }
}


/* =========================
   MOBILE CARD DESIGN
   ========================= */

@media screen and (max-width: 768px) {

  .hero-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px;
    margin-top: 10px;
  }

  .hero-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f3f3;
    position: relative;
  }

  /* =========================
     ICON BOX
     ========================= */

  .hero-icon-wrap {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 14px;
    background: #fff4ec;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-icon-wrap.blue {
    background: #eef3ff;
  }

  .hero-icon-wrap.green {
    background: #edf8ef;
  }

  .hero-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  /* =========================
     TEXT
     ========================= */

  .hero-box-text {
    flex: 1;
  }

  .hero-box-text .main {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 700;
    color: #111;
  }

  .hero-box-text .sub {
    margin-top: 2px;
    margin-bottom: 0;
    font-size: 12px;
    color: #666;
    line-height: 1.4;
  }

  .orange {
    color: #f76707;
    font-weight: 700;
  }

  .blue {
    color: #1d4ed8;
    font-weight: 700;
  }

  .green {
    color: #15803d;
    font-weight: 700;
  }

  /* =========================
     RIGHT ARROW
     ========================= */

  .hero-box::after {
    content: "›";
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 26px;
    color: #d0d0d0;
    font-weight: 300;
  }

}


/* =========================
   MOBILE VIEW ONLY
   ========================= */

@media screen and (max-width: 768px) {

  /* FIRST LINE */
  .cs-heading em:first-child {
    color: #ff6600;
    font-size: 26px;
    font-style: italic;
    font-weight: 900;
  }

  /* FORCE LAST LINE TO NEW LINE */
  .cs-heading em:last-child {
    display: inline-block;
    margin-top: 4px;
    color: #ff6600;
    font-size: 26px;
    font-style: italic;
  }

  .green-word:last-child {
    color: #14a83b;
  }

  #solution4 {
    height: 82px;
  }
}

/* BASE BOX */
.hero-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.hero-box {
  position: relative;
  border-radius: 28px;
  text-align: center;
  background: #ffffff;
  border: 1.8px solid #ff7a00;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* BLUE BOX */
.hero-box:nth-child(2) {
  border-color: #1e4db7;
}

/* GREEN BOX */
.hero-box:nth-child(3) {
  border-color: #179b45;
}

/* TOP-LEFT QUARTER CIRCLE BLOB */
.hero-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 110px;
  height: 110px;
  border-radius: 0 0 100% 0;
  background: rgba(255, 140, 40, 0.13);
  pointer-events: none;
}

.hero-box:nth-child(2)::before {
  background: rgba(30, 77, 183, 0.11);
}

.hero-box:nth-child(3)::before {
  background: rgba(23, 154, 69, 0.11);
}

/* ICON CIRCLE */
.hero-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 140, 40, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-icon-wrap.blue {
  background: rgba(30, 77, 183, 0.12);
}

.hero-icon-wrap.green {
  background: rgba(23, 154, 69, 0.12);
}

/* TEXT */
.hero-box-text {
  text-align: center;
  width: 100%;
}

.hero-box-text .main {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  line-height: 1.5;
  margin: 0 0 6px;
}

.hero-box-text .sub {
  font-size: 14px;
  color: #777777;
  line-height: 1.5;
  margin: 0;
}

/* CHEVRON */
.hero-chevron {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbbbbb;
  font-size: 20px;
}

/* MOBILE — stack vertically */
@media (max-width: 768px) {

  .wb-compare::before {
    display: none;
  }

  .hero-boxes {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-box {
    border-radius: 24px;
  }

  .hero-box::before {
    width: 70px;
    height: 70px;
  }
}

/* APPLY THIS TO ANY DIV */

.custom-curve {
  position: relative;
  overflow: hidden;
  background: #f6eeee;
}

/* TOP LEFT CURVE */
.custom-curve::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 180px;
  height: 180px;
  border-radius: 50%;

  background: radial-gradient(circle,
      rgba(255, 153, 51, 0.45) 0%,
      rgba(255, 153, 51, 0.18) 45%,
      rgba(255, 255, 255, 0.95) 70%);
}

/* ORANGE */
.hero-box:nth-child(1)::before {
  background: radial-gradient(circle,
      rgba(255, 153, 51, 0.40) 0%,
      rgba(255, 153, 51, 0.18) 45%,
      rgba(255, 255, 255, 0.95) 70%);
}

/* BLUE */
.hero-box:nth-child(2)::before {
  background: radial-gradient(circle,
      rgba(30, 77, 183, 0.30) 0%,
      rgba(30, 77, 183, 0.12) 45%,
      rgba(255, 255, 255, 0.95) 70%);
}

/* GREEN */
.hero-box:nth-child(3)::before {
  background: radial-gradient(circle,
      rgba(23, 155, 69, 0.30) 0%,
      rgba(23, 155, 69, 0.12) 45%,
      rgba(255, 255, 255, 0.95) 70%);
}

.courseModal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 9999;
  padding: 20px 12px;
  overflow-y: auto;
}

.courseModal.active {
  display: flex;
}

.modalContent {
  background: #fff;
  width: 100%;
  max-width: 850px;
  max-height: calc(100vh - 40px);
  border-radius: 20px;
  /* padding:35px; */
  position: relative;
  overflow-y: auto;
}

.closeModal {
  position: fixed;
  top: 30px;
  right: 30px;
  border: none;
  background: rgba(255, 120, 0, 0.9);
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(255, 120, 0, 0.3);
}

.closeModal:hover {
  background: var(--saffron);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(255, 120, 0, 0.5);
}

.closeModal.scrolled {
  background: var(--saffron);
  box-shadow: 0 4px 16px rgba(255, 120, 0, 0.4);
}

.modalContent h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 10px;
}

.modalContent p {
  text-align: center;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 25px;
}

.offerGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.offerCard {
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 25px;
}

.offerCard.webinar {
  border-top: 4px solid #ff7a00;
}

.offerCard.course {
  border-top: 4px solid #0d1f5b;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background: #f5f5f5;
  font-size: 12px;
  font-weight: 700;
}

.offerCard h3 {
  font-size: 48px;
  margin: 15px 0;
  color: #ff7a00;
}

.offerCard ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.offerCard li {
  padding: 8px 0;
}

.offerCard li:before {
  content: "✓";
  color: #138808;
  margin-right: 10px;
}

/* Registration section styling from registration_FINAL.html */
:root {
  --sf: #FF9933;
  --sfdk: #d96800;
  --sflt: #fff5e6;
  --sfxl: #fff0d6;
  --gnlt: #e8f5e8;
  --nv: #0a1628;
  --nv2: #0d1f40;
  --nv3: #152d5a;
  --wh: #fff;
  --off: #f6f8fc;
  --off2: #eef1f8;
  --tx: #131e30;
  --mu: #5a6680;
  --lt: #9aa5bc;
  --bd: #dde4f0;
  --bdf: #c8d2e8;
  --rd: #e53e3e;
}

.form-sec {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem 1rem;
  position: relative;
  z-index: 10
}

.tab-wrap {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 1.4rem 1.8rem 0;
  box-shadow: 0 8px 32px rgba(10, 22, 40, .12);
  border: 1px solid var(--bdf);
  border-bottom: none
}

.tab-lbl {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .8rem;
  color: var(--mu);
  font-weight: 600;
  text-align: center;
  margin-bottom: .8rem;
  letter-spacing: .08em
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem
}

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .18rem;
  padding: .85rem 1rem;
  border-radius: 10px;
  border: 2px solid var(--bdf);
  background: var(--off);
  cursor: pointer;
  transition: all .22s;
  font-family: 'Barlow', sans-serif;
  position: relative
}

.tab-btn:hover {
  border-color: var(--sf);
  background: var(--sfxl)
}

.tab-btn.active {
  border-color: var(--sf);
  background: var(--sflt);
  box-shadow: 0 4px 16px rgba(255, 153, 51, .2)
}

.tab-btn .tb-icon {
  font-size: 1.4rem
}

.tab-btn .tb-title {
  font-size: .92rem;
  font-weight: 700;
  color: var(--nv)
}

.tab-btn.active .tb-title {
  color: var(--sfdk)
}

.tb-price {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--sf)
}

.tb-orig {
  font-size: .75rem;
  color: var(--lt);
  text-decoration: line-through;
  font-weight: 400;
  margin-right: .3rem
}

.tab-btn .tb-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .71rem;
  color: var(--mu)
}

.tb-badge {
  position: absolute;
  top: -8px;
  right: 10px;
  font-size: .62rem;
  font-weight: 800;
  padding: .12rem .5rem;
  border-radius: 10px;
  color: #fff
}

.tb-badge.live {
  background: var(--rd)
}

.tb-badge.off {
  background: #226a2f
}

.form-card {
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 8px 32px rgba(10, 22, 40, .12);
  border: 1px solid var(--bdf);
  border-top: none;
  padding: 1.8rem
}

.val-strip {
  background: linear-gradient(90deg, var(--sfxl), var(--gnlt));
  border: 1px solid var(--bdf);
  border-radius: 10px;
  padding: .9rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  margin-bottom: 1.4rem
}

.vs-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  margin-top: .1rem
}

.vs-txt {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .87rem;
  color: var(--nv2);
  line-height: 1.5
}

.vs-txt strong {
  color: var(--sfdk)
}

.web-box {
  background: #0d1f40;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem
}

.wb-icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.wb-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .55rem
}

.wb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-bottom: 1rem
}

.wb-tag {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #fff;
  font-size: .78rem;
  padding: .58rem .95rem;
  border-radius: 12px;
  font-family: 'Noto Sans Devanagari', sans-serif;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.wb-tag strong {
  color: #ffb75e
}

.wb-price-row {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-wrap: wrap;
  margin-bottom: 1rem
}

.wb-orig {
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  text-decoration: line-through
}

.wb-disc {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #ff9933;
  line-height: 1
}

.wb-off {
  background: #19882c;
  color: #fff;
  font-size: .75rem;
  font-weight: 800;
  padding: .28rem .75rem;
  border-radius: 8px;
  text-transform: uppercase;
}

.tib-head {
  background: rgba(255, 255, 255, .07);
  border-left: 4px solid #ff9933;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem
}

.tib-head-txt {
  font-size: 1rem;
  font-weight: 800;
  color: #fff
}

.tib-head-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .84rem;
  color: rgba(255, 255, 255, .72)
}

.toc-in-box {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem
}

.tib-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.tib-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .75rem
}

.tib-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: .85rem
}

.tib-tag {
  font-size: .68rem;
  font-weight: 800;
  color: #fff;
  padding: .3rem .65rem;
  border-radius: 999px;
  letter-spacing: .03em;
  text-transform: uppercase;
}

.tib-txt {
  font-size: .92rem;
  color: #f5f7ff;
  line-height: 1.5
}

.tib-card.full {
  grid-column: 1/-1
}

.sched-info {
  background: var(--off2);
  border-radius: 10px;
  padding: .8rem 1.1rem;
  margin-bottom: 1.3rem;
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap
}

.si-icon {
  font-size: 1.1rem
}

.si-txt {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .85rem;
  color: var(--nv2)
}

.si-txt strong {
  color: var(--sfdk)
}

.form-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--nv);
  margin-bottom: .2rem
}

.form-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .86rem;
  color: var(--mu);
  margin-bottom: 1.3rem
}

.fg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

.fg-grid.one {
  grid-template-columns: 1fr
}

.fg {
  display: flex;
  flex-direction: column;
  gap: .38rem
}

.fg label {
  font-size: .8rem;
  font-weight: 700;
  color: var(--nv2);
  font-family: 'Noto Sans Devanagari', sans-serif;
  display: flex;
  align-items: center;
  gap: .3rem
}

.req {
  color: var(--rd);
  font-size: .9rem
}

.fg input,
.fg select,
.fg textarea {
  padding: .72rem 1rem;
  border: 1.5px solid var(--bd);
  border-radius: 9px;
  font-size: .92rem;
  font-family: 'Barlow', sans-serif;
  color: var(--tx);
  background: #fff;
  transition: all .2s;
  outline: none;
  width: 100%
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--sf);
  box-shadow: 0 0 0 3px rgba(255, 153, 51, .12)
}

.fg.error input,
.fg.error select,
.fg.error textarea {
  border-color: var(--rd)
}

.fg .err-msg {
  font-size: .74rem;
  color: var(--rd);
  display: none
}

.fg.error .err-msg {
  display: block
}

.fg textarea {
  resize: vertical;
  min-height: 82px;
  line-height: 1.6
}

.hint {
  font-size: .74rem;
  color: var(--lt);
  font-family: 'Noto Sans Devanagari', sans-serif
}

.fg select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6680' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.2rem
}

.ph-wrap {
  position: relative
}

.ph-flag {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .9rem;
  pointer-events: none
}

.ph-wrap input {
  padding-left: 36px
}

.wa-opt {
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-top: .4rem;
  cursor: pointer
}

.wa-opt input[type=checkbox] {
  accent-color: #25D366;
  width: 15px;
  height: 15px
}

.wa-opt span {
  font-size: .76rem;
  color: var(--mu);
  font-family: 'Noto Sans Devanagari', sans-serif
}

.mod-sec {
  margin-bottom: 1.2rem
}

.mod-lbl {
  font-size: .82rem;
  font-weight: 700;
  color: var(--nv2);
  font-family: 'Noto Sans Devanagari', sans-serif;
  margin-bottom: .55rem;
  display: flex;
  align-items: center;
  gap: .4rem
}

.mod-all-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .55rem
}

.mod-all-btn {
  font-size: .78rem;
  font-weight: 700;
  color: var(--sf);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'Barlow', sans-serif;
  padding: 0
}

.mod-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .55rem
}

.mod-chk {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  padding: .72rem .85rem;
  border: 1.5px solid var(--bd);
  border-radius: 10px;
  cursor: pointer;
  transition: all .22s;
  background: #fff
}

.mod-chk:hover {
  border-color: var(--sf);
  background: var(--sfxl)
}

.mod-chk.checked {
  border-color: var(--sf);
  background: var(--sflt)
}

.mod-chk input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: var(--sf);
  flex-shrink: 0;
  margin-top: .15rem
}

.mc .mc-num {
  font-size: .65rem;
  font-weight: 800;
  color: var(--sf);
  text-transform: uppercase;
  letter-spacing: .08em
}

.mc .mc-name {
  font-size: .84rem;
  font-weight: 700;
  color: var(--nv);
  line-height: 1.2
}

.mc .mc-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .7rem;
  color: var(--mu);
  margin-top: .1rem
}

.mod-price-box {
  background: linear-gradient(90deg, var(--sfxl), var(--gnlt));
  border: 1px solid var(--bdf);
  border-radius: 10px;
  padding: .85rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .7rem;
  flex-wrap: wrap;
  gap: .5rem
}

.mpb-info {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .82rem;
  color: var(--nv2)
}

.mpb-price .orig {
  font-size: .78rem;
  color: var(--lt);
  text-decoration: line-through;
  display: block
}

.mpb-price .disc {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--sfdk)
}

.mpb-price .save {
  background: var(--gn);
  color: #fff;
  font-size: .64rem;
  font-weight: 800;
  padding: .1rem .42rem;
  border-radius: 4px;
  margin-left: .3rem
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  padding: .75rem 1rem;
  background: var(--off);
  border-radius: 8px;
  border: 1px solid var(--bd);
  margin-bottom: 1.2rem;
  cursor: pointer
}

.consent input[type=checkbox] {
  accent-color: var(--sf);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: .15rem
}

.consent-txt {
  font-size: .77rem;
  color: var(--mu);
  font-family: 'Noto Sans Devanagari', sans-serif;
  line-height: 1.6
}

.consent-txt a {
  color: var(--sf);
  text-decoration: none
}

.prog-lbl {
  font-size: .74rem;
  color: var(--mu);
  font-family: 'Noto Sans Devanagari', sans-serif;
  text-align: right;
  margin-bottom: .3rem
}

.prog-bar {
  background: var(--sfxl);
  border-radius: 10px;
  height: 5px;
  margin-bottom: 1.2rem;
  overflow: hidden
}

.prog-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--sf), var(--sfdk));
  border-radius: 10px
}

.sub-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sf), var(--sfdk));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 6px 24px rgba(255, 153, 51, .4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  margin-bottom: .8rem
}

.sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(255, 153, 51, .55)
}

.sub-btn .arr {
  transition: transform .2s
}

.sub-btn:hover .arr {
  transform: translateX(4px)
}

.register-info-box {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 153, 51, .12), rgba(255, 255, 255, .95));
  border: 1px solid rgba(255, 153, 51, .25);
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.register-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: #fff;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  box-shadow: 0 12px 20px rgba(255, 153, 51, .12);
  flex-shrink: 0
}

.register-info-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #1a1a1a;
  font-size: .95rem;
  line-height: 1.55
}

.register-info-text strong {
  color: #d95b00
}

.sub-below {
  text-align: center;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .78rem;
  color: var(--mu);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  flex-wrap: wrap
}

.sub-below a {
  color: var(--sf);
  text-decoration: none;
  font-weight: 700
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
  margin-top: 1.4rem
}

.tb2 {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem .8rem;
  background: var(--off);
  border-radius: 10px;
  border: 1px solid var(--bdf)
}

.tb2 .icon {
  font-size: 1.05rem
}

.tb2 .v {
  font-size: .78rem;
  font-weight: 700;
  color: var(--nv);
  display: block
}

.tb2 .l {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .67rem;
  color: var(--mu)
}

.succ-wrap {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 22, 40, .87);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 1rem
}

.succ-wrap.show {
  display: flex
}

.succ-box {
  background: #fff;
  border-radius: 20px;
  padding: 2.4rem 2rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .28);
  animation: popIn .4s ease
}

.sb-ico {
  font-size: 3rem;
  margin-bottom: .8rem
}

.sb-title {
  font-family: 'Sora', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: .4rem
}

.sb-title-main {
  color: #fff;
}

.sb-title-accent {
  color: #ff9f00;
}

.sb-sub {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .87rem;
  color: #acaeb3;
  margin-bottom: 1.2rem;
  line-height: 1.65
}

.sb-det {
  background: var(--off);
  border-radius: 10px;
  padding: .82rem;
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: .83rem;
  color: var(--nv2);
  margin-bottom: 1rem;
  border: 1px solid var(--bdf);
  text-align: left
}

.sb-det strong {
  color: var(--sfdk)
}

.pay-btn {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--sf), var(--sfdk));
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 22px rgba(255, 153, 51, .38);
  transition: all .22s;
  margin-bottom: .65rem
}

.pay-btn:hover {
  transform: translateY(-1px)
}

.pay-sec {
  font-size: .73rem;
  color: var(--lt);
  font-family: 'Noto Sans Devanagari', sans-serif;
  margin-bottom: .9rem
}

.wa-succ {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: #25D366;
  color: #fff;
  padding: .52rem 1.2rem;
  border-radius: 9px;
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  width: 100%
}

.wa-succ:hover {
  background: #128C7E
}

#paymentThankYou .succ-box {
  background: none;
  border-radius: 24px;
  padding: 0;
  max-width: 640px;
}

#paymentThankYou .thankyou-card {
  background: #fff;
  overflow: auto;
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  max-height: calc(100vh - 3rem);
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

#paymentThankYou .thankyou-header {
  background: #0b2240;
  padding: 2.4rem 1.8rem 1.8rem;
  color: #fff;
  text-align: center;
  position: relative;
}

#paymentThankYou .thankyou-close-icon {
  position: fixed;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 120, 0, .95);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  line-height: 1;
}

#paymentThankYou .thankyou-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #0ea338;
  color: #fff;
  display: grid;
  place-items: center;
  margin: 0 auto 1rem;
  font-size: 2.4rem;
  box-shadow: 0 20px 40px rgba(14, 163, 56, .25);
}

#paymentThankYou .thankyou-summary {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

#paymentThankYou .thankyou-summary div {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  color: #fff;
  font-size: .95rem;
}

#paymentThankYou .thankyou-summary .summary-label {
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  letter-spacing: .02em;
}

#paymentThankYou .thankyou-summary strong {
  font-weight: 700;
  color: #ff9f00;
}

#paymentThankYou .thankyou-step-list {
  display: grid;
  gap: .95rem;
}

#paymentThankYou .thankyou-actions {
  margin-top: 1.6rem;
  text-align: center;
}

#paymentThankYou .thankyou-actions .thankyou-close-btn {
  width: 100%;
}

#paymentThankYou .thankyou-body {
  flex: 1 1 auto;
  background: #fff;
  padding: 1.75rem 1.6rem 1.6rem;
  margin: -2rem 1rem 1rem;
  border-radius: 24px;
  min-height: 0;
}

#paymentThankYou .thankyou-body-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #13131b;
  margin-bottom: 1rem;
}

#paymentThankYou .thankyou-step {
  display: flex;
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid rgba(17, 24, 39, .08);
  align-items: flex-start;
}

#paymentThankYou .thankyou-step:last-child {
  border-bottom: none;
}

#paymentThankYou .step-num {
  min-width: 2.8rem;
  height: 2.8rem;
  background: linear-gradient(135deg, #ff7a00, #ffb43d);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(255, 151, 0, .24);
}

#paymentThankYou .thankyou-step strong {
  font-size: .98rem;
  color: #111;
  margin-bottom: .35rem;
  display: flex;
  align-items: flex-start;
}

#paymentThankYou .thankyou-step p {
  font-size: .88rem;
  color: #5f6578;
  line-height: 1.8;
  display: flex;
  align-items: flex-start;
}

#paymentThankYou .thankyou-body-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #13131b;
  margin-bottom: 1.2rem;
  margin-top: 20px;
  margin-right: 350px;
}

#paymentThankYou .thankyou-close-btn {
  margin-top: 1.2rem;
  padding: 1rem;
}

#paymentThankYou .whatsapp-cta {
  background: linear-gradient(135deg, #076354, #0d6b60);
  border-radius: 20px;
  padding: 1rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  margin-top: 1.2rem;
}

#paymentThankYou .whatsapp-title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: .2rem;
}

#paymentThankYou .whatsapp-text {
  font-size: .86rem;
  color: rgba(255, 255, 255, .88);
  line-height: 1.6;
}

#paymentThankYou .whatsapp-btn {
  background: #25D366;
  color: #0b2b14;
  padding: .85rem 1.2rem;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(37, 211, 102, .24);
}

#paymentThankYou .thankyou-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.2rem;
}

#paymentThankYou .thankyou-card-item {
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
  text-align: left;
}

#paymentThankYou .thankyou-card-item .card-icon {
  font-size: 1.3rem;
  margin-bottom: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 14px;
  background: rgba(20, 86, 143, .08);
}

#paymentThankYou .thankyou-card-item strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .45rem;
  color: #12131a;
}

#paymentThankYou .thankyou-card-item p {
  font-size: .82rem;
  color: #5c5f75;
  line-height: 1.65;
  margin: 0;
}

#paymentThankYou .thankyou-guide {
  background: #0b2240;
  color: #fff;
  border-radius: 20px;
  padding: 1.1rem 1.2rem;
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#paymentThankYou .guide-title {
  font-weight: 700;
  margin-bottom: .35rem;
}

#paymentThankYou .guide-text {
  font-size: .86rem;
  color: rgba(255, 255, 255, .9);
  line-height: 1.6;
}

#paymentThankYou .guide-btn {
  background: #ff9500;
  color: #fff;
  padding: .9rem 1.3rem;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 16px 35px rgba(255, 149, 0, .24);
}

#paymentThankYou .thankyou-follow {
  background: #fff;
  border-radius: 20px;
  padding: 1rem 1.2rem;
  margin-top: 1.2rem;
  text-align: center;
}

#paymentThankYou .follow-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin: 1rem 0 0;
}

#paymentThankYou .follow-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #fff;
}

#paymentThankYou .follow-youtube {
  background: #ff1f1f;
}

#paymentThankYou .follow-insta {
  background: linear-gradient(90deg, #c13684, #f77737);
}

#paymentThankYou .follow-note {
  font-size: .82rem;
  color: #5c5f75;
  margin-top: .3rem;
}

#paymentThankYou .thankyou-footer {
  width: 100%;
  box-sizing: border-box;
  padding: 1.4rem 1.8rem 1.6rem;
  margin: 1.4rem 0 0;
  background: #0b2240;
  border-radius: 0 0 24px 24px;
  color: #fff;
  text-align: center;
}

#paymentThankYou .footer-hero {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: .65rem;
  letter-spacing: .01em;
}

#paymentThankYou .footer-sub {
  opacity: .88;
  margin-bottom: .8rem;
}

#paymentThankYou .footer-badges {
  font-size: .9rem;
  color: #d6d9ff;
  margin-bottom: .9rem;
}

#paymentThankYou .footer-brand {
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .08em;
  margin-bottom: .3rem;
  color: #ff9f00;
}

#paymentThankYou .footer-details {
  font-size: .88rem;
  opacity: .86;
  margin-bottom: .35rem;
}

#paymentThankYou .footer-contact {
  font-size: .82rem;
  opacity: .78;
}

.sb-close {
  margin-top: .9rem;
  background: none;
  border: none;
  color: var(--mu);
  font-size: .79rem;
  cursor: pointer;
  font-family: 'Noto Sans Devanagari', sans-serif;
  text-decoration: underline
}

@media(max-width:640px) {
  .fg-grid {
    grid-template-columns: 1fr
  }

  .mod-grid {
    grid-template-columns: 1fr
  }

  .trust {
    grid-template-columns: 1fr 1fr
  }

  .wi-grid {
    grid-template-columns: 1fr
  }
}

.btnOrange,
.btnBlue {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.btnOrange {
  background: #ff7a00;
}

.btnBlue {
  background: #0d1f5b;
}


.hero-webinar-card {

  width: 100%;
  /* max-width:520px; */

  margin: 0 auto 40px;

  padding: 30px;

  /* border-radius:28px; */

  background:
    radial-gradient(circle at center,
      #1238d6 0%,
      #07103d 65%,
      #03081f 100%);

  position: relative;

  overflow: hidden;

  color: #fff;

  /* box-shadow:
    0 30px 60px rgba(0,0,0,.35); */
}

.free-ribbon {

  position: absolute;

  top: 22px;
  right: -55px;

  background: #ff5b2e;

  color: #fff;

  padding: 12px 65px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1px;

  transform: rotate(45deg);
}

.hero-logo {

  margin-bottom: 20px;
}

.hero-logo img {

  width: 110px;
  margin-left: 350px;
}

.academy-title {

  color: #ff6d2d;

  font-size: 18px;

  font-weight: 700;

  letter-spacing: 4px;

  text-align: center;

  margin-bottom: 4px;
}

.hero-subtitle {

  text-align: center;

  font-size: 15px;

  margin-bottom: 10px;

  color: rgba(255, 255, 255, 0.92);

  font-weight: 700;
}

.hero-page-line {

  text-align: center;

  font-size: 14px;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.92);

  margin-bottom: 16px;
}

.hero-title {

  text-align: center;

  color: #ffffff;

  font-size: 36px;

  line-height: 1.05;

  margin-bottom: 12px;

  font-weight: 900;
}

.hero-desc {

  text-align: center;

  max-width: 520px;

  margin: auto;

  color: #ffffff;

  line-height: 1.75;

  font-size: 15px;

  background: rgba(255, 255, 255, 0);

  border-radius: 18px;

  padding: 16px 20px;

  margin-bottom: 18px;
}

.hero-top-row {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  align-items: center;

  gap: 10px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 13px;

  margin: 0 auto 16px;

  max-width: 680px;
}

.hero-top-badge,
.hero-top-handle {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 7px 14px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
}

.hero-top-badge {

  color: #ffbc63;

  border: 1px solid rgba(255, 187, 99, 0.35);
}

.hero-top-handle {

  color: #fff;

  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-pill {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  /* margin:0 auto 24px; */
  margin-left: 220px;
  margin-bottom: 24px;

  padding: 10px 20px;

  border-radius: 999px;

  border: 1px solid rgba(255, 255, 255, 0.18);

  background: rgba(0, 0, 0, 0.2);

  color: #ffb862;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.12em;
}

.hero-title {

  text-align: center;

  color: #ffffff;

  font-size: 42px;

  line-height: 1.02;

  margin-bottom: 18px;

  font-weight: 900;
}

.hero-title-accent.orange {

  color: #ff9933;
}

.hero-title-accent.green {

  color: #17aa0a
}

.hero-tags {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 10px;

  margin: 20px auto 24px;

  max-width: 760px;
}

.hero-tag {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 10px 16px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.1);

  color: #fff;

  font-size: 13px;

  font-weight: 700;
}

.hero-price-grid {

  display: grid;

  grid-template-columns: repeat(4, minmax(140px, 1fr));

  gap: 14px;

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  border-radius: 24px;

  padding: 20px;

  margin-bottom: 22px;
}

.hero-price-card {

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 12px 8px;
}

.hero-price-amount {

  color: #ffbd4c;

  font-size: 28px;

  font-weight: 900;
}

.hero-price-old {

  display: block;

  color: rgba(255, 255, 255, 0.65);

  font-size: 14px;

  text-decoration: line-through;

  margin-top: 4px;
}

.hero-price-label {

  color: rgba(255, 255, 255, 0.7);

  font-size: 13px;

  text-align: center;
}

.hero-footer {

  color: rgba(255, 255, 255, 0.75);

  font-size: 13px;

  text-align: center;

  margin-top: 10px;
}

@media(max-width:900px) {

  .hero-price-grid {

    grid-template-columns: repeat(2, minmax(140px, 1fr));

  }
}

@media(max-width:640px) {

  .hero-title {

    font-size: 32px;

  }

  .hero-price-grid {

    grid-template-columns: 1fr;

  }

  .hero-top-row {

    flex-direction: column;

    align-items: center;

  }

  .hero-tags {

    gap: 8px;

  }
}

text-align:center;

margin-top:30px;

color:#a9b1d8;

text-decoration:line-through;

font-size:22px;
}

.hero-price {

  text-align: center;

  color: #ff6d2d;

  font-size: 90px;

  font-weight: 900;

  line-height: 1;

  margin: 10px 0 25px;
}

.feature-item {

  display: flex;

  align-items: center;

  gap: 15px;

  background:
    rgba(255, 255, 255, .07);

  border:
    1px solid rgba(255, 255, 255, .06);

  border-radius: 18px;

  padding: 18px;

  margin-bottom: 14px;
}

.feature-icon {

  width: 50px;
  height: 50px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  color: #fff;
}

.green {
  /* background:#1f6f54; */
}

/* .blue{
    background:#2f3ea8;
} */

.brown {
  background: #804f43;
}

.feature-item h5 {

  margin: 0;

  font-size: 20px;
}

.feature-item p {

  margin: 4px 0 0;

  color: #b8c0f0;

  font-size: 14px;
}

.hero-cta {

  width: 100%;

  margin-top: 20px;

  background: #ff6d00;

  color: #fff;

  border: none;

  border-radius: 20px;

  padding: 22px;

  font-size: 22px;

  font-weight: 800;

  letter-spacing: 2px;

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 20px;

  cursor: pointer;
}

.cta-arrow {

  width: 42px;
  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .2);

  display: flex;

  align-items: center;

  justify-content: center;
}

.hero-footer {

  text-align: center;

  margin-top: 18px;

  color: #b8c0f0;

  font-size: 13px;
}

@media(max-width:768px) {

  .hero-webinar-card {

    padding: 24px 20px;
  }

  .hero-title {

    font-size: 42px;
  }

  .hero-price {

    font-size: 72px;
  }

  .academy-title {

    font-size: 15px;
    letter-spacing: 2px;
  }

  .feature-item h5 {

    font-size: 17px;
  }
}

.final-cta-section {
  background: #08122b;
  color: #fff;
  padding: 64px 20px 40px;
}

.final-cta-inner {
  max-width: 980px;
  /* margin: 0 auto 34px; */
  padding: 44px 32px;
  /* background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02)); */
  /* border:1px solid rgba(255,255,255,.1); */
  /* border-radius:28px; */
  /* box-shadow:0 24px 80px rgba(0,0,0,.28); */
}

.final-cta-label {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.final-cta-heading {
  margin: 0 auto 16px;
  max-width: 740px;
  font-size: 3rem;
  line-height: 1.02;
  font-weight: 900;
}

.final-cta-heading .orange {
  color: #ff9933;
}

.final-cta-heading .green {
  color: #35d97b;
}

.final-cta-sub {
  margin: 0 auto 30px;
  max-width: 760px;
  font-size: 16px;
  color: rgba(255, 255, 255, .74);
  line-height: 1.8;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 22px;
}

.final-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  padding: 16px 28px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.final-btn:hover {
  transform: translateY(-1px);
}

.final-btn.primary {
  background: #ff9933;
  color: #fff box-shadow:0 20px 40px rgba(255, 153, 51, .28);
}

.final-btn.secondary {
  background: rgba(255, 255, 255, .08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
}

.final-cta-note {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  margin: 0;
}

.final-footer {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, .15);
}

.footer-brand-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .04em;
}

.footer-brand-name span:first-child {
  color: #ff9933;
}

.footer-brand-name span:last-child {
  color: #35d97b;
}

.footer-brand-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 13px;
  margin-top: 4px;
  margin-left: 60px;
}

.footer-contact {
  display: grid;
  gap: 10px;
  justify-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
}

.footer-contact-address {
  max-width: 400px;
  text-align: center;
}

.footer-bottom {
  color: rgba(255, 255, 255, .5);
  font-size: 13px;
  margin-bottom: 18px;
  text-align: center;
  margin-left: 215px;
}

.footer-brand-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.footer-brand-bar span {
  width: 88px;
  height: 6px;
  border-radius: 999px;
  display: block;
  background: #2c3b61;
}

.footer-brand-bar span:nth-child(1) {
  background: #ff9933;
}

.footer-brand-bar span:nth-child(2) {
  background: #ffffff;
}

.footer-brand-bar span:nth-child(3) {
  background: #35d97b;
}

@media(max-width:768px) {
  .final-cta-inner {
    padding: 36px 22px;
  }

  .final-cta-heading {
    font-size: 2.3rem;
  }

  .final-cta-buttons {
    gap: 12px;
  }

  .final-btn {
    width: 100%;
    max-width: 320px;
  }

  .footer-contact {
    font-size: 13px;
  }

  .final-footer {
    padding: 24px 18px 0;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand-sub {
    margin-left: 0;
    max-width: 100%;
    text-align: center;
  }

  .footer-bottom {
    margin-left: 0;
  }
}













/* Mobile: Move Register button to bottom */
@media (max-width: 768px) {
  .support-float {
    top: auto;
    bottom: 28px;
  }
}

@media (max-width: 768px) {
  .support-float {
    top: auto;
    bottom: 28px;
    right: 28px;
  }

  .wa-float {
    bottom: 96px;
    right: 28px;
  }

  .dl-float {
    bottom: 164px;
    right: 28px;
  }
}



/* Mobile: Resister Now */
@media(max-width:768px) {

  .offerGrid {
    grid-template-columns: 1fr;
  }

  .modalContent {
    padding: 25px;
    max-width: 680px;
    max-height: calc(100vh - 24px);
    border-radius: 18px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .18);
  }

  .courseModal {
    align-items: flex-start;
    padding: 12px;
  }

  .closeModal {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    font-size: 24px;
  }

  .form-sec {
    padding: 0 0.9rem 1.2rem;
  }

  .tabs {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    align-items: flex-start;
    text-align: left;
  }

  .tab-btn .tb-badge {
    top: 10px;
    right: 12px;
  }

  .form-card {
    padding: 1.3rem;
  }

  .val-strip,
  .sched-info,
  .mod-price-box,
  .consent {
    padding: 0.95rem 1rem;
  }

  .toc-in-box {
    grid-template-columns: 1fr;
  }

  .tib-card {
    padding: 1rem;
  }

  .wb-tag {
    padding: .55rem .8rem;
  }

  .fg-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .modalContent h2,
  .modalContent p {
    text-align: center;
  }

  .offerCard h3 {
    font-size: 38px;
  }
}

@media screen and (max-width: 768px) {
  .courseModal {
    padding: 12px;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .courseModal.active {
    align-items: flex-start;
  }

  .modalContent {
    width: 100%;
    max-width: 680px;
    max-height: calc(100vh - 24px);
    border-radius: 24px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    box-shadow: 0 28px 70px rgba(0, 0, 0, .25);
    -webkit-overflow-scrolling: touch;
  }

  .modalContent .hero-webinar-card {
    position: relative;
    border-radius: 24px 24px 0 0;
    padding: 24px 18px 18px;
    margin: 0;
  }

  .modalContent .free-ribbon {
    top: 14px;
    right: -28px;
    left: auto;
    transform: rotate(45deg);
    padding: 10px 42px;
    white-space: nowrap;
    max-width: 165px;
    text-align: center;
  }

  .modalContent .hero-logo {
    margin-bottom: 14px;
    text-align: center;
  }

  .modalContent .hero-logo img {
    width: 90px;
    margin: 0 auto;
  }

  .modalContent .hero-top-row {
    gap: 8px;
    font-size: 12px;
    padding-bottom: 4px;
  }

  .modalContent .hero-pill {
    margin: 0 auto 18px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-left: auto;
  }

  .modalContent .hero-title {
    font-size: 30px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .modalContent .hero-desc {
    font-size: 14px;
    margin-bottom: 16px;
    padding: 0;
    max-width: 100%;
  }

  .modalContent .hero-tags {
    gap: 8px;
    margin-bottom: 16px;
  }

  .modalContent .hero-price-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .modalContent .hero-price-card {
    padding: 14px 10px;
    background: rgba(255, 255, 255, .08);
    border-radius: 18px;
  }

  .modalContent .hero-price-amount {
    font-size: 22px;
  }

  .modalContent .hero-price-label {
    font-size: 12px;
  }

  .modalContent .hero-footer {
    font-size: 12px;
    margin-top: 14px;
    padding-bottom: 10px;
  }

  .modalContent .closeModal {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    font-size: 22px;
    background: rgba(255, 120, 0, .95);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .22);
    z-index: 1001;
  }

  .modalContent .form-sec {
    padding: 0 16px 16px;
  }

  .modalContent .tab-wrap {
    border-radius: 0 0 20px 20px;
    padding: 16px 14px 14px;
  }

  .modalContent .tabs {
    grid-template-columns: 1fr;
  }

  .modalContent .tab-btn {
    text-align: left;
    padding: 1rem 1rem;
    border-radius: 16px;
  }

  .modalContent .form-card {
    border-radius: 0 0 20px 20px;
    padding: 18px 14px 16px;
  }

  .modalContent .fg input,
  .modalContent .fg select,
  .modalContent .fg textarea {
    font-size: 0.95rem;
    padding: 0.82rem 0.95rem;
  }

  .modalContent .sub-btn {
    padding: 0.95rem 1rem;
    font-size: 1rem;
  }

  .modalContent .register-info-box {
    padding: 12px 12px;
  }

  .modalContent .trust {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 0.8rem;
  }

  .modalContent .tb2 {
    padding: 12px 12px 10px;
  }
}

/* When modal is open on mobile, show final CTA/footer inside overlay */
@media (max-width: 768px) {
  .courseModal.active~.final-cta-section {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 10001;
    max-width: 680px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
    max-height: calc(60vh);
  }

  .courseModal.active~.final-cta-section .final-cta-inner {
    background: linear-gradient(180deg, #081833, #07102a);
    padding: 16px;
    border-radius: 12px 12px 0 0;
    text-align: center;
  }

  .courseModal.active~.final-cta-section .final-cta-heading {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .courseModal.active~.final-cta-section .final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 8px 0;
  }

  .courseModal.active~.final-cta-section .final-cta-buttons .final-btn {
    width: 100%;
    max-width: 320px;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 16px;
  }

  .courseModal.active~.final-cta-section .final-cta-buttons .final-btn.primary {
    background: linear-gradient(90deg, #ff9933, #ff7a00);
    color: #fff;
    border: none;
    box-shadow: 0 10px 28px rgba(255, 153, 51, .18);
  }

  .courseModal.active~.final-cta-section .final-cta-buttons .final-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .12);
    color: #cfe3ff;
  }

  .courseModal.active~.final-cta-section .final-footer {
    background: #061025;
    padding: 12px 14px;
    border-radius: 0 0 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    text-align: center;
  }

  .courseModal.active~.final-cta-section .footer-brand .footer-logo {
    width: 48px;
    margin-bottom: 6px;
  }

  .courseModal.active~.final-cta-section .final-footer .footer-contact {
    font-size: 12px;
    color: #cbd7f0;
  }

  .courseModal.active~.final-cta-section {
    pointer-events: auto;
  }
}

@media(max-width:640px) {
  #paymentThankYou .whatsapp-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  #paymentThankYou .thankyou-grid {
    grid-template-columns: 1fr;
  }

  #paymentThankYou .thankyou-guide {
    flex-direction: column;
    align-items: flex-start;
  }

  #paymentThankYou .follow-links {
    grid-template-columns: 1fr;
  }

  #paymentThankYou .succ-box {
    width: 100%;
    max-width: 100%;
    padding: 0 12px;
  }

  #paymentThankYou .thankyou-card {
    max-width: 100%;
    margin: 0;
  }

  #paymentThankYou .thankyou-header {
    padding: 1.8rem 1.3rem 1.5rem;
  }

  #paymentThankYou .thankyou-icon {
    width: 72px;
    height: 72px;
    font-size: 2rem;
    margin-bottom: .9rem;
  }

  #paymentThankYou .thankyou-summary div {
    font-size: .85rem;
    padding: .65rem .9rem;
  }

  #paymentThankYou .thankyou-body {
    padding: 1.4rem 1.2rem 1.2rem;
    margin: -1.6rem .6rem 1rem;
    border-radius: 20px;
  }

  #paymentThankYou .thankyou-body-title {
    margin-right: 0;
    font-size: 1rem;
  }

  #paymentThankYou .thankyou-step {
    gap: .75rem;
    padding: .85rem 0;
  }

  #paymentThankYou .step-num {
    min-width: 2.4rem;
    height: 2.4rem;
    font-size: .95rem;
  }

  #paymentThankYou .thankyou-step strong {
    font-size: .95rem;
  }

  #paymentThankYou .thankyou-step p {
    font-size: .85rem;
    line-height: 1.7;
  }

  #paymentThankYou .whatsapp-btn {
    width: 100%;
    text-align: center;
  }

  #paymentThankYou .thankyou-footer {
    padding: 1.2rem 1rem 1.3rem;
    margin-top: 1rem;
  }

  #paymentThankYou .footer-hero {
    font-size: .98rem;
  }

  #paymentThankYou .footer-badges {
    font-size: .85rem;
  }

  #paymentThankYou .footer-contact {
    font-size: .78rem;
  }

  #paymentThankYou .guide-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .wb-icon {
    display: none;
  }
}