/* ==========================================================================
   UTHTHI ACADEMY - DESIGN SYSTEM & MASTER STYLESHEET
   Colors: Deep Navy Blue (#0B192C, #1E3E62), Royal Gold (#D4AF37, #FFD700, #F4E0A5), Cream (#FDFBF7)
   ========================================================================== */

:root {
  /* Color Palette */
  --bg-navy-dark: #070F1E;
  --bg-navy-card: #0F223D;
  --bg-navy-light: #162E4D;
  --bg-cream: #FDFBF7;
  --bg-white: #FFFFFF;

  --gold-primary: #D4AF37;
  --gold-light: #F7E7A1;
  --gold-glowing: #FFD700;
  --gold-dark: #9A7B1C;
  --navy-accent: #0B192C;

  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-gold: #E5C158;

  --border-gold: rgba(212, 175, 55, 0.3);
  --border-glass: rgba(255, 255, 255, 0.1);

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-subhead: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Shadow & Glow */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-gold: 0 10px 30px -5px rgba(212, 175, 55, 0.25);
  --shadow-card: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --glow-gold: 0 0 20px rgba(255, 215, 0, 0.4);

  /* Transition */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-navy-dark);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Section Containers & Badges */
.section-container {
  position: relative;
  padding: 5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

/* Section Badges (Hidden as requested) */
.section-badge {
  display: none !important;
}

.section-container.dark-bg {
  background: linear-gradient(180deg, var(--bg-navy-dark) 0%, var(--bg-navy-card) 100%);
  color: var(--text-light);
}

.section-container.light-bg {
  background-color: var(--bg-cream);
  color: var(--text-dark);
}

.section-container.light-bg .section-badge {
  background: var(--bg-navy-dark);
  color: var(--gold-glowing);
  border: 1px solid var(--gold-primary);
}

/* Typography Utilities */
.section-header {
  margin-bottom: 3.5rem;
}

.section-top-tag {
  display: inline-block;
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold-primary);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.light-bg .section-top-tag {
  color: #9A7B1C;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  margin-top: 0.75rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.text-gold {
  color: var(--gold-glowing);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.light-bg .text-gold {
  color: #B8860B;
  text-shadow: none;
}

.gold-accent-line {
  height: 3px;
  width: 70px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light), var(--gold-primary));
  margin-top: 1.25rem;
  border-radius: 3px;
}

.gold-accent-line.center {
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 15, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.6rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold-glowing);
  letter-spacing: 1.5px;
  line-height: 1;
}

.brand-sub {
  font-family: var(--font-subhead);
  font-size: 0.65rem;
  color: var(--text-light);
  letter-spacing: 3px;
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-link {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-glowing);
  background: rgba(212, 175, 55, 0.1);
}

.nav-link.contact-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-navy-dark);
  font-weight: 800;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-link.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-glowing), var(--gold-primary));
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 1.5rem;
  cursor: pointer;
}


/* ==========================================================================
   SECTION 01: HERO BANNER (100% FULL-WIDTH FIT)
   ========================================================================== */
.hero-section {
  padding-top: 6rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at 50% 20%, #0A192F 0%, #040914 80%);
  width: 100%;
}

.hero-section .container {
  max-width: 100%;
  padding: 0 1.5rem;
}

.hero-poster-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, #061122 0%, #0B1C38 100%);
  border: 1px solid var(--gold-primary);
  border-radius: 16px;
  padding: 3rem 2rem 2rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(212, 175, 55, 0.15);
}

.hero-main-logo-container {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-original-logo-img {
  max-width: 460px;
  width: 88%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(212, 175, 55, 0.25);
  border: 2px solid var(--gold-primary);
  background: #FFFDF7;
  padding: 8px;
  display: block;
  margin: 0 auto;
  transition: var(--transition);
}

.hero-original-logo-img:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 45px rgba(212, 175, 55, 0.4);
}

.hero-main-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--gold-glowing);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  letter-spacing: 1px;
}

.hero-subhead {
  font-family: var(--font-subhead);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #FFFFFF;
  margin-top: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-student-box {
  position: relative;
  max-width: 1140px;
  margin: 0 auto 3.5rem auto;
}

.hero-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  height: 420px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hero-main-title {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.25;
  color: var(--gold-glowing);
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
  letter-spacing: 1px;
}

.hero-subhead {
  font-family: var(--font-subhead);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-top: 0.85rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.hero-student-box {
  position: relative;
  margin-bottom: 3.5rem;
}

.hero-image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  height: 380px;
  border: 2px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-student-box:hover .hero-img {
  transform: scale(1.02);
}

.hero-pillars-row {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  width: 92%;
  z-index: 10;
}

.pillar-circle-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  transition: var(--transition);
}

.pillar-circle-item:hover {
  transform: translateY(-4px);
}

.pillar-circle-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-navy-dark);
  border: 2px solid var(--gold-glowing);
  color: var(--gold-glowing);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
}

.pillar-circle-item span {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.9rem;
  color: #FFFFFF;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.9);
}

.hero-gold-ribbon {
  background: linear-gradient(90deg, #D4AF37, #FFF099, #D4AF37);
  border-radius: 12px;
  padding: 0.9rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.ribbon-text {
  font-family: var(--font-subhead);
  font-weight: 900;
  font-size: 1.05rem;
  letter-spacing: 3px;
  color: #070F1E;
}


/* ==========================================================================
   SECTION 02: ABOUT UTHTHI ACADEMY
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.lead-desc {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #E2E8F0;
  margin-bottom: 1.25rem;
}

.lead-desc strong {
  color: var(--gold-glowing);
}

.body-desc {
  font-size: 1rem;
  color: #94A3B8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.mission-quote-box {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(15, 34, 61, 0.9));
  border-left: 4px solid var(--gold-glowing);
  border-radius: 0 12px 12px 0;
  padding: 1.5rem;
  position: relative;
}

.quote-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.quote-icon {
  font-size: 1.5rem;
  color: var(--gold-glowing);
}

.mission-title {
  font-family: var(--font-subhead);
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-size: 0.9rem;
}

.mission-text {
  font-size: 1.15rem;
  font-style: italic;
  color: #FFFFFF;
  line-height: 1.5;
}

.about-image-card .image-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
  box-shadow: var(--shadow-card);

}

.about-image-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-glowing);
  box-shadow: var(--shadow-gold);
}

.stat-icon-wrapper {
  font-size: 2rem;
  color: var(--gold-glowing);
  margin-bottom: 0.75rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-subhead);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold-light);
}


/* ==========================================================================
   SECTION 03: TRANSFORMATION PROGRAMS
   ========================================================================== */
.program-tabs-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.prog-tab-btn {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  color: var(--text-dark);
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
}

.prog-tab-btn:hover, .prog-tab-btn.active {
  background: var(--bg-navy-dark);
  color: var(--gold-glowing);
  border-color: var(--bg-navy-dark);
  box-shadow: 0 4px 12px rgba(11, 25, 44, 0.2);
}

.program-category-block {
  margin-bottom: 3rem;
}

.cat-header {
  margin-bottom: 1.25rem;
}

.cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  color: #FFFFFF;
}

.academic-badge { background: #1E3E62; }
.personal-badge { background: #065F46; }
.health-badge { background: #991B1B; }
.career-badge { background: #7C2D12; }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.modules-grid.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.module-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.module-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 20px -5px rgba(212, 175, 55, 0.2);
}

.mod-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #F8FAFC;
  color: #B8860B;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.module-card h4 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.module-card p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.5;
}

.programs-footer-badge {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-navy-dark), var(--bg-navy-card));
  color: var(--gold-glowing);
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 2px;
  padding: 1.25rem;
  border-radius: 12px;
  margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}


/* ==========================================================================
   SECTION 04: STUDENT SUCCESS JOURNEY
   ========================================================================== */
.pattern-overlay {
  background-image: radial-gradient(rgba(212, 175, 55, 0.08) 1px, transparent 0);
  background-size: 24px 24px;
}

.journey-roadmap-wrapper {
  position: relative;
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem 0;
}

.roadmap-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.2), var(--gold-glowing));
  transform: translateX(-50%);
}

.journey-step {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.journey-step:nth-child(even) {
  flex-direction: row-reverse;
}

.step-node {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--bg-navy-card);
  border: 3px solid var(--gold-primary);
  color: var(--gold-glowing);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.step-card {
  width: 42%;
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  padding: 1.5rem;
  border-radius: 12px;
  position: relative;
  transition: var(--transition);
}

.journey-step:nth-child(odd) .step-card {
  text-align: right;
}

.journey-step:nth-child(even) .step-card {
  text-align: left;
}

.step-card:hover {
  transform: scale(1.03);
  border-color: var(--gold-glowing);
  box-shadow: var(--shadow-gold);
}

.step-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold-primary);
  opacity: 0.8;

}

.step-card h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #FFFFFF;
  margin: 0.25rem 0;
}

.step-card p {
  font-size: 0.95rem;
  color: #CBD5E1;
}

.highlight-peak .peak-node {
  background: var(--gold-glowing);
  color: var(--bg-navy-dark);
  border-color: #FFFFFF;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.highlight-peak .peak-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), var(--bg-navy-card));
  border: 2px solid var(--gold-glowing);
}

.journey-quote-banner {
  text-align: center;
  margin-top: 3rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-glowing);
  letter-spacing: 2px;

}


/* ==========================================================================
   SECTION 05: WHY SOFT SKILLS MATTER
   ========================================================================== */
.soft-skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.soft-skill-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.75rem 1.25rem;
  text-align: center;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.soft-skill-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 15px 30px -5px rgba(212, 175, 55, 0.25);
}

.skill-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin: 0 auto 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #FFFFFF;
}

.color-blue { background: #0284C7; }
.color-amber { background: #D97706; }
.color-purple { background: #7C3AED; }
.color-orange { background: #EA580C; }
.color-pink { background: #DB2777; }
.color-cyan { background: #0891B2; }
.color-teal { background: #0D9488; }
.color-green { background: #16A34A; }

.soft-skill-card h3 {
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.soft-skill-card p {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.45;
}

.soft-skills-footer-banner {
  text-align: center;
  background: var(--bg-navy-dark);
  color: var(--gold-glowing);
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 2px;
  padding: 1.25rem;
  border-radius: 12px;
}


/* ==========================================================================
   SECTION 06: OUR TRAINING METHODOLOGY
   ========================================================================== */
.methodology-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
  margin: 3rem 0;
}

.method-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.method-item {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}

.method-item:hover {
  border-color: var(--gold-glowing);
  transform: translateX(4px);
}

.left-list .method-item:hover {
  transform: translateX(-4px);
}

.m-icon {
  font-size: 1.4rem;
  color: var(--gold-glowing);
  min-width: 32px;
}

.m-text h4 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.method-wheel-container {
  width: 360px;
  height: 360px;
  margin: 0 auto;
  border-radius: 50%;
  position: relative;
  background: radial-gradient(circle, #0F223D 0%, #070F1E 100%);
  border: 4px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
  overflow: hidden;
}

.wheel-core {
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #D4AF37);
  color: #070F1E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
  padding: 0.5rem;
}

.core-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.1;
  color: #070F1E;
}

.core-sub {
  font-size: 0.7rem;
  font-weight: 800;
  margin-top: 3px;
  line-height: 1.1;
  color: #070F1E;
}

.wheel-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  text-align: center;
  box-sizing: border-box;
}

.seg-1 { top: 0; left: 0; border-right: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.seg-2 { top: 0; right: 0; border-left: 1px solid var(--border-gold); border-bottom: 1px solid var(--border-gold); }
.seg-3 { bottom: 0; left: 0; border-right: 1px solid var(--border-gold); border-top: 1px solid var(--border-gold); }
.seg-4 { bottom: 0; right: 0; border-left: 1px solid var(--border-gold); border-top: 1px solid var(--border-gold); }

.seg-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.seg-content strong {
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--gold-glowing);
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.2rem;
}

.seg-content span {
  font-size: 0.75rem;
  color: #E2E8F0;
  line-height: 1.25;
  display: block;
  text-align: center;
}

.method-quote-bar {
  text-align: center;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.25rem;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 1.5px;
  color: var(--gold-glowing);
}


/* ==========================================================================
   SECTION 07: WHAT STUDENTS WILL GAIN
   ========================================================================== */
.gains-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.gain-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gain-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 25px -5px rgba(212, 175, 55, 0.2);
}

.gain-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 0.85rem;
}

.color-1 { background: #2563EB; }
.color-2 { background: #059669; }
.color-3 { background: #7C3AED; }
.color-4 { background: #D97706; }
.color-5 { background: #DC2626; }
.color-6 { background: #0891B2; }
.color-7 { background: #4F46E5; }
.color-8 { background: #16A34A; }
.color-9 { background: #CA8A04; }
.color-10 { background: #E11D48; }
.color-11 { background: #0284C7; }
.color-12 { background: #0D9488; }

.gain-card h4 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.gains-footer-ribbon {
  text-align: center;
  background: var(--bg-navy-dark);
  color: var(--gold-glowing);
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 3px;
  padding: 1.25rem;
  border-radius: 12px;
}

.gains-footer-ribbon i {
  font-size: 0.6rem;
  margin: 0 0.5rem;
  color: var(--gold-primary);
}


/* ==========================================================================
   SECTION 08: WHY COLLEGES CHOOSE UTHTHI ACADEMY
   ========================================================================== */
.comparison-table-wrapper {
  overflow-x: auto;
  margin-bottom: 3rem;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 0.75rem;
}

.comparison-table th {
  padding: 1.25rem;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1.5px;
  text-align: center;
}

.th-trad {
  background: #7F1D1D;
  color: #FEE2E2;
  border-radius: 10px 0 0 10px;
}

.th-vs {
  background: var(--bg-navy-dark);
  width: 80px;
}

.vs-badge {
  background: var(--gold-primary);
  color: var(--bg-navy-dark);
  font-weight: 900;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.85rem;
}

.th-uththi {
  background: linear-gradient(135deg, #1E3E62, #0F223D);
  color: var(--gold-glowing);
  border: 1px solid var(--border-gold);
  border-radius: 0 10px 10px 0;
}

.comparison-table td {
  padding: 1.1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.td-trad {
  background: rgba(127, 29, 29, 0.2);
  color: #FCA5A5;
  border-left: 3px solid #EF4444;
  border-radius: 8px 0 0 8px;
}

.td-icon {
  text-align: center;
  background: var(--bg-navy-card);
  color: var(--gold-primary);
}

.td-uththi {
  background: rgba(15, 34, 61, 0.9);
  color: #FFFFFF;
  border-right: 3px solid var(--gold-glowing);
  border-radius: 0 8px 8px 0;
}

.red-x { color: #EF4444; margin-right: 0.5rem; }
.green-check { color: #10B981; margin-right: 0.5rem; }

.trophy-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(15, 34, 61, 0.9));
  border: 2px solid var(--gold-primary);
  padding: 1.5rem;
  border-radius: 16px;
  text-align: center;
}

.trophy-icon {
  font-size: 3rem;
  color: var(--gold-glowing);
  filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
}

.trophy-text h3 {
  font-family: var(--font-subhead);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
}

.trophy-text h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 1.5px;
}


/* ==========================================================================
   SECTION 09: AI READY GENERATION
   ========================================================================== */
.ai-hero-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.ai-center-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 35px rgba(8, 145, 178, 0.3);
}

.ai-brain-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.ai-center-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold-glowing);
  color: var(--bg-navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
}

.ai-nodes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.ai-node-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid #E2E8F0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.ai-node-card:hover {
  transform: translateX(5px);
  border-color: #0891B2;
  box-shadow: 0 10px 20px -5px rgba(8, 145, 178, 0.2);
}

.ai-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #ECFEFF;
  color: #0891B2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  min-width: 44px;
}

.ai-node-info h4 {
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.3;
}

.ai-quote-banner {
  text-align: center;
  background: var(--bg-navy-dark);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border-gold);
}

.ai-quote-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold-glowing);
  letter-spacing: 2px;
}


/* ==========================================================================
   SECTION 11: CONTACT US
   ========================================================================== */
.contact-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.contact-info-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.5rem 2rem;
}

.contact-logo-block {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-brand-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  margin-bottom: 0.75rem;
}

.contact-logo-block h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--gold-glowing);
  font-weight: 800;
}

.contact-slogan {
  font-family: var(--font-subhead);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--text-light);
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.c-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.c-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-glowing);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  min-width: 40px;
}

.c-text {
  display: flex;
  flex-direction: column;
}

.c-label {
  font-size: 0.75rem;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c-val {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
}

a.c-val:hover {
  color: var(--gold-glowing);
  text-decoration: underline;
}

.qr-scan-box {
  background: rgba(7, 15, 30, 0.6);
  border: 1px dashed var(--border-gold);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.qr-code-graphic {
  font-size: 2.5rem;
  color: var(--gold-glowing);
}

.qr-text {
  display: flex;
  flex-direction: column;
}

.qr-text strong {
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.qr-text span {
  font-size: 0.8rem;
  color: #94A3B8;
}

.contact-form-card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-glowing);
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.form-sub {
  font-size: 0.95rem;
  color: #94A3B8;
  margin-bottom: 1.75rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #CBD5E1;
}

.form-group input, .form-group textarea {
  background: rgba(7, 15, 30, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold-glowing);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.submit-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-navy-dark);
  border: none;
  border-radius: 8px;
  padding: 0.9rem;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
  margin-top: 0.5rem;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(135deg, var(--gold-glowing), var(--gold-primary));
}

.form-success-msg {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10B981;
  color: #D1FAE5;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

.form-success-msg.hidden {
  display: none;
}

.contact-footer-slogan {
  text-align: center;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: var(--gold-glowing);
  border-top: 1px solid var(--border-gold);
  padding-top: 2rem;
}


/* ==========================================================================
   LOGIN BUTTON & LOGIN MODAL STYLES
   ========================================================================== */
.highlight-courses {
  color: var(--gold-glowing) !important;
  font-weight: 700 !important;
}

.nav-login-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #070F1E;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.nav-login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-glowing), var(--gold-primary));
}

.user-profile-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--gold-primary);
  color: var(--gold-glowing);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.logout-sm-btn {
  background: linear-gradient(135deg, #EF4444, #B91C1C);
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.4rem;
  transition: var(--transition);
}

.logout-sm-btn:hover {
  background: #DC2626;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(239, 68, 68, 0.4);
}

/* Modal Overlay */
.login-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 9, 20, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.login-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.login-modal-card {
  background: linear-gradient(180deg, #0F223D 0%, #070F1E 100%);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  max-width: 440px;
  width: 100%;
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.3);
  transform: scale(0.9);
  transition: var(--transition);
}

.login-modal-overlay.open .login-modal-card {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--gold-primary);
  font-size: 2rem;
  cursor: pointer;
}

.modal-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.modal-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  margin-bottom: 0.75rem;
}

.modal-header h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--gold-glowing);
  font-weight: 800;
}

.modal-header p {
  font-size: 0.88rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

.modal-login-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-wrapper input {
  width: 100%;
  padding-right: 2.75rem;
}

.toggle-password-btn {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: var(--gold-primary);
  cursor: pointer;
  font-size: 1rem;
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #CBD5E1;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.forgot-pass {
  color: var(--gold-primary);
  text-decoration: none;
}

.forgot-pass:hover {
  text-decoration: underline;
}

.login-submit-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: #070F1E;
  border: none;
  padding: 0.9rem;
  border-radius: 10px;
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: var(--transition);
}

.login-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.demo-creds-box {
  background: rgba(212, 175, 55, 0.1);
  border: 1px dashed var(--border-gold);
  border-radius: 8px;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* ==========================================================================
   VIDEO COURSES PAGE STYLES (courses.html)
   ========================================================================== */
.courses-body {
  background-color: #040914;
}

.courses-hero-banner {
  padding-top: 6.5rem;
  padding-bottom: 2.5rem;
  background: radial-gradient(circle at 50% 20%, #0F223D 0%, #040914 80%);
}

.courses-page-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: #FFFFFF;
}

.courses-page-sub {
  font-size: 1.05rem;
  color: #94A3B8;
  max-width: 700px;
  margin: 0.75rem auto 0 auto;
}

.courses-content-section {
  padding-bottom: 5rem;
}

.courses-portal-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: start;
}

.main-player-card {
  background: #0B1C38;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-container-box {
  position: relative;
  width: 100%;
  background: #000000;
}

.active-video-element {
  width: 100%;
  max-height: 420px;
  display: block;
  object-fit: contain;
}

.video-playing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(7, 15, 30, 0.85);
  border: 1px solid var(--gold-primary);
  color: var(--gold-glowing);
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.video-details-box {
  padding: 1.75rem;
}

.video-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.active-video-heading {
  font-family: var(--font-subhead);
  font-size: 1.35rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.3;
}

.video-meta-span {
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 0.35rem;
  display: block;
}

.complete-lesson-btn {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid #10B981;
  color: #D1FAE5;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  white-space: nowrap;
}

.complete-lesson-btn:hover, .complete-lesson-btn.completed {
  background: #10B981;
  color: #070F1E;
}

.video-divider {
  border: none;
  border-top: 1px solid var(--border-gold);
  margin: 1.25rem 0;
}

.video-desc-block h3 {
  font-family: var(--font-subhead);
  font-size: 1rem;
  color: var(--gold-glowing);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.video-desc-block p {
  font-size: 0.95rem;
  color: #CBD5E1;
  line-height: 1.6;
}

.lesson-resources-box {
  margin-top: 1.5rem;
  background: rgba(7, 15, 30, 0.6);
  border: 1px solid var(--border-glass);
  padding: 1rem;
  border-radius: 10px;
}

.lesson-resources-box h4 {
  font-family: var(--font-subhead);
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.resource-download-link {
  color: #38BDF8;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.resource-download-link:hover {
  text-decoration: underline;
}

/* Playlist Sidebar */
.playlist-sidebar-card {
  background: #0B1C38;
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.playlist-header {
  padding: 1.25rem 1.5rem;
  background: #070F1E;
  border-bottom: 1px solid var(--border-gold);
}

.playlist-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.playlist-header-top h3 {
  font-family: var(--font-subhead);
  font-size: 1.1rem;
  color: #FFFFFF;
  font-weight: 800;
}

.progress-percent-badge {
  background: rgba(212, 175, 55, 0.2);
  color: var(--gold-glowing);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 12px;
}

.playlist-course-title {
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 0.25rem;
}

.course-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0.75rem 0 1rem 0;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-glowing));
  border-radius: 3px;
  transition: width 0.4s ease;
}

.playlist-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(15, 34, 61, 0.8);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #94A3B8;
}

.playlist-search-box input {
  background: none;
  border: none;
  outline: none;
  color: #FFFFFF;
  font-size: 0.85rem;
  width: 100%;
}

.playlist-items-list {
  max-height: 520px;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.playlist-module-header {
  padding: 0.6rem 1.25rem;
  background: rgba(212, 175, 55, 0.1);
  font-family: var(--font-subhead);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: var(--transition);
}

.playlist-item:hover {
  background: rgba(212, 175, 55, 0.1);
}

.playlist-item.active {
  background: rgba(212, 175, 55, 0.18);
  border-left: 4px solid var(--gold-glowing);
}

.item-play-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
}

.playlist-item.active .item-play-icon {
  color: var(--gold-glowing);
}

.item-info {
  flex: 1;
}

.item-info h4 {
  font-family: var(--font-subhead);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
}

.item-dur {
  font-size: 0.75rem;
  color: #94A3B8;
  margin-top: 0.2rem;
  display: block;
}

.item-status {
  font-size: 0.75rem;
  color: #64748B;
}

.item-status.playing {
  color: var(--gold-glowing);
  font-weight: 700;
}

.item-status.completed {
  color: #10B981;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #040914;
  border-top: 1px solid var(--border-gold);
  padding: 1.5rem 0;
  color: #64748B;
  font-size: 0.85rem;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-links a {
  color: var(--gold-primary);
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}


/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE BROWSER FRIENDLY RULES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 2.5rem;
  }

  .about-stats-grid, .soft-skills-grid, .gains-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .methodology-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ai-hero-layout, .contact-main-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #070F1E;
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.75rem;
    display: none;
    border-bottom: 1px solid var(--border-gold);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.show {
    display: flex;
  }

  .mobile-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--gold-glowing);
    font-size: 1.6rem;
    cursor: pointer;
  }

  .hero-section {
    padding-top: 5rem;
    padding-bottom: 2rem;
  }

  .hero-poster-card {
    padding: 1.5rem 1rem 1rem 1rem;
    border-radius: 12px;
  }

  .hero-headline {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .hero-subhead {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .hero-original-logo-img {
    max-width: 280px;
    width: 90%;
  }

  .hero-image-wrapper {
    height: 230px;
  }

  .hero-pillars-row {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .pillar-circle-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .pillar-circle-item span {
    font-size: 0.75rem;
  }

  .hero-gold-ribbon {
    padding: 0.75rem 0.5rem;
  }

  .ribbon-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .modules-grid, .modules-grid.col-3 {
    grid-template-columns: 1fr;
  }

  .prog-tab-btn {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }

  .method-wheel-container {
    width: 280px;
    height: 280px;
  }

  .wheel-core {
    width: 110px;
    height: 110px;
  }

  .core-text {
    font-size: 1rem;
  }

  .core-sub {
    font-size: 0.65rem;
  }

  .seg-content strong {
    font-size: 0.85rem;
  }

  .seg-content span {
    font-size: 0.68rem;
  }

  .journey-step, .journey-step:nth-child(even) {
    flex-direction: column;
    text-align: center !important;
  }

  .step-card {
    width: 100%;
  }

  .roadmap-line {
    display: none;
  }

  .step-node {
    position: relative;
    left: auto;
    transform: none;
    margin-bottom: 0.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.5rem;
  }

  .soft-skills-grid, .gains-grid, .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .ai-nodes-grid {
    grid-template-columns: 1fr;
  }
}
