/* ── MBA PAGE STYLES ── */

/* HERO */
.mba-hero {
  background: var(--navy-dark);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}

.mba-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 40%, rgba(21, 45, 138, .7) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 17, 31, .18) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 0%, rgba(244, 184, 0, .07) 0%, transparent 40%);
}

.mba-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red) 50%, var(--gold));
}

.mba-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.mba-hero-left h1 {
  color: var(--white);
}

.mba-h1-accent {
  color: var(--gold);
}

.mba-hero-sub {
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
  line-height: 1.82;
  margin: 16px 0 32px;
  max-width: 540px;
}

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

.mba-hero-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 34px;
  box-shadow: var(--shadow-xl);
}

.mba-hero-card h4 {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}

.qf-list {
  display: grid;
  gap: 12px;
}

.qf-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--grey-100);
}

.qf-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.qf-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.qf-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.qf-list span {
  font-family: var(--font-display);
  font-size: .78rem;
  color: var(--grey-600);
}

/* PLACEMENT STRIP */
.placement-strip {
  background: var(--navy);
  padding: 28px 0;
  border-bottom: 3px solid var(--gold);
}

.ps-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.ps-item {
  text-align: center;
}

.ps-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}

.ps-lbl {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .5);
  letter-spacing: .08em;
  margin-top: 4px;
}

.ps-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .1);
}

/* PROGRAM ABOUT */
.prog-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.prog-about-grid p {
  color: var(--grey-600);
  font-size: .97rem;
}

.prog-pillars {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.pillar {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--grey-100);
  border-radius: var(--r-full);
  padding: 6px 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
}

.pa-highlight-box {
  background: var(--off-white);
  border-radius: var(--r-lg);
  padding: 30px;
  border-left: 4px solid var(--gold);
}

.pah-head {
  margin-bottom: 20px;
}

.pah-list {
  display: grid;
  gap: 18px;
}

.pah-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  /* padding-bottom: 18px; */
  border-bottom: 1px dashed var(--grey-200);
}

.pah-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.pah-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.pah-list strong {
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.pah-list p {
  font-size: .82rem;
  color: var(--grey-600);
  line-height: 1.6;
}

/* SPECIALISATIONS */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.spec-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--grey-200);
  transition: var(--ease);
  cursor: pointer;
}

.spec-card:hover,
.spec-card.active {
  border-top-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.spec-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.spec-icon {
  font-size: 1.8rem;
}

.spec-card h3 {
  font-size: .92rem;
  margin-bottom: 8px;
}

.spec-card p {
  font-size: .8rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 14px;
}

.spec-careers {
  font-family: var(--font-display);
  font-size: .72rem;
  color: var(--grey-600);
  margin-bottom: 10px;
}

.spec-careers strong {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
}

.spec-careers span {
  display: inline-block;
  background: var(--grey-100);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
  margin: 2px 2px 2px 0;
}

.spec-recruiters {
  font-family: var(--font-display);
  font-size: .7rem;
  color: var(--grey-400);
  border-top: 1px solid var(--grey-100);
  padding-top: 10px;
  line-height: 1.5;
}

/* CURRICULUM TABS */
.curriculum-tabs {
  margin-top: 52px;
}

.curr-tab-buttons {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--grey-200);
  margin-bottom: 0;
}

.curr-tab-btn {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--grey-600);
  padding: 14px 28px;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--ease);
  cursor: pointer;
}

.curr-tab-btn:hover {
  color: var(--navy);
}

.curr-tab-btn.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.curr-panels {
  border: 1px solid var(--grey-200);
  border-top: none;
  border-radius: 0 0 var(--r-md) var(--r-md);
}

.curr-panel {
  display: none;
  padding: 36px;
}

.curr-panel.active {
  display: block;
}

.curr-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--grey-100);
}

.curr-panel-head h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.curr-panel-head p {
  font-size: .88rem;
  color: var(--grey-600);
}

.curr-subjects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cs-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--r-sm);
  background: var(--off-white);
  transition: var(--ease);
  border-left: 3px solid var(--grey-200);
}

.cs-item:hover {
  background: var(--grey-100);
  border-left-color: var(--navy);
}

.cs-item.cs-spec {
  border-left-color: var(--gold);
  background: rgba(244, 184, 0, .05);
}

.cs-item.cs-elective {
  border-left-color: var(--grey-400);
  opacity: .85;
}

.cs-code {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 800;
  color: var(--white);
  background: var(--navy);
  padding: 4px 7px;
  border-radius: var(--r-sm);
  white-space: nowrap;
  align-self: flex-start;
  flex-shrink: 0;
  letter-spacing: .04em;
}

.cs-item strong {
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.cs-item p {
  font-size: .78rem;
  color: var(--grey-600);
  line-height: 1.55;
}

.cs-credits {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--gold-dark);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 2px;
}

.curr-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: var(--grey-600);
}

/* FACULTY */
.faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.faculty-card {
  display: flex;
  gap: 16px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border-bottom: 3px solid var(--grey-200);
}

.faculty-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
}

.fac-av {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  border: 3px solid var(--gold);
}

.fac-info h4 {
  font-size: .95rem;
  margin-bottom: 3px;
}

.fac-role {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}

.fac-info p {
  font-size: .8rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.fac-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.fac-tags span {
  background: var(--grey-100);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: .66rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-full);
}

/* PLACEMENTS */
.placement-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  margin-top: 52px;
  align-items: flex-start;
}

.ps-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}

.pss-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.pss-gold {
  background: var(--navy);
}

.pss-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 6px;
  color: var(--navy);
}

.pss-gold .pss-num {
  color: var(--gold);
}

.pss-lbl {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  color: var(--grey-600);
}

.pss-gold .pss-lbl {
  color: rgba(255, 255, 255, .55);
}

.sector-breakdown {
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 22px;
}

.sector-breakdown h4 {
  font-size: .9rem;
  margin-bottom: 16px;
}

.sector-bar-list {
  display: grid;
  gap: 10px;
}

.sbar-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sbar-label {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 600;
  color: var(--grey-800);
  min-width: 160px;
}

.sbar-track {
  flex: 1;
  height: 8px;
  background: var(--grey-200);
  border-radius: 4px;
  overflow: hidden;
}

.sbar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 1.5s cubic-bezier(.4, 0, .2, 1);
}

.sbar-pct {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  color: var(--navy);
  min-width: 34px;
  text-align: right;
}

.placement-companies h4 {
  font-size: .9rem;
  margin-bottom: 16px;
}

.company-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.co-badge {
  background: var(--white);
  border: 1px solid var(--grey-200);
  color: var(--grey-800);
  font-family: var(--font-display);
  font-size: .76rem;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-full);
  transition: var(--ease);
  cursor: default;
}

.co-badge:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* FEE */
/* .fee-layout {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 56px; align-items: flex-start;
} */
.fee-layout p {
  color: var(--grey-600);
  font-size: .95rem;
  margin-bottom: 24px;
}

.fee-table-wrap {
  margin-top: 24px;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.fee-support-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 18px;
}

.fee-support-card h4 {
  font-size: .95rem;
  margin-bottom: 18px;
}

.fee-support-list {
  display: grid;
  gap: 16px;
}

.fee-support-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.fsl-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.fee-support-list strong {
  font-family: var(--font-display);
  font-size: .85rem;
  color: var(--navy);
  display: block;
  margin-bottom: 3px;
}

.fee-support-list p {
  font-size: .8rem;
  color: var(--grey-600);
  line-height: 1.55;
}

.fee-emi-calc {
  background: var(--navy);
  border-radius: var(--r-md);
  padding: 20px 22px;
  text-align: center;
}

.fee-emi-calc strong {
  display: block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.emi-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

.fee-emi-calc small {
  display: block;
  font-family: var(--font-display);
  font-size: .7rem;
  color: rgba(255, 255, 255, .4);
  margin-top: 6px;
}

/* ADMISSION */
.adm-steps-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
}

.adm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
  position: relative;
}

.adm-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 14px;
  transition: var(--ease);
  flex-shrink: 0;
}

.adm-step:hover .adm-step-num {
  background: var(--navy);
  color: var(--gold);
  border-color: var(--navy);
}

.adm-step-arrow {
  position: absolute;
  top: 22px;
  right: -12px;
  font-size: 1.2rem;
  color: var(--grey-400);
  z-index: 1;
}

.adm-step-body h4 {
  font-size: .9rem;
  margin-bottom: 7px;
}

.adm-step-body p {
  font-size: .78rem;
  color: var(--grey-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.adm-time {
  display: inline-block;
  background: var(--off-white);
  border-radius: var(--r-full);
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--grey-600);
  padding: 4px 10px;
}

.adm-eligibility-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 30px;
  border-left: 4px solid var(--gold);
}

.adm-eligibility-box h4 {
  font-size: .9rem;
  margin-bottom: 14px;
}

.adm-eligibility-box ul li {
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--grey-800);
  padding: 5px 0;
  border-bottom: 1px dotted var(--grey-200);
}

.adm-eligibility-box ul li:last-child {
  border-bottom: none;
}

.adm-eligibility-box table {
  width: 100%;
}

.adm-eligibility-box table tr td {
  padding: 6px 0;
  font-family: var(--font-display);
  font-size: .82rem;
  color: var(--grey-600);
  border-bottom: 1px dotted var(--grey-200);
}

.adm-eligibility-box table tr:last-child td {
  border-bottom: none;
}

.adm-eligibility-box table td strong {
  color: var(--navy);
}

/* INTERNATIONAL */
.intl-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

.intl-programs {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.ip-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, .06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.ip-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.ip-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: .88rem;
  margin-bottom: 4px;
}

.ip-item p {
  font-size: .82rem;
  color: rgba(255, 255, 255, .58);
  line-height: 1.65;
}

.iv-partner-list {
  background: rgba(255, 255, 255, .06);
  border-radius: var(--r-md);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.iv-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.iv-partner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
}

.iv-partner:last-child {
  border-bottom: none;
}

.iv-partner span {
  font-size: 1.2rem;
}

/* CLUBS */
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.club-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--ease);
  border-bottom: 3px solid var(--grey-200);
}

.club-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--gold);
}

.club-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}

.club-card h4 {
  font-size: .95rem;
  margin-bottom: 8px;
}

.club-card p {
  font-size: .84rem;
  color: var(--grey-600);
  line-height: 1.65;
}

/* MBA TESTIMONIALS */
.mba-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.mt-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
  transition: var(--ease);
}

.mt-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.mt-quote {
  font-style: italic;
  font-size: .92rem;
  color: var(--grey-800);
  line-height: 1.75;
  margin-bottom: 20px;
  padding-left: 14px;
  position: relative;
}

.mt-quote::before {
  content: '\201C';
  position: absolute;
  left: -4px;
  top: -6px;
  font-size: 2.5rem;
  color: var(--grey-200);
  font-family: Georgia, serif;
  line-height: 1;
}

.mt-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--grey-100);
  padding-top: 16px;
}

.mt-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .82rem;
  color: var(--white);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.mt-author strong {
  display: block;
  font-family: var(--font-display);
  font-size: .88rem;
  color: var(--navy);
}

.mt-author span {
  font-family: var(--font-display);
  font-size: .72rem;
  color: var(--grey-600);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .mba-hero-inner {
    grid-template-columns: 1fr;
  }

  .mba-hero-card {
    display: none;
  }

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

  .prog-about-grid {
    grid-template-columns: 1fr;
  }

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

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

  .fee-layout {
    grid-template-columns: 1fr;
  }

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

  .adm-steps-row {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .adm-step-arrow {
    display: none;
  }

  .adm-eligibility-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }

  .curr-subjects-grid {
    grid-template-columns: 1fr;
  }

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

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

  .mba-testi-grid {
    grid-template-columns: 1fr;
  }

  .curr-tab-buttons {
    flex-wrap: wrap;
  }

  .curr-tab-btn {
    flex: 1;
    padding: 12px 14px;
    font-size: .8rem;
  }

  .ps-inner {
    justify-content: center;
  }

  .ps-sep {
    display: none;
  }

  .adm-steps-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .clubs-grid {
    grid-template-columns: 1fr;
  }

  .ps-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.fee-left {
  text-align: center;
}

.bca-table tbody tr {
  background-color: #fff;
}

.bca-table thead th {
  text-align: center;
}


.modal-content {
  border-radius: 20px;
}

.modal label {
  font-weight: 600;
}

.modal .form-control,
.modal .form-select {
  height: 50px;
  border: 1px solid orange;
}

.modal .form-control:focus,
.modal .form-select:focus {
  border-color: #0c3e63;
  box-shadow: none;
}

.modal .btn-primary {
  background: #0c3e63;
  border: none;
}

.modal .btn-primary:hover {
  background: #f39c12;
}



.quick-facts-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
  border: 1px solid #ececec;
  overflow: hidden;
  position: relative;
}

.quick-facts-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #b8860b, #d4af37, #b8860b);
}

.qf-heading {
  text-align: center;
  margin-bottom: 30px;
}

.qf-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: #fff7e5;
  color: #b8860b;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.qf-heading h3 {
  font-size: 30px;
  margin-bottom: 8px;
  color: #0c3e63;
  font-weight: 700;
}

.qf-heading p {
  color: #777;
  font-size: 15px;
}

.quick-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.qf-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid #ededed;
  transition: .35s;
}

.qf-item:hover {
  transform: translateY(-6px);
  border-color: #c9111f;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .08);
}

.qf-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: linear-gradient(135deg, #0c3e63, #15598d);
  color: #fff;
  flex-shrink: 0;
}

.qf-label {
  display: block;
  font-size: 13px;
  color: #888;
  margin-bottom: 4px;
}

.qf-item h5 {
  margin: 0;
  color: #0c3e63;
  font-size: 18px;
  font-weight: 700;
}

.qf-btn {
  display: block;
  margin-top: 30px;
  text-align: center;
  background: #c9111f;
  color: #fff;
  text-decoration: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 600;
  transition: .3s;
}

.qf-btn:hover {
  background: #0c3e63;
  color: #fff;
}

@media(max-width:768px) {

  .quick-facts-grid {
    grid-template-columns: 1fr;
  }

  .quick-facts-card {
    padding: 22px;
  }

  .qf-heading h3 {
    font-size: 26px;
  }

  .qf-icon {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .qf-item h5 {
    font-size: 16px;
  }

}


@media (max-width:768px) {

  .mba-hero {
    padding: 70px 0 30px;
  }

  .mba-hero .container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .mba-hero-inner {
    display: block;
    width: 100%;
  }

  .mba-hero-left {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .mba-hero-sub {
    max-width: 100%;
  }

  .mba-hero-ctas {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mba-hero-ctas .btn {
    width: 100%;
    margin: 0;
  }

  .badge.badge-gold {
    font-size: 9px !important;

  }

  .sec-title {
    font-size: 23px;
  }

  .curr-panel {
    display: none;
    padding: 20px;
}
}