*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: #1a202c;
  background: #f8f9fa;
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}

/* NAVIGATION (fixed) */
.nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}
.nav-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-text {
  font-size: 1.55rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #fff, #f97316);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  letter-spacing: 0.2px;
}
.nav-links a:hover {
  color: #fb923c;
}
.nav-btn {
  background: #f97316;
  color: white !important;
  padding: 8px 20px;

  font-weight: 700 !important;
  transition: all 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background: #ea6c0a;
  transform: scale(0.97);
  color: white !important;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 120;
}
.burger span {
  width: 24px;
  height: 2.5px;
  background: white;
  display: block;
  border-radius: 4px;
  transition: all 0.25s ease;
}
.burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-6px);
}
.burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* HERO */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    223deg,
    rgb(3 10 31 / 0%) 0%,
    rgb(0 0 0 / 24%) 45%,
    rgb(97 100 109 / 80%) 100%
  );
}

.hero-wrap {
  position: relative;
  z-index: 5;
  max-width: 1275px;
  margin: 0 auto;
  padding: 80px 30px 50px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 56px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.4);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 16px;

  margin-bottom: 24px;
}
.hero-tag span {
  width: 6px;
  height: 6px;

  background: #fb923c;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: normal;
  color: #fb923c;
}
.hero-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  max-width: 460px;
}
.stats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.stat {
  padding-right: 28px;
  margin-right: 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}
.stat:last-child {
  border: none;
  margin: 0;
  padding: 0;
}
.stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat strong em {
  font-style: normal;
  color: #fb923c;
  font-size: 1.2rem;
}
.stat span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-top: 4px;
  display: block;
}

/* FORM CARD */
.fcard {
  background: #fff;

  box-shadow: 0 25px 45px -12px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}
.fcard-head {
  background: #0f2042;
  padding: 20px 26px;
}
.fcard-head p {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fb923c;
  margin-bottom: 6px;
}
.fcard-head h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}
.fcard-body {
  padding: 20px 26px 26px;
}
.field {
  margin-bottom: 8px;
}
.field input,
.field select {
  height: 35px !important;
  font-size: 0.7rem !important;
}
.field input,
.field select {
  width: 100%;
  height: 46px;
  padding: 0 14px;
  font-size: 0.85rem;
  font-family: "Inter", sans-serif;
  border: 1px solid #e2e8f0;

  background: #fcfcfd;
  color: #1a202c;
  transition: all 0.2s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: #f97316;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}
/* Default desktop: two columns for state+city & mode+status, full-width for specialisation */
.row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.submit {
  width: 100%;
  height: 50px;
  border: none;

  background: #f97316;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 6px;
  box-shadow: 0 6px 14px rgba(249, 115, 22, 0.25);
}
.submit:hover {
  background: #ea6c0a;
  transform: translateY(-1px);
}
.fnote {
  text-align: center;
  font-size: 0.68rem;
  color: #6c757d;
  margin-top: 14px;
}

/* Mobile view: force state+city one row and mode+status one row */
@media (max-width: 640px) {
  .row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  /* No additional overrides needed - already two columns */
  .fcard-body .field {
    margin-bottom: 12px;
  }
}

/* TRUSTBAR */
.tbar {
  background: white;
  border-bottom: 1px solid #eef2f6;
  padding: 14px 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}
.tbar-in {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
}
.titem {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2c3e66;
  display: flex;
  align-items: center;
  gap: 8px;
}
.titem span {
  color: #22c55e;
  font-weight: 800;
  font-size: 1rem;
}

/* SECTIONS */
.sec {
  padding: 30px 0;
  background: #fff;
}
.sec-alt {
  background: rgb(237 242 255 / 80%) !important;
}
.w {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}
.sec-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f97316;
  background: #fff3eb;
  border: 1px solid #ffe0cc;
  padding: 4px 14px;

  margin-bottom: 14px;
}
.sec-h {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0f2042;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.sec-sub {
  font-size: 0.9rem;
  color: #5a6e8a;
  max-width: 560px;
}
.sec-hd {
  margin-bottom: 20px;
}
.sec-hd.ctr {
  text-align: center;
}
.sec-hd.ctr .sec-sub {
  margin: 0 auto;
}

/* ELIGIBILITY */
.g4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ecard {
  background: #fff;
  border: 1px solid #edf2f7;

  padding: 28px 20px;
  transition: all 0.2s;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
}
.ecard:hover {
  border-color: #f97316;
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.08);
}
.eicon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.ecard h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f2042;
}
.ecard p {
  font-size: 0.8rem;
  color: #4b5a76;
  line-height: 1.5;
}

/* CHIPS */
.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}
.chip {
  padding: 8px 22px;

  background: white;
  border: 1px solid #e2edf7;
  font-size: 0.8rem;
  font-weight: 500;
  transition: 0.2s;
}
.chip:hover {
  border-color: #f97316;
  background: #fef3ee;
  color: #c2410c;
}

/* COLLEGES */
.g3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ccard {
  background: white;
  border: 1px solid #eef2f8;

  padding: 22px 20px;
  transition: all 0.2s;
}
.ccard:hover {
  border-color: #f97316;
  box-shadow: 0 15px 30px -15px rgba(0, 0, 0, 0.1);
}
.crank {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #f97316;
  margin-bottom: 8px;
}
.ccard h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.cloc {
  font-size: 0.75rem;
  color: #6c86a3;
  margin-bottom: 14px;
}
.cbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6px;
}
.cfee {
  font-size: 1rem;
  font-weight: 800;
  color: #f97316;
}
.cbadge {
  font-size: 0.7rem;
  font-weight: 700;
  background: #eef2ff;
  padding: 4px 12px;
  border-radius: 30px;
  color: #2c3e66;
}

/* PROCESS */
.g4p {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pcard {
  background: white;
  border: 1px solid #eef2f8;

  padding: 28px 16px;
  text-align: center;
}
.pnum {
  width: 46px;
  height: 46px;
  background: #0f2042;
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  margin: 0 auto 16px;
  transition: 0.2s;
}
.pcard:hover .pnum {
  background: #f97316;
}
.pcard strong {
  font-size: 0.95rem;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}
.pcard p {
  font-size: 0.78rem;
  color: #5e6f8d;
}

/* TESTIMONIALS */
.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  background: white;

  padding: 24px;
  border: 1px solid #edf2f9;
}
.tstars {
  color: #f5b042;
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}
.tcard p {
  font-size: 0.85rem;
  color: #334155;
  margin-bottom: 18px;
  font-style: normal;
}
.tauth {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  background: #7c3aed;
}
.tname {
  font-weight: 800;
  font-size: 0.85rem;
}
.tbatch {
  font-size: 0.68rem;
  color: #8ba0bc;
}

/* FAQ */
.faqw {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fitem {
  background: white;
  border: 1px solid #e9eef3;
  border-radius: 18px;
}
.fitem summary {
  padding: 16px 24px;
  font-weight: 700;
  font-size: 0.9rem;
  color: #0f2042;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fitem summary::-webkit-details-marker {
  display: none;
}
.fitem summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: #f97316;
}
.fitem[open] summary::after {
  content: "−";
}
.fitem p {
  padding: 0 24px 18px;
  font-size: 0.85rem;
  color: #4c5c7c;
}

/* CTA BOTTOM */
.ctab {
  background: #0f2042;
  padding: 55px 0;
}
.ctain {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ctab h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
}
.ctab p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}
.ctaright {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ctaph {
  font-size: 1rem;
  font-weight: 600;
  color: #ffd7b5;
}
.ctabtn {
  background: #f97316;
  padding: 12px 32px;
  font-weight: 700;
  color: white;
  transition: 0.2s;
}
.ctabtn:hover {
  background: #ea6c0a;
  transform: scale(0.98);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 10px;
    padding-top: 100px;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .stats {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0f2042;
    backdrop-filter: blur(4px);
    padding: 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 18px;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
    z-index: 99;
  }
  .burger {
    display: flex;
  }
  .g4 {
    grid-template-columns: 1fr 1fr;
  }
  .g3 {
    grid-template-columns: 1fr 1fr;
  }
  .g4p {
    grid-template-columns: 1fr 1fr;
  }
  .tg {
    grid-template-columns: 1fr 1fr;
  }
  .ctain {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .stat {
    padding-right: 0px;
    margin-right: 16px;
  }
  .g4 {
    grid-template-columns: 1fr;
  }
  .g3 {
    grid-template-columns: 1fr;
  }
  .g4p {
    grid-template-columns: 1fr;
  }
  .tg {
    grid-template-columns: 1fr;
  }
  /* Keep two-col layout for state/city and mode/status even on smallest */
  .row-2col {
    grid-template-columns: 1fr 1fr !important;
  }
  .stat strong {
    font-size: 1.4rem;
  }
  .sec-h {
    font-size: 1.4rem;
  }
  .w {
    padding: 0 20px;
  }
  .hero-wrap {
    padding: 70px 20px 50px;
  }
  .tbar-in {
    gap: 16px;
  }
  .titem {
    font-size: 0.7rem;
  }
}
#formMessage {
  display: none;
  margin-bottom: 8px;
  padding: 8px 10px;

  font-size: 12px;
  font-weight: 500;
}

#formMessage.success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

#formMessage.error {
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}
.fx-contact-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fx-whatsapp-btn,
.fx-call-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.fx-whatsapp-btn {
  background: #25d366;
}

.fx-call-btn {
  background: #007bff;
}

.fx-whatsapp-btn svg,
.fx-call-btn svg {
  width: 28px;
  height: 28px;
}
.whatsapp-icon,
.whatsapp-icon path {
  fill: #fff !important;
}
