/* ============================================================
   Spectra NEET Repeaters - Pixel-Perfect Stylesheet
   Matching Figma design exactly
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800;900&family=Archivo+Narrow:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: #fff;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 12px 0;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-contact {
  font-size: 14px;
  font-weight: 600;
  color: #0B54A0;
}

.nav-contact a {
  color: #0B54A0;
}

/* Navbar Enroll Now CTA */
.nav-enroll-btn {
  display: inline-flex;
  align-items: center;
  background: #0B54A0;
  color: #fff !important;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.2s;
}
.nav-enroll-btn:hover {
  background: #094489;
  color: #fff !important;
  transform: translateY(-1px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  /* herobackground.png from assets */
  background: #ddeef8 url('../assets/herobackground.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 70px 0 70px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 64px;
  align-items: center;
  width: 100%;
}

/* ---- Hero Left ---- */
.hero-tag {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #0B54A0;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 50px;
  font-weight: 700;
  color: #0B54A0;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 15px;
  color: #3a4a6a;
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-enroll {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #0B54A0;
  color: #fff;
  padding: 13px 30px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-enroll:hover {
  background: #094489;
  transform: translateY(-1px);
}

.btn-brochure {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0B54A0;
  padding: 11px 30px;
  border-radius: 6px;
  font-size: 14.5px;
  font-weight: 700;
  border: 2px solid #0B54A0;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-brochure:hover {
  background: #0B54A0;
  color: #fff;
}

/* ---- Stats Bar ---- */
.hero-stats-bar {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 10px;
  padding: 14px 0;
  max-width: 520px;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(16, 60, 114, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-size: 26px;
  font-weight: 900;
  color: #0B54A0;
  line-height: 1;
}

.stat-num span {
  font-size: 14px;
  font-weight: 700;
}

.stat-lbl {
  font-size: 11px;
  color: #5a6a8a;
  margin-top: 3px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ---- Form Card ---- */
.form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 40px rgba(16, 60, 114, 0.12);
  padding: 36px 36px 32px;
  width: 100%;
}

.form-card-h {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  text-align: center;
  margin-bottom: 6px;
}

.form-card-sub {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 22px;
}

/* ---- Form Fields ---- */
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.frow-1 {
  margin-bottom: 12px;
}

.fgroup {
  display: flex;
  flex-direction: column;
}

/* Row for phone + send OTP — same row, phone takes remaining space */
.frow-phone {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: stretch;
}

.frow-phone .finput-phone {
  flex: 1;
}

/* +91 prefix wrapper */
.phone-prefix-wrap {
  flex: 1;
  display: flex;
  align-items: stretch;
  border: 1.5px solid #dde3ee;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  transition: border 0.2s, box-shadow 0.2s;
}

.phone-prefix-wrap:focus-within {
  border-color: #0B54A0;
  box-shadow: 0 0 0 3px rgba(16, 60, 114, 0.1);
}

.phone-prefix {
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0B54A0;
  background: #f0f5fb;
  border-right: 1.5px solid #dde3ee;
  white-space: nowrap;
  user-select: none;
  flex-shrink: 0;
}

.phone-prefix-wrap .finput-phone {
  flex: 1;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding-left: 12px;
}

.finput,
.fselect {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #dde3ee;
  border-radius: 7px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a1a2e;
  background: #fff;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.finput::placeholder {
  color: #aab4c4;
  font-size: 13.5px;
}

.finput:focus,
.fselect:focus {
  border-color: #0B54A0;
  box-shadow: 0 0 0 3px rgba(16, 60, 114, 0.1);
}

.finput.error {
  border-color: #e63946;
}

.finput.ok {
  border-color: #2cb84b;
}

.fselect {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23aab4c4' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
  cursor: pointer;
}

.fselect option[value=""] {
  color: #aab4c4;
}

.fselect option {
  color: #1a1a2e;
}

/* ---- OTP ---- */
.btn-otp {
  padding: 12px 14px;
  background: #0B54A0;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

.btn-otp:hover:not(:disabled) {
  background: #094489;
}

.btn-otp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.otp-row {
  display: none;
  gap: 8px;
  margin-top: 10px;
}

.otp-row.show {
  display: flex;
}

.otp-row .finput {
  letter-spacing: 6px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.btn-verify {
  padding: 12px 14px;
  background: #2cb84b;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-verify:hover {
  background: #22953d;
}

.otp-meta {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
  text-align: center;
  display: none;
}

.otp-meta.show {
  display: block;
}

.resend-link {
  color: #0B54A0;
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
}

.verified-row {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #2cb84b;
  margin-top: 8px;
}

.verified-row.show {
  display: flex;
}

/* ---- hCaptcha ---- */
.hcaptcha-wrap {
  margin: 12px 0;
  display: flex;
  justify-content: center;
}

/* ---- Form Msg ---- */
.form-alert {
  padding: 11px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 12px;
  display: none;
  text-align: center;
}

.form-alert.err {
  background: #fef0f0;
  color: #e63946;
  border: 1px solid #fecaca;
  display: block;
}

.form-alert.ok {
  background: #f0fdf4;
  color: #2cb84b;
  border: 1px solid #a7f3d0;
  display: block;
}

/* ---- Submit ---- */
.btn-submit {
  width: 100%;
  padding: 15px;
  background: #0B54A0;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-submit:hover:not(:disabled) {
  background: #094489;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 60, 114, 0.35);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-submit .arrow {
  font-size: 14px;
}

/* ============================================================
   STATS BAR SECTION
   ============================================================ */
.stats-section {
  background: #fff;
  padding: 28px 0;
  border-top: 1px solid #e8eef8;
  border-bottom: 1px solid #e8eef8;
}

.stats-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stats-bar-item {
  border: 1.5px solid #c8d8ee;
  border-radius: 10px;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  transition: box-shadow 0.2s;
}

.stats-bar-item:hover {
  box-shadow: 0 4px 16px rgba(30, 84, 160, 0.10);
}

.sbi-num {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0B54A0;
  line-height: 1;
  display: inline;
}

.sbi-unit {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0B54A0;
  display: inline;
}

.sbi-label {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #4a5568;
  margin-top: 2px;
  line-height: 1.3;
}

/* ============================================================
   WHY SPECTRA SECTION
   ============================================================ */
.why-section {
  background: #fff;
  padding: 70px 0 60px;
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* Left image column */
.why-image-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-main-img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  display: block;
}

/* overlay badges on image */
.why-badge-tl,
.why-badge-tr {
  position: absolute;
  top: 16px;
  width: 80px;
  height: 80px;
  z-index: 2;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.why-badge-tl {
  left: 0;
}

.why-badge-tr {
  right: 0;
}

.why-badge-tl img,
.why-badge-tr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* years badge */
.why-years-badge {
  position: absolute;
  bottom: 180px;
  left: -8px;
  background: #f5c518;
  color: #0B54A0;
  font-weight: 900;
  font-size: 11px;
  padding: 7px 12px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.why-years-badge .yb-num {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

/* trusted badge */
.why-trusted-badge {
  position: absolute;
  bottom: 180px;
  right: -8px;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.why-trusted-badge img {
  width: 72px;
  height: auto;
}

/* Bottom welcome banner image */
.why-banner-img {
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
  border-radius: 10px;
  display: block;
}

/* Right content */
.why-content {
  padding-left: 8px;
}

.why-title {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0B54A0;
  margin-bottom: 24px;
  line-height: 1.2;
}

.why-text {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 15.5px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 20px;
}

.why-text2 {
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 15.5px;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 36px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0B54A0;
  color: #fff;
  padding: 13px 30px;
  border-radius: 7px;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-download:hover {
  background: #094489;
  transform: translateY(-1px);
}

/* ============================================================
   BANNER (Now Welcoming)
   ============================================================ */
.banner-section {
  background: linear-gradient(90deg, #0a2a5e 0%, #0B54A0 100%);
  padding: 40px 0;
  overflow: hidden;
}

.banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
}

.banner-img {
  max-width: 600px;
  width: 100%;
}

/* ============================================================
   NEET TOP PERFORMERS
   ============================================================ */
.performers-section {
  background: #f0f7ff;
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: #1a1a2e;
}

.section-heading h2 span {
  color: #2cb84b;
}

.section-heading .divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #f5c518, #2cb84b);
  border-radius: 2px;
  margin: 12px auto 0;
}

.performers-row {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.performer-card {
  text-align: center;
  width: 180px;
  flex-shrink: 0;
}

/* Hexagon-style photo with colored bg from the design */
.p-photo-wrap {
  width: 140px;
  height: 160px;
  margin: 0 auto 14px;
  position: relative;
}

.p-hex-bg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 124px;
}

.p-hex-bg img {
  width: 100%;
  height: 100%;
}

.p-photo {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 106px;
  height: 128px;
  object-fit: cover;
  object-position: top center;
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
}

.p-name {
  font-size: 13px;
  font-weight: 800;
  color: #0B54A0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.p-score {
  display: inline-block;
  background: #2cb84b;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.p-college {
  font-size: 11px;
  color: #7a8aa0;
  line-height: 1.4;
}

/* ============================================================
   JEE TOP PERFORMERS
   ============================================================ */
.jee-section {
  background: #fff;
  padding: 70px 0;
}

.jee-grid {
  max-width: 1200px;
  margin: 0 auto 24px;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.jee-card {
  text-align: center;
  width: 148px;
}

.jee-photo-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 10px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0B54A0;
  background: #e8f0fc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.jee-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.jee-avatar {
  font-size: 26px;
  font-weight: 800;
  color: #0B54A0;
}

.jee-name {
  font-size: 12px;
  font-weight: 800;
  color: #0B54A0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.jee-score {
  display: inline-block;
  background: #2cb84b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 4px;
}

.jee-exam {
  font-size: 10px;
  color: #888;
}

/* ============================================================
   FULL-WIDTH IMAGE SECTIONS (section2, section4)
   ============================================================ */
.full-img-section {
  width: 100%;
  line-height: 0;
}
.full-img-section img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   ACHIEVEMENT / GROUP PHOTO
   ============================================================ */
.achievement-section {
  line-height: 0;
  padding: 0;
  background: #0d2857;
}

.achievement-section img {
  width: 100%;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0d2857;
}

.footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 0;
}

.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo img {
  height: 38px;
  filter: brightness(100);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.footer-bottom {
  padding: 40px 0 32px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-company {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 28px;
}

.footer-branches {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.footer-branch {
  text-align: center;
}

.branch-pill {
  display: inline-block;
  background: #f5c518;
  color: #0d2857;
  font-weight: 800;
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.branch-tel {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  display: block;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-site {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-site a {
  color: rgba(255, 255, 255, 0.7);
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.social-icon:hover {
  background: #f5c518;
}

.social-icon img {
  width: 18px;
  height: 18px;
  filter: brightness(10);
}

.social-icon:hover img {
  filter: none;
}

/* ============================================================
   SPINNER & SCROLL TOP
   ============================================================ */
.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 4px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: #0B54A0;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 60, 114, 0.35);
  z-index: 998;
  transition: all 0.2s;
}

.scroll-top-btn.show {
  display: flex;
}

.scroll-top-btn:hover {
  background: #094489;
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 40px;
  }

  .form-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .why-inner {
    grid-template-columns: 1fr;
  }

  .why-image-wrap {
    max-width: 480px;
    margin: 0 auto;
  }

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

  .stats-bar-item:nth-child(2) {
    border-right: none;
  }

  .stats-bar-item:nth-child(3) {
    border-right: 1px solid #eef2f8;
  }

  .stats-bar-item:nth-child(4) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 0 16px;
  }

  .hero {
    padding: 28px 0 36px;
  }

  .hero-inner {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 34px;
  }

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

  .form-card {
    padding: 24px 18px;
  }

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

  .performers-row {
    gap: 16px;
    padding: 0 16px;
  }

  .performer-card {
    width: 145px;
  }

  .jee-grid {
    padding: 0 16px;
    gap: 12px;
  }

  .jee-card {
    width: 120px;
  }

  .why-inner {
    padding: 0 16px;
  }

  .why-title {
    font-size: 30px;
  }

  .footer-branches {
    gap: 12px;
  }

  .footer-top-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom-inner {
    padding: 0 16px;
  }

  .section-heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }

  .performer-card {
    width: 130px;
  }

  .jee-card {
    width: 110px;
  }

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

  .btn-enroll,
  .btn-brochure {
    width: 100%;
    justify-content: center;
  }

  .footer-branches {
    flex-direction: column;
    align-items: center;
  }
}