/* 
   SpellBee International Landing Page - Mockup Branding Style
   Theme: Premium Educational - Deep Purple (#5C25B3), Crimson Red (#D92D20), Gold/Yellow (#FF9F00)
   Fonts: Plus Jakarta Sans (Headings) & Inter (Body)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  /* Color Palette from user customization */
  --primary-purple: #860001; /* Primary Red */
  --primary-purple-light: #a60001;
  --primary-purple-dark: #660000;
  
  --accent-red: #860001; /* Primary Red */
  --accent-red-hover: #660000;
  --accent-red-glow: rgba(134, 0, 1, 0.08);
  
  --accent-gold: #ffb901; /* Secondary Gold/Yellow */
  --accent-gold-hover: #d49a00;
  --accent-gold-glow: rgba(255, 185, 1, 0.15);
  
  --accent-purple-glow: rgba(134, 0, 1, 0.08);
  
  /* Dedicated Button Purple Color */
  --button-purple: #5c25b3;
  --button-purple-hover: #733dd1;
  --button-purple-dark: #41138a;
  --button-purple-glow: rgba(92, 37, 179, 0.15);
  
  /* Neutrals */
  --bg-cream: #F9FAFB; /* Clean neutral light-grey background (replaces warm yellow-cream) */
  --bg-white: #FFFFFF;
  --text-dark: #0F172A; /* Slate-900 */
  --text-muted: #475467; /* Slate-600 */
  --border-light: #E2E8F0;
  
  /* Fonts */
  --font-headings: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base resets */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
}

p {
  line-height: 1.65;
  color: var(--text-muted);
}

/* Color Utility Classes */
.text-purple { color: var(--primary-purple) !important; }
.text-red { color: var(--accent-red) !important; }
.text-gold { color: var(--accent-gold) !important; }
.text-indigo { color: var(--primary-purple) !important; }
.bg-purple { background-color: var(--primary-purple) !important; }
.bg-purple-dark { background-color: var(--primary-purple-dark) !important; }
.bg-indigo { background-color: var(--primary-purple) !important; }
.bg-cream-custom { background-color: var(--bg-cream) !important; }
.text-orange { color: var(--accent-gold) !important; }

/* Custom Buttons matching the mockup */
.btn-premium-primary {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--bg-white) !important;
  background-color: var(--button-purple);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(92, 37, 179, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.btn-premium-primary:hover {
  background-color: var(--button-purple-hover);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 37, 179, 0.35);
}

.btn-premium-secondary {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark) !important;
  background-color: var(--bg-white);
  border: 1px solid #D0D5DD;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.btn-premium-secondary:hover {
  background-color: #F9FAFB;
  border-color: #C7CCD6;
  transform: translateY(-2px);
}

.btn-premium-gold {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--text-dark) !important;
  background-color: var(--accent-gold);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(255, 159, 0, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
  font-size: 0.95rem;
}

.btn-premium-gold:hover {
  background-color: var(--accent-gold-hover);
  color: var(--text-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 159, 0, 0.35);
}

.btn-premium-red {
  font-family: var(--font-headings);
  font-weight: 750;
  color: var(--bg-white) !important;
  background-color: var(--accent-red);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(217, 45, 32, 0.2);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
}

.btn-premium-red:hover {
  background-color: var(--accent-red-hover);
  color: var(--bg-white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 45, 32, 0.3);
}

/* Outline White for Dark Panels */
.btn-premium-outline-white {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--bg-white) !important;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-block;
}

.btn-premium-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

/* Top Announcement Bar */
.top-announcement-bar {
  background-color: #0c0d12;
  font-family: var(--font-headings);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-announcement-bar .desk-label {
  font-weight: 800;
  color: #FFFFFF;
}

.top-announcement-bar .desk-dot {
  color: var(--accent-red);
  margin-right: 6px;
}

.top-announcement-bar .proposal-link {
  color: var(--accent-gold);
  text-decoration: none;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.top-announcement-bar .proposal-link:hover {
  color: var(--accent-gold-hover);
}

/* Navigation Bar */
.navbar-custom {
  background: var(--bg-white);
  box-shadow: 0 4px 20px rgba(92, 37, 179, 0.04);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  padding: 15px 0;
}

.navbar-custom .navbar-brand {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.45rem;
  color: var(--primary-purple) !important;
  letter-spacing: -0.8px;
}

.navbar-custom .navbar-brand span span small {
  color: var(--accent-red) !important;
  font-weight: 800;
}

.navbar-custom .navbar-brand svg circle {
  fill: var(--primary-purple);
}

.navbar-custom .navbar-brand svg path {
  fill: var(--accent-gold);
}

.navbar-custom .nav-link {
  font-family: var(--font-headings);
  font-weight: 600;
  color: var(--text-dark) !important;
  font-size: 0.95rem;
  margin: 0 12px;
  transition: var(--transition-smooth);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
  color: var(--primary-purple) !important;
}

/* Hero Section matching mockup style */
.hero-section {
  position: relative;
  background-color: var(--bg-cream); /* Cream/white from mockup */
  background-image: 
    radial-gradient(circle at 85% 50%, rgba(92, 37, 179, 0.08) 0%, transparent 60%);
  padding: 130px 0 110px 0;
  overflow: hidden;
}

.badge-partnership {
  background-color: #FFF0F0;
  border: 1px solid #FEE4E2;
  color: var(--accent-red);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
}

.dot-indicator {
  color: var(--accent-red);
  margin-right: 4px;
  font-size: 0.85rem;
}

.hero-title {
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero-title span {
  color: var(--accent-red); /* Bright red color matching screenshot */
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 35px;
  max-width: 580px;
}

.btn-hero-primary {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--bg-white) !important;
  background-color: var(--button-purple); /* Rich purple/indigo */
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(92, 37, 179, 0.25);
  transition: var(--transition-smooth);
  text-decoration: none;
  font-size: 0.92rem;
}

.btn-hero-primary:hover {
  background-color: var(--button-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 37, 179, 0.35);
}

.btn-hero-secondary {
  font-family: var(--font-headings);
  font-weight: 600;
  color: #344054 !important;
  background-color: var(--bg-white);
  border: 1px solid #D0D5DD;
  padding: 14px 28px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: var(--transition-smooth);
  text-decoration: none;
  font-size: 0.92rem;
}

.btn-hero-secondary:hover {
  background-color: #F9FAFB;
  border-color: #C7CCD6;
  transform: translateY(-2px);
}

.hero-checklist {
  margin-top: 15px;
}

.checklist-item {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.checklist-icon {
  color: #039855;
  fill: #D1FADF;
  width: 20px;
  height: 20px;
}

/* Student Showcase Card Design from Mockup */
.student-card-container {
  position: relative;
  padding-top: 50px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.student-top-tabs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(92, 37, 179, 0.05);
  border: 1px solid rgba(92, 37, 179, 0.08);
  padding: 4px;
  border-radius: 50px;
  z-index: 10;
}

.tab-pill {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  color: var(--primary-purple);
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.tab-pill.active {
  background-color: var(--bg-white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
  color: var(--text-dark);
}

.student-main-card {
  position: relative;
  background-color: var(--bg-white);
  border-radius: 20px;
  padding: 12px 12px 90px 12px;
  box-shadow: 0 25px 50px rgba(92, 37, 179, 0.1);
  border: 1px solid rgba(229, 230, 238, 0.7);
  overflow: visible;
}

.student-img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: contain;
  background: linear-gradient(180deg, #F3F1FB 0%, #EBE7F7 100%);
  max-height: 480px;
}

.floating-badge {
  position: absolute;
  background-color: var(--bg-white);
  box-shadow: 0 8px 20px rgba(92, 37, 179, 0.08);
  border-radius: 10px;
  padding: 8px 12px;
  z-index: 5;
  transition: var(--transition-smooth);
  border: 1px solid rgba(229, 230, 238, 0.5);
}

.floating-badge:hover {
  transform: translateY(-2px);
}

.badge-tcs {
  top: 70px;
  left: -35px;
}

.badge-reach {
  bottom: 50px;
  right: -25px;
}

.badge-syllabus {
  bottom: 105px;
  left: -20px;
  background-color: #1A1682;
  color: var(--bg-white);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 50px;
  padding: 5px 12px;
  box-shadow: 0 6px 12px rgba(26, 22, 130, 0.25);
  border: none;
}

.badge-syllabus svg {
  fill: var(--accent-gold) !important;
  stroke: var(--accent-gold) !important;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.icon-purple {
  background-color: #ECEBFF;
  color: var(--primary-purple);
}

.icon-pink {
  background-color: #FFEBEF;
  color: #E01A4F;
}

.badge-text {
  line-height: 1.2;
}

.badge-sub {
  font-size: 0.55rem;
  font-weight: 800;
  color: #8C8C98;
  letter-spacing: 0.5px;
  display: block;
}

.badge-main {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
}

.student-dark-banner {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: linear-gradient(135deg, #1C1D2A 0%, #0F1017 100%);
  padding: 12px 18px;
  border-radius: 12px;
  z-index: 6;
}

.badge-topper {
  font-size: 0.55rem;
  font-weight: 850;
  color: var(--accent-gold);
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 2px;
}

.student-name {
  font-family: var(--font-headings);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 0;
}

.student-title {
  font-size: 0.65rem;
  color: #8C8C98;
  display: block;
}

.btn-view-cert {
  background-color: var(--accent-gold);
  color: var(--text-dark) !important;
  border: none;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: var(--transition-smooth);
  white-space: nowrap;
}

.btn-view-cert:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-1px);
}

/* Credibility Section matching mockup */
.credibility-section {
  position: relative;
  padding: 0 0 80px 0; /* Align directly under hero with padding bottom */
}

.credibility-header {
  color: #C5A85A; /* Gold color from mockup */
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.credibility-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(229, 230, 238, 0.7);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 15px 35px rgba(92, 37, 179, 0.02);
  transition: var(--transition-smooth);
  height: 100%;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.credibility-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(92, 37, 179, 0.05);
  border-color: rgba(92, 37, 179, 0.15);
}

.cred-num {
  font-family: var(--font-headings);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--primary-purple);
  margin-bottom: 6px;
  text-align: center;
  letter-spacing: -0.5px;
}

.cred-num-small {
  font-size: 1.55rem;
  line-height: 1.25;
}

.cred-title {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  text-transform: uppercase;
  text-align: center;
}

.cred-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0;
  text-align: center;
  line-height: 1.45;
}

.credibility-checklist {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-top: 30px;
}

.checklist-separator {
  color: #D0D5DD;
  font-size: 1rem;
}

.text-success-custom {
  color: #039855 !important;
}

.text-warning-custom {
  color: #FF9F00 !important;
}

.text-danger-custom {
  color: #E01A4F !important;
}

.fill-warning {
  fill: #FF9F00 !important;
}

/* Why Schools Need tabbed dashboard style */
.benchmark-tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benchmark-tab {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 750;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.benchmark-tab:hover {
  border-color: var(--primary-purple-light);
  background-color: var(--bg-cream);
  transform: translateX(3px);
}

.benchmark-tab.active {
  background-color: var(--primary-purple);
  color: var(--bg-white) !important;
  border-color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(92, 37, 179, 0.2);
}

.benchmark-tab .chevron {
  color: #A0A0A5;
  transition: var(--transition-smooth);
}

.benchmark-tab.active .chevron {
  color: var(--bg-white) !important;
  transform: translateX(2px);
}

.implementation-note {
  background-color: #FFF0F0;
  border: 1px solid #FEE4E2;
  border-radius: 8px;
  padding: 20px;
  margin-top: 24px;
}

.note-header {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 850;
  color: var(--accent-red);
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.detail-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.detail-card.active {
  border: 2px solid var(--primary-purple);
  box-shadow: 0 15px 35px rgba(92, 37, 179, 0.07);
}

.card-badge {
  font-family: var(--font-headings);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  display: inline-block;
  color: #8C8C98;
}

.card-badge.badge-active {
  color: var(--accent-red);
}

.detail-card .card-title {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.detail-card-footer {
  margin-top: auto;
  border-top: 1px solid #F1F2F6;
  padding-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  font-weight: 600;
  color: #8C8C98;
}

.detail-card-footer span span {
  color: var(--primary-purple);
}

.detail-card-footer .check-icon {
  color: #039855;
}

/* About Section */
.about-section {
  position: relative;
  overflow: visible;
}

.advisor-card-wrapper {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.advisor-main-card {
  position: relative;
  background: var(--bg-white);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(229, 230, 238, 0.8);
  z-index: 2;
}

.advisor-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
  aspect-ratio: 1 / 1.1;
  background-color: #F3F1FB;
}

/* Floating Badge: Expert Advisor */
.badge-advisor {
  position: absolute;
  bottom: 25px;
  right: -15px;
  background-color: #039855; /* Vibrant green matching mockup */
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 4px; /* Rounded rectangle matching mockup buttons */
  box-shadow: 0 4px 12px rgba(3, 152, 85, 0.2);
  z-index: 10;
  text-transform: uppercase;
}

/* Floating Testimonial Card */
.advisor-quote-card {
  position: absolute;
  bottom: -35px;
  left: -35px;
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 20px;
  width: 290px;
  box-shadow: 0 12px 30px rgba(92, 37, 179, 0.08);
  border: 1px solid rgba(229, 230, 238, 0.8);
  z-index: 5;
  transition: var(--transition-smooth);
}

.advisor-quote-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(92, 37, 179, 0.12);
}

.advisor-quote-card p {
  font-size: 0.82rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 8px;
}

.proof-stars svg {
  fill: #FF9F00 !important;
  stroke: #FF9F00 !important;
}

.advisor-signature {
  font-family: monospace, var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary-purple);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Badge for About section */
.about-badge {
  display: inline-block;
  background-color: #ECEBFF; /* Soft lavender matching mockup */
  color: var(--primary-purple);
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 12px;
  border-radius: 4px;
  text-transform: uppercase;
  border: 1px solid rgba(92, 37, 179, 0.12);
}

/* Deliverables checklist grid */
.deliverable-item {
  position: relative;
  padding-left: 24px;
}

.deliverable-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent-red);
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1;
}

.deliverable-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.deliverable-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

@media (max-width: 991px) {
  .advisor-card-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .advisor-quote-card {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(92, 37, 179, 0.05);
  }
  .badge-advisor {
    right: 10px;
    bottom: 10px;
  }
}

/* Pathway Map (Section 5) */
.framework-pathway {
  position: relative;
  padding: 30px 0;
}

.framework-pathway::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--border-light);
  transform: translateX(-50%);
  z-index: 1;
}

.framework-node {
  position: relative;
  margin-bottom: 50px;
  z-index: 2;
}

.framework-node:last-child {
  margin-bottom: 0;
}

.framework-marker {
  width: 44px;
  height: 44px;
  background-color: var(--bg-white);
  border: 3px solid var(--primary-purple);
  border-radius: 50%;
  color: var(--accent-gold);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(92, 37, 179, 0.08);
  transition: var(--transition-smooth);
}

.framework-node:hover .framework-marker {
  background-color: var(--primary-purple);
  color: var(--bg-white);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 12px rgba(92, 37, 179, 0.35);
}

.framework-content {
  width: 45%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(92, 37, 179, 0.02);
  transition: var(--transition-smooth);
}

.framework-node:nth-child(even) .framework-content {
  margin-left: auto;
}

.framework-node:hover .framework-content {
  border-color: rgba(92, 37, 179, 0.2);
  box-shadow: 0 8px 20px rgba(92, 37, 179, 0.05);
}

.framework-level-title {
  color: var(--accent-red);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.framework-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

/* Stakeholder Benefits Cards */
.stakeholder-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  transition: var(--transition-smooth);
}

.stakeholder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(92, 37, 179, 0.06);
}

.stakeholder-header {
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 18px;
  margin-bottom: 22px;
}

.stakeholder-badge {
  background-color: var(--accent-purple-glow);
  color: var(--primary-purple);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 8px;
}

.benefit-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.benefit-item {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
}

.benefit-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background-color: var(--accent-red-glow);
  color: var(--accent-red);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}









/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-floating {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(92, 37, 179, 0.15);
  transition: var(--transition-smooth);
  color: var(--bg-white);
  text-decoration: none;
}

.btn-floating:hover {
  transform: translateY(-4px);
  color: var(--bg-white);
}

.btn-whatsapp {
  background-color: #25D366;
}

.btn-email {
  background-color: var(--primary-purple);
}

/* Footer Section */
.footer-custom {
  background-color: var(--primary-purple-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-custom strong {
  color: var(--bg-white);
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .hero-section {
    padding: 100px 0 60px 0;
  }
  .framework-pathway::before {
    left: 20px;
  }
  .framework-marker {
    left: 20px;
    transform: none;
  }
  .framework-node:hover .framework-marker {
    transform: scale(1.08);
  }
  .framework-content {
    width: calc(100% - 46px);
    margin-left: 46px !important;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border-light);
    padding: 16px 0;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .appointment-section {
    padding: 30px;
  }
  .appointment-form-card {
    padding: 20px;
  }
}

@media (min-width: 992px) {
  .journey-step::after {
    content: '';
    position: absolute;
    top: 27px;
    left: calc(50% + 27px);
    right: calc(-50% + 27px);
    height: 2px;
    border-top: 2px dashed var(--border-light);
    z-index: 1;
  }
  .journey-step:last-child::after {
    display: none;
  }
}

/* Section 5: Programme Framework Dashboard style */
.framework-dashboard-section {
  background-color: #18181c; /* Premium dark gray background */
  position: relative;
  overflow: hidden;
}

.dashboard-badge {
  display: inline-block;
  color: var(--accent-gold);
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.dashboard-tabs {
  width: 100%;
}

.dashboard-tab {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dashboard-tab:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.dashboard-tab.active {
  border-color: var(--accent-gold);
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(255, 159, 0, 0.1);
}

.tab-level-box {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--bg-white);
  background-color: rgba(255, 255, 255, 0.08);
  transition: var(--transition-smooth);
}

.dashboard-tab.active .tab-level-box {
  background-color: var(--accent-gold);
  color: #18181c !important;
}

.dashboard-tab .tab-title {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: #8C8C98;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
}

.dashboard-tab.active .tab-title {
  color: #FFFFFF !important;
}

.dashboard-tab .tab-desc {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.4;
  margin-top: 2px;
}

.dashboard-preview-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 35px;
  height: 100%;
}

.preview-top-bar {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.preview-status {
  color: rgba(255, 255, 255, 0.6);
}

.status-dot {
  color: var(--accent-gold);
  margin-right: 6px;
}

.preview-tag {
  color: var(--accent-gold);
}

.preview-title {
  font-family: var(--font-headings);
  font-weight: 800;
  font-size: 1.6rem;
  color: #FFFFFF;
}

.preview-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.section-label {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent-gold);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.word-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.word-pill {
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.8rem;
  color: #FFFFFF;
}

.section-text {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.preview-quiz-card {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  margin-top: 30px;
}

.quiz-label {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.quiz-question {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  color: #FFFFFF;
}

.quiz-options {
  display: flex;
  gap: 8px;
}

.quiz-option {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 6px 14px;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.quiz-option:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
}

.quiz-option.active {
  background-color: #039855; /* Green color from mockup */
  border-color: #039855;
  color: #FFFFFF !important;
}

.quiz-cta-link {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent-gold) !important;
  transition: var(--transition-smooth);
}

.quiz-cta-link:hover {
  color: var(--accent-gold-hover) !important;
}

@media (max-width: 576px) {
  .dashboard-preview-card {
    padding: 20px;
  }
}

/* Section 6: Ecosystem Benefits Dashboard Style */
.benefits-dashboard-section {
  position: relative;
}

.benefits-tabs-wrapper {
  display: inline-flex;
  background-color: rgba(92, 37, 179, 0.05);
  padding: 4px;
  border-radius: 50px;
  border: 1px solid rgba(92, 37, 179, 0.08);
}

.benefit-tab {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--primary-purple);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  white-space: nowrap;
}

.benefit-tab.active {
  background-color: #1A1682; /* Dark blue/purple matching mockup */
  color: var(--bg-white) !important;
  box-shadow: 0 4px 10px rgba(26, 22, 130, 0.15);
}

.stakeholder-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 28px;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.stakeholder-card.active {
  border: 2px solid var(--primary-purple);
  box-shadow: 0 15px 35px rgba(92, 37, 179, 0.08);
}

.stakeholder-card:hover {
  transform: translateY(-2px);
}

.stakeholder-card .card-module-tag {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 850;
  color: var(--primary-purple);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.stakeholder-card .card-module-num {
  font-family: var(--font-headings);
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--primary-purple);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: rgba(92, 37, 179, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stakeholder-card.active .card-module-num {
  background-color: var(--primary-purple);
  color: var(--bg-white);
}

.stakeholder-card h3 {
  font-family: var(--font-headings);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 15px;
  margin-bottom: 20px;
}

.stakeholder-benefit-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.stakeholder-benefit-item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.stakeholder-benefit-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: #039855; /* Green checkmark */
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1;
}

.card-bottom-links {
  border-top: 1px solid #F1F2F6;
  padding-top: 15px;
  margin-top: auto;
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.stakeholder-card.active .card-bottom-links {
  opacity: 1 !important;
}

.card-link-red {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-red) !important;
  text-decoration: none;
  transition: var(--transition-smooth);
}

}

/* Section 7: Collaboration Models */
.collaboration-badge {
  display: inline-block;
  background-color: #ECEBFF;
  color: var(--primary-purple);
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  border: 1px solid rgba(92, 37, 179, 0.12);
}

.model-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 35px 30px;
  height: 100%;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(92, 37, 179, 0.08);
  border-color: rgba(92, 37, 179, 0.15);
}

.model-card .card-scheme {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 850;
  color: #8C8C98;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.model-card .model-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.model-card .model-tagline {
  font-family: var(--font-headings);
  font-size: 0.76rem;
  font-weight: 750;
  color: var(--accent-red);
  margin-bottom: 20px;
}

.model-card .model-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 25px;
  flex-grow: 1;
}

.model-card .fee-row {
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  background-color: #F9FAFB;
}

.model-card .fee-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.model-card .fee-value {
  font-size: 0.72rem;
  font-weight: 800;
  color: #039855;
  background-color: #D1FADF;
  border: 1px solid #A3E635; /* light green outline */
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.model-card .btn-discuss {
  background-color: #18181c;
  color: var(--bg-white) !important;
  font-family: var(--font-headings);
  font-weight: 750;
  font-size: 0.78rem;
  padding: 14px 20px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
}

.model-card .btn-discuss:hover {
  background-color: var(--button-purple);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92, 37, 179, 0.25);
}

.model-card .recommended-badge {
  position: absolute;
  top: -14px;
  right: 25px;
  background-color: var(--accent-red);
  color: var(--bg-white);
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(217, 45, 32, 0.2);
  white-space: nowrap;
  z-index: 5;
}

/* Section 8: Interactive Configurator */
.configurator-container {
  background-color: #FAF9F5;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.simulation-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: #1A1682;
  color: var(--accent-gold);
  padding: 8px 20px;
  border-radius: 0 16px 0 16px;
  font-family: var(--font-headings);
  font-weight: 850;
  font-size: 0.65rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.configurator-title {
  font-family: var(--font-headings);
  font-size: 1.35rem;
  font-weight: 855;
  color: var(--primary-purple-dark);
}

.configurator-title i {
  stroke: var(--primary-purple);
}

.configurator-subtitle {
  font-size: 0.82rem;
  line-height: 1.5;
}

.input-section-label {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 850;
  color: #8C8C98;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.btn-type-select {
  flex: 1;
  background-color: var(--bg-white);
  border: 1px solid #D0D5DD;
  color: var(--text-dark);
  font-family: var(--font-headings);
  font-weight: 750;
  font-size: 0.8rem;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-type-select:hover {
  background-color: #F9FAFB;
  border-color: #98A2B3;
}

.btn-type-select.active {
  background-color: var(--button-purple);
  color: var(--bg-white) !important;
  border-color: var(--button-purple);
  box-shadow: 0 4px 10px rgba(92, 37, 179, 0.15);
}

.strength-display {
  font-family: var(--font-headings);
  font-size: 0.85rem;
}

.custom-slider {
  height: 6px;
  border-radius: 5px;
  background: #E4E7EC;
  outline: none;
  -webkit-appearance: none;
}

.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--button-purple);
  cursor: pointer;
  transition: transform 0.1s;
  box-shadow: 0 2px 6px rgba(92, 37, 179, 0.3);
}

.custom-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.custom-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--button-purple);
  cursor: pointer;
  transition: transform 0.1s;
  box-shadow: 0 2px 6px rgba(92, 37, 179, 0.3);
}

.custom-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.slider-labels span {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 700;
  color: #8C8C98;
}

.deliverables-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(229, 230, 238, 0.8);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.card-section-label {
  font-family: var(--font-headings);
  font-size: 0.68rem;
  font-weight: 855;
  color: var(--accent-red);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.deliverable-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.deliverable-value {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--text-dark);
}

.text-success-green {
  color: #039855 !important;
}

.btn-config-submit {
  background-color: var(--accent-red);
  color: var(--bg-white) !important;
  font-family: var(--font-headings);
  font-weight: 850;
  font-size: 0.76rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  border-radius: 6px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-smooth);
  border: none;
}

.btn-config-submit:hover {
  background-color: var(--accent-red-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 45, 32, 0.25);
}

/* Section 9: How the Collaboration Works */
.journey-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.journey-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(92, 37, 179, 0.04);
  border-color: rgba(92, 37, 179, 0.12);
}

.journey-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.journey-card-num {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-purple);
  background-color: rgba(92, 37, 179, 0.08);
  width: 24px;
  height: 24px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-card-phase {
  font-family: var(--font-headings);
  font-size: 0.58rem;
  font-weight: 800;
  color: #8C8C98;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.journey-card-title {
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.journey-card-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

@media (min-width: 1200px) {
  .journey-column {
    position: relative;
  }
  .journey-column:not(:last-child)::after {
    content: '›';
    position: absolute;
    top: 50%;
    right: -8px;
    transform: translateY(-50%);
    color: #A0A0A5;
    font-size: 1.5rem;
    font-weight: 300;
    z-index: 10;
  }
}

.policy-alert-box {
  border: 1px solid #D1FADF;
  background-color: #F6FEF9;
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.01);
}

.policy-icon-wrapper {
  color: #039855;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-icon-wrapper i {
  width: 22px;
  height: 22px;
  stroke-width: 2.5;
}

.policy-title {
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 800;
  color: #039855;
}

.policy-desc {
  font-size: 0.78rem;
  color: #344054;
  line-height: 1.5;
}

/* Section 10: Testimonials & Case Studies */
.testimonial-carousel-container {
  background-color: #FAF9F5;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
}

.stars-row {
  display: flex;
  gap: 4px;
}

.star-icon {
  width: 16px;
  height: 16px;
}

.star-icon.fill-gold {
  color: var(--accent-gold);
  fill: var(--accent-gold);
}

.testimonial-quote {
  font-size: 1.02rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-dark);
}

.testimonial-author-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-purple);
  background-color: #F3F1FB;
}

.author-details {
  font-size: 0.8rem;
  line-height: 1.4;
}

.author-name {
  font-family: var(--font-headings);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--text-dark);
}

.author-title {
  color: var(--text-muted);
  font-weight: 600;
}

.author-divider {
  color: var(--border-light);
  margin: 0 6px;
}

.author-institution {
  color: var(--text-muted);
  font-weight: 600;
}

.carousel-nav-controls {
  display: flex;
  align-items: center;
}

.btn-carousel-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #D0D5DD;
  background-color: var(--bg-white);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-carousel-nav:hover {
  background-color: #F9FAFB;
  border-color: #98A2B3;
  color: var(--text-dark);
}

.btn-carousel-nav i {
  width: 16px;
  height: 16px;
}

.carousel-nav-counter {
  font-family: var(--font-headings);
  font-size: 0.8rem;
  font-weight: 750;
  color: var(--text-dark);
  width: 44px;
  text-align: center;
}

.stat-card-small {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  transition: var(--transition-smooth);
}

.stat-card-small:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(92, 37, 179, 0.04);
  border-color: rgba(92, 37, 179, 0.12);
}

.stat-card-label {
  font-family: var(--font-headings);
  font-size: 0.65rem;
  font-weight: 850;
  color: #8C8C98;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.stat-card-value {
  font-family: var(--font-headings);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.stat-card-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0;
}

/* Section 11: WhatsApp Enquiry Desk */
.enquiry-desk-badge {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 1px solid rgba(255, 159, 0, 0.4);
  background: rgba(255, 159, 0, 0.1);
  color: var(--accent-gold);
  border-radius: 20px;
  display: inline-block;
}

.enquiry-card-wrapper {
  position: relative;
  z-index: 10;
}

.active-live-badge {
  position: absolute;
  right: 24px;
  top: -14px;
  background-color: #0F9D58;
  color: #FFFFFF;
  font-family: var(--font-headings);
  font-size: 0.68rem;
  font-weight: 750;
  padding: 6px 14px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(15, 157, 88, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.5px;
  z-index: 12;
}

.dot-blink {
  animation: pulse-blink 1.5s infinite;
  display: inline-block;
  margin-right: 4px;
  color: #FFFFFF;
}

@keyframes pulse-blink {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

.enquiry-card {
  border: 1px solid var(--border-light);
}

.enquiry-top-bar {
  border-left: 4px solid #137333;
}

.btn-skip-chat {
  color: #137333 !important;
  border-color: #137333 !important;
  background: transparent;
  transition: var(--transition-smooth);
}

.btn-skip-chat:hover {
  background-color: #137333 !important;
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.form-label-custom {
  font-family: var(--font-headings);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.5px;
  color: #667085;
  margin-bottom: 6px;
  display: block;
}

.custom-input {
  border: 1px solid #D0D5DD;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 0.88rem;
  transition: var(--transition-smooth);
  background-color: #FFFFFF;
  color: var(--text-dark);
}

.custom-input:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 4px rgba(92, 37, 179, 0.1);
  outline: none;
}

.btn-submit-whatsapp {
  background-color: #0F9D58 !important;
  color: #FFFFFF !important;
  transition: var(--transition-smooth);
}

.btn-submit-whatsapp:hover {
  background-color: #0b8043 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(15, 157, 88, 0.3);
}

.contact-hover-link {
  transition: var(--transition-smooth);
}

.contact-hover-link:hover {
  color: var(--accent-gold) !important;
  text-decoration: underline !important;
}

.booking-cache-box {
  background-color: rgba(255, 159, 0, 0.05);
}

@media (max-width: 576px) {
  .active-live-badge {
    right: 50%;
    transform: translateX(50%);
    top: -14px;
    text-align: center;
    width: calc(100% - 40px);
    max-width: 260px;
  }
}

/* Mobile responsive fixes for hero student card badges */
@media (max-width: 480px) {
  .badge-tcs {
    left: 5px !important;
  }
  .badge-reach {
    right: 5px !important;
  }
  .badge-syllabus {
    left: 5px !important;
  }
}




