

a {
  text-decoration: none;
}

img {
 /*  width: 100%; */
  display: block;
}

.spec-container {
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e69d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label span {
  width: 42px;
  height: 2px;
  background: #e69d00;
}

.section-label.center {
/*  justify-content: center; */
}

.light-label {
  color: #f7b51c;
}

.light-label span {
  background: #f7b51c;
}

/* Topbar */

.spec-topbar {
  background: #020b17;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 0;
}

.topbar-inner,
.topbar-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.spec-topbar i {
  color: #f7b51c;
  margin-right: 7px;
}

.topbar-links a {
  color: #ffffff;
  opacity: 0.9;
}

.topbar-links a:hover {
  color: #f7b51c;
}

/* Navbar */

.spec-navbar {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #06142c;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.brand-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #f7b51c;
  border-radius: 8px;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
}

.brand-wrap strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-wrap span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  padding: 28px 0;
  position: relative;
}

.nav-menu a.active::after,
.nav-menu a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 3px;
  background: #f7b51c;
}

.nav-apply-btn {
  background: #f7b51c;
  color: #06142c;
  border-radius: 8px;
  padding: 14px 24px;
  font-weight: 900;
}

/* Hero */

.spec-hero-section {
  position: relative;
  padding: 5px 0 0;
  background:
    linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.96) 36%, rgba(255,255,255,0.72) 54%, rgba(255,255,255,0.10) 100%),
    url("images/iibs-finance-students-uniform.jpg") center right / cover no-repeat;
  overflow: hidden;
}

.spec-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.75fr 380px;
  gap: 28px;
  align-items: center;
}

.spec-hero-content {
  padding-bottom: 40px;
}

.spec-hero-content h1 {
  color: #07162d;
  font-size: clamp(44px, 4.6vw, 70px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -1.8px;
  margin: 0 0 12px;
}

.spec-hero-content h1 strong {
  display: block;
  color: #e69d00;
}

.spec-hero-content h4 {
  color: #e69d00;
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
  max-width: 620px;
  margin-bottom: 16px;
}

.spec-hero-content p {
  color: #263145;
  font-size: 16px;
  line-height: 1.75;
  max-width: 650px;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.primary-btn,
.outline-btn {
  min-width: 170px;
  height: 52px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.primary-btn {
  background: #06142c;
  color: #ffffff;
}

.primary-btn:hover {
  background: #f7b51c;
  color: #06142c;
}

.outline-btn {
  border: 1px solid #06142c;
  color: #06142c;
}

.outline-btn:hover {
  background: #06142c;
  color: #ffffff;
}

.hero-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(7, 22, 45, 0.10);
  overflow: hidden;
  max-width: 760px;
}

.hero-info-strip div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 22px;
  border-right: 1px solid rgba(7,22,45,0.10);
}

.hero-info-strip div:last-child {
  border-right: none;
}

.hero-info-strip i {
  min-width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.hero-info-strip h5 {
  margin: 0;
  color: #07162d;
  font-size: 15px;
  font-weight: 900;
}

.hero-info-strip p {
  margin: 2px 0 0;
  color: #455065;
  font-size: 12px;
  line-height: 1.3;
}

.hero-image-wrap {
  position: relative;
  min-height: 360px;
  align-self: stretch;
}
/*
.hero-image-wrap img {
  display: none;
}
*/
.hero-floating-card {
  position: absolute;
  right: 0;
/*  bottom: 50px;
  width: 310px;*/
  background: #06142c;
  border-radius: 12px;
  color: #ffffff;
  padding: 5px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 22px 55px rgba(7,22,45,0.22);
}

.hero-floating-card i {
  min-width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(247,181,28,0.55);
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 30px;
}

.hero-floating-card h5 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 900;
}

.hero-floating-card p {
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

/* Lead Form */

.hero-lead-form-card {
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 2px;
  box-shadow: 0 24px 60px rgba(7, 22, 45, 0.18);
  border: 1px solid rgba(7, 22, 45, 0.08);
  position: relative;
  z-index: 5;
  margin-bottom: 10px;
}

.lead-form-header {
  background: #06142c;
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 14px;
}

.lead-form-header span {
  display: block;
  color: #f7b51c;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.lead-form-header h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  margin: 0 0 8px;
}

.lead-form-header p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.45;
  margin: 0;
}

.hero-lead-form {
  display: grid;
  gap: 11px;
}

.lead-input-group {
  position: relative;
}

.lead-input-group i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #07162d;
  font-size: 15px;
  opacity: 0.75;
  z-index: 2;
}

.lead-input-group input,
.lead-input-group select {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(7, 22, 45, 0.14);
  border-radius: 7px;
  background: #ffffff;
  color: #07162d;
  font-size: 13px;
  font-weight: 600;
  padding: 0 15px 0 44px;
  outline: none;
}

.lead-input-group input:focus,
.lead-input-group select:focus {
  border-color: #f7b51c;
  box-shadow: 0 0 0 4px rgba(247, 181, 28, 0.12);
}

.lead-submit-btn {
  width: 100%;
  height: 52px;
  border: none;
  border-radius: 7px;
  background: #f7b51c;
  color: #07162d;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}

.lead-submit-btn:hover {
  background: #06142c;
  color: #ffffff;
}

.lead-form-note {
  color: #667085;
  font-size: 11px;
  line-height: 1.45;
  margin: 2px 0 0;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}

/* Page Nav */

.spec-page-nav {
  background: #ffffff;
  position: sticky;
  top: 78px;
  z-index: 850;
  padding: 12px 0;
  border-bottom: 1px solid rgba(7,22,45,0.08);
  box-shadow: 0 10px 28px rgba(7,22,45,0.06);
}

.page-nav-inner {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-radius: 10px;
  overflow: hidden;
}

.page-nav-inner a {
  color: #07162d;
  padding: 18px 12px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  border-right: 1px solid rgba(7,22,45,0.10);
  background: #ffffff;
}

.page-nav-inner a:last-child {
  border-right: none;
}

.page-nav-inner a i {
  margin-right: 8px;
}

.page-nav-inner a.active,
.page-nav-inner a:hover {
  color: #e69d00;
}

/* Snapshot */

.program-snapshot-section {
  padding: 32px 0;
  background: #ffffff;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 22px;
}

.snapshot-dark-card,
.snapshot-card {
  border-radius: 14px;
  min-height: 220px;
  padding: 28px;
  box-shadow: 0 12px 36px rgba(7,22,45,0.08);
}

.snapshot-dark-card {
  background: #06142c;
  color: #ffffff;
}

.snapshot-dark-card h2 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}

.snapshot-dark-card p {
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}

.snapshot-card {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.08);
  text-align: center;
}

.snapshot-card i {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 30px;
  margin: 0 auto 22px;
}

.snapshot-card h3 {
  color: #07162d;
  font-size: 21px;
  font-weight: 900;
}

.snapshot-card p {
  color: #465066;
  line-height: 1.55;
  margin: 0;
}

/* Fee + Approval */

.fee-approval-section {
  padding: 12px 0 42px;
  background: #ffffff;
}

.fee-approval-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}

.fee-card,
.approval-card {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.08);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(7,22,45,0.08);
}

.fee-card h2,
.approval-card h2 {
  color: #07162d;
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 18px;
}

.fee-table {
  border: 1px solid rgba(7,22,45,0.10);
  border-radius: 10px;
  overflow: hidden;
}

.fee-table div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(7,22,45,0.10);
}

.fee-table div:last-child {
  border-bottom: none;
}

.fee-table span {
  color: #263145;
  font-weight: 800;
}

.fee-table strong {
  color: #07162d;
  font-weight: 900;
  white-space: nowrap;
}

.fee-note {
  color: #465066;
  font-size: 13px;
  line-height: 1.55;
  margin: 18px 0 0;
}

.approval-list {
  display: grid;
  gap: 16px;
}

.approval-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.approval-list i {
  color: #f7b51c;
  font-size: 22px;
  margin-top: 2px;
}

.approval-list p {
  color: #465066;
  line-height: 1.55;
  margin: 0;
}

.approval-list strong {
  color: #07162d;
}

/* Curriculum */

.curriculum-section {
  padding: 10px 0;
  background: #fbfcff;
}

.section-title-center {
/*  text-align: center;
  max-width: 900px; */
  margin: 0 auto 32px;
}

.section-title-center h2 {
  color: #07162d;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 900;
  margin: 0 0 10px;
}

.section-title-center h2 strong {
  color: #e69d00;
}

.section-title-center p {
  color: #465066;
  line-height: 1.6;
}

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.curriculum-card {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(7,22,45,0.07);
}

.semester-title {
  background: #06142c;
  color: #ffffff;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.curriculum-card h3 {
  color: #07162d;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 10px 3px;
  margin: 0;
}

.curriculum-card ul {
  color: #263145;
  line-height: 1.8;
  padding: 0 24px 22px 38px;
  margin: 0;
  font-size: 14px;
}

/* Career */

.career-section {
  padding: 50px 0;
  background: #ffffff;
}

.career-grid {
  display: grid;
  grid-template-columns: 0.8fr 0.85fr 1.35fr;
  gap: 28px;
  align-items: center;
}

.career-image {
  border-radius: 12px;
  overflow: hidden;
}

.career-image img {
  height: 230px;
  object-fit: cover;
}

.career-content h2,
.other-spec-header h2 {
  color: #07162d;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 12px;
}

.career-content h2 strong {
  color: #e69d00;
}

.career-content p {
  color: #465066;
  line-height: 1.65;
}

.career-role-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.career-role-grid div {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.10);
  border-radius: 8px;
  padding: 15px;
  color: #07162d;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7,22,45,0.05);
}

.career-role-grid i {
  color: #06142c;
  margin-right: 8px;
}

/* Other Specializations */

.other-specialization-section {
  padding: 30px 0 45px;
  background: #ffffff;
}

.other-spec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.other-spec-card {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.10);
  border-radius: 10px;
  padding: 18px 12px;
  color: #07162d;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(7,22,45,0.05);
}

.other-spec-card i {
  color: #06142c;
  display: block;
  font-size: 25px;
  margin-bottom: 8px;
}

.other-spec-card.active,
.other-spec-card:hover {
  background: #06142c;
  color: #ffffff;
}

.other-spec-card.active i,
.other-spec-card:hover i {
  color: #f7b51c;
}

/* Recruiters */

.recruiter-section {
  padding: 45px 0;
  background: #fbfcff;
}

.recruiter-logo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.recruiter-logo-grid div {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.10);
  border-radius: 10px;
  min-height: 75px;
  display: grid;
  place-items: center;
  color: #07162d;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(7,22,45,0.05);
}

.recruiter-logo-grid span {
  color: #58a700;
}

.placement-stats-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.placement-stats-grid div {
  background: #ffffff;
  border: 1px solid rgba(7,22,45,0.10);
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.placement-stats-grid i {
  min-width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 22px;
}

.placement-stats-grid h3 {
  color: #07162d;
  font-size: 24px;
  font-weight: 900;
  margin: 0;
}

.placement-stats-grid p {
  color: #465066;
  margin: 2px 0 0;
  font-size: 13px;
}

/* CTA */

.bottom-cta-section {
  padding: 45px 0;
  background: #ffffff;
}

.bottom-cta-box {
  background: #06142c;
  border-radius: 18px;
  padding: 30px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 35px;
  align-items: center;
}

.cta-left {
  display: flex;
  gap: 18px;
  align-items: center;
}

.cta-left > i {
  min-width: 82px;
  height: 82px;
  border-radius: 50%;
  background: rgba(247,181,28,0.12);
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 38px;
}

.cta-left span {
  color: #f7b51c;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-left h2 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 900;
  margin: 5px 0;
}

.cta-left p {
  color: rgba(255,255,255,0.75);
  margin: 0;
}

.bottom-enquiry-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bottom-enquiry-form input,
.bottom-enquiry-form select {
  height: 52px;
  border-radius: 7px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
}

.bottom-enquiry-form select {
  grid-column: span 2;
}

.bottom-enquiry-form button {
  height: 52px;
  border: none;
  border-radius: 7px;
  background: #f7b51c;
  color: #07162d;
  font-weight: 900;
}

/* Footer */

.spec-footer {
  background: #020b17;
  color: rgba(255,255,255,0.75);
  padding: 46px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 38px;
}

.spec-footer h3,
.spec-footer h4 {
  color: #ffffff;
  font-weight: 900;
}

.spec-footer a {
  color: rgba(255,255,255,0.75);
  display: block;
  margin-bottom: 9px;
}

.spec-footer a:hover {
  color: #f7b51c;
}

/* Responsive */

@media (max-width: 1199px) {
  .spec-hero-grid,
  .fee-approval-grid,
  .career-grid,
  .bottom-cta-box {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap {
    display: none;
  }

  .spec-hero-section {
    background:
      linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88)),
      url("images/iibs-finance-students-uniform.jpg") center / cover no-repeat;
  }

  .snapshot-grid,
  .curriculum-grid,
  .placement-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .other-spec-grid,
  .recruiter-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 991px) {
  .spec-container {
    width: min(100% - 40px, 820px);
  }

  .spec-page-nav {
    top: 78px;
  }

  .page-nav-inner {
    display: flex;
    overflow-x: auto;
  }

  .page-nav-inner a {
    min-width: 160px;
  }

  .hero-info-strip {
    grid-template-columns: 1fr;
  }

  .hero-info-strip div {
    border-right: none;
    border-bottom: 1px solid rgba(7,22,45,0.10);
  }

  .hero-info-strip div:last-child {
    border-bottom: none;
  }

  .bottom-enquiry-form {
    grid-template-columns: 1fr;
  }

  .bottom-enquiry-form select {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .topbar-inner,
  .topbar-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .spec-hero-content h1,
  .section-title-center h2 {
    font-size: 36px;
  }

  .spec-hero-content h4 {
    font-size: 21px;
  }

  .snapshot-grid,
  .curriculum-grid,
  .career-role-grid,
  .placement-stats-grid,
  .other-spec-grid,
  .recruiter-logo-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-btn,
  .outline-btn,
  .nav-apply-btn {
    width: 100%;
  }

  .brand-wrap strong {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .spec-container {
    width: calc(100% - 26px);
  }

  .spec-hero-section {
    padding-top: 34px;
  }

  .hero-lead-form-card {
    padding: 12px;
  }

  .lead-form-header {
    padding: 20px;
  }

  .fee-card,
  .approval-card,
  .snapshot-card,
  .snapshot-dark-card {
    padding: 10px;
  }

  .cta-left {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* ==============================
   Accreditation & Approval Section
============================== */


.approval-showcase-section {
  padding: 10px 0;
  background: #f7f9fd;
  overflow: hidden;
}

.approval-card {
   grid-template-columns: repeat(2, 1fr); 
}


.approval-card-wrap {
  position: relative;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 22, 45, 0.10);
  display: grid;
  grid-template-columns: 0.95fr 0.75fr 1.05fr;
  align-items: center;
}

/* Left Content */

.approval-left-content {
  position: relative;
  z-index: 4;
  padding: 10px 10px 10px 10px;
}

.approval-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e69d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.approval-label span {
  width: 54px;
  height: 3px;
  background: #e69d00;
}

.approval-left-content h2 {
  color: #07162d;
}

.approval-feature-list {
  display: grid;
  gap: 10px;
}

.approval-feature-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 22px;
  align-items: flex-start;
}

.approval-feature-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 16px;
  box-shadow: 0 14px 35px rgba(7, 22, 45, 0.14);
  position: relative;
}

.approval-feature-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 2px;
  height: 24px;
  background: #f7b51c;
  opacity: 0.55;
  transform: translateX(-50%);
}

.approval-feature-item:last-child .approval-feature-icon::after {
  display: none;
}

.approval-feature-item h3 {
  color: #07162d;
  font-size: 15px;
  font-weight: 900;
  margin: 0 0 8px;
}

.approval-feature-item p {
  color: #465066;
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
}

/* Center Logo Cards */

.approval-logo-grid {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  padding: 5px 0;
}

.approval-logo-grid::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 360px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-image: radial-gradient(rgba(0, 74, 150, 0.18) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  z-index: -1;
}

.approval-logo-card {
  min-height: 140px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(7, 22, 45, 0.10);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #07162d;
  text-align: center;
  box-shadow: 0 6px 20px rgba(7, 22, 45, 0.10);
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.approval-logo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 65px rgba(7, 22, 45, 0.16);
}

.logo-mark {
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 10px;
}

.aicte-logo {
  color: #07162d;
  font-size:28px;
  text-align: center;
}

.nba-logo {
  background: #e7f7ff;
  color: #0094ce;
  font-size: 28px;
}

.naac-logo {
  background: #fff4f4;
  color: #c82127;
  font-family: Georgia, serif;
  font-size: 28px;
}

.ugc-logo {
  background: #fff6f6;
  color: #c82127;
  font-size: 28px;
}

.approval-logo-card h4 {
  color: #07162d;
  font-size: 16px;
  font-weight: 900;
  margin: 0 0 3px;
}

.approval-logo-card p {
  color: #465066;
  font-size: 20px;
  margin: 0;
  position: relative;
}

.approval-logo-card p::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  background: #e69d00;
  margin: 16px auto 0;
}

/* Right Campus Image */

.approval-campus-image {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  border-radius: 170px 28px 28px 170px;
  border-left: 14px solid #f7b51c;
}

.approval-campus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approval-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0.02) 45%, rgba(7,22,45,0.12) 100%);
}

.campus-badge {
  position: absolute;
  left: 42px;
  bottom: 38px;
  background: #ffffff;
  color: #07162d;
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.18);
}

.campus-badge i {
  min-width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.campus-badge h4 {
  color: #07162d;
  font-size: 20px;
  font-weight: 900;
  margin: 0 0 4px;
}

.campus-badge p {
  color: #465066;
  margin: 0;
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1299px) {
  .approval-card-wrap {
    grid-template-columns: 1fr;
  }

  .approval-left-content {
    padding: 50px 42px 30px;
  }

  .approval-logo-grid {
    width: min(100% - 70px, 760px);
    margin: 0 auto;
    padding: 30px 0 50px;
  }

  .approval-campus-image {
    min-height: 420px;
    border-radius: 0 0 28px 28px;
    border-left: none;
    border-top: 12px solid #f7b51c;
  }
}

@media (max-width: 991px) {
  .approval-showcase-section {
    padding: 55px 0;
  }

  .approval-container {
    width: min(100% - 40px, 820px);
  }

  .approval-left-content h2 {
    font-size: 40px;
  }

  .approval-feature-item h3 {
    font-size: 15px;
  }

  .approval-feature-item p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .approval-card-wrap {
    border-radius: 20px;
  }

  .approval-left-content {
    padding: 36px 24px 20px;
  }

  .approval-label {
    font-size: 12px;
    letter-spacing: 3px;
    gap: 10px;
  }

  .approval-label span {
    width: 28px;
  }

  .approval-feature-item {
    grid-template-columns: 64px 1fr;
    gap: 16px;
  }

  .approval-feature-icon {
    width: 25px;
    height: 25px;
    font-size: 16px;
  }

  .approval-feature-item h3 {
    font-size: 20px;
  }

  .approval-logo-grid {
  /*  grid-template-columns: 1fr; */
    width: calc(100% - 48px);
  }

  .approval-logo-card {
    min-height: 170px;
  }

  .approval-campus-image {
    min-height: 320px;
  }

  .campus-badge {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 575px) {
  .approval-container {
    width: calc(100% - 24px);
  }

  .approval-left-content h2 {
    font-size: 32px;
  }

  .approval-feature-list {
    gap: 22px;
  }

  .campus-badge {
    align-items: flex-start;
  }
}


.breadcrumb-section-light {
  background: #f7f9fd;
  padding: 14px 14px 14px 35px;
  border-bottom: 1px solid rgba(7, 22, 45, 0.08);
}

.custom-breadcrumb-light {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-breadcrumb-light li {
  display: inline-flex;
  align-items: center;
  color: #667085;
  font-size: 13px;
  font-weight: 800;
}

.custom-breadcrumb-light li:not(:last-child)::after {
  content: "\F285";
  font-family: "bootstrap-icons";
  color: #98a2b3;
  font-size: 12px;
  margin-left: 8px;
}

.custom-breadcrumb-light a {
  color: #07162d;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
}

.custom-breadcrumb-light a i {
  color: #e69d00;
}

.custom-breadcrumb-light a:hover,
.custom-breadcrumb-light .active {
  color: #e69d00;
}

/* ==============================
   MBA Eligibility Criteria Section
============================== */

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
}

.mba-eligibility-section {
  padding: 20px 0;
  background:
    radial-gradient(circle at top right, rgba(247, 181, 28, 0.10), transparent 32%),
    #fbfcff;
}

.eligibility-container {
  width: min(100% - 64px, 1480px);
  margin: 0 auto;
}

.eligibility-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
  margin-bottom: 36px;
}

.eligibility-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #e69d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.eligibility-label span {
  width: 42px;
  height: 2px;
  background: #e69d00;
}

.eligibility-label.small {
  font-size: 12px;
  margin-bottom: 10px;
}

.eligibility-label.light {
  color: #f7b51c;
}

.eligibility-label.light span {
  background: #f7b51c;
}

.eligibility-header h2 {
  color: #07162d;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 0 0 14px;
}

.eligibility-header h2 strong {
  color: #e69d00;
}

.eligibility-header p {
  color: #465066;
  font-size: 17px;
  line-height: 1.65;
  max-width: 850px;
  margin: 0;
}

.eligibility-apply-btn {
  background: #06142c;
  color: #ffffff;
  border-radius: 8px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  box-shadow: 0 14px 34px rgba(7, 22, 45, 0.14);
}

.eligibility-apply-btn:hover {
  background: #f7b51c;
  color: #06142c;
}

/* Main Grid */

.eligibility-main-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 26px;
  align-items: stretch;
}

.eligibility-primary-card,
.entrance-exam-card {
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.09);
  border-radius: 22px;
  box-shadow: 0 16px 45px rgba(7, 22, 45, 0.08);
}

/* Graduation Card */

.eligibility-primary-card {
  padding: 34px;
  position: relative;
  overflow: hidden;
}

.eligibility-primary-card::after {
  content: "";
  position: absolute;
  right: -65px;
  bottom: -65px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(247, 181, 28, 0.12);
}

.eligibility-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 34px;
  margin-bottom: 22px;
}

.eligibility-primary-card > span {
  color: #e69d00;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eligibility-primary-card h3 {
  color: #07162d;
  font-size: 34px;
  font-weight: 900;
  margin: 10px 0 12px;
}

.eligibility-primary-card p {
  color: #465066;
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 22px;
}

.eligibility-score-box {
  background: #06142c;
  color: #ffffff;
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 24px;
}

.eligibility-score-box strong {
  display: block;
  color: #f7b51c;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}

.eligibility-score-box small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.eligibility-primary-card ul {
  color: #465066;
  line-height: 1.8;
  padding-left: 20px;
  margin: 0;
}

/* Entrance Exam Card */

.entrance-exam-card {
  padding: 34px;
}

.exam-card-top h3 {
  color: #07162d;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0 0 26px;
}

.exam-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.exam-logo-card {
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.10);
  border-radius: 16px;
  min-height: 130px;
  padding: 20px 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.3s ease;
}

.exam-logo-card:hover {
  background: #06142c;
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(7, 22, 45, 0.14);
}

.exam-logo-card strong {
  color: #07162d;
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
}

.exam-logo-card span {
  color: #465066;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.exam-logo-card:hover strong {
  color: #f7b51c;
}

.exam-logo-card:hover span {
  color: rgba(255, 255, 255, 0.76);
}

.exam-note {
  margin-top: 22px;
  background: #f7f9fd;
  border: 1px solid rgba(7, 22, 45, 0.08);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}

.exam-note i {
  color: #e69d00;
  font-size: 22px;
}

.exam-note p {
  color: #465066;
  line-height: 1.55;
  margin: 0;
  font-size: 14px;
}

/* Selection Process */

.selection-process-box {
  margin-top: 26px;
  background:
    radial-gradient(circle at right, rgba(247, 181, 28, 0.15), transparent 36%),
    #06142c;
  border-radius: 22px;
  padding: 36px;
  color: #ffffff;
  box-shadow: 0 20px 55px rgba(7, 22, 45, 0.14);
}

.selection-title {
  margin-bottom: 28px;
}

.selection-title h3 {
  color: #ffffff;
  font-size: 34px;
  font-weight: 900;
  margin: 0;
}

.selection-step-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.selection-step {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 26px;
  overflow: hidden;
}

.step-number {
  position: absolute;
  right: 20px;
  top: 16px;
  /* color: rgba(255, 255, 255, 0.12);*/
  font-size: 40px;
  font-weight: 900;
}

.selection-step i {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #f7b51c;
  color: #06142c;
  display: grid;
  place-items: center;
  font-size: 27px;
  margin-bottom: 18px;
}

.selection-step h4 {
  color: #ffffff;
  font-size: 21px;
  font-weight: 900;
  margin-bottom: 10px;
}

.selection-step p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.6;
  margin: 0;
  font-size: 14px;
}

/* Important Notes */

.eligibility-note-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.eligibility-note-card {
  background: #ffffff;
  border: 1px solid rgba(7, 22, 45, 0.09);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 14px 38px rgba(7, 22, 45, 0.07);
}

.eligibility-note-card i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #06142c;
  color: #f7b51c;
  display: grid;
  place-items: center;
  font-size: 28px;
  margin-bottom: 18px;
}

.eligibility-note-card h4 {
  color: #07162d;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 10px;
}

.eligibility-note-card p {
  color: #465066;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */

@media (max-width: 1199px) {
  .eligibility-main-grid {
    grid-template-columns: 1fr;
  }

  .selection-step-grid,
  .exam-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .eligibility-note-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .mba-eligibility-section {
    padding: 65px 0;
  }

  .eligibility-container {
    width: min(100% - 40px, 820px);
  }

  .eligibility-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .eligibility-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .eligibility-header h2 {
    font-size: 34px;
  }

  .eligibility-label {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .eligibility-label span {
    width: 28px;
  }

  .exam-logo-grid,
  .selection-step-grid,
  .eligibility-note-grid {
    grid-template-columns: 1fr;
  }

  .eligibility-apply-btn {
    width: 100%;
    justify-content: center;
  }

  .selection-process-box,
  .eligibility-primary-card,
  .entrance-exam-card {
    padding: 26px;
  }
}

@media (max-width: 575px) {
  .eligibility-container {
    width: calc(100% - 26px);
  }

  .eligibility-primary-card h3,
  .selection-title h3 {
    font-size: 28px;
  }

  .exam-card-top h3 {
    font-size: 25px;
  }

  .eligibility-score-box strong {
    font-size: 30px;
  }
}


.fee-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #0b5ed7;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.fee-btn:hover {
  background: #084298;
  color: #ffffff;
  transform: translateY(-2px);
}