* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Light Theme (Default) */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f6f3;
  --bg-tertiary: #efefef;
  --text-primary: #1a1a2e;
  --text-secondary: #666666;
  --text-light: #999999;
  --accent: #c9a84c;
  --accent-light: rgba(201, 168, 76, 0.15);
  --border-color: rgba(201, 168, 76, 0.2);
  --card-bg: rgba(255, 255, 255, 0.95);
  --card-border: rgba(201, 168, 76, 0.15);
  --success: #4ade80;
  --shadow: rgba(0, 0, 0, 0.08);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #1a1a2e;
  --bg-secondary: #0f0f23;
  --bg-tertiary: #16213e;
  --text-primary: #f8f4ee;
  --text-secondary: #a0a0a0;
  --text-light: #888888;
  --accent: #c9a84c;
  --accent-light: rgba(201, 168, 76, 0.15);
  --border-color: rgba(201, 168, 76, 0.2);
  --card-bg: rgba(22, 33, 62, 0.8);
  --card-border: rgba(201, 168, 76, 0.15);
  --success: #4ade80;
  --shadow: rgba(0, 0, 0, 0.3);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ===== NAVIGATION ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: var(--bg-primary);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  animation: slideDown 0.6s ease-out;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

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

.nav-logo:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.theme-toggle {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.6rem 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle:hover {
  background: var(--accent);
  color: #1a1a2e;
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #1a1a2e;
  padding: 0.7rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

/* ===== HERO SECTION ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 5%;
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-30px, -30px);
  }
}

.hero-left {
  z-index: 10;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-eyebrow {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out 0.2s both;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  animation: fadeIn 1s ease-out 0.4s both;
}

h1 .accent {
  color: var(--accent);
  display: inline-block;
  animation: textGlow 2s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(201, 168, 76, 0.3);
  }
  50% {
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.6);
  }
}

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

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeIn 1s ease-out 0.6s both;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out 0.8s both;
}

.btn-primary, .btn-outline {
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--accent);
  color: #1a1a2e;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.4);
}

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

.btn-outline:hover {
  background: var(--accent-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.2);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  animation: fadeIn 1s ease-out 1s both;
}

.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.hero-stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.hero-right {
  animation: slideInRight 0.8s ease-out;
  perspective: 1000px;
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-visual {
  position: relative;
  height: 400px;
}

.hero-card-main {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 60px var(--shadow);
  transition: all 0.3s ease;
}

.hero-card-main:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 80px rgba(201, 168, 76, 0.2);
}

.inst-tag {
  color: var(--success);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.hero-card-main h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.location {
  color: var(--text-light);
  margin: 0.8rem 0;
  font-size: 0.95rem;
}

.subjects {
  display: flex;
  gap: 0.8rem;
  margin: 1.2rem 0;
  flex-wrap: wrap;
}

.subject-chip {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.subject-chip:hover {
  background: rgba(201, 168, 76, 0.25);
  transform: scale(1.05);
}

.stars {
  color: var(--accent);
  letter-spacing: 2px;
}

.rating-text {
  color: var(--text-light);
  margin-left: 0.5rem;
  font-size: 0.9rem;
}

.hero-card-stat {
  position: absolute;
  bottom: 20px;
  right: 30px;
  background: var(--accent-light);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 12px;
  padding: 1.5rem;
  animation: bounce 2s ease-in-out infinite;
}

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

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  line-height: 1.4;
}

.hero-card-badge {
  position: absolute;
  top: 20px;
  right: 30px;
  background: rgba(74, 222, 128, 0.2);
  border: 1px solid rgba(74, 222, 128, 0.4);
  color: var(--success);
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(74, 222, 128, 0);
  }
}

/* ===== MARQUEE ===== */
.marquee-section {
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 2rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  animation: scroll 30s linear infinite;
  will-change: transform;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
}

.marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* ===== SECTIONS ===== */
.section-label {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.section-title em {
  color: var(--accent);
  font-style: italic;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

section {
  padding: 5rem 5%;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-primary);
  transition: background 0.3s ease;
}

/* ===== HOW IT WORKS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out both;
  box-shadow: 0 4px 12px var(--shadow);
}

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

.step-card:nth-child(1) { animation-delay: 0.1s; }
.step-card:nth-child(2) { animation-delay: 0.2s; }
.step-card:nth-child(3) { animation-delay: 0.3s; }
.step-card:nth-child(4) { animation-delay: 0.4s; }

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.15);
}

.step-card:hover::before {
  opacity: 1;
}

.step-num {
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.3);
  margin-bottom: 1rem;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: inline-block;
  animation: iconBounce 2s ease-in-out infinite;
}

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

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  animation: slideInLeft 0.8s ease-out;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 0.8s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }
.feature-item:nth-child(5) { animation-delay: 0.5s; }

.feature-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-visual-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  animation: slideInRight 0.8s ease-out;
  box-shadow: 0 4px 12px var(--shadow);
}

.fvc-header {
  color: var(--accent);
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.search-mock {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}

.search-mock-btn {
  background: var(--accent);
  color: #1a1a2e;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-mock-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.3);
}

.result-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 8px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.result-item:hover {
  border-left-color: var(--accent);
  background: var(--accent-light);
  transform: translateX(5px);
}

.result-item-left h4 {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}

.result-item-left span {
  color: var(--text-light);
  font-size: 0.85rem;
}

.result-badge {
  color: var(--accent);
  font-weight: 600;
}

/* ===== INSTITUTES ===== */
.institutes-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 4rem;
}

.institutes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  animation: fadeInUp 0.8s ease-out;
}

.inst-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  animation: fadeInUp 0.8s ease-out both;
  box-shadow: 0 4px 12px var(--shadow);
}

.inst-card:nth-child(1) { animation-delay: 0.1s; }
.inst-card:nth-child(2) { animation-delay: 0.2s; }
.inst-card:nth-child(3) { animation-delay: 0.3s; }
.inst-card:nth-child(4) { animation-delay: 0.4s; }
.inst-card:nth-child(5) { animation-delay: 0.5s; }
.inst-card:nth-child(6) { animation-delay: 0.6s; }

.inst-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.2);
}

.inst-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), rgba(201, 168, 76, 0.6));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.inst-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.inst-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.inst-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.inst-chip {
  background: var(--accent-light);
  color: var(--accent);
  padding: 0.35rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.inst-chip:hover {
  background: rgba(201, 168, 76, 0.25);
  transform: scale(1.08);
}

.inst-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.inst-stars {
  color: var(--accent);
  letter-spacing: 2px;
}

.inst-rating {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-left: 0.5rem;
}

.inst-arrow {
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.inst-card:hover .inst-arrow {
  transform: translateX(5px);
  color: var(--accent);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
  box-shadow: 0 4px 12px var(--shadow);
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.2s; }
.pricing-card:nth-child(3) { animation-delay: 0.3s; }

.pricing-card.featured {
  border-color: var(--accent);
  background: var(--card-bg);
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.2);
}

.pricing-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(201, 168, 76, 0.15);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 80px rgba(201, 168, 76, 0.25);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #1a1a2e;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
  margin-top: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.pricing-period {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-divider {
  height: 1px;
  background: var(--border-color);
  margin-bottom: 1.5rem;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-feature {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  line-height: 1.5;
}

.pricing-check {
  color: var(--success);
  font-weight: 700;
  font-size: 1.2rem;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  background: var(--accent);
  color: #1a1a2e;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.pricing-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.3);
}

/* ===== TESTIMONIALS ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeInUp 0.8s ease-out;
}

.testi-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease-out both;
  box-shadow: 0 4px 12px var(--shadow);
}

.testi-card:nth-child(1) { animation-delay: 0.1s; }
.testi-card:nth-child(2) { animation-delay: 0.2s; }
.testi-card:nth-child(3) { animation-delay: 0.3s; }
.testi-card:nth-child(4) { animation-delay: 0.4s; }
.testi-card:nth-child(5) { animation-delay: 0.5s; }
.testi-card:nth-child(6) { animation-delay: 0.6s; }

.testi-card:hover {
  border-color: var(--accent);
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(201, 168, 76, 0.2);
}

.testi-type {
  display: inline-block;
  color: var(--accent);
  background: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.testi-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.testi-avatar {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent), rgba(201, 168, 76, 0.6));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a1a2e;
  font-size: 1rem;
}

.testi-name {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
}

.testi-role {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .nav-flex {
    flex-direction: column;
    width: 100%;
    order: 3;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 5%;
  }

  h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }

  .hero-actions {
    flex-direction: column;
  }

  .features-layout {
    grid-template-columns: 1fr;
  }

  .institutes-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}
