*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --purple-900: #2b1156;
  --purple-800: #38186b;
  --purple-700: #5b21b6;
  --purple-600: #6d28d9;
  --purple-500: #7c3aed;
  --purple-400: #9257ea;
  --purple-200: #ddc9fb;
  --purple-100: #f1e9ff;
  --lilac-50: #faf8ff;
  --white: #ffffff;
  --ink: #241541;
  --slate: #5c5470;
  --slate-soft: #8a83a0;
  --line: #e7defc;
  --gold: #d4a017;
  --success: #1f9d63;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 10px rgba(43, 17, 86, .06);
  --shadow-md: 0 10px 32px rgba(43, 17, 86, .10);
  --shadow-lg: 0 24px 64px rgba(43, 17, 86, .16);

  --font-display: 'Noto Serif Devanagari', serif;
  --font-body: 'Hind', sans-serif;
  ;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--lilac-50);
  color: var(--ink);
  line-height: 1.8;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--purple-100);
}

::-webkit-scrollbar-thumb {
  background: var(--purple-400);
  border-radius: 4px;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line, #e7defc);
  height: 68px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 60px !important;
  margin: 0 !important;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img {
  height: 45px;
  display: block;
}

.nav-links {
  display: flex !important;
  align-items: center;
  gap: .25rem;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

.nav-links li {
  list-style: none;
}

.nav-cta {
  background: var(--purple-700, #5b21b6);
  color: #fff !important;
  border-radius: 30px !important;
  padding: .55rem 1.4rem !important;
  font-weight: 700 !important;
  text-decoration: none;
  font-size: .92rem;
  white-space: nowrap;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--purple-700, #5b21b6);
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav {
    padding: 0 20px !important;
  }

  .nav-links {
    display: none !important;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0 14px !important;
    height: 60px;
  }

  .nav-logo img {
    height: 36px;
  }

  .menu-btn {
    font-size: 22px;
  }
}

.hero {
  min-height: 75vh;
  background: linear-gradient(160deg, var(--purple-900) 0%, var(--purple-700) 65%, var(--purple-500) 100%);
  display: flex;
  align-items: center;
  padding: 100px 70px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .04) 0px, rgba(255, 255, 255, .04) 1px, transparent 1px, transparent 40px);
}

.hero-orb {
  position: absolute;
  top: -140px;
  right: -120px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgb(216 180 254 / 23%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgb(190 183 255 / 16%) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #f3d98b;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--font-body);
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.28;
  margin-bottom: 1.2rem;
  display: grid;
}

.hero-h1 em {
  font-style: normal;
  color: transparent;
  background: linear-gradient(90deg, #e9d5ff, #fcd34d);
  -webkit-background-clip: text;
  background-clip: text;
  padding: 6px 0;
}

@media (max-width: 1024px) {
  .hero-h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .hero-h1 {
    font-size: 2.2rem;
    text-align: start;
  }
}

@media (max-width: 576px) {
  .hero-h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 380px) {
  .hero-h1 {
    font-size: 1.5rem;
  }
}

.hero-desc {
  color: #e4d9fb;
  font-size: 1rem;
  display: flex;
  margin-bottom: 2.2rem;
  align-items: center;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: #ffe86e;
  color: var(--purple-900);
  text-decoration: none;
  padding: 0px 1.2rem;
  font-weight: 700;
  font-size: .95rem;
  /* border-radius: 30px; */
  box-shadow: 0 10px 26px rgb(255 255 255 / 16%);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  height: 45px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(212, 160, 23, .45);
}

.btn-outline {
  background: rgba(255, 255, 255, .06);
  color: var(--white);
  text-decoration: none;
  padding: 0 1.6rem;
  font-weight: 600;
  font-size: .95rem;
  border: 1.5px solid rgba(255, 255, 255, .35);
  /* border-radius: 30px; */
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  height: 45px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .55);
}

/* Hero section responsiveness (structure unchanged, spacing scaled) */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 30px 40px;
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 85px 18px 30px;
  }

  .hero-orb {
    width: 380px;
    height: 380px;
    top: -100px;
    right: -160px;
  }

  .hero-orb2 {
    width: 260px;
    height: 260px;
    bottom: -60px;
    left: -80px;
  }

  .hero-btns {
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    flex: 1 1 auto;
    justify-content: center;
    padding: 0 1rem;
  }
}

@media (max-width: 380px) {
  .hero {
    padding: 80px 14px 26px;
  }

  .hero-eyebrow {
    font-size: .7rem;
    padding: .35rem .8rem;
  }

  .btn-primary,
  .btn-outline {
    font-size: .85rem;
    height: 42px;
  }
}

.contact-form-wrap {
  position: relative;
  max-width: 500px;
  margin: auto;
  padding: 20px 26px;
  background: rgba(255, 255, 255, .14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, .25);
  overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgb(233 213 255 / 0%) 0%, transparent 70%);
  top: -120px;
  left: -100px;
  opacity: .6;
  filter: blur(30px);
  z-index: 0;
}

.contact-form-wrap::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgb(193 213 255 / 35%) 0%, transparent 70%);
  bottom: -120px;
  right: -80px;
  opacity: .5;
  filter: blur(30px);
  z-index: 0;
}

.contact-form-wrap>* {
  position: relative;
  z-index: 2;
}

@media (max-width: 576px) {
  .contact-form-wrap {
    max-width: 100%;
    padding: 18px 18px;
  }
}

@media (max-width: 380px) {
  .contact-form-wrap {
    padding: 16px 14px;
  }
}

.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: 6px;
}

.form-sub {
  text-align: center;
  color: rgba(255, 255, 255, .82);
  margin-bottom: 16px;
  font-size: 13.5px;
}

.contact-form-wrap .row {
  margin-left: -10px;
  margin-right: -10px;
}

.contact-form-wrap .col-lg-6,
.contact-form-wrap .col-lg-12 {
  padding-left: 10px;
  padding-right: 10px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  color: rgba(255, 255, 255, .92);
  font-weight: 600;
  font-size: 13.5px;
  display: block;
  margin-bottom: 4px;
}

.form-label span {
  color: #fcd34d;
}

.form-control {
  width: 100% !important;
  background: rgb(91 48 169 / 68%) !important;
  /*background: rgb(255 255 255 / 47%) !important;*/
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .3) !important;
  border-radius: 0px !important;
  padding: 7px 15px !important;
  font-size: 14.5px !important;
  transition: .25s !important;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, .55);
}

.form-control:focus {
  outline: none;
  background: rgba(255, 255, 255, .16) !important;
  border-color: #fcd34d !important;
  box-shadow: 0 0 0 3px rgba(252, 211, 77, .18);
}

select.form-control {
  color: #fff;
}

select.form-control option {
  background: #3a1a6e;
  color: #fff;
}

textarea.form-control {
  min-height: 100px;
  resize: none;
}

.form-note {
  text-align: center;
  color: rgba(255, 255, 255, .7);
  margin-top: 14px;
  font-size: 13px;
}

.form-submit {
  display: block;
  margin: 6px auto 0;
  padding: 9px 51px;
  border: none;
  /* border-radius: 8px; */
  background: #ffe86e;
  color: var(--purple-900);
  font-size: 15.5px;
  font-weight: 800;
  transition: .3s;
  box-shadow: 0 10px 24px rgb(250 250 250 / 13%);
  cursor: pointer
}

.form-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(212, 160, 23, .45);
}

@media (max-width: 380px) {
  .form-submit {
    width: 100%;
    padding: 9px 20px;
  }
}

.sec {
  padding: 35px 50px;
}

.sec-alt {
  background: var(--purple-100);
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.sec-head {
  margin-bottom: 1.8rem;
  text-align: left;
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--purple-700);
  background: var(--purple-100);
  padding: .32rem .9rem;
  border-radius: 99px;
  margin-bottom: .9rem;
}

.sec-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--purple-600);
  border-radius: 50%;
}

.sec-title {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--purple-900);
  font-weight: 800;
  line-height: 1.3;
}

.sec-sub {
  color: var(--slate);
  font-size: 1rem;
  max-width: 640px;
}

.rule {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-600), var(--gold));
  border-radius: 2px;
  margin-top: .6rem;
}

@media (max-width: 576px) {
  .sec-title {
    font-size: 21px;
  }

  .sec-sub {
    font-size: .92rem;
  }
}

.scheme-explorer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

@media (max-width: 980px) {
  .scheme-explorer {
    grid-template-columns: 1fr;
  }
}

.scheme-rail {
  position: sticky;
  top: 70px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  order: 2;
}

@media (max-width: 980px) {
  .scheme-rail {
    position: static;
    order: 1;
  }
}

.scheme-rail-head {
  background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
  color: #fff;
  padding: 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.scheme-rail-head i {
  color: #fcd34d;
}

.scheme-rail-list {
  list-style: none;
  max-height: 55vh;
  overflow-y: auto;
}

@media (max-width: 980px) {
  .scheme-rail-list {
    max-height: 340px;
  }
}

.scheme-rail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .18s, border-color .18s;
  font-size: .88rem;
  color: var(--ink);
  font-weight: 600;
}

.scheme-rail-item:last-child {
  border-bottom: none;
}

.scheme-rail-item:hover {
  background: var(--purple-100);
}

.scheme-rail-item.active {
  background: var(--purple-100);
  border-left: 4px solid var(--purple-600);
  padding-left: 16px;
  color: var(--purple-800);
}

.scheme-rail-dot {
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple-300, var(--purple-200));
  flex-shrink: 0;
}

.scheme-rail-item.active .scheme-rail-dot {
  background: var(--gold);
}

/* Left canvas — active scheme card */
.scheme-canvas {
  order: 2;
}

@media (max-width: 980px) {
  .scheme-canvas {
    order: 2;
  }
}

.scheme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 1.6rem;
  align-items: stretch;
}

.scheme-grid-single {
  grid-template-columns: minmax(0, 580px);
  justify-content: start;
}

@media (max-width: 640px) {
  .scheme-grid-single {
    grid-template-columns: minmax(0, 1fr);
  }
}

.scheme-grid-single .scard {
  animation: scard-fade-in .3s ease;
}

@keyframes scard-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scard {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}

.scard:hover {
  border-color: var(--purple-300, var(--purple-400));
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.scard-top {
  padding: 1.2rem;
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-600) 100%);
  position: relative;
  overflow: hidden;
}

.scard-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .16);
  color: #f0e6ff;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .75rem;
  border-radius: 99px;
  margin-bottom: .8rem;
  letter-spacing: .05em;
}

.scard-icon {
  width: 35px;
  height: 35px;
  /* border-radius: 12px; */
  /* background: rgba(255, 255, 255, .14); */
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  margin-bottom: .8rem;
  color: #ffe86e;
  display: none;
}

.scard-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.scard-body {
  flex: 1;
  padding: 1.2rem 1.2rem 0;
  min-height: 200px;
}

@media (max-width: 480px) {
  .scard-body {
    min-height: 0;
  }
}

.srow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--line);
  gap: .5rem;
}

.srow:last-child {
  border-bottom: none;
}

.srow-label {
  font-size: .9rem;
  color: var(--slate);
}

.srow-val {
  font-size: .92rem;
  font-weight: 700;
  color: var(--purple-900);
  text-align: right;
  font-family: var(--font-display);
}

.srow-val.accent {
  color: var(--purple-600);
}

.srow-val.gold {
  color: var(--gold);
}

.srow-val.green {
  color: var(--success);
}

@media (max-width: 380px) {
  .srow {
    flex-wrap: wrap;
  }

  .srow-val {
    text-align: left;
  }
}

.yd-scard-footer {
  margin-top: auto;
  padding: 14px;
}

.yd-learn-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--purple-700);
  border: none;
  color: #fff;
  padding: 11px 0;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, transform .2s;
  letter-spacing: .3px;
}

.yd-learn-btn:hover {
  background: var(--purple-900);
  transform: translateY(-2px);
}

.mb-ab-sec {
  padding: 60px 0;
  background: var(--lilac-50);
}

@media (max-width: 576px) {
  .mb-ab-sec {
    padding: 40px 0;
  }
}

.mb-ab-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

.mb-ab-head {
  text-align: left;
  max-width: 700px;
  margin-bottom: 2.2rem;
}

.mb-ab-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple-700);
  background: var(--white);
  border: 1px solid var(--purple-200);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.mb-ab-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-600);
  display: inline-block;
}

.mb-ab-sub {
  color: var(--slate);
  font-size: 16px;
  margin-top: .4rem;
}

.mb-ab-rule {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--purple-600), var(--gold));
  margin-top: 1rem;
}

.mb-ab-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 980px) {
  .mb-ab-panels {
    grid-template-columns: 1fr;
  }
}

.mb-ab-panel {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 25px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s;
}

.mb-ab-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.mb-ab-panel-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-400));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.mb-ab-panel h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 10px;
}

.mb-ab-panel p {
  color: var(--slate);
  font-size: 14.5px;
  line-height: 1.75;
}

.mb-ab-service-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.mb-ab-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink);
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--purple-100);
}

.mb-ab-service-list li i {
  color: var(--purple-600);
  margin-top: 3px;
  font-size: 12px;
}

.mb-ab-faq {
  list-style: none;
  margin: 4px 0 14px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.mb-ab-faq li {
  font-size: 13.8px;
  color: var(--ink);
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mb-ab-faq li i {
  color: var(--purple-600);
  font-size: 12px;
  flex-shrink: 0;
}

.mb-ab-reassure {
  font-size: 13px;
  color: var(--purple-800);
  background: #fff7e0;
  border: 1.5px dashed var(--gold);
  border-radius: 10px;
  padding: .7rem 1rem;
  font-weight: 600;
}

.mb-ab-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 1.4rem 2rem;
  margin: 2.4rem 50px 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--purple-900) 0%, var(--purple-600) 100%);
  box-shadow: var(--shadow-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.mb-ab-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mb-ab-cta-title {
  color: #fff;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.35;
  font-family: var(--font-display);
}

.mb-ab-cta-sub {
  color: #e4d9fb;
  font-size: 14px;
  font-weight: 500;
}

.mb-ab-cta-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mb-ab-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: .6rem 1.2rem;
  border-radius: 30px;
  background: #fff;
  color: var(--purple-800);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}

.mb-ab-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.mb-ab-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-700);
  color: #fff;
  font-size: 11px;
  position: relative;
}

.mb-ab-cta-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--purple-700);
  opacity: .4;
  animation: mb-ab-pulse 1.8s infinite;
}

@keyframes mb-ab-pulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  70% {
    transform: scale(1.6);
    opacity: 0;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 640px) {
  .mb-ab-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    margin-left: 20px;
    margin-right: 20px;
  }

  .mb-ab-cta-numbers {
    width: 100%;
  }

  .mb-ab-cta-btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .mb-ab-cta-title {
    font-size: 18px;
  }

  .mb-ab-cta-btn {
    font-size: 14px;
    padding: .55rem 1rem;
  }
}

.footer .row {
  align-items: flex-start;
}

.footer .col-lg-4,
.footer .col-lg-5,
.footer .col-lg-3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-brand {
  height: 100%;
}

.footer-brand h3 {
  margin-bottom: 15px;
}

.footer-brand p {
  max-width: 320px;
  margin: 0;
}

.footer-title {
  margin-bottom: 22px;
}

.footer-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
  color: #ede2ff;
  text-decoration: none;
}

.footer-item span,
.footer-item a {
  color: #ede2ff;
  text-decoration: none;
  line-height: 1.7;
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
  list-style: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
}

@media(max-width:991px) {

  .footer .col-lg-4,
  .footer .col-lg-5,
  .footer .col-lg-3 {
    margin-bottom: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

}

.footer {
  background: var(--purple-900);
  padding: 24px 0 15px;
  color: #d9c9fa;
  font-size: .82rem;
  font-weight: 600;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

footer strong {
  color: #fff;
  font-size: .91rem;
  letter-spacing: 1px;
}

footer .footer-links {
  margin-top: .5rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: white;
  padding: 10px;
  background: var(--purple-800);
}

footer .footer-links a {
  color: #e6d9ff;
  text-decoration: none;
  transition: color .2s;
  font-weight: 700;
}

footer .footer-links a:hover {
  color: #fcd34d;
}

@media (max-width: 480px) {
  footer .footer-links {
    gap: 1rem;
    font-size: .78rem;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.25, .46, .45, .94), transform .6s cubic-bezier(.25, .46, .45, .94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cmgp-sec-wrap {
  padding: 110px 20px 50px;
  background: linear-gradient(160deg, var(--purple-900), var(--purple-600));
}

@media (max-width: 576px) {
  .cmgp-sec-wrap {
    padding: 95px 16px 40px;
  }
}

.cmgp-sec-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 991px) {
  .cmgp-sec-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

.cmgp-badge-pill {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 255, 255, .14);
  color: #fcd34d;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.cmgp-main-heading {
  margin: 0 0 18px;
  font-size: 32px;
  line-height: 1.25;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

@media (max-width: 576px) {
  .cmgp-main-heading {
    font-size: 24px;
  }
}

@media (max-width: 380px) {
  .cmgp-main-heading {
    font-size: 21px;
  }
}

.cmgp-main-desc {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: #e4d9fb;
}

@media (max-width: 576px) {
  .cmgp-main-desc {
    font-size: 14.5px;
  }
}

.cmgp-benefit-list {
  display: grid;
  gap: 12px;
}

.cmgp-benefit-item {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.yj-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple-700);
  border: none;
  color: #fff;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all .2s;
  margin-bottom: 20px;
}

.yj-back-btn:hover {
  background: var(--purple-900);
  transform: translateX(-2px);
}

main {
  padding: 40px 60px 30px;
  margin: 0 auto;
}

.yj-yojana-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}

.yj-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
  flex-wrap: wrap;
  gap: 12px;
}

.yj-card-header h2 {
  font-size: clamp(1.05rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: #fff;
  font-family: var(--font-display);
}

.yj-card-body {
  padding: 32px;
}

.yj-scheme-intro {
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 30px;
  border-left: 3px solid var(--gold);
  padding-left: 18px;
}

.yj-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 32px;
}

.yj-stat-box {
  background: var(--purple-100);
  border: 1px solid var(--purple-200);
  border-radius: 12px;
  padding: 16px;
}

.yj-stat-label {
  font-size: .73rem;
  color: var(--slate);
  margin-bottom: 6px;
  font-weight: 700;
}

.yj-stat-value {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--purple-800);
  font-family: var(--font-display);
}

.yj-inner-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.yj-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 5px;
}

@media (max-width: 1024px) {
  .yj-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .yj-detail-grid {
    grid-template-columns: 1fr;
  }

  main {
    padding: 24px 16px 60px;
  }

  .yj-card-body {
    padding: 20px;
  }

  .yj-card-header {
    padding: 16px 20px;
  }
}

@media (max-width: 576px) {
  main {
    padding: 20px 14px 50px;
  }

  .yj-yojana-card {
    margin-bottom: 32px;
  }

  .yj-card-body {
    padding: 16px;
  }

  .yj-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.yj-detail-section h3 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--purple-800);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 12px;
}

.yj-eligibility-list {
  list-style: none;
}

.yj-eligibility-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  font-size: .88rem;
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid var(--line);
}

.yj-eligibility-list li:last-child {
  border-bottom: none;
}

.yj-eligibility-list li .yj-num {
  min-width: 22px;
  height: 22px;
  background: var(--purple-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: #fff;
  margin-top: 1px;
  flex-shrink: 0;
}

.yj-process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.yj-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  padding-bottom: 14px;
}

.yj-step:last-child {
  padding-bottom: 0;
}

.yj-step-line {
  position: absolute;
  left: 13px;
  top: 28px;
  bottom: 0;
  width: 2px;
  background: var(--purple-200);
}

.yj-step-dot {
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--purple-700);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  color: #fff;
  z-index: 1;
}

.yj-step-text {
  color: var(--ink);
  font-size: .87rem;
  line-height: 1.5;
  padding-top: 4px;
}

.yj-table-wrapper {
  width: 100%;
  overflow-x: auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  -webkit-overflow-scrolling: touch;
}

.yj-dynamic-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

@media (max-width: 700px) {
  .yj-dynamic-table {
    min-width: 560px;
    table-layout: auto;
  }
}

.yj-dynamic-table th,
.yj-dynamic-table td {
  border: 1px solid var(--line);
  padding: 8px !important;
  text-align: center;
  vertical-align: middle;
  word-break: break-word;
  font-size: .85rem;
}

.yj-dynamic-table th {
  background: var(--purple-700);
  color: #fff;
}

.table-note {
  font-size: .82rem;
  color: var(--slate);
  background: var(--purple-100);
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 10px;
}

#btt {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 46px;
  height: 46px;
  background: var(--purple-700);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  display: grid;
  place-items: center;
}

#btt.visible {
  opacity: 1;
  pointer-events: all;
}

#btt:hover {
  transform: translateY(-3px);
  background: var(--purple-900);
}

@media (max-width: 576px) {
  #btt {
    bottom: 1.1rem;
    right: 1.1rem;
    width: 40px;
    height: 40px;
    font-size: 1.05rem;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-btn {
    display: block;
  }
}

@media (max-width: 640px) {
  .scheme-grid {
    grid-template-columns: 1fr;
  }

  .sec {
    padding: 40px 20px;
  }

  .mb-ab-container {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .sec {
    padding: 28px 16px;
  }

  .mb-ab-container {
    padding: 0 16px;
  }
}

.ol,
ul {
  padding-left: 0rem !important;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('/fonts/NotoSansDevanagari-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Devanagari';
  src: url('/fonts/NotoSansDevanagari-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

.social-float {
  position: fixed;
  left: 0;
  top: 65%;
  transform: translateY(50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
}

.social-float-icon {
  width: 50px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(43, 17, 86, .12));
  transition: width .25s ease, transform .2s ease;
}

.social-float-icon:hover {
  width: 52px;
  color: #fff;
}

.social-float-icon.fb {
  background: #1877f2;
}

.social-float-icon.insta {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
}

.social-float-icon.wa {
  background: #25d366;

}

.social-float-icon.yt {
  background: #ff0000;
}

.social-float-icon.call {
  background: var(--purple-700, #5b21b6);

}

@media (max-width: 640px) {
  .social-float-icon {
    width: 28px;
    height: 28px;
    font-size: 0.79rem;

  }

  .social-float-icon:hover {
    width: 44px;
  }
}

.mb-ab-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.mb-ab-acc-item {
  background: var(--purple-100, #f1e9ff);
  border: 1px solid var(--purple-200, #ddc9fb);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}

.mb-ab-acc-item.open {
  border-color: var(--purple-500, #7c3aed);
  background: #fff;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(43, 17, 86, .08));
}

.mb-ab-acc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--purple-900, #2b1156);
}

.mb-ab-acc-arrow {
  font-size: 12px;
  color: var(--purple-600, #6d28d9);
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-left: 10px;
}

.mb-ab-acc-item.open .mb-ab-acc-arrow {
  transform: rotate(180deg);
}

.mb-ab-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 14px;
}

.mb-ab-acc-item.open .mb-ab-acc-body {
  max-height: 200px;
  padding: 0 14px 14px;
}

.mb-ab-acc-body p {
  font-size: 13.5px;
  color: var(--slate, #5c5470);
  line-height: 1.7;
  margin: 0;
}

.footer-location-card {
  background: #fff;
  /*border-radius:22px;*/
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .15);
  transition: .35s;
}

.footer-location-card:hover {
  transform: translateY(-8px);
}

.location-image {
  height: 120px;
  background: url('https://maps.gstatic.com/tactile/basepage/pegman_sherlock.png') center/cover;
  position: relative;
}



.location-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 0, 80, .7), transparent);
}

.location-badge {
  position: absolute;
  bottom: 18px;
  left: 20px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #6a11cb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(106, 17, 203, .35);
}

.location-content {
  padding: 12px;
}

.location-content h5 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #2c2c2c;
  font-size: 1rem;
}

.location-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 50px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  transition: .3s;
}

.location-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

input::placeholder,
textarea::placeholder {
  color: #c9c9c9 !important;
  opacity: 1 !important;
}

.form-control {
  color: #fff !important;
}

.form-control:invalid {
  color: #c9c9c9 !important;
}



.form-control option[value=""] {
  color: #cfc7e8 !important;
}


@media (max-width: 1200px) {
  .hero {
    padding: 100px 40px 40px;
  }

  main {
    padding: 40px 30px 30px;
  }

  .mb-ab-container {
    padding: 0 30px;
  }
}

@media (max-width: 991px) {
  .sec {
    padding: 32px 30px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .form-title {
    font-size: 20px;
  }

  .sec-title {
    font-size: 19px;
  }

  .cmgp-badge-pill {
    font-size: 12px;
    padding: 5px 14px;
  }

  .yj-card-header h2 {
    font-size: 1.05rem;
  }

  .yj-back-btn {
    font-size: .78rem;
    padding: 7px 14px;
  }

  .scard-title {
    font-size: 1rem;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* Extra-small devices */
@media (max-width: 340px) {
  .hero-h1 {
    font-size: 1.35rem;
  }

  .form-submit {
    font-size: 14px;
    padding: 9px 14px;
  }
}