:root {
  --ink: #15233b;
  --ink-deep: #0f1a2e;
  --ink-soft: #33445f;
  --muted: #62708a;
  --faint: #94a0b5;
  --paper: #faf8f3;
  --card: #ffffff;
  --line: #e5e0d6;
  --line2: #efebe2;
  --accent: #c0640f;
  --accent2: #8c480b;
  --accent-soft: #f2c088;
  --wash: #fbf1e3;
  --shadow: 0 18px 45px rgba(21, 35, 59, 0.08);
  --shadow-hover: 0 24px 60px rgba(21, 35, 59, 0.13);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

p {
  color: var(--ink-soft);
  font-weight: 500;
}

.container {
  max-width: 1160px;
}

.section {
  padding: 86px 0;
}

.section-white {
  background: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.eyebrow i {
  font-size: 0.95rem;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 42px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.section-heading .sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

.serif-it {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  color: var(--accent2);
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 248, 243, 0.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
}

.navbar-brand {
  font-weight: 800;
  color: var(--ink) !important;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.navbar-brand span {
  color: var(--muted);
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: var(--ink-soft);
  font-size: 0.93rem;
  font-weight: 700;
  padding: 8px 13px !important;
  border-radius: 999px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  background: var(--wash);
  color: var(--accent2);
}

.nav-phone {
  color: var(--accent2);
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.94rem;
}

.nav-phone:hover {
  color: var(--accent);
  text-decoration: underline;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 11px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(192, 100, 15, 0.22);
  transition: all 0.2s ease;
}

.btn-main:hover {
  background: var(--accent2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 11px 22px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
  font-weight: 800;
  transition: all 0.2s ease;
  border-color: var(--accent);
  color: var(--accent2);
  background: #fff;
}

.btn-outline-soft:hover {
  border: 1.5px solid var(--line);
  color: var(--accent2);
  background: #fff;
  transform: translateY(-2px);
}

.site-nav .btn-main {
  padding: 9px 18px;
  font-size: 0.88rem;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(192, 100, 15, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #fff7eb 0%, var(--paper) 72%);
}

.hero::after {
  content: "PSIR";
  position: absolute;
  right: -38px;
  top: 34px;
  font-family: "Inter", sans-serif;
  font-size: clamp(7rem, 20vw, 17rem);
  font-weight: 900;
  color: rgba(21, 35, 59, 0.045);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(3rem, 7.4vw, 5rem);
  margin-bottom: 10px;
}

.hero-kicker {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.45rem, 3.5vw, 2.35rem);
  color: var(--accent2);
  font-style: italic;
  font-weight: 550;
  margin-bottom: 22px;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.62;
  margin-bottom: 28px;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  font-size: 1rem;
  /* background: linear-gradient(135deg, #ff0000, #c70000); */
  background: linear-gradient(165deg, #8c480b, #8c480b42);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px #845f3fa8;
}
.guidance-box {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.guidance-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--wash);
  border: 1px solid #ead6bc;
  color: var(--accent2);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.guidance-label {
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 0;
}

.guidance-number {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 650;
}

.guidance-number:hover {
  color: var(--accent2);
}

.meta-panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 12px;
}

.meta-card {
  height: 100%;
  padding: 20px 14px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--line2);
  text-align: center;
}

.meta-value {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 650;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.meta-value.accent {
  color: var(--accent2);
}

.meta-label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.35;
  margin: 0;
}

/* PROOF */
.proof {
  background: var(--ink);
  color: #fff;
  padding: 62px 0;
}

.proof p {
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.35;
  /* max-width: 930px; */
  font-weight: 500;
  margin: 0;
}

.proof p strong {
  color: var(--accent-soft);
  font-weight: 700;
}

.proof-stat {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 24px;
  text-align: center;
}

.proof-stat .num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.65rem;
  line-height: 1;
  font-weight: 650;
  color: #fff;
}

.proof-stat .label {
  margin-top: 8px;
  color: #a9b6cc;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 800;
}

/* ABOUT */
.about-lede {
  font-family: "Fraunces", Georgia, serif;
  color: var(--ink-soft);
  font-size: clamp(1.28rem, 2.2vw, 1.6rem);
  line-height: 1.45;
  font-weight: 450;
}

.about-text p {
  margin-bottom: 18px;
  font-size: 1.03rem;
  line-height: 1.75;
}

.about-text strong {
  color: var(--ink);
  font-weight: 800;
}

/* FEATURES */
.feature-card {
  height: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: none;
  transition: all 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: #d9d2c4;
  background: #fff;
}

.feature-num {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.2rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  font-weight: 650;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.58;
  margin: 0;
}

/* CURRICULUM */
.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 24px;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 3px;
  display: inline-block;
}

.dot.vh {
  background: var(--accent);
}
.dot.hi {
  background: var(--ink);
}
.dot.md {
  background: #fff;
  border: 1.5px solid var(--muted);
}
.dot.cap {
  background: #fff;
  border: 1.5px dashed var(--faint);
}

.part-title {
  margin: 58px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}

.part-title .small-title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: 4px;
}

.part-title h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.part-title .count {
  color: var(--faint);
  font-weight: 800;
  white-space: nowrap;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.chapter-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 15px;
  padding: 22px;
  transition: all 0.22s ease;
}

.chapter-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.chapter-card.vh {
  border-left-color: var(--accent);
}
.chapter-card.hi {
  border-left-color: var(--ink);
}
.chapter-card.md {
  border-left-color: var(--muted);
}
.chapter-card.cap {
  border-left-color: var(--faint);
  border-left-style: dashed;
}

.chapter-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.chapter-no {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.48rem;
  line-height: 1;
  color: var(--accent);
  font-weight: 700;
}

.chapter-card.hi .chapter-no,
.chapter-card.md .chapter-no,
.chapter-card.cap .chapter-no {
  color: var(--ink-soft);
}

.yield-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  padding: 5px 9px;
  line-height: 1;
  white-space: nowrap;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
}

.yield-chip.vh {
  background: var(--accent);
  color: #fff;
}
.yield-chip.hi {
  background: var(--ink);
  color: #fff;
}
.yield-chip.md {
  border: 1px solid var(--muted);
  color: var(--muted);
  background: #fff;
}
.yield-chip.cap {
  border: 1px dashed var(--faint);
  color: var(--muted);
  background: #fff;
}

.chapter-card h4 {
  font-size: 1.1rem;
  font-family: "Inter", sans-serif;
  letter-spacing: -0.01em;
  line-height: 1.35;
  font-weight: 800;
  margin-bottom: 10px;
}

.chapter-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 0;
}

.stamp {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  background: var(--wash);
  border: 1px solid #ead6bc;
  color: var(--accent2);
  border-radius: 7px;
  padding: 5px 9px;
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 900;
}

.curriculum-note {
  color: var(--faint);
  font-style: italic;
  font-weight: 600;
  margin-top: 30px;
}

/* PRICING */
.price-card {
  height: 100%;
  border-radius: 22px;
  padding: 38px 34px;
  box-shadow: var(--shadow);
}

.price-card.dark {
  background: var(--ink);
  color: #fff;
}

.price-card.light {
  background: var(--wash);
  border: 1px solid #ead6bc;
}

.price-card .label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 18px;
  color: var(--accent2);
}

.price-card.dark .label {
  color: var(--accent-soft);
}

.price-card.dark h3,
.price-card.dark h4 {
  color: #fff;
}

.amount {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3rem, 6vw, 4rem);
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.amount small {
  font-family: "Inter", sans-serif;
  color: #a9b6cc;
  font-size: 1rem;
  font-weight: 600;
}

.price-card p {
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.65;
}

.price-card.dark p {
  color: #c7d2e4;
}

.price-card.light p {
  color: var(--ink-soft);
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.price-list li {
  padding: 10px 0 10px 24px;
  border-top: 1px solid #ead6bc;
  position: relative;
  font-weight: 700;
  color: var(--ink);
}

.price-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.access-note {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 24px 26px;
  margin-top: 26px;
  box-shadow: 0 12px 32px rgba(21, 35, 59, 0.05);
}

.access-note .label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 8px;
}

.access-note p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

/* WHO */
.who-card {
  height: 100%;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.who-card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.who-card p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.62;
  margin: 0;
}

/* FACULTY */
.faculty-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.faculty-badge {
  width: 104px;
  height: 104px;
  border-radius: 20px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Fraunces", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  box-shadow: 12px 12px 0 var(--accent-soft);
}

.faculty-card h3 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}
.faculty-photo {
  width: 160px;
  height: 160px;
  border-radius: 22px;
  background:
    /* linear-gradient(135deg, rgba(11, 79, 159, 0.18), rgba(255, 210, 31, 0.32)), */ url("./images/Amit_Pratap.jpeg");
  background-size: cover;
  background-position: center;
  border: 10px solid #fff;
  box-shadow:
    -14px 14px 0 var(--accent),
    0 22px 50px rgba(16, 24, 40, 0.15);
}
.faculty-role {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 14px;
}

.faculty-card p {
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.68;
  margin: 0;
}

/* CTA */
.final-cta {
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(192, 100, 15, 0.18),
      transparent 35%
    ),
    var(--ink);
  color: #fff;
  padding: 86px 0;
  text-align: center;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  margin-bottom: 18px;
}

.final-cta p {
  color: #c7d2e4;
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.08rem;
  font-weight: 500;
}

.cta-fee {
  font-family: "Fraunces", Georgia, serif;
  color: #fff;
  font-size: 1.35rem;
  margin-top: 24px;
  font-weight: 650;
}

.cta-fee span {
  color: var(--accent-soft);
}

.final-cta .btn-outline-soft {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.cta-guide {
  margin-top: 18px !important;
  color: #a9b6cc !important;
  font-size: 0.95rem !important;
}

.cta-guide a {
  color: #fff;
  font-weight: 800;
}

.cta-guide a:hover {
  color: var(--accent-soft);
}

/* FOOTER */
.footer {
  background: #082f61;
  color: #fff;
  padding: 45px 0 20px;
}

.footer h5 {
  font-size: 1.1rem;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-contact i {
  color: #ffd21f;
}

.bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .navbar-collapse {
    padding-top: 18px;
  }

  .navbar-nav {
    gap: 2px !important;
  }

  .nav-actions {
    margin-top: 14px;
    align-items: flex-start !important;
  }

  .hero {
    padding: 72px 0 58px;
  }

  .meta-panel {
    margin-top: 20px;
  }

  .part-title {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
  }

  .section {
    padding: 62px 0;
  }

  .hero {
    padding: 60px 0 48px;
  }

  .hero::after {
    top: 65px;
    right: -25px;
  }

  .hero .d-flex.gap-3 {
    gap: 10px !important;
  }

  .btn-main,
  .btn-outline-soft {
    width: 100%;
  }

  .guidance-box {
    align-items: flex-start;
  }

  .proof {
    padding: 52px 0;
  }

  .feature-card,
  .chapter-card,
  .price-card,
  .faculty-card,
  .who-card,
  .access-note {
    padding: 22px;
  }

  .chapter-card h4 {
    font-size: 1.03rem;
  }

  .chapter-card p {
    font-size: 0.88rem;
  }

  .meta-card {
    padding: 18px 10px;
  }

  .faculty-badge {
    margin-bottom: 24px;
  }

  .final-cta {
    padding: 66px 0;
  }

  .footer {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .yield-chip {
    font-size: 0.58rem;
    padding: 5px 7px;
  }

  .chapter-no {
    font-size: 1.32rem;
  }

  .legend-item {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
/* Footer Base */
footer {
  background-color: #002b5b;
  color: white;
  padding: 20px 0;
}

footer a {
  text-decoration: none;
  transition:
    color 0.3s,
    transform 0.3s;
}

/* Footer Intro */
.footer_intro {
  color: #fff;
  font-size: 13px;
  text-align: left;
}

.footer_intro img {
  width: 200px;
  margin: auto 0 10px;
}

.footer_intro ul {
  list-style: none;
  display: inline-flex;
  gap: 10px;
  padding: 0;
  flex-wrap: wrap;
}

.footer_intro ul li a i {
  color: #fff;
  transition:
    color 0.3s,
    transform 0.3s;
}

.footer_intro ul li a:hover i {
  color: red;
  transform: scale(1.2);
}

/* Titles & Lists */
footer h4.title {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 20px;
}

ul.quick {
  list-style: none;
  padding: 0;
  column-count: 2;
}

ul.quick li a {
  color: #a2a2a2;
  /* Default grey */
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
}

ul.quick li a:hover {
  color: #007bff;
  /* Blue on hover */
  text-decoration: underline;
}

/* Contact info */
.adr_same,
.eml,
.phn {
  color: #6c757d;
  /* Grey text */
  margin-bottom: 15px;
  /* padding-left: 25px; */
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phn i {
  color: #007bff;
}

/* Phone icon blue */
.eml i {
  color: #ffcc00;
}

/* Email icon yellow */
.whatsapp i {
  color: #25d366;
}

/* Google Map Links */
.footer_lower_txt a {
  color: #007bff;
}

.footer_lower_txt a:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* Footer Layout */
.container101 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  flex-wrap: wrap;
}

.footer_lower_txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.colorgsfp {
  color: white;
}
/* Bottom Bar */
.bottom_bar {
  padding: 15px 0;
  text-align: center;
  color: #fff;
  border-top: 1px solid #717171;
}
.fa-solid,
.fas {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}
.btn-wrap {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-top: 24px;
}

.enroll-btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    border-radius: 50px;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: #fff;
    font-weight: 700;
    transition: 0.3s ease;
}
.enroll-btn.secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}