.elementor-2103 .elementor-element.elementor-element-97a4c4c{--display:flex;}.eael-reading-progress-wrap .eael-reading-progress{height:5px !important;}.eael-reading-progress-wrap .eael-reading-progress .eael-reading-progress-fill{height:5px !important;background-color:#1fd18e;transition:width 50ms ease;}/* Start custom CSS *//* ============================================
   RC BOOSTER SERIES — Stylesheet
   Arun Sharma & Meenakshi Upadhyay
   Link this file in your HTML <head>:
   <link rel="stylesheet" href="rc-booster.css">
   ============================================ */

/* RESET & ROOT */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #080E1D;
  --navy-mid: #0F1A30;
  --navy-card: #131F38;
  --teal: #00C8A0;
  --teal-dim: #00A382;
  --amber: #FFB547;
  --white: #F0F4FF;
  --muted: #6B7FA3;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ============================================
   NAV
   ============================================ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,14,29,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.02em;
}
.nav-cta {
  background: var(--teal);
  color: var(--navy);
  font-weight: 600; font-size: 0.85rem;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-cta:hover { background: #00ddb3; }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 7rem 2rem 2rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(0,200,160,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
  border: 1px solid rgba(0,200,160,0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title .rc {
  color: var(--teal);
  display: block;
  position: relative;
}
.hero-title .rc::after {
  content: '';
  position: absolute;
  bottom: -0.1em; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  border-radius: 2px;
  opacity: 0.3;
}
.hero-title .booster { display: block; }

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--muted);
  animation: fadeUp 0.6s 0.2s ease both;
}
.hero-sub strong { color: var(--white); }

.hero-dates {
  margin-top: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
}
.date-pill {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.9rem 1.6rem;
  text-align: center;
}
.date-pill .label {
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
  display: block; margin-bottom: 0.3rem;
}
.date-pill .value {
  font-size: 1.05rem; font-weight: 600;
  color: var(--amber);
}

.hero-cta-wrap {
  margin-top: 2.5rem;
  animation: fadeUp 0.6s 0.4s ease both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--teal);
  color: var(--navy);
  font-weight: 700; font-size: 1rem;
  padding: 1rem 2.8rem;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 0 0 0 rgba(0,200,160,0.4);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,200,160,0.3);
}
.btn-ghost {
  display: inline-block;
  color: var(--white);
  font-weight: 500; font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  text-decoration: none;
  margin-left: 0.8rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* ============================================
   PRICING
   ============================================ */
.pricing-block {
  display: inline-flex; align-items: center; gap: 0.75rem;
  flex-wrap: wrap; justify-content: center;
  margin-bottom: 0.6rem;
}
.price-current {
  font-family: 'Inter', sans-serif;
  font-size: 2.6rem; font-weight: 900;
  color: var(--teal); line-height: 1;
}
.price-original {
  font-size: 1.1rem; color: var(--muted);
  text-decoration: line-through;
}
.price-discount {
  background: rgba(255,181,71,0.15);
  color: var(--amber);
  border: 1px solid rgba(255,181,71,0.35);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem; border-radius: 50px;
}

/* ============================================
   SHARED SECTION STYLES
   ============================================ */
.section-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 2.5rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700; margin-bottom: 0.6rem;
}
.section-desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 2.5rem; }

/* ============================================
   INSTRUCTORS
   ============================================ */
.instructors {
  padding: 4rem 2rem;
  max-width: 860px; margin: 0 auto;
  text-align: center;
}
.instructor-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.instructor-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: left;
}

.instructor-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--white);
}
.instructor-bio {
  font-size: 0.85rem; color: var(--muted);
  margin-top: 0.5rem; line-height: 1.6;
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.freebies {
  padding: 4rem 2rem 5rem;
  background: linear-gradient(180deg, transparent, rgba(0,200,160,0.04), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.freebies-inner { max-width: 860px; margin: 0 auto; text-align: center; }

.free-badge {
  display: inline-block;
  background: rgba(255,181,71,0.12);
  color: var(--amber);
  border: 1px solid rgba(255,181,71,0.3);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 50px;
  margin-bottom: 2rem;
}
.perks-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem;
}
.perk-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 1.8rem 1.5rem;
  text-align: left; position: relative; overflow: hidden;
}
.perk-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 16px 16px 0 0;
}
.perk-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(0,200,160,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 1.2rem;
}
.perk-title {
  font-weight: 600; font-size: 1rem;
  color: var(--white); margin-bottom: 0.4rem;
}
.perk-desc { font-size: 0.85rem; color: var(--muted); }
.perk-tag {
  display: inline-block; margin-top: 0.9rem;
  background: rgba(0,200,160,0.1);
  color: var(--teal);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.7rem; border-radius: 50px;
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule {
  padding: 5rem 2rem;
  max-width: 860px; margin: 0 auto;
}
.schedule-head { text-align: center; margin-bottom: 3rem; }
.schedule-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem;
}
.day-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 1.4rem 1rem;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.day-card:hover { border-color: rgba(0,200,160,0.35); transform: translateY(-3px); }
.day-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 900;
  color: var(--teal); line-height: 1;
}
.day-month {
  font-size: 0.72rem; color: var(--muted);
  font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; margin-top: 0.2rem;
}
.day-name { font-size: 0.78rem; color: var(--muted); margin-top: 0.6rem; }

.time-banner {
  margin-top: 2rem;
  background: rgba(0,200,160,0.06);
  border: 1px solid rgba(0,200,160,0.2);
  border-radius: 12px; padding: 1.1rem 1.5rem;
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  font-size: 1.05rem;
}
.time-banner span { color: var(--teal); font-weight: 700; font-size: 1.15rem; }
.time-banner p { color: var(--muted); font-size: 0.88rem; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 2rem 7rem;
  text-align: center;
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(0,200,160,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700; max-width: 560px; margin: 0 auto 0.8rem;
}
.cta-sub { color: var(--muted); margin-bottom: 2.5rem; font-size: 0.95rem; }
.seats-note {
  margin-top: 1.5rem;
  font-size: 0.82rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); display: inline-block;
  animation: pulse 1.5s infinite;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  text-align: center; padding: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted); font-size: 0.82rem;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: 0.3; }
}
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE — TABLET (max 640px)
   ============================================ */
@media (max-width: 640px) {
  .schedule-grid { grid-template-columns: repeat(2, 1fr); }
  .schedule-grid .day-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 560px)
   ============================================ */
@media (max-width: 560px) {
  .instructor-grid { grid-template-columns: 1fr; }
}

/* ============================================
   RESPONSIVE — MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  nav { padding: 0.85rem 1.1rem; }
  .nav-logo { font-size: 1rem; }
  .nav-cta { font-size: 0.78rem; padding: 0.5rem 1rem; }

  .hero { padding: 3.5rem 1.25rem 3rem; }
  .hero-eyebrow { font-size: 0.68rem; margin-bottom: 1.25rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-dates { gap: 0.6rem; margin-top: 1.75rem; }
  .date-pill { padding: 0.7rem 1rem; }
  .date-pill .value { font-size: 0.92rem; }

  .hero-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; }
  .btn-primary { width: 100%; max-width: 320px; text-align: center; padding: 1rem 1.5rem; font-size: 0.95rem; }
  .btn-ghost { width: 100%; max-width: 320px; text-align: center; margin-left: 0; }

  .pricing-block { gap: 0.5rem; }
  .price-current { font-size: 2rem; }

  .instructors { padding: 2.5rem 1.25rem; }
  .instructor-card { padding: 1.4rem 1.1rem; }

  .freebies { padding: 2.5rem 1.25rem 3rem; }
  .perk-card { padding: 1.4rem 1.1rem; }

  .schedule { padding: 3rem 1.25rem; }
  .schedule-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .schedule-grid .day-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; width: 100%; }
  .day-card { padding: 1.2rem 0.75rem; }
  .day-num { font-size: 1.8rem; }
  .day-name { font-size: 0.72rem; }

  .time-banner { flex-direction: column; gap: 0.3rem; text-align: center; padding: 1rem; }
  .time-banner span { font-size: 1rem; }

  .cta-section { padding: 3.5rem 1.25rem 5rem; }
  .cta-title { font-size: 1.6rem; }

  .section-title { font-size: 1.5rem; }
}/* End custom CSS */