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

:root {
  --primary-red: #b91c1c;
  /* Deep vibrant red */
  --primary-dark-red: #991b1b;
  --primary-light-red: #fee2e2;
  --accent-red: #dc2626;
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-light: #94a3b8;
  --bg-main: #ffffff;
  --bg-surface: #f8fafc;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(185, 28, 28, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 12px 30px -10px rgba(15, 23, 42, 0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
  letter-spacing: -0.03em;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Badge Utility */
.tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background-color: var(--primary-light-red);
  color: var(--primary-red);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(185, 28, 28, 0.15);
}

.tag-badge i {
  font-size: 1rem;
}

/* Button Utilities */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-dark-red) 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -6px rgba(185, 28, 28, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -6px rgba(185, 28, 28, 0.7);
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--primary-red) 100%);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-main);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-red);
  color: var(--primary-red);
  background-color: var(--primary-light-red);
}

.btn-white {
  background-color: #ffffff;
  color: var(--primary-red);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  background-color: var(--primary-light-red);
}

.btn-full {
  width: 100%;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 20px;
  flex-wrap: nowrap;
}

.logo-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-logo {
  display: block;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
}

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

.logo-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.logo-title span {
  color: var(--primary-red);
}

.logo-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
}

.nav-item {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-item:hover {
  color: var(--primary-red);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary-red);
  transition: var(--transition);
}

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

/* Nav Dropdown */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropbtn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  padding: 0;
}

.nav-dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 220px;
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 1000;
  margin-top: 8px;
}

.nav-dropdown:hover .nav-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  color: var(--text-main);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-item i {
  color: var(--primary-red);
  font-size: 1rem;
  width: 20px;
}

.dropdown-item:hover {
  background-color: var(--primary-light-red);
  color: var(--primary-red);
  padding-left: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  flex-shrink: 0;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
}

.contact-phone i {
  color: var(--primary-red);
  font-size: 1.25rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--text-main);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: 60px 0 90px 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.95)), url('/client-work/vani/guy-studying.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--primary-red), #e11d48);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}

.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
}

.bullet-icon {
  width: 28px;
  height: 28px;
  background-color: var(--primary-light-red);
  color: var(--primary-red);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-color);
}

.trust-stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--primary-red);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Hero Lead Form */
.hero-form-card {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(226, 232, 240, 0.8);
  position: relative;
  z-index: 2;
}

.form-badge {
  position: absolute;
  top: -16px;
  right: 32px;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.form-header {
  margin-bottom: 28px;
  text-align: center;
}

.form-title {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

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

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

.form-input-box {
  position: relative;
  display: flex;
  align-items: center;
}

.form-input-box i {
  position: absolute;
  left: 16px;
  color: var(--text-light);
  font-size: 1.1rem;
}

.form-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #fafafa;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-red);
  background-color: white;
  box-shadow: 0 0 0 4px var(--primary-light-red);
}

select.form-input {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

.form-footer {
  margin-top: 24px;
  text-align: center;
}

.secure-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* Results Section */
.results {
  padding: 100px 0;
  background-color: var(--bg-surface);
  position: relative;
  display: block;
  width: 100%;
  clear: both;
}


.section-header {
  text-align: center;
  margin: 0 auto 56px auto;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text-main);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
}

.results-stats-wrapper {
  position: relative;
  z-index: 10;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(135deg, rgba(185, 28, 28, 0.85), rgba(153, 27, 27, 0.9)), url('/client-work/vani/studying.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  padding: 64px 0;
  margin: 64px 0 80px 0;
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.2);
}

.results-stats-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: white;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
}

.stat-card-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: white;
  margin-bottom: 8px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.stat-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.rankers-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 56px;
}

.ranker-premium-card {
  background: linear-gradient(135deg, #ffffff 0%, #fcf8f8 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(185, 28, 28, 0.15);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition);
}

.ranker-premium-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 35px -10px rgba(185, 28, 28, 0.2);
  border-color: var(--primary-red);
}

.ranker-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: linear-gradient(135deg, var(--primary-red), #991b1b);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
  letter-spacing: 0.05em;
}

.ranker-avatar {
  width: 90px;
  height: 90px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light-red), #fecdd3);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2rem;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
  overflow: hidden;
}

.ranker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ranker-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.ranker-exam {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  background-color: var(--primary-light-red);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
}

.ranker-quote {
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

.student-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.student-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.student-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(185, 28, 28, 0.3);
}

.student-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-light-red), #fecdd3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary-red);
  flex-shrink: 0;
  border: 2px solid white;
  box-shadow: var(--shadow-sm);
}

.student-info {
  flex-grow: 1;
}

.student-rank {
  display: inline-block;
  background-color: var(--primary-red);
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.student-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.student-stream {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Programs Section */
.programs {
  padding: 100px 0;
  background-color: white;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.program-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.program-card.highlight {
  background: linear-gradient(to bottom, #ffffff, var(--bg-surface));
  border: 2px solid var(--primary-red);
  box-shadow: var(--shadow-card);
}

.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.program-card-head {
  margin-bottom: 32px;
}

.program-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light-red);
  color: var(--primary-red);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
}

.highlight .program-icon {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
  color: white;
}

.program-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.program-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.program-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.p-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-main);
}

.p-feature-item i {
  color: var(--primary-red);
  font-size: 1.2rem;
}

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

.batch-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.batch-info i {
  color: #f59e0b;
}

/* Why Vani Section */
.why-vani {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 64px;
}

.benefit-card {
  background-color: white;
  padding: 36px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(185, 28, 28, 0.3);
}

.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: var(--primary-light-red);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
  background-color: var(--primary-red);
  color: white;
}

.benefit-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.benefit-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Faculty Section */
.faculty-section {
  margin-top: 80px;
}

.faculty-header {
  text-align: center;
  margin-bottom: 40px;
}

.faculty-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

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

.faculty-card {
  background-color: white;
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.faculty-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary-dark-red), var(--primary-red));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.faculty-details {
  flex-grow: 1;
}

.faculty-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}

.faculty-exp {
  font-size: 0.85rem;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faculty-subject {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background-color: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background-color: var(--bg-surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 3rem;
  color: var(--primary-light-red);
  opacity: 0.6;
}

.rating-stars {
  display: flex;
  gap: 4px;
  color: #f59e0b;
  margin-bottom: 20px;
}

.review-text {
  font-size: 1.05rem;
  color: var(--text-main);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background-color: var(--primary-red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  overflow: hidden;
  flex-shrink: 0;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reviewer-info {
  flex-grow: 1;
}

.reviewer-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-main);
}

.reviewer-tag {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* FAQ Section */
.faq {
  padding: 100px 0;
  background-color: var(--bg-surface);
}

.faq-container {
  max-width: 840px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-main);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary-red);
}

.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background-color: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}

.faq-item.active {
  border-color: var(--primary-red);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-toggle {
  background-color: var(--primary-red);
  color: white;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-content {
  padding: 0 32px 28px 32px;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Final CTA Section */
.cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, rgba(153, 27, 27, 0.88), rgba(185, 28, 28, 0.92)), url('/client-work/vani/guy-studying.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
  background-size: 32px 32px;
}

.cta-box {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: 3.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.15rem;
}

.cta-contact-direct {
  margin-top: 32px;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-contact-direct a {
  font-weight: 700;
  color: white;
  text-decoration: underline;
}

/* Footer */
.footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 80px 0 40px 0;
  border-top: 1px solid #1e293b;
}

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

.footer-brand .logo-title {
  color: white;
}

.footer-brand p {
  margin-top: 20px;
  max-width: 360px;
  line-height: 1.7;
}

.footer-heading {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a:hover {
  color: white;
}

.centers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.center-loc {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.center-loc i {
  color: var(--primary-red);
  margin-top: 4px;
}

.center-loc span {
  font-weight: 600;
  color: #cbd5e1;
}

.footer-bottom {
  padding-top: 36px;
  border-top: 1px solid #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.techsters-credit {
  color: #64748b;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background-color: #25d366;
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(-5deg);
  background-color: #20ba5c;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.5);
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
  position: relative;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background-color: var(--bg-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  font-size: 1.25rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: var(--primary-light-red);
  color: var(--primary-red);
}

/* Success Alert */
.alert-box {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

/* Mobile Sticky Footer CTA */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 16px;
  z-index: 98;
  border-top: 1px solid var(--border-color);
}

.mobile-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-sticky-call {
  background-color: #2563eb;
  color: white;
  padding: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-sticky-counseling {
  background: linear-gradient(135deg, var(--primary-red), var(--primary-dark-red));
  color: white;
  padding: 12px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .results-stats-wrapper {
    padding: 48px 0;
  }

  .results-stats-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    padding: 0 24px;
  }

  .stat-card:not(:last-child)::after {
    display: none;
  }

  .rankers-showcase-grid,
  .student-highlights,
  .programs-grid,
  .benefits-grid,
  .faculty-grid,
  .testimonials-grid,
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .nav-links,
  .contact-phone {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero {
    padding: 32px 0 60px 0;
  }

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

  .stat-num {
    font-size: 1.5rem;
  }

  .hero-form-card {
    padding: 28px 24px;
  }

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

  .results-stats-wrapper {
    padding: 36px 0;
  }

  .results-stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 0 16px;
  }

  .stat-card-num {
    font-size: 2rem;
  }

  .rankers-showcase-grid,
  .student-highlights,
  .programs-grid,
  .benefits-grid,
  .faculty-grid,
  .testimonials-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .whatsapp-float {
    bottom: 84px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 1.85rem;
  }

  .mobile-sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 72px;
    /* space for sticky mobile footer */
  }
}