/* style.css - High Score PTE Academic */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Public+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --primary: #3b2fcd;
  --primary-light: #5a4ee4;
  --primary-dark: #271db3;
  --secondary: #ffbd12;
  --secondary-hover: #e0a30b;
  --bg-main: #fcfcff;
  --bg-card: #ffffff;
  --text-main: #0c0b24;
  --text-muted: #53526c;
  --border-light: #e6e5f3;
  --shadow-sm: 0 4px 6px -1px rgba(59, 47, 205, 0.05), 0 2px 4px -1px rgba(59, 47, 205, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(59, 47, 205, 0.08), 0 4px 6px -2px rgba(59, 47, 205, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(59, 47, 205, 0.12), 0 10px 10px -5px rgba(59, 47, 205, 0.04);
  --success: #10b981;
  --danger: #ef4444;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Public Sans', sans-serif;

  /* Spacing */
  --container-max: 1200px;
  --section-gap: 100px;
  --border-radius: 16px;
}

/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f8f8fc;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(rgba(248, 248, 252, 0.45), rgba(248, 248, 252, 0.45)),
    url('assets/testimonials/study_abroad_students.jpg') no-repeat center center;
  background-size: cover;
  z-index: -1;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Reusable Components */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  gap: 8px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(59, 47, 205, 0.35);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 47, 205, 0.45);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-main);
  box-shadow: 0 4px 14px rgba(255, 189, 18, 0.25);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 189, 18, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-main);
  position: relative;
}

.section-subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 60px auto;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Panel */
.glass-panel {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 20px 0;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled {
  background: rgba(12, 11, 36, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 50px;
  width: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo span {
  color: var(--secondary);
}

.logo i {
  color: var(--secondary);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  padding: 0;
}

/* Background Image Slider */
.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  transform: scale(1.05);
}

.hero-bg-slider .slide.active {
  opacity: 1;
  animation: kenBurnsZoom 8s ease-in-out forwards;
}

@keyframes kenBurnsZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.12);
  }
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(12, 11, 36, 0.85) 0%, rgba(12, 11, 36, 0.6) 50%, rgba(12, 11, 36, 0.85) 100%);
  z-index: 2;
}

.hero-container-centered {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-content-centered {
  max-width: 800px;
  margin: 0 auto;
}

.hero-content-centered .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-left: auto;
  margin-right: auto;
}

.hero-content-centered .hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: white;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content-centered .hero-desc {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-actions.centered {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 48px;
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.hero-stats.centered {
  display: flex;
  justify-content: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  max-width: 580px;
  margin: 0 auto;
}

.hero-stats.centered .stat-box h3 {
  font-size: 2.2rem;
  color: var(--secondary);
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero-stats.centered .stat-box p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Hero Graphic / Interactive Scorecard */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scorecard-mockup {
  width: 100%;
  max-width: 420px;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  border: 1px solid var(--border-light);
  position: relative;
  z-index: 2;
  transform: rotate(-1deg);
  transition: transform 0.5s ease;
}

.scorecard-mockup:hover {
  transform: rotate(0) scale(1.02);
}

.scorecard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.badge-verified {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--success);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.scorecard-student {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scorecard-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
}

.scorecard-overall {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.scorecard-overall h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 4px;
}

.scorecard-number {
  font-size: 3rem;
  font-weight: 800;
}

.scorecard-skills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.skill-bar {
  background: var(--bg-main);
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill-bar span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.skill-score {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary) !important;
}

/* Floating background elements */
.circle-glow {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(80px);
}

.circle-1 {
  width: 300px;
  height: 300px;
  background-color: rgba(59, 47, 205, 0.12);
  top: -50px;
  right: -50px;
}

/* Interactive Score Converter */
.score-section {
  padding: var(--section-gap) 0;
  background-color: #f6f5fc;
}

.converter-box {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
}

.converter-controls {
  margin-bottom: 32px;
}

.slider-wrapper {
  position: relative;
  padding: 20px 0;
}

input[type=range].score-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: var(--border-light);
  outline: none;
}

input[type=range].score-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--secondary);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(59, 47, 205, 0.3);
  transition: transform 0.1s ease;
}

input[type=range].score-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.slider-markers {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.85rem;
}

.converter-display {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  text-align: center;
  margin-top: 40px;
}

.convert-card {
  padding: 24px;
  border-radius: 12px;
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.convert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.convert-card h4 {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.convert-val {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}

.convert-card.featured {
  border: 2px solid var(--primary);
  position: relative;
  overflow: hidden;
}

.convert-card.featured::before {
  content: 'Target';
  position: absolute;
  top: 12px;
  right: -24px;
  background: var(--secondary);
  color: var(--text-main);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 24px;
  transform: rotate(45deg);
  text-transform: uppercase;
}

/* PTE Practice Hub (Mock Test Simulator) */
.practice-section {
  padding: var(--section-gap) 0;
}

.practice-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.tab-btn {
  background: white;
  border: 1px solid var(--border-light);
  padding: 14px 24px;
  border-radius: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.tab-btn.active {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 47, 205, 0.2);
}

.practice-content {
  min-height: 400px;
}

.practice-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.practice-panel.active {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

/* Panel Instructions / Prompt */
.panel-prompt {
  padding: 32px;
  background-color: #f7f6fc;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-light);
}

.panel-prompt h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
}

.prompt-instruction {
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.prompt-body {
  font-size: 1.05rem;
  line-height: 1.8;
  background: white;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
}

/* Interactive elements in prompt */
.speaking-image-container {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  background: #f0f0f8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px dashed var(--primary);
}

.speaking-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Blanks style inside prompt */
.blank-dropdown {
  padding: 4px 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 4px;
  border: 2px solid var(--primary-light);
  background-color: var(--bg-main);
  color: var(--primary);
  outline: none;
  margin: 0 4px;
  cursor: pointer;
}

/* Audio Player */
.audio-player-wrapper {
  background: var(--bg-main);
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.audio-control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.audio-control-btn:hover {
  background-color: var(--primary-light);
}

.audio-progress-bar {
  flex-grow: 1;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.audio-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
  transition: width 0.1s linear;
}

/* Simulator Interface (Right Side) */
.simulator-box {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--border-light);
}

.simulator-box h3 {
  font-size: 1.4rem;
  margin-bottom: 24px;
  text-align: center;
}

.recorder-ui {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 30px 0;
}

.recorder-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(59, 47, 205, 0.1);
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 2rem;
}

.recorder-btn:hover {
  background-color: var(--primary);
  color: white;
  transform: scale(1.05);
}

.recorder-btn.recording {
  background-color: var(--danger);
  border-color: var(--danger);
  color: white;
  animation: pulse-border 1.5s infinite;
}

.recorder-status {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.recorder-status.active {
  color: var(--danger);
}

.voice-wave {
  display: flex;
  gap: 4px;
  height: 40px;
  align-items: center;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.voice-wave.active {
  opacity: 1;
}

.wave-bar {
  width: 4px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 2px;
  transition: height 0.1s;
}

.voice-wave.active .wave-bar {
  background-color: var(--danger);
  animation: bounce-bar 0.8s infinite ease-in-out alternate;
}

/* Custom delays for waves */
.wave-bar:nth-child(2) { animation-delay: 0.1s; }
.wave-bar:nth-child(3) { animation-delay: 0.25s; }
.wave-bar:nth-child(4) { animation-delay: 0.15s; }
.wave-bar:nth-child(5) { animation-delay: 0.3s; }
.wave-bar:nth-child(6) { animation-delay: 0.2s; }

/* Text input / Essay area */
.essay-textarea {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  padding: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  resize: none;
  transition: border-color 0.3s;
}

.essay-textarea:focus {
  border-color: var(--primary-light);
}

.essay-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.timer-box {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-main);
}

/* Feedback panel */
.feedback-box {
  margin-top: 30px;
  padding: 24px;
  border-radius: 12px;
  background-color: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  display: none;
  animation: slideUp 0.4s ease forwards;
}

.feedback-box.active {
  display: block;
}

.feedback-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.feedback-title {
  color: var(--success);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.feedback-score-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-display);
}

.feedback-list {
  font-size: 0.9rem;
  color: var(--text-muted);
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Course Plans & Pricing */
.plans-section {
  padding: var(--section-gap) 0;
  background: radial-gradient(circle at 10% 20%, rgba(59, 47, 205, 0.04), transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 189, 18, 0.06), transparent 35%);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.plan-card {
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(59, 47, 205, 0.2);
}

.plan-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: rgba(255, 189, 18, 0.2);
  color: #c98e00;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.plan-card.featured {
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-md);
}

.plan-card.featured:hover {
  box-shadow: var(--shadow-lg), 0 0 25px rgba(59, 47, 205, 0.15);
}

.plan-title {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
}

.plan-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
}

.plan-features {
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-features li {
  font-size: 0.95rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-main);
}

.plan-features i {
  color: var(--success);
}

/* Wall of Fame (Testimonials) */
.testimonials-section {
  padding: var(--section-gap) 0;
  background-color: #f7f7fc;
  overflow: hidden;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  padding: 20px;
}

.testimonial-card {
  padding: 48px;
  border-radius: var(--border-radius);
  background: white;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.testimonial-content i {
  font-size: 2.5rem;
  color: rgba(59, 47, 205, 0.1);
  display: block;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary);
}

.testimonial-info {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.testimonial-scores-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: #fcfcff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}

.testimonial-score-header {
  grid-column: span 2;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.testimonial-score-header .title {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.testimonial-score-header .val {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--success);
  font-family: var(--font-display);
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--border-light);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.slider-dot.active {
  background-color: var(--primary);
  width: 28px;
  border-radius: 50px;
}

/* Interactive Booking Section */
.booking-section {
  padding: var(--section-gap) 0;
  background-color: white;
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.booking-text h2 {
  font-size: 2.8rem;
  margin-bottom: 24px;
}

.booking-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.booking-bullets {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bullet-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(59, 47, 205, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.bullet-desc h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.bullet-desc p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

/* Multistep Booking Form */
.booking-form-box {
  padding: 40px;
  border: 1px solid var(--border-light);
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.form-step.active {
  display: block;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 36px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border-light);
  z-index: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-muted);
  z-index: 2;
  position: relative;
  transition: all 0.3s;
}

.step-dot.active {
  border-color: var(--primary);
  background: var(--primary);
  color: white;
  box-shadow: 0 0 10px rgba(59, 47, 205, 0.2);
}

.step-dot.completed {
  border-color: var(--success);
  background: var(--success);
  color: white;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary-light);
}

.select-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.chip-btn {
  background: white;
  border: 1px solid var(--border-light);
  padding: 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}

.chip-btn:hover {
  border-color: var(--primary-light);
  background: rgba(59, 47, 205, 0.02);
}

.chip-btn.active {
  border-color: var(--primary);
  background-color: rgba(59, 47, 205, 0.08);
  color: var(--primary);
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

/* Footer */
footer {
  background-color: var(--text-main);
  color: white;
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin: 16px 0 24px 0;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  color: white;
  font-size: 1rem;
}

.social-link:hover {
  background: var(--primary);
}

.footer-links h4, .footer-contact h4 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-contact i {
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-border {
  0% { box-shadow: 0 0 0 0 rgba(239, 68, 110, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(239, 68, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(239, 68, 110, 0); }
}

@keyframes bounce-bar {
  0% { height: 8px; }
  100% { height: 36px; }
}

/* Scroll Reveal CSS */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Entrance Animations */
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.hero-content .hero-badge { animation-delay: 0.1s; }
.hero-content .hero-title { animation-delay: 0.25s; }
.hero-content .hero-desc  { animation-delay: 0.4s; }
.hero-content .hero-actions { animation-delay: 0.55s; }
.hero-content .hero-stats { animation-delay: 0.7s; }

@keyframes heroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Graphic Student Image Wrapper & Scorecard Overlay */
.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid white;
  z-index: 1;
  animation: floatImage 6s ease-in-out infinite;
}

.hero-slideshow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1), transform 5s ease-in-out;
  transform: scale(1.02);
}

.hero-slideshow-img.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.1);
}

.scorecard-mockup.overlay-card {
  position: absolute;
  bottom: -20px;
  left: -40px;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  animation: floatCard 6s ease-in-out infinite alternate;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes floatCard {
  0% { transform: translateY(0) rotate(-3deg); }
  100% { transform: translateY(-10px) rotate(-1deg); }
}

/* Booking Section Image Background */
.booking-section.image-bg {
  background-image: linear-gradient(rgba(12, 11, 36, 0.88), rgba(59, 47, 205, 0.85)), url('student_campus.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
}

.booking-section.image-bg .booking-text h2 {
  color: white;
}

.booking-section.image-bg .bullet-desc p {
  color: rgba(255, 255, 255, 0.8);
}

.booking-section.image-bg .bullet-icon {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--secondary);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  :root {
    --section-gap: 80px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plans-grid .plan-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(12, 11, 36, 0.98);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

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

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 140px 0 60px 0;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-desc {
    font-size: 1rem;
    padding: 0 16px;
  }

  .hero-stats.centered {
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 24px;
  }

  .hero-stats.centered .stat-box {
    flex: 1 1 120px;
  }

  .converter-display {
    grid-template-columns: 1fr;
  }

  .practice-panel.active {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .panel-prompt {
    padding: 20px;
  }

  .testimonial-card {
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .plans-grid .plan-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-form-box {
    padding: 24px;
  }

  .practice-tabs {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .tab-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
    flex: 1 1 calc(50% - 10px);
    justify-content: center;
  }
}

/* Infinite Scrolling Testimonials Marquee */
.hero-marquee {
  margin-top: 60px;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: rgba(59, 47, 205, 0.03);
  border-top: 1px solid rgba(59, 47, 205, 0.08);
  border-bottom: 1px solid rgba(59, 47, 205, 0.08);
  padding: 16px 0;
  z-index: 2;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: scrollMarquee 30s linear infinite;
  will-change: transform;
}

.marquee-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 12px 24px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(12, 11, 36, 0.04);
  border: 1px solid rgba(59, 47, 205, 0.08);
  white-space: nowrap;
}

.marquee-card .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.marquee-card .info {
  display: flex;
  flex-direction: column;
}

.marquee-card .info strong {
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
}

.marquee-card .info span {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.marquee-card .quote {
  color: var(--text-muted);
  font-style: italic;
  font-size: 0.85rem;
  border-left: 2px solid var(--border-light);
  padding-left: 12px;
}

@keyframes scrollMarquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.hero-marquee:hover .marquee-track {
  animation-play-state: paused;
}

/* ==========================================================================
   RESULTS SECTION
   ========================================================================== */
.results-section {
  padding: var(--section-gap) 0;
  background-color: transparent;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pte-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.result-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: white;
  border: 1px solid var(--border-light);
}
.result-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.result-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #f3f2fa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.result-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.result-card:hover .result-image-wrapper img {
  transform: scale(1.05);
}
.result-badge {
  padding: 16px;
  background: white;
  color: var(--text-main);
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  font-size: 1.1rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   REVIEWS (WHAT OUR STUDENTS SAY) SECTION
   ========================================================================== */
.reviews-section {
  padding: var(--section-gap) 0;
  background-color: transparent;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.reviews-carousel-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 50px;
}
.carousel-container {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 24px;
}
.review-card {
  flex: 0 0 calc(50% - 12px);
  background: white;
  border-radius: var(--border-radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}
.review-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.review-header .stars {
  color: var(--secondary);
  font-size: 0.95rem;
}
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--success);
  font-size: 0.8rem;
  font-weight: 600;
}
.review-image-container {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  z-index: 10;
}
.carousel-nav-btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(59, 47, 205, 0.3);
}
.carousel-nav-btn.prev-btn {
  left: 0;
}
.carousel-nav-btn.next-btn {
  right: 0;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59, 47, 205, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 10px;
}

/* ==========================================================================
   VIDEOS (SUCCESS STORIES) SECTION
   ========================================================================== */
.videos-section {
  padding: var(--section-gap) 0;
  background-color: transparent;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.video-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16;
  background: #000;
  overflow: hidden;
  border-radius: var(--border-radius);
}
.testimonial-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(12, 11, 36, 0.2) 0%, rgba(12, 11, 36, 0.75) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.video-container.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}
.video-overlay .play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 189, 18, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 16px;
}
.video-overlay:hover .play-btn {
  transform: scale(1.15);
  background: white;
  box-shadow: 0 4px 25px rgba(255, 255, 255, 0.6);
}
.video-overlay .video-title {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  padding: 0 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* ==========================================================================
   GALLERY (OUR CLASSROOM) SECTION
   ========================================================================== */
.gallery-section {
  padding: var(--section-gap) 0;
  background-color: transparent;
  border-top: 1px solid var(--border-light);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.gallery-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 350px;
  background-color: #f3f2fa;
}
.gallery-image-wrapper {
  width: 100%;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 11, 36, 0.8);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.overlay-content {
  text-align: center;
  color: white;
  padding: 24px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
.gallery-item:hover .overlay-content {
  transform: translateY(0);
}
.overlay-content i {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 12px;
}
.overlay-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.overlay-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ==========================================================================
   ABOUT INSTRUCTOR SECTION
   ========================================================================== */
.about-section {
  padding: var(--section-gap) 0;
  background-color: transparent;
  border-top: 1px solid var(--border-light);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(12, 11, 36, 0.85), transparent);
  padding: 20px;
  color: white;
}
.about-image-overlay h4 {
  margin: 0;
  font-size: 1.25rem;
}
.about-image-overlay p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.about-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(59, 47, 205, 0.1);
  color: var(--primary);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(59, 47, 205, 0.2);
}
.about-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 10px 0 20px 0;
  line-height: 1.2;
}
.about-content h2 span {
  color: var(--primary);
  padding: 0;
  font-size: inherit;
  font-weight: inherit;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 20px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.about-stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(59, 47, 205, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
}
.about-stat-info h5 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}
.about-stat-info p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-main);
}

/* ==========================================================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ========================================================================== */
@media (max-width: 992px) {
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pte-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .results-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 20px 20px;
    margin: 0 -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .results-grid::-webkit-scrollbar {
    height: 6px;
  }
  .results-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  .results-grid::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
  }
  .results-grid .result-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .review-card {
    flex: 0 0 100%;
  }
  .reviews-carousel-wrapper {
    padding: 0 30px;
  }
  .carousel-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
  .videos-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 20px 20px;
    margin: 0 -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .videos-grid::-webkit-scrollbar {
    height: 6px;
  }
  .videos-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  .videos-grid::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
  }
  .videos-grid .video-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    height: 280px;
  }
  .plans-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 10px 20px 20px 20px;
    margin: 0 -20px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .plans-grid::-webkit-scrollbar {
    height: 6px;
  }
  .plans-grid::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
  }
  .plans-grid::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
  }
  .plans-grid .plan-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    margin-bottom: 0;
  }
  .hero-content-centered {
    padding: 30px 20px;
    border-radius: 20px;
    margin: 0 10px;
  }
  .hero-content-centered .hero-title {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .hero-content-centered .hero-desc {
    font-size: 1rem;
    margin-bottom: 24px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .about-content h2 {
    font-size: 2rem;
  }
}

/* Premium Frosted-Glass Section Backings for 100% Legibility */
.score-section,
.about-section,
.plans-section,
.results-section,
.reviews-section,
.videos-section,
.gallery-section,
.booking-section {
  background-color: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

footer {
  background-color: rgba(12, 11, 36, 0.9) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
