@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --font_poppins: "Poppins", sans-serif;
  --blue: #1f4aa8 !important;
  --blue-dark: #163b87;
  --gold: #f2b21b;
  --gold-dark: #d79600;
  --red: #d63a2f !important;
  --text: #1f2937;
  --muted: #000;
  --light: #f5f7fb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 10px 30px rgba(0, 0, 0, .08);
  --radius: 18px;
  --navy: #0D2B55 !important;
  --cobalt: #1A4F9E;
  --gold: #E8A020;
  --gold-light: #FFF3D6;
  --slate: #4B5E78;
  --light: #F5F7FA;
  --white: #FFFFFF;
  --transition: .25s ease;
  --font__roboto: "Inter", sans-serif;
  ;
}

body {
  font-family: var(--font_poppins) !important;
}

p {
  font-family: var(--font_poppins);
}

ul li,
ol li {
  margin-top: 0rem !important;
}


.mcom-page {
  color: var(--text);
  background: #fff;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.faq-item {
  border: 1.5px solid #DDE4EE;
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--white);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy);
  cursor: pointer;
  border: none;
  text-align: left;
  gap: 16px;
  font-family: var(--font_poppins);
}

.faq-question:hover {
  background: var(--light);
}

.faq-arrow {
  font-size: 1.2rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  color: var(--slate);
  font-size: .9rem;
}

.faq-item.open .faq-answer {
  display: block;
}

.cta-banner {
  background: linear-gradient(90deg, var(--cobalt), var(--navy));
  padding: 50px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 600;
  font-family: var(--font__roboto);
}

.cta-banner p {
  color: rgba(255, 255, 255, .75);
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 8px !important;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  margin: 0 !important;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: #d08c10;
}

.btn-outline {
  background: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-group {
  display: grid;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  grid-template-columns: auto auto auto;
}

.mcom-page a {
  text-decoration: none;
}

.mcom-container {
  width: min(1200px, calc(100% - 30px));
  margin: auto;
}

.mcom-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
}

.mcom-btn-primary {
  background: var(--gold);
  color: #111827;
}

.mcom-btn-primary:hover {
  background: var(--gold-dark);
}

.mcom-btn-secondary {
  background: var(--red);
  color: #fff;
}

.mcom-btn-secondary:hover {
  background: #b72e25;
}

.mcom-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.mcom-section {
  padding: 40px 0;
}

.section-alt {
  padding: 40px 0;
}

.mcom-title {
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
  color: var(--blue-dark);
  font-weight: 600;
  font-family: var(--font__roboto);
}

.mcom-subtitle {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 28px;
}

.mcom-hero-wrap {
  background: linear-gradient(135deg, #f7f9ff 0%, #eef3ff 100%);
  border-bottom: 1px solid #dfe7fb;
  padding: 35px 0;
}

.mcom-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 26px;
  align-items: stretch;
}

.mcom-form-card {
  border: 1px solid #ebeff8;
  border-radius: 26px;
}

.mcom-form-card img {
  border-radius: 26px;
  height: 315px;
}

.mcom-hero-left {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  border-radius: 26px;
  color: #fff;
  padding: 42px 38px 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.mcom-hero-left:before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .09);
}

.mcom-hero-left:after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(242, 178, 27, .20);
}

.mcom-hero-left h1 {
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 14px;
  position: relative;
  z-index: 2;
  color: #fff;
}

.mcom-hero-left h1 span {
  color: #ffd45c;
}

.mcom-hero-left p {
  font-size: 16px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .92);
  position: relative;
  z-index: 2;
}

.mcom-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 2;
}

.mcom-hero-points li {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

.mcom-hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.mcom-stats-band {
  margin-top: 28px;
  background: var(--blue);
  color: #fff;
}

.mcom-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mcom-stat {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.mcom-stat:last-child {
  border-right: none;
}

.mcom-stat h4 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  color: #ffd45c;
}

.mcom-stat p {
  margin: 8px 0 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .9);
}

.mcom-two-col {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 28px;
  align-items: start;
}

.mcom-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.mcom-card-body {
  padding: 28px;
}

.mcom-card-body p {
  color: #000;
  font-size: 15px;
}

.section-sub {
  color: #000;
}

.mcom-highlight-box {
  background: var(--blue);
  color: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 20px;
  min-height: 328px;
}

.mcom-highlight-box h3 {
  margin: 0 0 16px;
  font-size: 24px;
  color: #ffd45c;
  font-weight: 600;
  font-family: var(--font__roboto);
}

.mcom-highlight-box ul {
  margin: 0;
  padding-left: 18px;
}

.mcom-highlight-box li {
  margin-bottom: 10px;
  font-size: 15px;
}

.mcom-feature-grid,
.mcom-mini-grid,
.mcom-career-grid {
  display: grid;
  gap: 18px;
}

.mcom-feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.mcom-mini-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mcom-career-grid {
  grid-template-columns: repeat(5, 1fr);
}

.mcom-feature,
.mcom-mini,
.mcom-career {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
}

.mcom-feature h4,
.mcom-mini h4,
.mcom-career h4 {
  margin: 0 0 8px;
  color: var(--blue-dark);
  font-size: 18px;
  font-weight: 600;
}

.mcom-feature p,
.mcom-mini p,
.mcom-career p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mcom-red-band {
  background: var(--red);
  color: #fff;
}

.mcom-red-band .mcom-title {
  color: #fff;
}

.mcom-red-band .mcom-subtitle {
  color: rgba(255, 255, 255, .85);
}

.mcom-number-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.mcom-number {
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  padding: 24px 18px;
}

.mcom-number h3 {
  margin: 0 0 8px;
  font-size: 34px;
  color: #ffd45c;
}

.mcom-number p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .92);
}

.mcom-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.mcom-table .row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  margin: 0;
}

.mcom-table .row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--blue-dark);
  padding: 0;
  font-weight: 600;
}

.mcom-center {
  text-align: center;
}

@media (max-width: 991px) {

  .mcom-hero-grid,
  .mcom-two-col,
  .mcom-feature-grid,
  .mcom-mini-grid,
  .mcom-career-grid,
  .mcom-number-grid,
  .mcom-table,
  .mcom-stats {
    grid-template-columns: 1fr 1fr;
  }

  .mcom-hero-left h1 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .mcom-section {
    padding: 40px 0;
  }

  .mcom-title {
    font-size: 28px;
  }

  .mcom-hero-grid,
  .mcom-two-col,
  .mcom-feature-grid,
  .mcom-mini-grid,
  .mcom-career-grid,
  .mcom-number-grid,
  .mcom-table,
  .mcom-stats,
  .btn-group {
    grid-template-columns: 1fr;
  }

  .mcom-hero-left {
    padding: 30px 22px;
  }

  .mcom-hero-left h1 {
    font-size: 32px;
  }

  .mcom-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .mcom-stat:last-child {
    border-bottom: none;
  }
}

.ltn__header-4 .ltn__header-middle-area,
.ltn__header-5 .ltn__header-middle-area {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.university-overview-section {
  background: #14259b;
  padding: 25px 0 35px;
  overflow: hidden;
}

.overview-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 35px;
}

.overview-image {
  width: 46%;
}

.overview-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.news_column {
  margin: 0px 0px 0px 0px;
  padding: 20px 20px 2px 20px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #21252966;
  height: 300px;
  overflow: hidden;
}

.main-heading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 0px;
}

.legacy_count ul li {
  color: #fff;
  font-size: 15px;
  margin: 10px 0;
  /* padding-left: 40px; */
  position: relative;
  background-color: #040d4e21;
  padding: 8px 13px;
  color: #000;
}

.legacy_count ul li strong {
  font-size: 13px;
  font-weight: bold;
  color: #be2030;
  text-decoration: none !important;
  margin-top: 0;
  margin-bottom: .5rem;
}

.legacy_count ul {
  padding: 0;
}

.overview-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.tour-btn {
  background: #f9be1d;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 3px 18px;
  border-radius: 40px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.tour-btn:hover {
  color: #fff;
  transform: translateY(-3px);
}

.tour-btn i {
  margin-right: 8px;
}

.overview-content {
  width: 54%;
}

.overview-content p {
  color: #fff;
  font-size: 14px;
  line-height: 1.75;
  margin: 0;
  text-align: justify;
}

.overview-content strong {
  font-weight: 700;
}

/* Responsive */

@media (max-width: 991px) {
  .overview-wrapper {
    flex-direction: column;
  }

  .overview-image,
  .overview-content {
    width: 100%;
  }

  .overview-image img {
    height: auto;
  }

  .overview-buttons {
    flex-wrap: wrap;
  }

  .tour-btn {
    font-size: 16px;
    padding: 10px 18px;
  }

  .overview-content p {
    font-size: 16px;
  }
}

.topbar {
  background: #040d4e;
  padding: 4px 0;
}

.topbar-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-links {
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.top-links a {
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
}

.prospectus-links {
  display: flex;
  gap: 15px;
}

.prospectus {
  padding: 3px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.prospectus.yellow {
  background: #f4c541;
  color: #000;
}

.prospectus.red {
  background: #9c0923;
  color: #fff;
}

/* HEADER */

.header-middle {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #d9d9d9;
}

.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-box img {
  width: 90px;
}

.logo-content h2 {
  color: #14259B;
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.logo-content h4 {
  color: #be2030;
  font-weight: 600;
  margin: 0;
  font-size: 20px;
}

.logo-content p {
  color: #b20000;
  font-size: 15px;
  margin: 0;
}

/* Admission Cards */

.admission-box {
  display: flex;
  gap: 20px;
}

.admission-card,
.phone-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #bbb;
  border-radius: 20px;
}

.admission-card h5 {
  margin: 0;
  font-size: 12px;
}

.admission-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.phone-card p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #000;
}

.admission-card i,
.phone-card i {
  font-size: 32px;
  color: #be2030;
}

.phone-card h3 {
  color: #be2030;
  margin: 0;
  font-weight: 600;
  font-size: 13px;
}

/* MENU */
.ltn__main-menu>ul>li>a {
  font-size: 14px !important;
  padding: 7px 10px !important;
  display: inline-block;
  white-space: nowrap;
  color: #000 !important;
  font-weight: 500 !important;
  font-family: var(--font_poppins) !important;
}

.ltn__main-menu li>ul,
.ltn__main-menu .sub-menu {
  border-top: 5px solid #14259b !important;
  padding: 5px 0 !important;
}

.ltn__main-menu li ul li,
.ltn__main-menu .sub-menu li {
  line-height: 1.3;
  padding: 4px 10px 4px 10px !important;
  font-size: 14px !important;
  color: #000 !important;
}
.ltn__main-menu li ul li a{
    display:inline-block;
    width:100%;
}

.ltn__main-menu>ul>li {
  margin-right: 0px !important;
}

.main-nav {
  background: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  border-right: 1px solid #ddd;
}

.main-nav li a {
  display: block;
  padding: 18px 16px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
  letter-spacing: 1px;
}

.ltn__main-menu .highlight {
  background: #ff0000;
}

.ltn__main-menu .highlight a {
  color: #fff !important;
}

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

/* HERO */

.hero-slider {
  position: relative;
  background: url("images/banner.jpg") center center/cover;
  /* min-height: 600px; */
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 18, 128, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* min-height: 600px; */
}

.hero-left {
  width: 45%;
}

.hero-left h1 {
  font-size: 80px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-left h1 span {
  display: block;
  color: #ffd600;
  font-size: 40px;
  font-style: italic;
}

.hero-left h1 {
  color: #ffd600;
}

.hero-left h3 {
  color: #fff;
  font-size: 34px;
  margin-top: 30px;
}

.hero-right {
  width: 45%;
}

.rank-big {
  border: 3px solid rgba(255, 255, 255, 0.8);
  padding: 25px;
  margin-bottom: 25px;
}

.rank-number {
  font-size: 28px;
}

.rank-number span {
  display: block;
  color: #ffd600;
  font-size: 72px;
  font-weight: 800;
}

.rank-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffd600;
}

.rank-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.rank-card {
  border: 2px solid rgba(255, 255, 255, 0.8);
  padding: 15px;
  font-size: 22px;
}

.rank-card span {
  color: #ffd600;
  font-size: 42px;
  font-weight: 800;
  display: block;
}

.footer-section {
  position: relative;
  background: #000616;

  color: #fff;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 17, 72, 0.88);
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* Top Buttons */

.quick-links {
  padding-top: 40px;
  padding-bottom: 40px;
}

.quick-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgb(4 15 65), rgb(4 15 65));
  border: 1px solid rgb(255 255 255);
  backdrop-filter: blur(6px);
  transition: 0.4s;
}

.quick-btn:hover {
  color: #000;
  transform: translateY(-4px);
  background: #f4c541;
}

/* Logo */

.footer-logo img {
  max-width: 300px;
}

/* Titles */

.footer-title {
  font-size: 20px;
  font-weight: 600 !important;
  margin-bottom: 25px;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d8d8d8;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Contact */

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 12px;
  display: flex;
  gap: 10px;
  color: #ddd;
}

.contact-list i {
  color: #fff;
  margin-top: 5px;
}

/* Newsletter */

.newsletter {
  display: flex;
  margin-bottom: 30px;
}

.newsletter input {
  flex: 1;
  border: none;
  outline: none;
  padding: 12px 15px;
}

.newsletter button {
  width: 60px;
  border: none;
  background: #0b5ed7;
  color: #fff;
}

/* Social */

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: #0d2c7a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: translateY(-4px);
}

/* Bottom */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 40px;
  padding: 25px 0;
}

.visitor-count {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .quick-btn {
    margin-bottom: 15px;
  }

  .footer-column {
    margin-bottom: 35px;
  }

  .footer-logo {
    margin-bottom: 25px;
  }
}

.testimonial-area {
  background: #ffebf7;
  padding: 40px 0;
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.testimonial-header h2 {
  color: #000;
  font-weight: 600;
  font-size: 25px;
}

.testimonial-tabs {
  background: #fff;
  border-radius: 50px;
  padding: 5px;
}

.testimonial-tabs button {
  border: none;
  background: none;
  padding: 12px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
}

.testimonial-tabs .active {
  background: #324ba6;
  color: #fff;
}

.voice-tag {
  background: #ffffff;
  color: #000000;
  padding: 5px 18px;
  border-radius: 30px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 20px;
}

.testimonial-wrapper {
  display: flex;
  gap: 25px;
  transition: transform 0.45s ease;
  width: max-content;
}

.testimonial-scroll-track {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  min-height: 250px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.user-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
}

.user-info h5 {
  margin: 0;
  font-size: 20px;
}

.user-info span {
  color: #666;
  font-size: 14px;
}

.testimonial-card p {
  color: #555;
  line-height: 1.9;
}

.testimonial-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 35px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d7d7;
  display: inline-block;
  margin-right: 8px;
}

.dots .active {
  width: 35px;
  border-radius: 20px;
  background: #052c3b;
}

.arrows button {
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #fff;
  margin-left: 10px;
}

/* CONTACT */

.contact-area {
  background: #f4f5fd;
  padding: 40px 0;
}

.contact-box {
  background: #fff;
  border-radius: 35px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-box h2 {
  color: #324ba6;
  font-size: 26px;
  font-weight: 700;
}

.contact-box p {
  color: #000;
  margin-bottom: 30px;
  font-size: 14px;
}

.map-box {
  overflow: hidden;
  border-radius: 20px;
}

.map-box iframe {
  width: 100%;
  height: 320px;
  border: none;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.social-links a:nth-child(1) {
  background: #1877f2;
}

.social-links a:nth-child(2) {
  background: #e1306c;
}

.social-links a:nth-child(3) {
  background: #1da1f2;
}

.social-links a:nth-child(4) {
  background: #0077b5;
}

.social-links a:nth-child(5) {
  background: #ff0000;
}

.contact-form label {
  display: block;
  margin-bottom: 0px;
  font-weight: 600;
  color: #000;
}

.contact-form input,
.contact-form select {
  width: 100%;
  height: 40px !important;
  border: 1px solid #ddd;
  padding: 0 20px;
  border-radius: 4px;
  margin-bottom: 0px !important;
  font-family: var(--font_poppins) !important;
}

.ltn__testimonial-item-7 .ltn__testimoni-info p {
  font-size: 14px !important;
  color: #000 !important;
}

.ltn__testimonial-item {
  margin-bottom: 0 !important;
}

.ltn__testimoni-name-designation h2 {
  font-size: 16px;
  font-weight: 600;
}

.ltn__testimonial-slider-5-active:hover .slick-prev {
  top: 50%;
  left: 1024px !important;
  right: 60px !important;
}

.ltn__testimonial-slider-5-active:hover .slick-next {
  right: 150px !important;
  left: auto;
}

.ltn__testimonial-item-7::before {
  height: 0px !important;
  background-color: #14259b;
}

.slick-arrow-1 .slick-arrow:hover {
  background-color: #14259b !important;
  color: var(--white) !important;
  border-color: #14259b !important;
}

.contact-btn {
  border: none;
  background: #324ba6;
  color: #fff;
  padding: 4px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-5px);
}

@media (max-width: 991px) {
  .testimonial-wrapper {
    animation-duration: 14s;
  }

  .testimonial-card {
    width: 300px;
  }

  .testimonial-header {
    flex-direction: column;
    gap: 20px;
  }

  .contact-box {
    padding: 30px;
  }
}

/* =====================
PROGRAMMES
===================== */

.programmes-section {
  background: #fff;
  padding: 30px 0 40px;
  border-right: 8px solid #203f96;
}

.section-title {
  font-size: 60px;
  font-weight: 700;
  color: #14259b;
  margin-bottom: 25px;
}

.programmes-slider {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.program-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  height: 430px;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.program-card:hover img {
  transform: scale(1.08);
}

.course-tag {
  position: absolute;
  top: 18px;
  right: 0;
  background: #f9be1d;
  color: #000;
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 600;
}

.brochure-btn {
  position: absolute;
  bottom: 15px;
  left: -15px;

  background: #fff;
  color: #214194;
  text-decoration: none;

  font-size: 22px;
  font-weight: 700;

  padding: 14px 35px;

  border-radius: 60px;

  border: 3px solid #214194;

  box-shadow: 0 6px 0 #00004f;
}

.brochure-btn:hover {
  color: #214194;
}

/* =====================
ACCREDITATION
===================== */

.accreditation-section {
  background: #fff;
  padding: 30px 0 50px;
}

.section-title {
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.3;
}

.accreditation-title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  color: #14259b;
  margin-bottom: 35px;
}

.accreditation-grid {
  display: flex;
  gap: 20px;
  animation: marqueeLogos 22s linear infinite;
  width: max-content;
}

.accreditation-scroll-wrap {
  width: 100%;
  overflow: hidden;
}

.accreditation-scroll-wrap:hover .accreditation-grid {
  animation-play-state: paused;
}

@keyframes marqueeLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.accreditation-card {
  height: 170px;
  width: 270px;
  flex-shrink: 0;
  border-radius: 20px;
  border: 1px solid #dcdcdc;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.accreditation-card:hover {
  transform: translateY(-5px);
}

.accreditation-card img {
  max-width: 180px;
  max-height: 110px;
  object-fit: contain;
}

/* =====================
RESPONSIVE
===================== */

@media (max-width: 1199px) {
  .programmes-slider {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .section-title {
    font-size: 40px;
  }

  .accreditation-title {
    font-size: 34px;
  }

  .programmes-slider {
    grid-template-columns: 1fr;
  }

  .program-card {
    height: 350px;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
    min-width: 100%;
  }

  .accreditation-grid {
    display: flex;
    gap: 15px;
    animation: marqueeLogos 15s linear infinite;
  }
}

.innovation-section {
  background: #e9ebff;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

/* Grid Background */
.innovation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 35px;
}

.section-title span {
  width: 110px;
  height: 2px;
  background: #d6a43b;
}

.section-title h2 {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  margin: 0;
}

.innovation-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 18px;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.stat-card {
  background: #14259b;
  border-radius: 18px;
  padding: 25px;
  min-height: 155px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  border: 1px solid rgba(214, 164, 59, 0.25);
  box-shadow:
    0 0 20px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #14259b;
  font-size: 22px;
}

.stat-content h3 {
  color: #fff;
  font-size: 30px;
  margin: 0 0 12px;
  font-weight: 500;
  line-height: 1;
  position: relative;
}

.stat-content h3::after {
  content: "";
  display: block;
  width: 55px;
  height: 3px;
  background: #d6a43b;
  margin-top: 8px;
}

.stat-content p {
  color: #fff;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.95;
}

/* Video */
.video-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(214, 164, 59, 0.25);
  background: #102a76;
  min-height: 330px;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  border: none;
}

/* Responsive */
@media (max-width: 991px) {
  .innovation-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-title h2 {
    font-size: 24px;
    text-align: center;
  }

  .section-title span {
    width: 60px;
  }
}

.activities-section {
  background: url(../img/section-4-counter-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
}

.activity-card {
  background: #fff;
  overflow: hidden;
  transition: .4s;
  border-radius: 25px;
}

.activity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: .4s;
}

.activity-title {
  background: #08284f;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 5px;
  border-top: 3px solid #fff;
  line-height: 1.1;
  text-transform: capitalize;
}

.activity-card:hover img {
  transform: scale(1.05);
}

@media(max-width:991px) {
  .activity-title {
    font-size: 18px;
  }

  .activity-card img {
    height: 150px;
  }
}

@media(max-width:576px) {
  .activity-title {
    font-size: 14px;
    padding: 6px;
  }

  .activity-card img {
    height: 120px;
  }
}

@media screen and (min-width: 1920px) {
  .container-fluid {
    width: 94%;
  }
}


/* =====================================================================
   NEW DIFFERENTIATED SECTIONS
   ===================================================================== */

/* ── HERO BANNER WITH OVERLAY ── */
.hero-banner-wrap {
  position: relative;
}

.hero-carousel,
.hero-carousel .carousel-inner {
  display: block;
}

.hero-slide-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 60px;
  /* leave room for ticker */
  background: linear-gradient(90deg, rgb(4 13 78 / 66%) 45%, rgba(4, 13, 78, 0.2) 100%);
  display: flex;
  align-items: center;
  z-index: 5;
  pointer-events: none;
}

.hero-overlay-text .container {
  pointer-events: all;
}

.hero-overlay-text {
  height: 100%;
}

.hero-text-inner {
  max-width: 580px;
  color: #fff;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 999px;
}

.hero-text-inner h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 14px;
  color: #fff;
}

.hero-text-inner h1 span {
  color: #f2b21b;
}

.hero-text-inner p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 24px;
  line-height: 1.7;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-btn-primary {
  background: #f2b21b;
  color: #040d4e;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: .25s;
}

.hero-btn-primary:hover {
  background: #d99610;
  color: #040d4e;
  transform: translateY(-2px);
}

.hero-btn-outline {
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: .25s;
}

.hero-btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Ticker */
.hero-ticker-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: rgba(4, 13, 78, 0.95);
  display: flex;
  align-items: center;
  z-index: 6;
  overflow: hidden;
}

.ticker-label {
  background: #f2b21b;
  color: #040d4e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 7px;
  flex-shrink: 0;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  gap: 60px;
  animation: tickerScroll 28s linear infinite;
  white-space: nowrap;
  padding-left: 20px;
}

.ticker-inner span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12.5px;
  font-weight: 500;
  flex-shrink: 0;
}

.ticker-inner span::after {
  content: "·";
  margin-left: 30px;
  color: #f2b21b;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 767px) {
  .hero-slide-img {
    height: 300px;
  }

  .hero-text-inner h1 {
    font-size: 24px;
  }

  .hero-overlay-text {
    bottom: 44px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    font-size: 13px;
    padding: 10px 18px;
  }
}

/* ── STATS STRIP ── */
.stats-strip-section {
  background: #040d4e;
  padding: 0;
}

.stats-strip-label {
  text-align: center;
  padding: 12px 0 0;
}

.stats-strip-label span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.stats-strip-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 18px 20px 22px;
  gap: 0;
}

.stats-strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 36px;
  flex: 1;
  min-width: 180px;
}

.stats-strip-item>i {
  font-size: 28px;
  color: #f2b21b;
  flex-shrink: 0;
}

.stats-strip-item strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stats-strip-item p {
  margin: 4px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.stats-strip-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .stats-strip-grid {
    flex-direction: column;
  }

  .stats-strip-divider {
    width: 60px;
    height: 1px;
  }

  .stats-strip-item {
    min-width: unset;
    justify-content: center;
  }
}

/* ── ANTHEM SECTION ── */
.anthem-section {
  background: #fff;
  padding: 50px 0;
}

.anthem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.anthem-video {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 13, 78, 0.18);
  aspect-ratio: 16/9;
}

.anthem-video iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.anthem-eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.anthem-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: #040d4e;
  line-height: 1.2;
  margin: 0 0 16px;
}

.anthem-text p {
  color: #444;
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0 0 24px;
}

.anthem-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.anthem-badges span {
  background: #f5f7fb;
  border: 1px solid #dde4f0;
  color: #14259b;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: 8px;
}

.anthem-badges span i {
  color: #14259b;
  margin-right: 6px;
}

@media (max-width: 991px) {
  .anthem-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ── ABOUT SECTION ── */
.about-section {
  background: #f5f7fb;
  padding: 55px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
}

.about-img-col {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}

.about-img-wrap img {
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.about-est-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #040d4e;
  color: #fff;
  border-radius: 14px;
  padding: 16px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(4, 13, 78, 0.35);
}

.about-est-badge strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #f2b21b;
  line-height: 1;
}

.about-est-badge span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, 0.75);
}

.about-eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.about-content-col h2 {
  font-size: 32px;
  font-weight: 700;
  color: #040d4e;
  line-height: 1.2;
  margin: 0 0 16px;
}

.about-content-col>p {
  color: #444;
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0 0 28px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid #dde4f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #040d4e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b21b;
  font-size: 18px;
}

.about-pillar h5 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: #040d4e;
}

.about-pillar p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-wrap img {
    height: 260px;
  }

  .about-est-badge {
    right: 10px;
    bottom: -15px;
  }
}

/* ── PROGRAMMES TABBED ── */
.programmes-section-v2 {
  background: #fff;
  padding: 50px 0;
}

.prog-header {
  margin-bottom: 32px;
}

.prog-eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.prog-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #040d4e;
  margin: 0;
}

.prog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  border-bottom: 2px solid #e5e9f8;
  padding-bottom: 0;
}

/* .prog-tab {
  background: none;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 6px 6px 0 0;
  transition: .2s;
  font-family: var(--font_poppins);
}

.prog-tab:hover {
  color: #14259b;
  background: #f0f3ff;
} */


/* Enhanced Tab Styles */
.prog-tab {
  /* Base styles */
  background: transparent;
  border: none;
  padding: 14px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  position: relative;
  font-family: var(--font_poppins, 'Poppins', sans-serif);

  /* Border & spacing */
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  border-radius: 8px 8px 0 0;

  /* Transitions */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Additional polish */
  letter-spacing: 0.3px;
  text-transform: uppercase;
  outline: none;
}

/* Hover State */
.prog-tab:hover {
  color: #4b5563;
  background: rgba(20, 37, 155, 0.04);
  transform: translateY(-1px);
}

/* Focus State for Accessibility */
.prog-tab:focus-visible {
  outline: 2px solid #14259b;
  outline-offset: -2px;
  border-radius: 6px;
}

/* Active State */
.prog-tab.active {
  color: #14259b;
  background: linear-gradient(180deg, #f0f3ff 0%, #ffffff 100%);
  border-bottom-color: #14259b;
  box-shadow: 0 2px 8px rgba(20, 37, 155, 0.12);
  transform: translateY(0);
}

/* Active Hover State */
.prog-tab.active:hover {
  background: linear-gradient(180deg, #e8edff 0%, #ffffff 100%);
  box-shadow: 0 4px 12px rgba(20, 37, 155, 0.18);
}

/* Optional: Add a subtle indicator dot */
.prog-tab.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: #14259b;
  border-radius: 2px;
  animation: slideIn 0.3s ease;
}

/* Animation for active indicator */
@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 20px;
    opacity: 1;
  }
}

/* Disabled State */
.prog-tab:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .prog-tab {
    padding: 10px 16px;
    font-size: 12px;
    letter-spacing: 0.2px;
  }
}

/* Optional: Container styles for better context */
.tab-container {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid #e5e7eb;
  padding: 0 4px;
  background: #fafafa;
  border-radius: 8px 8px 0 0;
}

/* .prog-tab.active {
  color: #14259b;
  border-bottom-color: #14259b;
  background: #f0f3ff;
} */

.prog-panels {
  position: relative;
}

.prog-panel {
  display: none;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}

.prog-panel.active {
  display: grid;
}

.prog-panel-img {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.14);
}

.prog-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.prog-level-tag {
  display: inline-block;
  background: #f2b21b;
  color: #040d4e;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.prog-panel-content h3 {
  font-size: 26px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 14px;
}

.prog-panel-content>p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin: 0 0 22px;
}

.prog-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prog-highlights li {
  font-size: 13.5px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prog-highlights li i {
  color: #14259b;
  font-size: 12px;
}

.prog-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #040d4e;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  transition: .25s;
}

.prog-cta:hover {
  background: #14259b;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .prog-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prog-panel-img {
    height: 240px;
  }
}

/* ── TESTIMONIALS — BIG QUOTE STYLE ── */
.testimonial-area {
  background: #040d4e;
  padding: 55px 0;
}

.testi-header {
  text-align: center;
  margin-bottom: 40px;
}

.testi-eyebrow {
  display: inline-block;
  background: rgba(242, 178, 27, 0.18);
  color: #f2b21b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.testi-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.testi-slider-wrap {
  overflow: hidden;
  position: relative;
}

.testi-track {
  display: flex;
  transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.testi-card {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10%;
  text-align: center;
}

.testi-quote-icon {
  font-size: 90px;
  line-height: .8;
  color: #f2b21b;
  font-family: Georgia, serif;
  margin-bottom: 12px;
  opacity: .7;
}

.testi-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.85;
  font-style: italic;
  margin: 0 0 30px;
}

.testi-author {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 22px 10px 10px;
}

.testi-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f2b21b;
}

.testi-author strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.testi-author span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 36px;
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: .25s;
  padding: 0;
}

.testi-dot.active {
  width: 28px;
  border-radius: 4px;
  background: #f2b21b;
}

.testi-arrows {
  display: flex;
  gap: 8px;
}

.testi-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: .25s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-arrow:hover {
  background: #f2b21b;
  border-color: #f2b21b;
  color: #040d4e;
}

@media (max-width: 767px) {
  .testi-card {
    padding: 0 4%;
  }

  .testi-card p {
    font-size: 14px;
  }

  .testi-header h2 {
    font-size: 24px;
  }
}

/* Remove old unused testimonial styles that conflict */
.ltn__testimonial-slider-5-active {
  display: none !important;
}

.voice-tag {
  display: none !important;
}

.testimonial-header {
  display: none !important;
}


/* =====================================================================
   NEWS & ANNOUNCEMENTS — REDESIGNED
   ===================================================================== */

.news-announce-section {
  background: #fff;
  padding: 50px 0;
  border-bottom: 1px solid #e5e9f8;
}

.na-header {
  text-align: center;
  margin-bottom: 36px;
}

.na-eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.na-header h2 {
  font-size: 30px;
  font-weight: 700;
  color: #040d4e;
  margin: 0;
}

.na-grid {
  display: grid;
  grid-template-columns: 1fr 2px 1fr;
  gap: 0 30px;
  align-items: start;
  background: #fff;
  border: 1px solid #e5e9f8;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(4, 13, 78, 0.07);
  overflow: hidden;
}

.na-col {
  padding: 28px 30px 22px;
}

.na-divider {
  background: #e5e9f8;
  align-self: stretch;
  width: 1px;
}

.na-col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #e9ebff;
}

.na-col-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  background: #040d4e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b21b;
  font-size: 16px;
}

.na-col-icon--red {
  background: #be2030;
  color: #fff;
}

.na-col-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: #040d4e;
  margin: 0;
}

.na-scroll-box {
  max-height: 260px;
  overflow: hidden;
  position: relative;
}

/* smooth auto-scroll via animation */
.na-list {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: naScroll 18s linear infinite;
}

.na-list:hover {
  animation-play-state: paused;
}

@keyframes naScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.na-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 14px;
  border-radius: 8px;
  margin-bottom: 8px;
  background: #f8f9ff;
  border-left: 3px solid #14259b;
  transition: .2s;
}

.na-list li:hover {
  background: #eef1ff;
  transform: translateX(3px);
}

.na-date {
  font-size: 11px;
  font-weight: 700;
  color: #be2030;
  white-space: nowrap;
  background: #fff0f2;
  border: 1px solid #f9c8ce;
  padding: 3px 8px;
  border-radius: 5px;
  line-height: 1.5;
  min-width: 80px;
  text-align: center;
}

.na-list li a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  line-height: 1.55;
  transition: .2s;
}

.na-list li a:hover {
  color: #14259b;
}

.na-footer-link {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eef0f8;
}

.na-footer-link a {
  font-size: 13px;
  font-weight: 700;
  color: #14259b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: .2s;
}

.na-footer-link a:hover {
  gap: 10px;
}

@media (max-width: 767px) {
  .na-grid {
    grid-template-columns: 1fr;
  }

  .na-divider {
    height: 1px;
    width: auto;
    margin: 0 28px;
  }

  .na-col {
    padding: 22px 20px;
  }
}

/* =====================================================================
   PHOTO GALLERY — REDESIGNED
   ===================================================================== */

.gallery-section {
  background: linear-gradient(180deg, #f5f7fb 0%, #eef1fb 100%);
  padding: 55px 0 50px;
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #040d4e, #14259b, #f2b21b);
}

.gallery-header {
  text-align: center;
  margin-bottom: 38px;
}

.gallery-eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.gallery-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 10px;
}

.gallery-header p {
  font-size: 14.5px;
  color: #666;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(4, 13, 78, 0.12);
  aspect-ratio: 4/3;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.gallery-item:hover img {
  transform: scale(1.07);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 13, 78, 0.1) 0%, rgba(4, 13, 78, 0.75) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 0 14px 16px;
  opacity: 0;
  transition: opacity .35s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: transform .35s ease;
}

.gallery-item:hover .gallery-zoom {
  transform: translate(-50%, -50%);
}

.gallery-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: rgba(242, 178, 27, 0.9);
  color: #040d4e;
  padding: 5px 14px;
  border-radius: 999px;
  display: block;
  width: 100%;
  text-align: center;
}

.gallery-cta {
  text-align: center;
  margin-top: 36px;
}

.gallery-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #040d4e;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: .25s;
  box-shadow: 0 8px 24px rgba(4, 13, 78, 0.25);
}

.gallery-view-all:hover {
  background: #14259b;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(4, 13, 78, 0.3);
}

.gallery-view-all i {
  transition: transform .25s;
}

.gallery-view-all:hover i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-header h2 {
    font-size: 24px;
  }

  .gallery-overlay {
    opacity: 1;
  }
}

/* =====================================================================
   FOOTER — REDESIGNED
   ===================================================================== */

/* Remove old footer row/col classes that conflict */
.footer-section .row {
  display: contents;
}

.footer-top-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 36px 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: flex-start;
}

.footer-top-btns .quick-btn {
  flex: 1;
  min-width: 180px;
  text-align: center;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13.5px;
}

.quick-btn--gold {
  background: linear-gradient(90deg, #c8860a, #f2b21b) !important;
  border-color: #f2b21b !important;
  color: #040d4e !important;
}

.quick-btn--gold:hover {
  background: linear-gradient(90deg, #f2b21b, #c8860a) !important;
  color: #040d4e !important;
}

.footer-main-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.3fr 1fr;
  gap: 0 40px;
  padding: 36px 0 10px;
}

.footer-links li a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-links li a i {
  font-size: 10px;
  color: #f2b21b;
  margin-top: 5px;
  flex-shrink: 0;
}

.footer-social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: .25s;
}

.footer-social-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  color: #fff;
}

.footer-social-btn--fb {
  background: #1877f2;
}

.footer-social-btn--yt {
  background: #ff0000;
}

.footer-social-btn--ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.footer-social-btn--tw {
  background: #000;
}

.footer-social-btn--li {
  background: #0077b5;
}

.footer-accred-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.footer-accred-note span {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-accred-note span i {
  color: #f2b21b;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 30px;
  padding: 22px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-inner p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner a {
  color: #f2b21b;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom-inner a:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .footer-top-btns .quick-btn {
    min-width: 140px;
  }
}

@media (max-width: 576px) {
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 28px 0;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-top-btns {
    flex-direction: column;
  }

  .footer-top-btns .quick-btn {
    min-width: unset;
    width: 100%;
  }
}


/* =====================================================================
   HEADER — REDESIGNED (Info Strip + Apply Panel + Admission Mega Menu)
   ===================================================================== */

/* ── Topbar tweaks ── */
.topbar-right {
  display: flex;
  gap: 8px;
  align-items: center;
}

.topbar-right .prospectus {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
}

.top-bar-copyright{
    color: #fff;text-decoration: none;font-size: 14px;font-weight: 500;letter-spacing: 0.04rem;
}

@media screen and (max-width: 1400px){
    .top-bar-copyright{
        font-size: 13px;
    }
}

.top-links li a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.top-links li a i {
  font-size: 10px;
  opacity: .75;
}

/* ── Header Info Strip (replaces admission cards) ── */
.header-info-strip {
  display: flex;
  align-items: center;
  gap: 0;
}

.hinfo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px 18px;
}

.hinfo-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: #040d4e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.hinfo-icon--gold {
  background: #f2b21b;
  color: #040d4e;
}

.hinfo-text span {
  display: block;
  font-size: 10.5px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.2;
}

.hinfo-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #040d4e;
  line-height: 1.3;
}

.hinfo-sep {
  width: 1px;
  height: 36px;
  background: #dde4f0;
  flex-shrink: 0;
}

/* ── Apply Now trigger button ── */
.apply-trigger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #040d4e 0%, #14259b 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 16px;
  white-space: nowrap;
  font-family: var(--font_poppins);
  box-shadow: 0 4px 16px rgba(4, 13, 78, 0.28);
  transition: .25s;
  position: relative;
}

.apply-trigger-btn:hover {
  background: linear-gradient(135deg, #14259b 0%, #1a35be 100%);
  box-shadow: 0 6px 22px rgba(4, 13, 78, 0.38);
  transform: translateY(-1px);
}

.apply-trigger-btn.is-active {
  background: linear-gradient(135deg, #f2b21b 0%, #d99610 100%);
  color: #040d4e;
  box-shadow: 0 4px 16px rgba(242, 178, 27, 0.4);
}

.apply-trigger-chevron {
  font-size: 11px;
  transition: transform .25s;
}

.apply-trigger-btn.is-active .apply-trigger-chevron {
  transform: rotate(180deg);
}

/* Pulse badge on button */
.apply-trigger-btn::after {
  content: 'OPEN';
  position: absolute;
  top: -8px;
  right: -8px;
  background: #be2030;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 2px 6px;
  border-radius: 999px;
  animation: applyBtnPulse 2s ease infinite;
}

.apply-trigger-btn.is-active::after {
  display: none;
}

@keyframes applyBtnPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(1.08);
  }
}

/* ── Apply Mega Panel ── */
.apply-mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff;
  border-top: 3px solid #f2b21b;
  box-shadow: 0 20px 50px rgba(4, 13, 78, 0.18);
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.apply-mega-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.amp-inner {
  padding: 28px 0 24px;
}

.amp-headline {
  margin-bottom: 20px;
}

.amp-eyebrow {
  display: inline-block;
  background: #fff3d0;
  color: #b07a00;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.amp-headline h3 {
  font-size: 20px;
  font-weight: 800;
  color: #040d4e;
  margin: 0;
}

.amp-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 20px;
}

.amp-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border: 1.5px solid #e5e9f8;
  text-decoration: none;
  background: #f8f9ff;
  transition: .25s;
  position: relative;
  overflow: hidden;
}

.amp-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  border-radius: 4px 0 0 4px;
}

.amp-card--bba::before {
  background: #14259b;
}

.amp-card--bcom::before {
  background: #be2030;
}

.amp-card--mcom::before {
  background: #0d7a4e;
}

.amp-card--mba::before {
  background: #d4790a;
}

.amp-card:hover {
  border-color: #14259b;
  background: #eef1ff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(4, 13, 78, 0.1);
}

.amp-card--bcom:hover {
  border-color: #be2030;
  background: #fff0f2;
}

.amp-card--mcom:hover {
  border-color: #0d7a4e;
  background: #f0fff8;
}

.amp-card--mba:hover {
  border-color: #d4790a;
  background: #fff8f0;
}

.amp-card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  flex-shrink: 0;
}

.amp-card--bba .amp-card-icon {
  background: #14259b;
}

.amp-card--bcom .amp-card-icon {
  background: #be2030;
}

.amp-card--mcom .amp-card-icon {
  background: #0d7a4e;
}

.amp-card--mba .amp-card-icon {
  background: #d4790a;
}

.amp-card-body {
  flex: 1;
  min-width: 0;
}

.amp-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}

.amp-card-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 2px;
  line-height: 1.2;
}

.amp-card-body p {
  font-size: 11.5px;
  color: #666;
  margin: 0;
  line-height: 1.3;
}

.amp-arrow {
  font-size: 13px;
  color: #bbb;
  transition: .2s;
}

.amp-card:hover .amp-arrow {
  color: #14259b;
  transform: translateX(3px);
}

.amp-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #666;
  background: #f5f7fb;
  border-radius: 8px;
  padding: 10px 16px;
  border: 1px solid #e5e9f8;
}

.amp-contact i {
  color: #14259b;
  font-size: 15px;
}

.amp-contact strong {
  color: #040d4e;
}

@media (max-width: 991px) {
  .amp-cards {
    grid-template-columns: 1fr 1fr;
  }

  .apply-mega-panel {
    position: fixed;
    top: auto;
  }
}

@media (max-width: 576px) {
  .amp-cards {
    grid-template-columns: 1fr;
  }

  .header-info-strip {
    display: none;
  }
}

/* ── Admission Mega Menu in Nav ── */
.admission-mega-parent {
  position: static !important;
}

.admission-mega-menu {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  min-width: unset !important;
  padding: 0 !important;
  border-top: 3px solid #14259b !important;
  box-shadow: 0 16px 40px rgba(4, 13, 78, 0.16) !important;
}

.admission-mega-menu>li.mega-no-hover {
  padding: 0 !important;
  background: none !important;
}

.admission-mega-menu>li.mega-no-hover:hover {
  background: none !important;
}

.adm-mega-wrap {
  display: flex;
  align-items: stretch;
  padding: 24px 30px;
  gap: 0;
  background: #fff;
}

.adm-mega-col {
  flex: 1;
  padding: 0 24px;
}

.adm-mega-col:first-child {
  padding-left: 0;
}

.adm-mega-col:last-child {
  padding-right: 0;
}

.adm-mega-divider {
  width: 1px;
  background: #eef0f8;
  flex-shrink: 0;
  align-self: stretch;
}

.adm-mega-section-title {
  font-size: 10.5px;
  font-weight: 800;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.adm-mega-section-title i {
  color: #14259b;
}

.adm-mega-item {
  display: flex !important;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  transition: .2s;
  margin-bottom: 6px;
  border: 1px solid transparent;
}

.adm-mega-item:hover {
  background: #f5f7ff;
  border-color: #dde4f8;
}

.adm-mega-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 28px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.adm-badge--blue {
  background: #14259b;
}

.adm-badge--red {
  background: #be2030;
}

.adm-badge--green {
  background: #0d7a4e;
}

.adm-badge--gold {
  background: #d4790a;
}

.adm-mega-item>div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #040d4e;
  line-height: 1.2;
}

.adm-mega-item>div span {
  display: block;
  font-size: 11px;
  color: #888;
  margin-top: 2px;
}

.adm-mega-item:hover>div strong {
  color: #14259b;
}

.adm-mega-col--cta {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 18px 20px !important;
}

.adm-quick-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.adm-qi-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: #444;
}

.adm-qi-item i {
  color: #14259b;
  width: 14px;
}

.adm-mega-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #040d4e;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: .2s;
  width: 100%;
  justify-content: center;
}

.adm-mega-cta:hover {
  background: #14259b;
  transform: translateY(-1px);
}

/* Ensure the mega menu container has right z-index context */
.ltn__header-area .ltn__header-middle-area {
  position: relative;
  z-index: 1000;
}

.apply-mega-panel {
  z-index: 1001;
}

@media (max-width: 1199px) {

  .header-info-strip .hinfo-item:first-child,
  .header-info-strip .hinfo-sep:first-of-type {
    display: none;
  }
}

@media (max-width: 991px) {
  .header-info-strip {
    display: none;
  }

  .hinfo-sep {
    display: none;
  }
}


/* =====================================================================
   CONTACT SECTION V2 — Full Redesign
   ===================================================================== */

.contact-v2-section {
  background: #f0f3fb;
  padding: 0 0 60px;
}

/* Top heading band */
.contact-v2-top {
  background: linear-gradient(135deg, #040d4e 0%, #14259b 100%);
  padding: 42px 0 70px;
  margin-bottom: -50px;
  text-align: center;
}

.contact-v2-eyebrow {
  display: inline-block;
  background: rgba(242, 178, 27, 0.18);
  color: #f2b21b;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.contact-v2-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.contact-v2-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

/* Main card */
.contact-v2-card {
  display: grid;
  grid-template-columns: 2fr 3fr;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(4, 13, 78, 0.18);
  background: #fff;
  position: relative;
  z-index: 2;
}

/* ── LEFT PANEL ── */
.contact-v2-left {
  background: linear-gradient(160deg, #040d4e 0%, #0e1f7a 60%, #14259b 100%);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Decorative circles */
.cv2-blob {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.cv2-blob--1 {
  width: 240px;
  height: 240px;
  bottom: -60px;
  right: -60px;
}

.cv2-blob--2 {
  width: 120px;
  height: 120px;
  top: 30px;
  right: 30px;
  background: rgba(242, 178, 27, .12);
}

.cv2-left-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-v2-left h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}

.contact-v2-left>.cv2-left-inner>p {
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
  margin: 0 0 28px;
  line-height: 1.6;
}

/* Info list */
.cv2-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cv2-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cv2-info-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b21b;
  font-size: 14px;
  flex-shrink: 0;
}

.cv2-info-list li>div strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, .5);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 2px;
}

.cv2-info-list li>div span {
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
  line-height: 1.4;
}

/* Socials */
.cv2-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 26px;
}

.cv2-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .2);
  transition: .25s;
}

.cv2-social:hover {
  transform: translateY(-3px);
  border-color: transparent;
  color: #fff;
}

.cv2-s-fb:hover {
  background: #1877f2;
}

.cv2-s-ig:hover {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366);
}

.cv2-s-tw:hover {
  background: #111;
}

.cv2-s-li:hover {
  background: #0077b5;
}

.cv2-s-yt:hover {
  background: #ff0000;
}

/* Map */
.cv2-map {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .12);
  flex: 1;
  min-height: 160px;
}

.cv2-map iframe {
  width: 100%;
  height: 100%;
  min-height: 160px;
  display: block;
  border: none;
}

/* ── RIGHT PANEL ── */
.contact-v2-right {
  background: #fff;
  padding: 44px 44px 40px;
}

.cv2-form-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0f3fb;
}

.cv2-form-header h3 {
  font-size: 22px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 5px;
}

.cv2-form-header p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

/* Form grid */
.cv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.cv2-form-row--full {
  grid-template-columns: 1fr;
}

.cv2-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cv2-field label {
  font-size: 12px;
  font-weight: 700;
  color: #444;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.cv2-field label span {
  color: #be2030;
  font-weight: 900;
}

/* Input wrap */
.cv2-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.cv2-input-wrap>i:first-child {
  position: absolute;
  left: 14px;
  color: #aab0c6;
  font-size: 13px;
  pointer-events: none;
  z-index: 1;
}

.cv2-input-wrap input,
.cv2-input-wrap select,
.cv2-input-wrap textarea {
  width: 100%;
  border: 1.5px solid #dde4f0;
  border-radius: 10px;
  padding: 11px 14px 11px 40px;
  font-size: 13.5px;
  color: #333;
  background: #f8f9ff;
  font-family: var(--font_poppins);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  height: auto !important;
}

.cv2-input-wrap input:focus,
.cv2-input-wrap select:focus,
.cv2-input-wrap textarea:focus {
  border-color: #14259b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 37, 155, .1);
}

.cv2-input-wrap input::placeholder,
.cv2-input-wrap textarea::placeholder {
  color: #bbc3d8;
}

/* Select specific */
.cv2-select-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 36px;
}

.cv2-select-arrow {
  position: absolute;
  right: 14px;
  color: #aab0c6;
  font-size: 11px;
  pointer-events: none;
}

/* Textarea */
.cv2-textarea-wrap textarea {
  resize: vertical;
  min-height: 88px;
  padding-top: 12px;
  line-height: 1.6;
}

/* Reason pills */
.cv2-reason-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cv2-pill {
  cursor: pointer;
  display: inline-flex;
}

.cv2-pill input[type="radio"] {
  display: none;
}

.cv2-pill span {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #dde4f0;
  font-size: 12.5px;
  font-weight: 600;
  color: #555;
  background: #f8f9ff;
  transition: .2s;
  cursor: pointer;
  white-space: nowrap;
}

.cv2-pill input[type="radio"]:checked+span {
  background: #040d4e;
  border-color: #040d4e;
  color: #fff;
  box-shadow: 0 4px 12px rgba(4, 13, 78, .25);
}

.cv2-pill:hover span {
  border-color: #14259b;
  color: #14259b;
}

.cv2-pill input[type="radio"]:checked+span:hover {
  color: #fff;
}

/* Submit */
.cv2-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #040d4e 0%, #14259b 100%);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font_poppins);
  box-shadow: 0 8px 24px rgba(4, 13, 78, .28);
  transition: .25s;
}

.cv2-submit-btn:hover {
  background: linear-gradient(135deg, #14259b 0%, #1a35be 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(4, 13, 78, .35);
}

.cv2-submit-btn i {
  transition: transform .25s;
}

.cv2-submit-btn:hover i {
  transform: translateX(3px) rotate(-30deg);
}

.cv2-privacy-note {
  font-size: 11.5px;
  color: #aaa;
  margin: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cv2-privacy-note i {
  color: #14259b;
  font-size: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .contact-v2-card {
    grid-template-columns: 1fr 1.4fr;
  }
}

@media (max-width: 768px) {
  .contact-v2-card {
    grid-template-columns: 1fr;
  }

  .contact-v2-right {
    padding: 30px 24px;
  }

  .contact-v2-left {
    padding: 32px 24px;
  }

  .cv2-map {
    min-height: 180px;
  }

  .cv2-map iframe {
    min-height: 180px;
  }

  .contact-v2-title {
    font-size: 22px;
  }

  .cv2-form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cv2-reason-pills {
    gap: 6px;
  }

  .cv2-pill span {
    font-size: 11.5px;
    padding: 7px 13px;
  }
}


/* =====================================================================
   ANTHEM + ANNOUNCEMENTS — COMBINED SECTION
   ===================================================================== */

.anthem-announce-section {
  background: #f5f7fb;
  padding: 55px 0;
  border-top: 1px solid #e5e9f8;
}

/* Outer 2-col grid */
.aa-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 36px;
  align-items: stretch;
}

/* ── LEFT: Video + text ── */
.aa-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.aa-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 16px 40px rgba(4, 13, 78, 0.18);
  flex-shrink: 0;
}

.aa-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.aa-video-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(4, 13, 78, 0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 22px 16px 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  pointer-events: none;
}

.aa-video-label i {
  color: #f2b21b;
  font-size: 16px;
}

.aa-anthem-text {
  background: #fff;
  border-radius: 16px;
  padding: 26px 28px;
  border: 1px solid #e5e9f8;
  box-shadow: 0 4px 18px rgba(4, 13, 78, 0.06);
}

.aa-eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.aa-eyebrow--red {
  background: #fff0f2;
  color: #be2030;
}

.aa-anthem-text h2 {
  font-size: 24px;
  font-weight: 800;
  color: #040d4e;
  line-height: 1.25;
  margin: 0 0 12px;
}

.aa-anthem-text p {
  font-size: 13.5px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 18px;
}

.aa-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.aa-badges span {
  background: #f0f3ff;
  border: 1px solid #d8dff8;
  color: #14259b;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.aa-badges span i {
  color: #14259b;
  font-size: 11px;
}

/* ── RIGHT: Announcements ── */
.aa-right {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e9f8;
  box-shadow: 0 4px 18px rgba(4, 13, 78, 0.06);
  padding: 28px 28px 22px;
  display: flex;
  flex-direction: column;
  height: 334px;
  margin-bottom: 26px;
}

.aa-right-ifream {
  width: 100%;
  height: 285px;
  border-radius: 10px;
}

.aa-announce-head {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f0f3fb;
}

.aa-announce-head h2 {
  font-size: 20px;
  font-weight: 800;
  color: #040d4e;
  margin: 0;
}

/* Scrollable list area */
.aa-announce-list-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* fade out at bottom */
}

.aa-announce-list-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(0deg, #fff 30%, transparent 100%);
  pointer-events: none;
}

.aa-announce-list {
  list-style: none;
  padding: 0;
  margin: 0;
  animation: aaScroll 22s linear infinite;
}

.aa-announce-list:hover {
  animation-play-state: paused;
}

@keyframes aaScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

.aa-announce-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 12px;
  border-radius: 9px;
  margin-bottom: 8px;
  border-left: 3px solid #be2030;
  background: #fff8f9;
  transition: .2s;
  cursor: default;
}

.aa-announce-list li:hover {
  background: #fff0f2;
  transform: translateX(3px);
}

.aa-date {
  font-size: 10.5px;
  font-weight: 700;
  color: #be2030;
  background: #fff0f2;
  border: 1px solid #f5c6cc;
  padding: 3px 8px;
  border-radius: 5px;
  white-space: nowrap;
  line-height: 1.6;
  min-width: 76px;
  text-align: center;
  flex-shrink: 0;
}

.aa-announce-list li a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
  line-height: 1.55;
  transition: color .2s;
}

.aa-announce-list li a:hover {
  color: #14259b;
}

.aa-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #14259b;
  text-decoration: none;
  border-top: 1px solid #eef0f8;
  padding-top: 14px;
  transition: gap .2s;
  align-self: flex-start;
}

.aa-view-all:hover {
  gap: 11px;
  color: #040d4e;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .aa-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .aa-right {
    min-height: 320px;
  }
}

@media (max-width: 576px) {
  .aa-anthem-text h2 {
    font-size: 20px;
  }

  .aa-anthem-text {
    padding: 20px;
  }

  .aa-right {
    padding: 20px;
  }
}

@media screen and (max-width: 1400px) {
  .logo-content h2 {
    font-size: 20px;
  }

  .logo-content h4 {
    font-size: 17px;
  }

  .logo-content p {
    font-size: 14px;
  }
}

/* =====================================================================
   COMPREHENSIVE RESPONSIVE OVERRIDES
   Breakpoints: 1199px | 991px | 767px | 575px | 400px
   ===================================================================== */

/* ── 1199px — Large tablets / small laptops ── */
@media (max-width: 1199px) {

  /* Header */
  .logo-content h2 {
    font-size: 17px;
  }

  .logo-content h4 {
    font-size: 15px;
  }

  .header-info-strip {
    gap: 0;
  }

  .hinfo-item {
    padding: 4px 12px;
  }

  .hinfo-text strong {
    font-size: 12px;
  }

  .apply-trigger-btn {
    font-size: 12px;
    padding: 9px 14px;
    margin-left: 10px;
  }

  /* Apply panel cards */
  .amp-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Admission mega */
  .adm-mega-wrap {
    padding: 20px;
    gap: 0;
  }

  .adm-mega-col {
    padding: 0 16px;
  }

  /* Stats strip */
  .stats-strip-item {
    padding: 10px 20px;
  }

  /* About */
  .about-grid {
    gap: 30px;
  }

  .about-content-col h2 {
    font-size: 26px;
  }

  /* Programmes */
  .prog-panel {
    gap: 24px;
  }

  .prog-panel-img {
    height: 300px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  /* Footer */
  .footer-main-grid {
    gap: 0 24px;
  }

  .footer-title {
    font-size: 16px;
    margin-bottom: 16px;
  }
}

/* ── 991px — Tablets ── */
@media (max-width: 991px) {

  /* ── Topbar ── */
  .topbar-right {
    display: none;
  }

  .top-links {
    gap: 12px;
  }

  /* ── Header middle ── */
  .header-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .logo-box img {
    width: 68px;
  }

  .logo-content h2 {
    font-size: 15px;
  }

  .logo-content h4 {
    font-size: 13px;
  }

  .logo-content p {
    font-size: 12px;
  }

  /* Hide full info strip on tablet; only show phone + apply btn */
  .hinfo-item:nth-child(1),
  .hinfo-item:nth-child(2),
  .hinfo-sep:nth-child(2),
  .hinfo-sep:nth-child(4) {
    display: none;
  }

  .header-info-strip {
    justify-content: flex-end;
  }

  .apply-trigger-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  /* ── Apply panel ── */
  .apply-mega-panel {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(10px);
    border-top: 3px solid #f2b21b;
    border-radius: 18px 18px 0 0;
    max-height: 90vh;
    overflow-y: auto;
  }

  .apply-mega-panel.is-open {
    transform: translateY(0);
  }

  .amp-cards {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .amp-inner {
    padding: 20px;
  }

  /* ── Hero ── */
  .hero-slide-img {
    height: 380px;
  }

  .hero-text-inner h1 {
    font-size: 30px;
  }

  .hero-text-inner p {
    font-size: 13px;
  }

  /* ── Stats strip ── */
  .stats-strip-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .stats-strip-item {
    min-width: 45%;
    flex: unset;
    padding: 12px 20px;
  }

  .stats-strip-divider {
    display: none;
  }

  /* ── Anthem+Announce ── */
  .aa-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .aa-right {
    min-height: 300px;
  }

  /* ── About ── */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-img-wrap img {
    height: 260px;
  }

  .about-est-badge {
    right: 10px;
    bottom: -14px;
  }

  /* ── Programmes ── */
  .prog-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .prog-panel-img {
    height: 220px;
  }

  .prog-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .prog-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── Accreditation ── */
  .accreditation-card {
    width: 200px;
    height: 130px;
  }

  /* ── Testimonials ── */
  .testi-card {
    padding: 0 5%;
  }

  .testi-card p {
    font-size: 14px;
  }

  /* ── Gallery ── */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-overlay {
    opacity: 1;
  }

  /* ── Contact V2 ── */
  .contact-v2-card {
    grid-template-columns: 1fr;
  }

  .contact-v2-left {
    padding: 28px 24px;
  }

  .contact-v2-right {
    padding: 28px 24px;
  }

  .cv2-map {
    min-height: 180px;
  }

  .cv2-map iframe {
    min-height: 180px;
  }

  .cv2-form-row {
    grid-template-columns: 1fr 1fr;
  }

  /* ── Footer ── */
  .footer-main-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
    padding: 28px 0;
  }

  .footer-top-btns {
    flex-wrap: wrap;
  }

  .footer-top-btns .quick-btn {
    min-width: calc(50% - 6px);
    flex: unset;
  }
}

/* ── 767px — Large phones ── */
@media (max-width: 767px) {

  /* ── Topbar ── */
  .topbar-wrap {
    justify-content: center;
  }

  .top-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
  }

  /* ── Header middle ── */
  .header-middle {
    padding: 10px 0;
  }

  .header-row {
    justify-content: space-between;
  }

  .logo-box {
    gap: 10px;
  }

  .logo-box img {
    width: 55px;
  }

  .logo-content h2 {
    font-size: 13px;
  }

  .logo-content h4 {
    font-size: 12px;
  }

  .logo-content p {
    display: none;
  }

  /* Collapse entire info strip — only show apply btn */
  .hinfo-item,
  .hinfo-sep {
    display: none !important;
  }

  .header-info-strip {
    justify-content: flex-end;
  }

  .apply-trigger-btn {
    font-size: 11.5px;
    padding: 8px 12px;
    margin-left: 8px;
  }

  .apply-trigger-btn::after {
    display: none;
  }

  /* ── Apply panel ── */
  .amp-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .amp-card {
    padding: 12px 14px;
  }

  .amp-card-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  /* ── Hero ── */
  .hero-slide-img {
    height: 260px;
  }

  .hero-text-inner {
    max-width: 100%;
    padding: 0 10px;
  }

  .hero-text-inner h1 {
    font-size: 22px;
  }

  .hero-text-inner p {
    display: none;
  }

  .hero-badge-row {
    display: none;
  }

  .hero-cta-row {
    gap: 8px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    font-size: 12px;
    padding: 9px 14px;
  }

  /* ── Stats strip ── */
  .stats-strip-item {
    min-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .stats-strip-item strong {
    font-size: 26px;
  }

  /* ── Anthem+Announce ── */
  .aa-anthem-text h2 {
    font-size: 19px;
  }

  .aa-anthem-text p {
    font-size: 13px;
  }

  .aa-badges span {
    font-size: 11px;
    padding: 5px 10px;
  }

  .aa-announce-head h2 {
    font-size: 17px;
  }

  .aa-announce-list li {
    gap: 8px;
  }

  .aa-announce-list li a {
    font-size: 12.5px;
  }

  .aa-date {
    min-width: 68px;
    font-size: 10px;
  }

  /* ── About ── */
  .about-section {
    padding: 36px 0;
  }

  .about-content-col h2 {
    font-size: 22px;
  }

  .about-pillar {
    padding: 12px 14px;
  }

  /* ── Programmes ── */
  .programmes-section-v2 {
    padding: 36px 0;
  }

  .prog-header h2 {
    font-size: 24px;
  }

  .prog-panel-content h3 {
    font-size: 20px;
  }

  /* ── Accreditation ── */
  .accreditation-title {
    font-size: 20px;
  }

  .accreditation-card {
    width: 160px;
    height: 110px;
  }

  .accreditation-card img {
    max-width: 120px;
    max-height: 70px;
  }

  /* ── Testimonials ── */
  .testi-header h2 {
    font-size: 22px;
  }

  .testi-quote-icon {
    font-size: 60px;
  }

  /* ── Gallery ── */
  .gallery-section {
    padding: 36px 0 32px;
  }

  .gallery-header h2 {
    font-size: 22px;
  }

  .gallery-header p {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-label {
    font-size: 11.5px;
    padding: 4px 10px;
  }

  /* ── Contact V2 ── */
  .contact-v2-top {
    padding: 30px 0 55px;
  }

  .contact-v2-title {
    font-size: 20px;
  }

  .cv2-form-row {
    grid-template-columns: 1fr;
  }

  .cv2-reason-pills {
    gap: 6px;
  }

  .cv2-pill span {
    font-size: 11.5px;
    padding: 7px 12px;
  }

  .cv2-submit-btn {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  .footer-main-grid {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }

  .footer-top-btns .quick-btn {
    min-width: 100%;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }

  .footer-title {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

/* ── 575px — Small phones ── */
@media (max-width: 575px) {

  /* ── Topbar ── */
  .topbar {
    display: none;
  }

  /* too cramped — remove entire topbar on tiny screens */

  /* ── Header ── */
  .logo-content h2 {
    font-size: 12px;
    line-height: 1.2;
  }

  .logo-content h4 {
    font-size: 11px;
  }

  .logo-box img {
    width: 48px;
  }

  .apply-trigger-btn span {
    display: none;
  }

  /* icon-only button */
  .apply-trigger-btn {
    padding: 8px 10px;
    gap: 5px;
    margin-left: 6px;
  }

  .apply-trigger-chevron {
    display: none;
  }

  /* ── Hero ── */
  .hero-slide-img {
    height: 220px;
  }

  .hero-text-inner h1 {
    font-size: 18px;
  }

  .hero-overlay-text {
    align-items: flex-end;
    padding-bottom: 50px;
  }

  /* ── Stats ── */
  .stats-strip-section {
    padding: 8px 0;
  }

  .stats-strip-item strong {
    font-size: 22px;
  }

  /* ── About ── */
  .about-est-badge {
    right: 5px;
    bottom: -12px;
    padding: 10px 14px;
  }

  .about-est-badge strong {
    font-size: 22px;
  }

  /* ── Programmes tabs ── */
  .prog-tab {
    font-size: 12px;
    padding: 9px 14px;
  }

  /* ── Gallery ── */
  .gallery-grid {
    gap: 8px;
  }

  /* ── Anthem+Announce ── */
  .aa-left,
  .aa-right {
    border-radius: 12px;
  }

  .aa-anthem-text {
    padding: 16px;
  }

  .aa-right {
    padding: 16px;
  }

  /* ── Contact ── */
  .contact-v2-right {
    padding: 20px 16px;
  }

  .contact-v2-left {
    padding: 24px 16px;
  }

  .cv2-info-list {
    gap: 14px;
  }

  .cv2-socials {
    gap: 8px;
  }

  .cv2-social {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  /* ── Footer ── */
  .footer-social-grid {
    gap: 8px;
  }

  .footer-social-btn {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .footer-accred-note {
    flex-direction: column;
    gap: 4px;
  }
}

/* ── 400px — Very small phones ── */
@media (max-width: 400px) {
  .hero-slide-img {
    height: 200px;
  }

  .hero-text-inner h1 {
    font-size: 16px;
  }

  .hero-btn-primary,
  .hero-btn-outline {
    font-size: 11px;
    padding: 8px 12px;
  }

  .logo-box img {
    width: 40px;
  }

  .logo-content h2 {
    font-size: 11px;
  }

  .amp-card-body h4 {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .gallery-label {
    display: none;
  }

  .cv2-form-header h3 {
    font-size: 17px;
  }

  .cv2-submit-btn {
    font-size: 13px;
    padding: 12px 20px;
  }
}


/* =====================================================================
   BBA OVERVIEW PAGE — COMPLETE STYLES
   ===================================================================== */

/* ── PAGE HERO ── */
.bba-hero {
  position: relative;
  background: linear-gradient(135deg, #040d4e 0%, #0e1f7a 55%, #14259b 100%);
  padding: 50px 0 60px;
  overflow: hidden;
}

.bba-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 70% 30%, rgba(242, 178, 27, .12) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, .05) 0%, transparent 50%);
  pointer-events: none;
}

.bba-hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Breadcrumb */
.bba-hero__crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.bba-hero__crumb a,
.bba-hero__crumb span {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.bba-hero__crumb a:hover {
  color: #f2b21b;
}

.bba-hero__crumb i {
  font-size: 9px;
  color: rgba(255, 255, 255, .35);
}

.bba-hero__crumb span {
  color: rgba(255, 255, 255, .9);
}

/* Tags */
.bba-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.bba-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 13px;
  border-radius: 999px;
}

.bba-tag--blue {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.bba-tag--gold {
  background: rgba(242, 178, 27, .2);
  border: 1px solid rgba(242, 178, 27, .35);
  color: #f2b21b;
}

.bba-tag--white {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .85);
}

/* Heading */
.bba-hero__text h1 {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 16px;
}

.bba-hero__text h1 span {
  color: #f2b21b;
}

.bba-hero__text>p {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  margin: 0 0 24px;
  max-width: 540px;
}

/* CTA row */
.bba-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.bba-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: .25s;
  font-family: var(--font_poppins);
  white-space: nowrap;
}

.bba-btn--gold {
  background: #f2b21b;
  color: #040d4e;
  box-shadow: 0 6px 20px rgba(242, 178, 27, .35);
}

.bba-btn--gold:hover {
  background: #d99610;
  color: #040d4e;
  transform: translateY(-2px);
}

.bba-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .45);
}

.bba-btn--outline:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.bba-btn--white {
  background: #fff;
  color: #040d4e;
}

.bba-btn--white:hover {
  background: #f0f3ff;
  color: #040d4e;
}

/* Hero contact */
.bba-hero__contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .6);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 8px 16px;
}

.bba-hero__contact i {
  color: #f2b21b;
}

.bba-hero__contact strong {
  color: #fff;
}

/* Quick card */
.bba-qcard {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(4, 13, 78, .3);
}

.bba-qcard__img {
  position: relative;
}

.bba-qcard__img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.bba-qcard__img-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #f2b21b;
  color: #040d4e;
  border-radius: 10px;
  padding: 8px 14px;
  text-align: center;
}

.bba-qcard__img-badge strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.bba-qcard__img-badge span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.bba-qcard__body {
  padding: 20px 22px 22px;
}

.bba-qcard__body h3 {
  font-size: 15px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 14px;
}

.bba-qfacts {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bba-qfacts li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #444;
}

.bba-qfacts li i {
  color: #14259b;
  margin-top: 2px;
  font-size: 13px;
  flex-shrink: 0;
}

.bba-qfacts li span strong {
  color: #040d4e;
  font-weight: 700;
  display: inline;
  margin-right: 4px;
}

.bba-qcard__apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #040d4e, #14259b);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 12px;
  border-radius: 10px;
  transition: .25s;
}

.bba-qcard__apply:hover {
  background: linear-gradient(135deg, #14259b, #1a35be);
  transform: translateY(-2px);
  color: #fff;
}

/* ── STATS BAND ── */
.bba-stats-band {
  background: #040d4e;
  padding: 0;
}

.bba-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 16px 0 20px;
  gap: 0;
}

.bba-stat {
  text-align: center;
  padding: 10px 36px;
  flex: 1;
  min-width: 140px;
}

.bba-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #f2b21b;
  line-height: 1;
}

.bba-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 4px;
  display: block;
}

.bba-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, .15);
  flex-shrink: 0;
}

/* ── LAYOUT: MAIN + SIDEBAR ── */
.bba-layout {
  background: #f5f7fb;
  padding: 50px 0 60px;
}

.bba-layout__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  align-items: start;
}

/* ── SECTIONS ── */
.bba-section {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  margin-bottom: 24px;
  border: 1px solid #e5e9f8;
}

.bba-section--alt {
  background: #f8f9ff;
}

.bba-section--dark {
  background: linear-gradient(135deg, #040d4e 0%, #14259b 100%);
  color: #fff;
}

.bba-section__head {
  margin-bottom: 24px;
}

.bba-section__head p {
  font-size: 14px;
  color: #666;
  margin: 8px 0 0;
  line-height: 1.65;
}

.bba-section__head--light h2 {
  color: #fff;
}

.bba-section__head--light p {
  color: rgba(255, 255, 255, .75);
}

.bba-section__eyebrow {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 10px;
}

.bba-section__eyebrow--gold {
  background: rgba(242, 178, 27, .15);
  color: #b07a00;
}

.bba-section h2 {
  font-size: 24px;
  font-weight: 800;
  color: #040d4e;
  margin: 0;
}

.bba-section--dark h2 {
  color: #fff;
}

.bba-section p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin: 0 0 16px;
}

.bba-section--dark p {
  color: rgba(255, 255, 255, .8);
}

/* Overview pillars */
.bba-overview-pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}

.bba-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f8f9ff;
  border: 1px solid #e5e9f8;
  border-radius: 12px;
  padding: 16px;
}

.bba-pillar__icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: #040d4e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b21b;
  font-size: 16px;
}

.bba-pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 4px;
}

.bba-pillar p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

/* Highlights grid */
.bba-highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bba-hl-card {
  background: #fff;
  border: 1.5px solid #e5e9f8;
  border-radius: 14px;
  padding: 20px 18px;
  transition: .25s;
}

.bba-hl-card:hover {
  border-color: #14259b;
  box-shadow: 0 6px 24px rgba(4, 13, 78, .1);
  transform: translateY(-3px);
}

.bba-hl-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  margin-bottom: 14px;
}

.bba-icon--blue {
  background: #14259b;
}

.bba-icon--red {
  background: #be2030;
}

.bba-icon--green {
  background: #0d7a4e;
}

.bba-icon--gold {
  background: #d4790a;
}

.bba-hl-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 6px;
}

.bba-hl-card p {
  font-size: 12.5px;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

/* Electives */
.bba-electives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.bba-elective {
  background: #fff;
  border: 1.5px solid #e5e9f8;
  border-radius: 14px;
  padding: 20px 18px;
  position: relative;
  transition: .25s;
}

.bba-elective:hover {
  border-color: #14259b;
  box-shadow: 0 6px 20px rgba(4, 13, 78, .1);
  transform: translateY(-3px);
}

.bba-elective__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  font-weight: 900;
  color: rgba(4, 13, 78, .07);
  line-height: 1;
}

.bba-elective__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #e9ebff;
  color: #14259b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 12px;
}

.bba-elective h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 6px;
}

.bba-elective p {
  font-size: 12.5px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Admission grid */
.bba-admission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.bba-eligibility,
.bba-steps {
  background: #f8f9ff;
  border: 1px solid #e5e9f8;
  border-radius: 14px;
  padding: 24px;
}

.bba-eligibility h3,
.bba-steps h3 {
  font-size: 15px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bba-eligibility h3 i,
.bba-steps h3 i {
  color: #14259b;
}

.bba-elig-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bba-elig-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #444;
}

.bba-elig-list li i {
  color: #0d7a4e;
  margin-top: 2px;
}

/* Steps */
.bba-steps-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.bba-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bba-step__num {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: #040d4e;
  color: #f2b21b;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.bba-step>div strong {
  font-size: 13px;
  font-weight: 700;
  color: #040d4e;
  display: block;
}

.bba-step>div p {
  font-size: 12.5px;
  color: #666;
  margin: 2px 0 0;
}

/* Careers grid */
.bba-careers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.bba-career-card {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
  transition: .25s;
}

.bba-career-card:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-3px);
}

.bba-career-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(242, 178, 27, .18);
  color: #f2b21b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
}

.bba-career-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}

.bba-career-card p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
  line-height: 1.5;
}

/* FAQ */
.bba-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bba-faq-item {
  border: 1.5px solid #e5e9f8;
  border-radius: 12px;
  overflow: hidden;
}

.bba-faq-item.bba-open {
  border-color: #14259b;
}

.bba-faq-q {
  width: 100%;
  background: #fff;
  border: none;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #040d4e;
  cursor: pointer;
  text-align: left;
  gap: 14px;
  font-family: var(--font_poppins);
  transition: .2s;
}

.bba-faq-q:hover,
.bba-open .bba-faq-q {
  background: #f5f7ff;
  color: #14259b;
}

.bba-faq-icon {
  font-size: 13px;
  flex-shrink: 0;
  color: #14259b;
  transition: transform .25s;
}

.bba-open .bba-faq-icon {
  transform: rotate(45deg);
}

.bba-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.7;
  transition: max-height .35s ease, padding .25s;
}

.bba-open .bba-faq-a {
  padding: 0 20px 16px;
}

/* ── SIDEBAR ── */
.bba-sidebar__sticky {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bba-enquiry-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e9f8;
  box-shadow: 0 8px 30px rgba(4, 13, 78, .1);
}

.bba-enquiry-card__head {
  background: linear-gradient(135deg, #040d4e, #14259b);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.bba-enquiry-card__head i {
  font-size: 22px;
  color: #f2b21b;
}

.bba-enquiry-card__head h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.bba-enquiry-card__head p {
  font-size: 11px;
  color: rgba(255, 255, 255, .65);
  margin: 2px 0 0;
}

.bba-enquiry-form {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bba-ef-field input,
.bba-ef-field select,
.bba-ef-field textarea {
  width: 100%;
  border: 1.5px solid #dde4f0;
  border-radius: 9px;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  background: #f8f9ff;
  font-family: var(--font_poppins);
  outline: none;
  transition: .2s;
  height: auto !important;
}

.bba-ef-field input:focus,
.bba-ef-field select:focus,
.bba-ef-field textarea:focus {
  border-color: #14259b;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 37, 155, .1);
}

.bba-ef-field input::placeholder,
.bba-ef-field textarea::placeholder {
  color: #bbc3d8;
}

.bba-ef-field textarea {
  resize: vertical;
  min-height: 76px;
}

.bba-ef-submit {
  width: 100%;
  background: linear-gradient(135deg, #040d4e, #14259b);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font_poppins);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: .25s;
}

.bba-ef-submit:hover {
  background: linear-gradient(135deg, #14259b, #1a35be);
  transform: translateY(-1px);
}

.bba-sidebar-contact {
  background: #fff;
  border-radius: 14px;
  padding: 18px 20px;
  border: 1px solid #e5e9f8;
}

.bba-sidebar-contact h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.bba-sidebar-contact h4 i {
  color: #14259b;
}

.bba-sbc-phone,
.bba-sbc-email {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #14259b;
  margin-bottom: 6px;
  transition: .2s;
}

.bba-sbc-phone:hover,
.bba-sbc-email:hover {
  color: #040d4e;
}

.bba-sbc-email {
  font-size: 12.5px;
  color: #666;
  font-weight: 500;
}

.bba-sbc-email:hover {
  color: #14259b;
}

.bba-sidebar-dl {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff3d0;
  border: 1.5px solid #f2b21b;
  border-radius: 12px;
  text-decoration: none;
  transition: .25s;
}

.bba-sidebar-dl:hover {
  background: #f2b21b;
}

.bba-sidebar-dl>i:first-child {
  font-size: 22px;
  color: #d4790a;
}

.bba-sidebar-dl:hover>i:first-child {
  color: #040d4e;
}

.bba-sidebar-dl strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #040d4e;
}

.bba-sidebar-dl span {
  display: block;
  font-size: 11px;
  color: #888;
}

.bba-sidebar-dl__arrow {
  margin-left: auto;
  color: #d4790a;
  font-size: 14px;
}

.bba-sidebar-dl:hover .bba-sidebar-dl__arrow {
  color: #040d4e;
}

/* ── CTA BANNER ── */
.bba-cta-banner {
  background: linear-gradient(135deg, #be2030 0%, #8b1522 100%);
  padding: 44px 0;
}

.bba-cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.bba-cta-banner__text h2 {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}

.bba-cta-banner__text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin: 0;
}

.bba-cta-banner__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ── BBA RESPONSIVE ── */
@media (max-width: 1199px) {
  .bba-hero__grid {
    grid-template-columns: 1fr 370px;
    gap: 28px;
  }

  .bba-hero__text h1 {
    font-size: 34px;
  }

  .bba-layout__grid {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }

  .bba-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-electives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-careers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .bba-hero__grid {
    grid-template-columns: 1fr;
  }

  .bba-hero {
    padding: 36px 0 40px;
  }

  .bba-hero__text h1 {
    font-size: 28px;
  }

  .bba-hero__card {
    max-width: 500px;
  }

  .bba-stats-grid {
    flex-wrap: wrap;
  }

  .bba-stat {
    min-width: 45%;
  }

  .bba-stat-div {
    display: none;
  }

  .bba-layout__grid {
    grid-template-columns: 1fr;
  }

  .bba-sidebar__sticky {
    position: static;
  }

  .bba-sidebar {
    order: -1;
  }

  .bba-enquiry-card {
    max-width: 600px;
  }

  .bba-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-electives-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-careers-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bba-admission-grid {
    grid-template-columns: 1fr;
  }

  .bba-cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  .bba-cta-banner__btns {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .bba-hero__text h1 {
    font-size: 24px;
  }

  .bba-hero__text>p {
    font-size: 13.5px;
  }

  .bba-section {
    padding: 24px 18px;
  }

  .bba-highlights-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bba-electives-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bba-careers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-stat {
    min-width: 100%;
  }

  .bba-section h2 {
    font-size: 20px;
  }

  .bba-cta-banner__text h2 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .bba-hero__cta {
    flex-direction: column;
  }

  .bba-btn {
    width: 100%;
    justify-content: center;
  }

  .bba-highlights-grid,
  .bba-electives-grid {
    grid-template-columns: 1fr;
  }

  .bba-careers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bba-hero__tags {
    gap: 6px;
  }
}


/* =====================================================================
   BBA — FULL-WIDTH SECTIONS
   ===================================================================== */

/* Full-width section wrapper */
.bba-fw-section {
  background: #fff;
  padding: 52px 0;
  border-top: 1px solid #e5e9f8;
}

.bba-fw-section--alt {
  background: #f8f9ff;
}

.bba-fw-section--dark {
  background: linear-gradient(135deg, #040d4e 0%, #14259b 100%);
  border-top: none;
}

/* Centre-aligned section heading for full-width sections */
.bba-section__head--center {
  text-align: center;
  margin-bottom: 36px;
}

.bba-section__head--center p {
  max-width: 580px;
  margin: 8px auto 0;
  font-size: 14px;
  color: #666;
  line-height: 1.65;
}

.bba-fw-section--dark .bba-section__head--center p {
  color: rgba(255, 255, 255, .75);
}

/* Heading decorative underline */
.bba-section__head--center h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: #f2b21b;
  border-radius: 2px;
  margin: 10px auto 0;
}

.bba-fw-section--dark .bba-section__head--center h2::after {
  background: rgba(242, 178, 27, .6);
}

/* ── Highlights grid — full-width: 3-col then 6-col → use 3 col ── */
.bba-highlights-grid--fw {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Electives grid — full-width: 3 col ── */
.bba-electives-grid--fw {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Admission grid — full-width: equal 50/50 ── */
.bba-admission-grid--fw {
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

/* ── Careers grid — full-width: 5-col ── */
.bba-careers-grid--fw {
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* ── FAQ — constrained max-width for readability ── */
.bba-faq-container {
  max-width: 860px;
}

/* ── Responsive overrides for full-width sections ── */
@media (max-width: 1199px) {
  .bba-highlights-grid--fw {
    grid-template-columns: repeat(3, 1fr);
  }

  .bba-electives-grid--fw {
    grid-template-columns: repeat(3, 1fr);
  }

  .bba-careers-grid--fw {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .bba-highlights-grid--fw {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-electives-grid--fw {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-careers-grid--fw {
    grid-template-columns: repeat(2, 1fr);
  }

  .bba-admission-grid--fw {
    grid-template-columns: 1fr;
  }

  .bba-fw-section {
    padding: 38px 0;
  }
}

@media (max-width: 767px) {
  .bba-highlights-grid--fw {
    grid-template-columns: 1fr 1fr;
  }

  .bba-electives-grid--fw {
    grid-template-columns: 1fr 1fr;
  }

  .bba-careers-grid--fw {
    grid-template-columns: 1fr 1fr;
  }

  .bba-fw-section {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {

  .bba-highlights-grid--fw,
  .bba-electives-grid--fw,
  .bba-careers-grid--fw {
    grid-template-columns: 1fr;
  }

  .bba-section__head--center h2 {
    font-size: 21px;
  }
}


/* =====================================================================
   MBA OVERVIEW PAGE — UNIQUE STYLES
   (Hero reuses .bba-hero with .mba-hero tint override,
    all card/layout classes reuse BBA styles)
   ===================================================================== */

/* Hero accent — burgundy/maroon tint for MBA */
.mba-hero {
  background: linear-gradient(135deg, #1a0a0e 0%, #5a1020 45%, #8b1a2e 100%);
}

/* CTA banner — use navy instead of red */
.mba-cta-banner {
  background: linear-gradient(135deg, #040d4e 0%, #14259b 100%);
}

/* ── SPECIALIZATION CARDS ── */
.mba-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mba-spec-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  border: 1.5px solid #e5e9f8;
  position: relative;
  overflow: hidden;
  transition: .25s;
  box-shadow: 0 4px 18px rgba(4, 13, 78, .06);
}

.mba-spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(4, 13, 78, .14);
}

/* Top accent bar per specialization */
.mba-spec-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 18px 18px 0 0;
}

.mba-spec-card--finance::before {
  background: linear-gradient(90deg, #0d7a4e, #12a368);
}

.mba-spec-card--hr::before {
  background: linear-gradient(90deg, #14259b, #1a35be);
}

.mba-spec-card--mktg::before {
  background: linear-gradient(90deg, #be2030, #e0334a);
}

.mba-spec-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  margin-bottom: 14px;
}

.mba-spec-card--finance .mba-spec-card__icon {
  background: #0d7a4e;
}

.mba-spec-card--hr .mba-spec-card__icon {
  background: #14259b;
}

.mba-spec-card--mktg .mba-spec-card__icon {
  background: #be2030;
}

.mba-spec-card__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.mba-spec-card--finance .mba-spec-card__label {
  color: #0d7a4e;
}

.mba-spec-card--hr .mba-spec-card__label {
  color: #14259b;
}

.mba-spec-card--mktg .mba-spec-card__label {
  color: #be2030;
}

.mba-spec-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 10px;
  line-height: 1.2;
}

.mba-spec-card>p {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
  margin: 0 0 16px;
}

.mba-spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mba-spec-list li {
  font-size: 12.5px;
  color: #444;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.mba-spec-list li i {
  font-size: 11px;
  margin-top: 2px;
}

.mba-spec-card--finance .mba-spec-list li i {
  color: #0d7a4e;
}

.mba-spec-card--hr .mba-spec-list li i {
  color: #14259b;
}

.mba-spec-card--mktg .mba-spec-list li i {
  color: #be2030;
}

/* ── ADMISSION SECTION ── */
.mba-admission-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Eligibility cards row */
.mba-elig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.mba-elig-card {
  background: #f8f9ff;
  border: 1.5px solid #e5e9f8;
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
  transition: .2s;
}

.mba-elig-card:hover {
  border-color: #14259b;
  box-shadow: 0 6px 20px rgba(4, 13, 78, .1);
  transform: translateY(-2px);
}

.mba-elig-card__icon {
  width: 48px;
  height: 48px;
  background: #040d4e;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f2b21b;
  font-size: 20px;
  margin: 0 auto 12px;
}

.mba-elig-card h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 6px;
}

.mba-elig-card p {
  font-size: 12.5px;
  color: #666;
  margin: 0;
  line-height: 1.55;
}

/* Admission steps timeline */
.mba-steps-card {
  background: #fff;
  border: 1.5px solid #e5e9f8;
  border-radius: 16px;
  padding: 28px 30px;
}

.mba-steps-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mba-steps-card h3 i {
  color: #14259b;
}

.mba-steps-track {
  display: flex;
  gap: 0;
  position: relative;
}

.mba-step-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.mba-step-item__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #040d4e;
  color: #f2b21b;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.mba-step-item__line {
  position: absolute;
  top: 18px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: linear-gradient(90deg, #040d4e 0%, #e5e9f8 100%);
  z-index: 1;
}

.mba-step-item__line--last {
  display: none;
}

.mba-step-item__body {
  margin-top: 12px;
  text-align: center;
  padding: 0 6px;
}

.mba-step-item__body strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #040d4e;
  margin-bottom: 4px;
}

.mba-step-item__body p {
  font-size: 11.5px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ── WHY MBA GRID ── */
.mba-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mba-why-card {
  background: #fff;
  border: 1.5px solid #e5e9f8;
  border-radius: 16px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: .25s;
}

.mba-why-card:hover {
  border-color: #14259b;
  box-shadow: 0 8px 28px rgba(4, 13, 78, .11);
  transform: translateY(-3px);
}

.mba-why-card__num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 36px;
  font-weight: 900;
  color: rgba(4, 13, 78, .06);
  line-height: 1;
  user-select: none;
}

.mba-why-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e9ebff;
  color: #14259b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.mba-why-card h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 8px;
}

.mba-why-card p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.65;
}

/* ── MBA RESPONSIVE ── */
@media (max-width: 1199px) {
  .mba-spec-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mba-elig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-steps-track {
    flex-direction: column;
    gap: 16px;
  }

  .mba-step-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .mba-step-item__line {
    display: none;
  }

  .mba-step-item__body {
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 991px) {
  .mba-spec-grid {
    grid-template-columns: 1fr;
  }

  .mba-elig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mba-steps-card {
    padding: 20px;
  }
}

@media (max-width: 767px) {
  .mba-elig-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mba-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mba-spec-card {
    padding: 22px 18px;
  }

  .mba-spec-card h3 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .mba-elig-grid {
    grid-template-columns: 1fr;
  }

  .mba-why-grid {
    grid-template-columns: 1fr;
  }

  .mba-steps-track {
    gap: 12px;
  }
}


/* =====================================================================
   M.COM OVERVIEW PAGE — UNIQUE STYLES
   ===================================================================== */

/* Hero — teal/emerald gradient to differentiate from BBA (navy) & MBA (maroon) */
.mcom-hero {
  background: linear-gradient(135deg, #043d2a 0%, #0a6644 50%, #0d7a4e 100%);
}

/* CTA banner — deep teal */
.mcom-cta-banner {
  background: linear-gradient(135deg, #043d2a 0%, #0d7a4e 100%);
}

/* Eyebrow — teal variant */
.mcom-eyebrow {
  background: #e0f5ed !important;
  color: #0d7a4e !important;
}

/* Enquiry card head — teal */
.mcom-enquiry-head {
  background: linear-gradient(135deg, #043d2a, #0d7a4e) !important;
}

/* Submit button — teal */
.mcom-ef-submit {
  background: linear-gradient(135deg, #043d2a, #0d7a4e) !important;
}

.mcom-ef-submit:hover {
  background: linear-gradient(135deg, #0d7a4e, #12a368) !important;
}

/* Heading underline — teal on M.Com sections */
.mcom-eyebrow~h2::after,
.bba-section__head--center:has(.mcom-eyebrow) h2::after {
  background: #0d7a4e !important;
}

/* ── SUBJECT CARDS ── */
.mcom-subjects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mcom-subject-card {
  background: #fff;
  border: 1.5px solid #e5e9f8;
  border-radius: 16px;
  padding: 24px 22px;
  position: relative;
  transition: .25s;
  border-top: 3px solid #0d7a4e;
}

.mcom-subject-card:hover {
  box-shadow: 0 8px 28px rgba(13, 122, 78, .12);
  transform: translateY(-3px);
}

.mcom-subject-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #e0f5ed;
  color: #0d7a4e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.mcom-subject-card h4 {
  font-size: 14.5px;
  font-weight: 800;
  color: #040d4e;
  margin: 0 0 8px;
}

.mcom-subject-card p {
  font-size: 13px;
  color: #666;
  margin: 0 0 14px;
  line-height: 1.6;
}

.mcom-subject-sem {
  display: inline-block;
  background: #e0f5ed;
  color: #0d7a4e;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}

/* ── ADMISSION LAYOUT ── */
.mcom-admission-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.mcom-elig-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.mcom-elig-panel__block {
  background: #f8f9ff;
  border: 1.5px solid #e5e9f8;
  border-radius: 14px;
  padding: 22px 20px;
}

.mcom-elig-panel__block h3 {
  font-size: 15px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mcom-elig-panel__block h3 i {
  color: #0d7a4e;
}

.mcom-ideal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mcom-ideal-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: #444;
  background: #fff;
  border: 1px solid #e5e9f8;
  border-radius: 8px;
  padding: 8px 10px;
}

.mcom-ideal-item i {
  color: #0d7a4e;
  font-size: 11px;
  flex-shrink: 0;
}

/* ── WHY M.COM STRIP ── */
.mcom-why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.mcom-why-item {
  background: #fff;
  border: 1.5px solid #e5e9f8;
  border-radius: 14px;
  padding: 22px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: .25s;
  border-left: 4px solid #0d7a4e;
}

.mcom-why-item:hover {
  box-shadow: 0 6px 22px rgba(13, 122, 78, .1);
  transform: translateY(-2px);
}

.mcom-why-item__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: #e0f5ed;
  color: #0d7a4e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mcom-why-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #040d4e;
  margin: 0 0 6px;
}

.mcom-why-item p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

/* ── M.COM RESPONSIVE ── */
@media (max-width: 1199px) {
  .mcom-subjects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .mcom-why-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .mcom-subjects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mcom-admission-layout {
    grid-template-columns: 1fr;
  }

  .mcom-why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .mcom-ideal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .mcom-subjects-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mcom-why-strip {
    grid-template-columns: 1fr;
  }

  .mcom-ideal-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 575px) {
  .mcom-subjects-grid {
    grid-template-columns: 1fr;
  }

  .mcom-ideal-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================================
   BBA COURSE STRUCTURE PAGE
   ===================================================================== */

/* ── HERO ── */
.cs-hero {
  position: relative;
  background: linear-gradient(135deg, #040d4e 0%, #0e1f7a 55%, #14259b 100%);
  padding: 44px 0 50px;
  overflow: hidden;
}

.cs-hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(242, 178, 27, .1) 0%, transparent 55%),
    radial-gradient(circle at 5% 90%, rgba(255, 255, 255, .04) 0%, transparent 45%);
  pointer-events: none;
}

.cs-hero__inner {
  position: relative;
  z-index: 2;
}

.cs-fw-wrap {
  background: #f5f7fb;
  padding: 20px 0;
}

.cs-hero__crumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.cs-hero__crumb a,
.cs-hero__crumb span {
  font-size: 12px;
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
}

.cs-hero__crumb a:hover {
  color: #f2b21b;
}

.cs-hero__crumb i {
  font-size: 9px;
  color: rgba(255, 255, 255, .3);
}

.cs-hero__crumb span {
  color: rgba(255, 255, 255, .9);
}

.cs-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.cs-hero__text h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px;
}

.cs-hero__text h1 span {
  color: #f2b21b;
}

.cs-hero__text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 600px;
}

.cs-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

/* Stats row */
.cs-hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  padding: 14px 24px;
  width: fit-content;
}

.cs-stat {
  text-align: center;
  padding: 0 22px;
}

.cs-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: #f2b21b;
  line-height: 1;
}

.cs-stat span {
  font-size: 11px;
  color: rgba(255, 255, 255, .6);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 3px;
  display: block;
}

.cs-stat-div {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .18);
  flex-shrink: 0;
}

/* ── STICKY SEMESTER NAV ── */
.cs-sem-nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 2px solid #e5e9f8;
  box-shadow: 0 2px 12px rgba(4, 13, 78, .1);
}

.cs-sem-nav__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0;
  overflow-x: auto;
}

.cs-sem-nav__label {
  font-size: 12px;
  font-weight: 700;
  color: #888;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  flex-shrink: 0;
}

.cs-sem-nav__label i {
  color: #14259b;
}

.cs-sem-nav__tabs {
  display: flex;
  gap: 0;
  align-items: center;
  overflow-x: auto;
}

.cs-sem-tab {
  display: inline-block;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: .2s;
  flex-shrink: 0;
}

.cs-sem-tab:hover {
  color: #14259b;
  background: #f5f7ff;
}

.cs-sem-tab.active {
  color: #14259b;
  border-bottom-color: #14259b;
  background: #f0f3ff;
}

/* ── INFO STRIP ── */
.cs-note-strip {
  background: #fff8e6;
  border-bottom: 1px solid #f2e0a0;
  padding: 10px 0;
}

.cs-note-strip__inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #7a5a00;
}

.cs-note-strip__inner i {
  color: #d4790a;
  font-size: 15px;
  margin-top: 1px;
  flex-shrink: 0;
}

.cs-note-strip__inner strong {
  color: #5a3d00;
}

/* ── PAGE LAYOUT ── */
.cs-page {
  background: #f5f7fb;
  padding: 36px 0 56px;
}

.cs-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 28px;
  align-items: start;
}

.cs-main {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── SEMESTER SECTION ── */
.cs-sem-section {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e9f8;
  box-shadow: 0 4px 18px rgba(4, 13, 78, .06);
  scroll-margin-top: 100px;
}

/* Header — alternating accent colours per semester */
.cs-sem-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  flex-wrap: wrap;
  gap: 14px;
}

.cs-sem-header--1 {
  background: linear-gradient(135deg, #040d4e, #14259b);
}

.cs-sem-header--2 {
  background: linear-gradient(135deg, #0d7a4e, #12a368);
}

.cs-sem-header--3 {
  background: linear-gradient(135deg, #7a0d3a, #be2030);
}

.cs-sem-header--4 {
  background: linear-gradient(135deg, #5a3d00, #d4790a);
}

.cs-sem-header--5 {
  background: linear-gradient(135deg, #2c0d7a, #6025c0);
}

.cs-sem-header--6 {
  background: linear-gradient(135deg, #043d2a, #0d7a4e);
}

.cs-sem-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.cs-sem-header__left h2 {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 3px;
}

.cs-sem-header__left p {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .7);
  margin: 0;
}

.cs-sem-header__right {
  display: flex;
  gap: 16px;
}

.cs-sem-credits,
.cs-sem-papers {
  text-align: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 10px;
  padding: 10px 16px;
}

.cs-sem-credits strong,
.cs-sem-papers strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: #f2b21b;
  line-height: 1;
}

.cs-sem-credits span,
.cs-sem-papers span {
  font-size: 10px;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── TABLE ── */
.cs-table-wrap {
  overflow-x: auto;
}

.cs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.cs-table thead tr {
  background: #f0f3ff;
  border-bottom: 2px solid #dde4f8;
}

.cs-table thead th {
  padding: 14px 16px;
  text-align: left;
  font-size: 11.5px;
  font-weight: 800;
  color: #14259b;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.cs-th-sl {
  width: 60px;
}

.cs-th-code {
  width: 120px;
}

.cs-th-type {
  width: 110px;
}

.cs-th-cr {
  width: 80px;
  text-align: center !important;
}

.cs-table tbody tr {
  border-bottom: 1px solid #f0f3fb;
  transition: background .18s;
}

.cs-table tbody tr:hover {
  background: #f8f9ff;
}

.cs-table tbody td {
  padding: 13px 16px;
  color: #333;
  vertical-align: middle;
}

.cs-table tbody td:last-child {
  text-align: center;
}

/* Course code pill */
.cs-code {
  display: inline-block;
  background: #e9ebff;
  color: #14259b;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 6px;
  letter-spacing: .04em;
  white-space: nowrap;
  font-family: 'Courier New', monospace;
}

/* Course type badges */
.cs-type {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

.cs-type--cc {
  background: #dbeafe;
  color: #1e40af;
}

.cs-type--aec {
  background: #fef3c7;
  color: #92400e;
}

.cs-type--sec {
  background: #dcfce7;
  color: #166534;
}

.cs-type--vac {
  background: #fce7f3;
  color: #9d174d;
}

.cs-type--mde {
  background: #ede9fe;
  color: #5b21b6;
}

.cs-type--dse {
  background: #ffedd5;
  color: #9a3412;
}

.cs-type--int {
  background: #e0f5ed;
  color: #0d7a4e;
}

/* Credit badge */
.cs-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #040d4e;
  color: #f2b21b;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

/* Footer row */
.cs-table tfoot tr {
  background: #f8f9ff;
  border-top: 2px solid #dde4f8;
}

.cs-tf-label {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #040d4e;
  text-align: right;
}

.cs-total-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #040d4e;
  color: #f2b21b;
  font-size: 15px;
  font-weight: 900;
  border-radius: 10px;
  padding: 6px 14px;
}

/* ── SIDEBAR ── */
.cs-sidebar__sticky {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cs-sidebar-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e9f8;
  box-shadow: 0 4px 16px rgba(4, 13, 78, .07);
  overflow: hidden;
}

.cs-sidebar-card__head {
  background: linear-gradient(135deg, #040d4e, #14259b);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-sidebar-card__head i {
  font-size: 16px;
  color: #f2b21b;
}

.cs-sidebar-card__head h3 {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

/* Credit summary */
.cs-credit-summary {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-credit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #444;
  padding: 6px 0;
  border-bottom: 1px dashed #eef0f8;
}

.cs-credit-row:last-child {
  border-bottom: none;
}

.cs-credit-row--total {
  font-weight: 800;
  color: #040d4e;
  border-top: 2px solid #e5e9f8;
  margin-top: 4px;
  padding-top: 10px;
  border-bottom: none;
}

.cs-cr-val {
  font-weight: 700;
  color: #14259b;
}

.cs-credit-row--total .cs-cr-val {
  background: #040d4e;
  color: #f2b21b;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 13px;
}

/* Legend */
.cs-legend {
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.cs-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: #555;
}

/* Back link */
.cs-back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f3ff;
  border: 1.5px solid #dde4f8;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  color: #14259b;
  text-decoration: none;
  transition: .2s;
}

.cs-back-link:hover {
  background: #e9ebff;
  color: #040d4e;
}

/* ── RESPONSIVE ── */
@media (max-width: 1199px) {
  .cs-layout {
    grid-template-columns: 1fr 270px;
  }

  .cs-hero__text h1 {
    font-size: 32px;
  }
}

@media (max-width: 991px) {
  .cs-layout {
    grid-template-columns: 1fr;
  }

  .cs-sidebar__sticky {
    position: static;
  }

  .cs-sidebar {
    order: -1;
  }

  .cs-sidebar__sticky {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cs-sidebar-card {
    flex: 1;
    min-width: 280px;
  }

  .cs-hero__stats {
    flex-wrap: wrap;
  }

  .cs-stat {
    min-width: 80px;
  }
}

@media (max-width: 767px) {
  .cs-hero__text h1 {
    font-size: 26px;
  }

  .cs-hero__cta {
    flex-direction: column;
  }

  .cs-hero__cta .bba-btn {
    width: 100%;
    justify-content: center;
  }

  .cs-sem-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cs-table {
    font-size: 12.5px;
  }

  .cs-table thead th,
  .cs-table tbody td {
    padding: 10px 12px;
  }

  .cs-sem-nav__label {
    display: none;
  }

  .cs-sidebar__sticky {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .cs-hero__tags {
    gap: 6px;
  }

  .cs-hero__stats {
    padding: 12px 14px;
    gap: 0;
  }

  .cs-stat {
    padding: 0 12px;
  }

  .cs-th-type,
  .cs-table tbody td:nth-child(4) {
    display: none;
  }
}