/* ============================================
   MBA LANDING PAGE — Conversion-Focused Design
   ============================================ */

:root {
  --mba-primary: #043359;
  --mba-secondary: #ed3237;
  --mba-blue-light: #21559b;
  --mba-accent: #ffc107;
  --mba-dark: #0a1628;
  --mba-light: #f4f7fa;
  --mba-gray: #6c7a8d;
  --mba-border: #e2e8f0;
  --mba-white: #ffffff;
  --mba-gradient: linear-gradient(135deg, #043359 0%, #21559b 100%);
  --mba-radius: 12px;
  --mba-shadow: 0 4px 24px rgba(4, 51, 89, 0.08);
  --mba-shadow-lg: 0 20px 40px rgba(4, 51, 89, 0.15);
  --mba-border-radius: 16px;
}

/* Border Utilities */
.border-top-primary {
  border-top: 5px solid var(--mba-primary) !important;
}

.border-top-secondary {
  border-top: 5px solid var(--mba-secondary) !important;
}

.border-top-accent {
  border-top: 5px solid var(--mba-accent) !important;
}

.border-dashed {
  border-style: dashed !important;
  border-width: 2px !important;
}

.bg-white-5 {
  background: rgba(255, 255, 255, 0.05);
}

/* Horizontal Awards Pills */
.awards-pills-horizontal .nav-link {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 25px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

.awards-pills-horizontal .nav-link img {
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.awards-pills-horizontal .nav-link.active {
  background: var(--mba-accent) !important;
  border-color: var(--mba-accent);
}

.awards-pills-horizontal .nav-link.active img {
  filter: none;
  opacity: 1;
}

.awards-pills-horizontal .nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Enhanced Blog CTA */
.btn-read-more-accent {
  display: inline-flex;
  align-items: center;
  color: var(--mba-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 10px 0;
}

.btn-read-more-accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--mba-secondary);
  transition: all 0.3s ease;
}

.btn-read-more-accent:hover {
  color: var(--mba-primary);
  transform: translateX(5px);
}

.btn-read-more-accent:hover::after {
  width: 100%;
  background: var(--mba-primary);
}

/* Image Shape Enhancement */
.img-shape-enhanced {
  position: relative;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  overflow: hidden;
  transition: all 0.5s ease;
  box-shadow: var(--mba-shadow-lg);
}

.img-shape-enhanced:hover {
  border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
}

.img-shape-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 8px solid var(--mba-accent);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.3;
}

/* Connectivity Hub Enhancement */
.connectivity-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(4, 51, 89, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.connectivity-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--mba-shadow-lg);
}

.connectivity-card .icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-right: 25px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.connectivity-card:hover .icon-box {
  transform: rotate(10deg) scale(1.1);
}

.connectivity-card h5 {
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.connectivity-card p {
  color: #64748b;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.connectivity-card a {
  transition: all 0.3s ease;
  display: inline-block;
}

.connectivity-card.loc-card {
  border-left: 6px solid var(--mba-primary);
}

.connectivity-card.tel-card {
  border-left: 6px solid var(--mba-secondary);
}

.connectivity-card.mail-card {
  border-left: 6px solid var(--mba-accent);
}

/* Elite FAQ Accordion Enhancement */
.mba-faq .accordion-item {
  border: none;
  background: transparent;
  margin-bottom: 20px;
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mba-faq .accordion-button {
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border-radius: 12px !important;
  padding: 22px 30px;
  color: var(--mba-primary);
  font-weight: 600;
  font-size: 1.1rem;
  position: relative;
  transition: all 0.3s ease;
  border: 1px solid rgba(4, 51, 89, 0.05);
}

.mba-faq .accordion-button:not(.collapsed) {
  background: var(--mba-primary);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(4, 51, 89, 0.2);
  transform: translateY(-2px);
}

.mba-faq .accordion-button::after {
  filter: grayscale(1) brightness(0);
  transition: all 0.3s ease;
}

.mba-faq .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
  transform: rotate(-180deg);
}

.mba-faq .accordion-button i {
  width: 40px;
  height: 40px;
  background: rgba(4, 51, 89, 0.05);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: all 0.3s ease;
  color: var(--mba-secondary);
}

.mba-faq .accordion-button:not(.collapsed) i {
  background: rgba(255, 255, 255, 0.1);
  color: var(--mba-accent);
  transform: scale(1.1);
}

.mba-faq .accordion-body {
  background: #f8fafc;
  border-radius: 0 0 12px 12px;
  padding: 30px;
  color: #475569;
  line-height: 1.8;
  font-size: 1.05rem;
  border-left: 4px solid var(--mba-accent);
}

/* Home Section Enhancements */
.index-about-cta {
  background: #ffffff;
  border-radius: 30px;
  padding: 40px;
  box-shadow: var(--mba-shadow-lg);
  border-left: 8px solid var(--mba-primary);
  transition: all 0.4s ease;
}

.index-about-cta:hover {
  transform: translateX(10px);
}

.feature-pill {
  background: rgba(4, 51, 89, 0.05);
  border-radius: 50px;
  padding: 10px 25px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(4, 51, 89, 0.1);
}

.service-card-premium {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-card-premium:hover {
  transform: translateY(-15px);
  box-shadow: var(--mba-shadow-lg);
}

.service-card-premium .img-container {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-premium .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-premium:hover .img-container img {
  transform: scale(1.1);
}

.service-card-premium .card-content {
  padding: 25px;
  text-align: center;
}

.focus-area-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s ease;
  height: 100%;
}

.focus-area-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--mba-accent);
}

.accred-card-premium {
  background: #ffffff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid transparent;
}

.accred-card-premium:hover {
  transform: scale(1.05);
  border-bottom-color: var(--mba-primary);
  box-shadow: var(--mba-shadow-md);
}

.accred-card-premium img {
  max-height: 80px;
  margin-bottom: 15px;
  object-fit: contain;
}

.accred-card-premium p {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--mba-primary);
  margin-bottom: 0;
  line-height: 1.2;
}

/* ---- HERO DECISION BLOCK ---- */
.mba-hero {
  background: var(--mba-gradient);
  position: relative;
  overflow: hidden;
  padding: 72px 0 60px;
}

.mba-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(247, 201, 72, 0.07);
}

.mba-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(237, 50, 55, 0.06);
}

/* ---- BREADCRUMBS ---- */
.mba-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.mba-breadcrumb li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.mba-breadcrumb li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.mba-breadcrumb li a:hover {
  color: var(--mba-accent);
}

.mba-breadcrumb li::after {
  content: "/";
  margin-left: 10px;
  opacity: 0.4;
}

.mba-breadcrumb li:last-child {
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.mba-breadcrumb li:last-child::after {
  display: none;
}

.mba-hero .hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--mba-accent);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}

.mba-hero h1 {
  color: #fff;
  font-size: 2.9rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.mba-hero .hero-sub {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 28px;
  font-weight: 400;
}

.mba-hero .hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.mba-hero .hero-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
}

.mba-hero .hero-fact i {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--mba-accent);
}

.hero-eligibility-accent {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--mba-accent);
  padding: 12px 20px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  line-height: 1.5;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  max-width: 600px;
}

.hero-eligibility-accent strong {
  color: var(--mba-accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 4px;
}


/* ---- HERO BUTTONS ---- */
.mba-hero .hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.mba-hero .btn-hero-primary {
  background: var(--mba-secondary);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(237, 50, 55, 0.3);
}

.mba-hero .btn-hero-primary:hover {
  background: #c4282d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 50, 55, 0.35);
}

.mba-hero .btn-hero-secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
}

.mba-hero .btn-hero-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mba-hero .hero-form-card {
  background: var(--mba-white);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 30px 26px;
  position: relative;
  z-index: 2;
  border-top: 3px solid var(--mba-accent);
}

.mba-hero .hero-form-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--mba-primary);
  margin-bottom: 4px;
  text-align: center;
}

.mba-hero .hero-form-card .form-sub {
  font-size: 13px;
  color: var(--mba-gray);
  text-align: center;
  margin-bottom: 16px;
}

/* ---- TRUST BLOCK ---- */
.mba-trust {
  background: linear-gradient(135deg, #0a1628 0%, #003a66 60%, #0a2540 100%);
  padding: 40px 0 36px;
  position: relative;
  overflow: hidden;
}

.mba-trust::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mba-secondary), var(--mba-accent), var(--mba-secondary));
  background-size: 200% 100%;
  animation: trustBarShimmer 3s linear infinite;
}

.mba-trust::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(247, 201, 72, 0.25), transparent);
}

@keyframes trustBarShimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.mba-trust .trust-label {
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  margin-bottom: 22px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.mba-trust .trust-label::before,
.mba-trust .trust-label::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(247, 201, 72, 0.35);
}

.mba-trust .trust-items {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
}

.mba-trust .trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 16px 14px 12px;
  flex: 1 1 0;
  min-width: 130px;
  backdrop-filter: blur(6px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.mba-trust .trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(247, 201, 72, 0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.mba-trust .trust-item:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(247, 201, 72, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(247, 201, 72, 0.15);
}

.mba-trust .trust-item:hover::before {
  opacity: 1;
}

.mba-trust .trust-item img {
  width: auto;
  height: 130px;
  max-width: 130px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(2px 1px 0.5px white);
  transition: all 0.35s ease;
}

.mba-trust .trust-item:hover img {
  opacity: 1;
  transform: scale(1.08);
}

.mba-trust .trust-item i {
  font-size: 60px;
  color: var(--mba-accent);
  line-height: 1;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mba-trust .trust-item span {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

@media (max-width: 767px) {
  .mba-trust .trust-items {
    gap: 12px;
  }

  .mba-trust .trust-item {
    min-width: 110px;
    padding: 14px 16px 12px;
  }

  .mba-trust .trust-item img {
    height: 44px;
  }
}

/* ---- OVERVIEW + KEY FEATURES (Side by Side) ---- */
.mba-overview-features {
  padding: 0;
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.mba-overview-features .row {
  margin: 0;
}

.mba-overview-features .col-lg-6 {
  padding: 0;
}

.ov-panel {
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ov-panel-left {
  border-right: 3px dashed;
  border-image: linear-gradient(to bottom,
      #21559b 0%,
      #21559b 50%,
      #042c4d 50%,
      #042c4d 100%) 1;
}

.ov-panel-left p {
  color: var(--mba-gray);
  font-size: 14.8px;
  line-height: 1.75;
  margin-bottom: 14px;
}

@media (max-width: 991px) {
  .ov-panel {
    padding: 40px 24px;
  }

  .ov-panel-left {
    border-right: none;
    border-bottom: 1px solid var(--mba-border);
  }
}


.mba-section-title {
  text-align: center;
  margin-bottom: 20px;
}

.mba-section-title h2 {
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--mba-primary);
  margin-bottom: 10px;
  letter-spacing: -0.3px;
  position: relative;
}

.mba-section-title p {
  color: var(--mba-gray);
  font-size: 15.5px;
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
  margin-bottom: 18px;
}

.mba-section-title .title-line {
  width: 60px;
  height: 3.5px;
  background: linear-gradient(90deg, var(--mba-secondary), var(--mba-accent));
  margin: 16px auto 0;
  border-radius: 4px;
}

.highlight-card {
  background: var(--mba-white);
  border-radius: 16px;
  padding: 34px 24px 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 58, 102, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(0, 58, 102, 0.06);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mba-primary), var(--mba-secondary));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(0, 58, 102, 0.12);
  border-color: rgba(0, 58, 102, 0.1);
}

.highlight-card .hl-icon {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      rgba(0, 58, 102, 0.06),
      rgba(0, 58, 102, 0.03));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
  color: var(--mba-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.highlight-card:hover .hl-icon {
  background: linear-gradient(135deg, var(--mba-primary), #0a4d7a);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 14px rgba(0, 58, 102, 0.2);
}

.highlight-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mba-dark);
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 14px;
  color: var(--mba-gray);
  margin: 0;
  line-height: 1.6;
}

/* ---- TECHNICAL SKILLS + COURSE INFO (LIGHT) ---- */
.mba-skills-info {
  padding: 85px 0;
  background: #ffffff;
  position: relative;
}

.si-heading {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--mba-primary);
  margin-bottom: 20px;
  line-height: 1.4;
}

.si-subtext {
  font-size: 16px;
  color: var(--mba-gray);
  margin-bottom: 30px;
}

.si-list {
  list-style: none;
  padding: 0;
}

.si-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background: #f8fafc;
  border-radius: 12px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 58, 102, 0.05);
  transition: all 0.3s ease;
}

.si-list li:hover {
  transform: translateX(8px);
  background: #fff;
  border-color: var(--mba-secondary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.si-list li i {
  color: var(--mba-secondary);
  font-size: 18px;
}

.si-list li div {
  font-size: 15px;
  color: var(--mba-dark);
  font-weight: 500;
}

.ci-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--mba-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 58, 102, 0.06);
}

.ci-info-table th {
  background: var(--mba-gradient);
  color: #fff;
  padding: 15px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ci-info-table td {
  padding: 15px;
  font-size: 14px;
  color: var(--mba-dark);
  text-align: center;
  background: #fff;
  border-bottom: 1px solid var(--mba-border);
}

.ci-info-table tr:last-child td {
  border-bottom: none;
}

/* ---- 5 REASONS (LIGHT) ---- */
.mba-reasons {
  padding: 85px 0;
  background: linear-gradient(180deg, #d9dee3 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.mba-reasons::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 58, 102, 0.05) 0%, transparent 70%);
}

.mba-reasons::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 50, 55, 0.08) 0%, transparent 70%);
}

.mba-reasons .mba-section-title h2 {
  color: var(--mba-primary);
}

.mba-reasons .mba-section-title p {
  color: var(--mba-gray);
}

.reason-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 32px 38px;
  text-align: center;
  border: 1px solid rgba(0, 58, 102, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 58, 102, 0.05);
  z-index: 2;
}

.reason-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 58, 102, 0.12);
  border-color: rgba(237, 50, 55, 0.3);
}

.reason-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mba-secondary), var(--mba-accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.reason-card:hover::after {
  transform: scaleX(1);
}

.rc-num {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 36px;
  font-weight: 950;
  color: rgba(0, 58, 102, 0.03);
  letter-spacing: -2px;
  transition: all 0.4s ease;
}

.reason-card:hover .rc-num {
  color: rgba(237, 50, 55, 0.08);
  transform: scale(1.1);
}

.reason-card .rc-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--mba-primary), #1a4f7e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  margin-bottom: 26px;
  box-shadow: 0 10px 25px rgba(0, 58, 102, 0.2);
  transition: all 0.4s ease;
}

.reason-card:hover .rc-icon {
  transform: scale(1.1) rotate(-8deg);
  background: linear-gradient(135deg, var(--mba-secondary), #ff6b6b);
  box-shadow: 0 12px 30px rgba(237, 50, 55, 0.3);
}

.reason-card:nth-child(even) .rc-icon {
  background: linear-gradient(135deg, var(--mba-accent), #ffe082);
  box-shadow: 0 8px 24px rgba(247, 201, 72, 0.3);
  color: var(--mba-dark);
}

.reason-card:nth-child(even):hover .rc-icon {
  background: linear-gradient(135deg, var(--mba-accent), #f7b733);
  box-shadow: 0 12px 30px rgba(247, 201, 72, 0.3);
}

.reason-card h5 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--mba-primary);
  margin-bottom: 14px;
}

.reason-card p {
  font-size: 15px;
  color: #5a6b81;
  margin-bottom: 0;
  line-height: 1.7;
}

.rc-accent-bar {
  width: 40px;
  height: 3px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--mba-accent), #ffe082);
  margin: 0 auto;
  transition: width 0.35s ease;
}

.reason-card:hover .rc-accent-bar {
  width: 70px;
}

/* ---- WHO CAN APPLY ---- */
.mba-audience {
  padding: 100px 0 80px;
  background: radial-gradient(circle at 0% 0%, #1a2a44 0%, #0a1628 60%, #050a14 100%);
  position: relative;
  overflow: hidden;
}

.mba-audience::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM6 30V22h2v8H6zm24-18h8v-2h-8v2zM6 6V0h2v6H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.mba-audience::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(237, 50, 55, 0.05) 0%, transparent 70%);
  filter: blur(50px);
}

.mba-audience .mba-section-title h2 {
  color: #fff;
}

.mba-audience .mba-section-title p {
  color: rgba(255, 255, 255, 0.55);
}

.mba-audience .mba-section-title .title-line {
  background: var(--mba-accent);
}

.persona-card {
  border-radius: 30px;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  overflow: hidden;
  height: 100%;
  position: relative;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
}

.persona-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

.persona-img-box {
  padding: 20px 20px 0;
  position: relative;
  overflow: hidden;
}

.persona-img-box img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 180px 180px 0 0;
  /* Tomb shape curve */
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  filter: brightness(0.75) contrast(1.1);
}

.persona-card:hover .persona-img-box img {
  transform: scale(1.1);
  filter: brightness(1);
}

.persona-content {
  padding: 40px 32px 45px;
  position: relative;
  z-index: 2;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.persona-card.card-blue {
  background: linear-gradient(180deg, rgba(30, 80, 150, 0.45) 0%, rgba(10, 30, 60, 0.9) 100%);
}

.persona-card.card-red {
  background: linear-gradient(180deg, rgba(220, 40, 50, 0.45) 0%, rgba(120, 20, 25, 0.9) 100%);
}

.persona-card.card-teal {
  background: linear-gradient(180deg, rgba(0, 150, 160, 0.45) 0%, rgba(0, 70, 80, 0.9) 100%);
}

.persona-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.6px;
  line-height: 1.2;
}

.persona-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
  line-height: 1.6;
  font-weight: 400;
}

.persona-card .persona-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.persona-card .persona-list li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  padding: 12px 0;
  padding-left: 36px;
  position: relative;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.persona-card .persona-list li:hover {
  color: #fff;
  padding-left: 42px;
  background: rgba(255, 255, 255, 0.03);
}

.persona-card .persona-list li:last-child {
  border-bottom: none;
}

.persona-card .persona-list li::before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 0;
  color: var(--mba-accent);
  font-weight: 900;
  font-size: 18px;
  top: 13px;
}

@media (max-width: 991px) {
  .persona-img-box img {
    height: 180px;
    border-radius: 120px 120px 0 0;
  }
}

@media (max-width: 575px) {
  .persona-card {
    padding: 10px;
  }

  .persona-img-box img {
    height: 160px;
    border-radius: 100px 100px 0 0;
  }

  .persona-content {
    padding: 20px 15px 25px;
  }
}

/* ---- SPECIALIZATIONS ---- */
.mba-specs {
  padding: 50px 0;
  background: var(--mba-white);
}

.spec-card {
  background: var(--mba-light);
  border-radius: var(--mba-radius);
  padding: 30px 24px;
  text-align: center;
  transition: all 0.35s;
  height: 100%;
  cursor: pointer;
  border: 1px solid var(--mba-border);
}

.spec-card:hover {
  background: var(--mba-primary);
  border-color: var(--mba-primary);
}

.spec-card .spec-icon {
  font-size: 32px;
  color: var(--mba-primary);
  margin-bottom: 14px;
  transition: all 0.35s;
}

.spec-card:hover .spec-icon {
  color: var(--mba-accent);
}

.spec-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mba-dark);
  margin-bottom: 8px;
  transition: all 0.35s;
}

.spec-card:hover h5 {
  color: #fff;
}

.spec-card p {
  font-size: 13px;
  color: var(--mba-gray);
  margin: 0;
  line-height: 1.6;
  transition: all 0.35s;
}

.spec-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}


/* ---- COURSE FEE (LIGHT) ---- */
.mba-course-fee {
  padding: 85px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  position: relative;
}

.mba-course-fee::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 200px;
  background: radial-gradient(ellipse at bottom, rgba(0, 58, 102, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.fee-tab {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 58, 102, 0.12);
  border: 1px solid var(--mba-border);
  background: #fff;
}

.fee-tab th {
  background: var(--mba-gradient);
  color: #fff;
  padding: 24px;
  text-align: center;
  font-size: 16px;
  border-bottom: 3px solid var(--mba-accent);
}

.fee-tab td {
  padding: 22px 24px;
  text-align: center;
  border-bottom: 1px solid #f1f4f9;
  color: var(--mba-dark);
  font-weight: 600;
  font-size: 15.5px;
}

.fee-tab tr:hover td {
  background: #fdfbff;
}

.fee-tab tr:last-child td {
  border-bottom: none;
  background: #f8fafc;
  font-weight: 850;
  color: var(--mba-secondary);
  font-size: 20px;
  letter-spacing: -0.5px;
}

.price-offer {
  background: linear-gradient(135deg, #fff 0%, #fff4f4 100%);
  border: 2px dashed rgba(237, 50, 55, 0.2);
  padding: 25px;
  border-radius: 18px;
  text-align: center;
  font-weight: 700;
  color: var(--mba-dark);
  box-shadow: 0 8px 25px rgba(237, 50, 55, 0.08);
}

.price-offer .original {
  text-decoration: line-through;
  color: #94a3b8;
  margin: 0 12px;
  font-size: 18px;
}

.price-offer .discounted {
  font-size: 32px;
  color: var(--mba-secondary);
  font-weight: 900;
  display: block;
  margin-top: 5px;
}

/* ---- ADMISSION PROCESS (DARK) ---- */
.mba-process {
  padding: 85px 0;
  background: linear-gradient(160deg, #0a1628 0%, #003a66 100%);
  position: relative;
  overflow: hidden;
}

.mba-process .mba-section-title h2 {
  color: #fff;
}

.mba-process .mba-section-title p {
  color: rgba(255, 255, 255, 0.6);
}

.ap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  position: relative;
}

.ap-card {
  background: #ffffff;
  border: 1px solid rgba(0, 58, 102, 0.1);
  padding: 35px 25px;
  border-radius: 24px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.ap-card:hover {
  transform: translateY(-15px) scale(1.03);
  background: #ffffff;
  border-color: var(--mba-secondary);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2), 0 0 30px rgba(237, 50, 55, 0.1);
}

.ap-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--mba-primary), #1a4f7e);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 58, 102, 0.2);
  transition: all 0.5s ease;
}

.ap-card:hover .ap-card-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, var(--mba-secondary), #ff6b6b);
  box-shadow: 0 12px 25px rgba(237, 50, 55, 0.3);
}

.ap-card-num {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(0, 58, 102, 0.08);
  transition: all 0.4s ease;
}

.ap-card:hover .ap-card-num {
  color: var(--mba-secondary);
  transform: scale(1.2);
}

.ap-card-title {
  color: var(--mba-primary);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.ap-card:hover .ap-card-title {
  color: var(--mba-secondary);
}

.ap-card-desc {
  color: #64748b;
  font-size: 13px;
  line-height: 1.4;
}

/* ---- FAQ (COLORFUL LIGHT) ---- */
.mba-faq {
  padding: 90px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.mba-faq::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(237, 50, 55, 0.04) 0%, transparent 70%);
}

.mba-faq .accordion-item {
  border: none;
  border-radius: 18px !important;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 58, 102, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #fff;
  border-left: 5px solid transparent;
}

.mba-faq .accordion-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(0, 58, 102, 0.1);
}

.mba-faq .accordion-item:nth-child(odd) {
  border-left-color: var(--mba-primary);
}

.mba-faq .accordion-item:nth-child(even) {
  border-left-color: var(--mba-secondary);
}

.mba-faq .accordion-item:nth-child(3n) {
  border-left-color: var(--mba-accent);
}

.mba-faq .accordion-button {
  padding: 24px 32px;
  font-weight: 700;
  color: var(--mba-primary);
  font-size: 17px;
  background: #fff;
  display: flex;
  align-items: center;
}

.mba-faq .accordion-button i {
  font-size: 20px;
  color: inherit;
  transition: all 0.3s ease;
}

.mba-faq .accordion-item:nth-child(odd) .accordion-button i {
  color: var(--mba-primary);
}

.mba-faq .accordion-item:nth-child(even) .accordion-button i {
  color: var(--mba-secondary);
}

.mba-faq .accordion-item:nth-child(3n) .accordion-button i {
  color: var(--mba-accent);
}

.mba-faq .accordion-button:not(.collapsed) {
  background: var(--mba-primary);
  color: #fff;
  border-left: none;
}

.mba-faq .accordion-button:not(.collapsed) i {
  color: #fff;
}

.mba-faq .accordion-body {
  padding: 28px 32px 35px;
  line-height: 1.8;
  color: #4a5568;
  background: #fff;
  font-size: 15.5px;
}

.mba-process .info-card:hover {
  box-shadow: 0 8px 28px rgba(0, 58, 102, 0.12);
  transform: translateY(-3px);
  border-color: rgba(0, 58, 102, 0.12);
}

.mba-process .info-card .heading {
  font-size: 13px;
  font-weight: 700;
  color: var(--mba-primary);
  margin-bottom: 6px;
  line-height: 1.4;
}

.mba-process .info-card .desc {
  font-size: 12px;
  color: var(--mba-gray);
  margin: 0;
  line-height: 1.5;
}

.mba-process .dot-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.mba-process .dot-stage i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mba-secondary), #ff6b6b);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  box-shadow: 0 3px 10px rgba(237, 50, 55, 0.25);
}

.mba-process .wrapper {
  padding: 6px;
}

/* Legacy process steps */
.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  position: relative;
}

.process-step {
  text-align: center;
  flex: 1;
  min-width: 180px;
  max-width: 260px;
  padding: 20px;
  position: relative;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -20px;
  width: 40px;
  height: 2px;
  background: var(--mba-border);
}

.process-step:last-child::after {
  display: none;
}

.process-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mba-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.process-step h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--mba-dark);
  margin-bottom: 6px;
}

.process-step p {
  font-size: 13px;
  color: var(--mba-gray);
  margin: 0;
  line-height: 1.55;
}

/* ---- FAQ ---- */
.mba-faq {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.mba-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--mba-border),
      transparent);
}

.mba-faq .accordion-item {
  border: 1px solid rgba(0, 58, 102, 0.08);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 58, 102, 0.04);
  transition: all 0.3s ease;
}

.mba-faq .accordion-item:hover {
  box-shadow: 0 4px 18px rgba(0, 58, 102, 0.08);
}

.mba-faq .accordion-button {
  font-weight: 600;
  font-size: 15px;
  color: var(--mba-dark);
  padding: 18px 24px;
  border-radius: 14px !important;
}

.mba-faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg,
      rgba(0, 58, 102, 0.04),
      rgba(0, 58, 102, 0.02));
  color: var(--mba-primary);
  font-weight: 700;
}

.mba-faq .accordion-button:focus {
  box-shadow: none;
}

.mba-faq .accordion-body {
  font-size: 14.5px;
  color: var(--mba-gray);
  line-height: 1.8;
  padding: 16px 24px 22px;
}

/* ---- FINAL CTA ---- */
.mba-final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg,
      #c4282d 0%,
      #ed3237 40%,
      #d4232a 70%,
      #003a66 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mba-final-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: cta-float 8s ease-in-out infinite;
}

@keyframes cta-float {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-20px, 20px);
  }
}

.mba-final-cta::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(247, 201, 72, 0.06);
}

.mba-final-cta h2 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.mba-final-cta p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.mba-final-cta .btn-cta-final {
  background: #fff;
  color: var(--mba-secondary);
  padding: 16px 48px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  letter-spacing: 0.3px;
  position: relative;
  z-index: 2;
}

.mba-final-cta .btn-cta-final:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  color: var(--mba-primary);
}

/* ---- KEY FEATURES ---- */
.mba-key-features {
  padding: 60px 0;
  background: linear-gradient(135deg,
      #003a66 0%,
      #0a2540 55%,
      #1a0a1e 80%,
      #ed3237 100%);
  position: relative;
  overflow: hidden;
}

.mba-key-features::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(247, 201, 72, 0.06);
}

.mba-key-features::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(237, 50, 55, 0.08);
}

.kf-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kf-list li {
  color: var(--mba-dark);
  font-size: 15px;
  padding: 13px 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--mba-white);
  border-radius: 10px;
  margin-bottom: 8px;
  border: 1px solid rgba(0, 58, 102, 0.08);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 58, 102, 0.04);
}

.kf-list li:hover {
  background: var(--mba-white);
  transform: translateX(4px);
  border-color: rgba(0, 58, 102, 0.15);
  box-shadow: 0 4px 14px rgba(0, 58, 102, 0.08);
}

.kf-list li i {
  color: var(--mba-secondary);
  font-size: 18px;
  flex-shrink: 0;
}

/* ---- WHO SHOULD ENROL + LEARNING EXPERIENCE ---- */
.mba-enrol-learn {
  padding: 70px 0;
  background: linear-gradient(160deg, #0a1628 0%, #003a66 50%, #0a2540 100%);
  position: relative;
  overflow: hidden;
}

.mba-enrol-learn::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.08) 0%, transparent 70%);
}

.mba-enrol-learn::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 50, 55, 0.07) 0%, transparent 70%);
}

.mba-enrol-learn .mba-section-title h2 {
  color: #fff;
}

.mba-enrol-learn .mba-section-title .title-line {
  margin: 16px auto 0;
}

/* -- Card Wrapper -- */
.el-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.el-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mba-secondary), var(--mba-accent));
}

.el-card-learn::before {
  background: linear-gradient(90deg, var(--mba-accent), #ffe082, var(--mba-accent));
}

.el-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

/* -- Card Header -- */
.el-card-header {
  padding: 32px 30px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.el-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--mba-secondary), #ff6b6b);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(237, 50, 55, 0.3);
}

.el-icon-wrap i {
  font-size: 24px;
  color: #fff;
}

.el-icon-gold {
  background: linear-gradient(135deg, var(--mba-accent), #ffe082);
  box-shadow: 0 8px 24px rgba(247, 201, 72, 0.35);
}

.el-icon-gold i {
  color: var(--mba-dark);
}

.el-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}

.el-card-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 400;
}

/* -- Card Body / Items -- */
.el-card-body {
  padding: 20px 26px 28px;
}

.el-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.el-item:last-child {
  margin-bottom: 0;
}

.el-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(6px);
  border-color: rgba(237, 50, 55, 0.25);
}

.el-card-learn .el-item:hover {
  border-color: rgba(247, 201, 72, 0.3);
}

.el-step-num {
  min-width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mba-secondary), #ff6b6b);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(237, 50, 55, 0.25);
  transition: all 0.3s ease;
}

.el-step-gold {
  background: linear-gradient(135deg, var(--mba-accent), #ffe082);
  color: var(--mba-dark);
  box-shadow: 0 4px 14px rgba(247, 201, 72, 0.3);
}

.el-item:hover .el-step-num {
  transform: scale(1.1) rotate(-3deg);
}

.el-item-content strong {
  display: block;
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.el-item-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .mba-enrol-learn {
    padding: 50px 0;
  }

  .el-card-header {
    padding: 24px 20px 16px;
  }

  .el-card-body {
    padding: 16px 18px 22px;
  }
}

/* ---- TECHNICAL SKILLS + COURSE INFO ---- */
.mba-skills-info {
  padding: 60px 0;
  background: var(--mba-white);
  position: relative;
}

.mba-skills-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent,
      var(--mba-border),
      transparent);
}

.si-heading {
  font-weight: 800;
  color: var(--mba-primary);
  font-size: 20px;
  margin-bottom: 14px;
  line-height: 1.5;
  position: relative;
  padding-bottom: 14px;
}

.si-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--mba-secondary), var(--mba-accent));
  border-radius: 4px;
}

.si-subtext {
  font-size: 14.5px;
  color: var(--mba-gray);
  margin-bottom: 20px;
  font-weight: 500;
}

/* ---- COURSE INFORMATION TABLE ---- */
.ci-info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--mba-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 58, 102, 0.08);
  border: 1px solid rgba(0, 58, 102, 0.08);
  font-size: 13.5px;
}

.ci-info-table thead tr:first-child th {
  background: linear-gradient(135deg, var(--mba-primary), #0a4d7a);
  color: #fff;
  padding: 14px 16px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  letter-spacing: 0.2px;
}

.ci-info-table thead tr:first-child th:last-child {
  border-right: none;
}

.ci-info-table thead tr:nth-child(2) th {
  background: rgba(0, 58, 102, 0.06);
  color: var(--mba-primary);
  padding: 10px 16px;
  font-weight: 600;
  text-align: center;
  font-size: 12px;
  border-right: 1px solid var(--mba-border);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ci-info-table thead tr:nth-child(2) th:last-child {
  border-right: none;
}

.ci-info-table tbody td {
  padding: 14px 16px;
  text-align: center;
  color: var(--mba-dark);
  border-bottom: 1px solid rgba(0, 58, 102, 0.06);
  border-right: 1px solid rgba(0, 58, 102, 0.06);
  font-weight: 500;
}

.ci-info-table tbody td:last-child {
  border-right: none;
}

.ci-info-table tbody tr:last-child td {
  border: 2px solid var(--mba-primary);
}

.ci-info-table tbody tr:hover td {
  background: rgba(0, 58, 102, 0.02);
}

/* ---- WHO SHOULD INVEST + LEARNING EXPERIENCE ---- */
.mba-invest-learn {
  padding: 60px 0;
  background: var(--mba-light);
}

.invest-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.invest-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  color: var(--mba-gray);
  font-size: 14.5px;
  line-height: 1.6;
  border-bottom: 1px solid var(--mba-border);
}

.invest-list li:last-child {
  border-bottom: none;
}

.invest-num {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--mba-primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.invest-note {
  background: rgba(0, 58, 102, 0.05);
  border-left: 3px solid var(--mba-primary);
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--mba-primary);
  font-weight: 500;
  border-radius: 0 8px 8px 0;
}

.invest-note i {
  margin-right: 8px;
  color: var(--mba-secondary);
}

/* ---- COURSE INFORMATION BOX ---- */
.course-info-box {
  background: var(--mba-white);
  border-radius: var(--mba-radius);
  box-shadow: var(--mba-shadow);
  overflow: hidden;
  border: 1px solid var(--mba-border);
}

.course-info-box .ci-title {
  background: var(--mba-primary);
  color: #fff;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.course-info-box .ci-table {
  width: 100%;
  border-collapse: collapse;
}

.course-info-box .ci-table tr {
  border-bottom: 1px solid var(--mba-border);
}

.course-info-box .ci-table tr:last-child {
  border-bottom: none;
}

.course-info-box .ci-table td {
  padding: 12px 20px;
  font-size: 14px;
  color: var(--mba-dark);
  vertical-align: top;
}

.course-info-box .ci-table .ci-label {
  font-weight: 600;
  color: var(--mba-primary);
  width: 140px;
  white-space: nowrap;
}

/* ---- COURSE STRUCTURE ---- */
.mba-course-structure {
  padding: 70px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
}

.mba-course-structure .accordion-item {
  border: 1px solid rgba(0, 58, 102, 0.08);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 58, 102, 0.04);
  transition: all 0.3s ease;
}

.mba-course-structure .accordion-item:hover {
  box-shadow: 0 4px 20px rgba(0, 58, 102, 0.08);
}

.mba-course-structure .accordion-button {
  font-weight: 700;
  font-size: 16px;
  color: var(--mba-primary);
  background: var(--mba-white);
  border-radius: 14px !important;
  padding: 18px 24px;
  letter-spacing: 0.2px;
}

.mba-course-structure .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--mba-primary), #0a4d7a);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 58, 102, 0.15);
}

.mba-course-structure .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.mba-course-structure .accordion-button:focus {
  box-shadow: none;
}

.mba-course-structure .accordion-body {
  padding: 20px 24px;
  font-size: 14px;
  color: var(--mba-gray);
  line-height: 1.8;
  background: #fcfcfd;
}

.mba-course-structure .bene-para {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
  transition: background 0.25s ease;
}

.mba-course-structure .bene-para:hover {
  background: rgba(0, 58, 102, 0.03);
}

.mba-course-structure .out-icon i {
  color: var(--mba-secondary);
  font-size: 15px;
  margin-top: 2px;
}

.mba-course-structure .out-lin p {
  margin: 0;
  font-size: 14px;
  color: var(--mba-dark);
  font-weight: 500;
  line-height: 1.6;
}

/* Elective Tables */
.elec-tab {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 58, 102, 0.08);
}

.elec-tab thead th {
  background: linear-gradient(135deg, var(--mba-primary), #0a4d7a);
  color: #fff;
  padding: 12px 14px;
  font-weight: 600;
  text-align: left;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.elec-tab thead th:last-child {
  border-right: none;
}

.elec-tab tbody td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(0, 58, 102, 0.06);
  border-right: 1px solid rgba(0, 58, 102, 0.06);
  color: var(--mba-dark);
  font-weight: 500;
  vertical-align: middle;
}

.elec-tab tbody td:last-child {
  border-right: none;
}

.elec-tab tbody td[rowspan] {
  background: rgba(0, 58, 102, 0.03);
  font-weight: 700;
  color: var(--mba-primary);
  font-size: 12.5px;
}

.elec-tab tbody tr:hover td {
  background: rgba(0, 58, 102, 0.02);
}

/* Legacy CS Table (keep for backward compat) */
.cs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--mba-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 58, 102, 0.06);
  border: 1px solid rgba(0, 58, 102, 0.08);
}

.cs-table thead th {
  background: linear-gradient(135deg, var(--mba-primary), #0a4d7a);
  color: #fff;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

.cs-table tbody td {
  padding: 10px 20px;
  font-size: 14px;
  color: var(--mba-dark);
  border-bottom: 1px solid var(--mba-border);
}

.cs-table tbody tr:last-child td {
  border-bottom: none;
}

.cs-table tbody tr:hover {
  background: rgba(0, 58, 102, 0.02);
}

.cs-sem-header td {
  background: rgba(0, 58, 102, 0.06) !important;
  font-weight: 700 !important;
  color: var(--mba-primary) !important;
  font-size: 14.5px !important;
}

.cs-elective {
  color: var(--mba-secondary) !important;
  font-style: italic;
}

.cs-total td {
  background: rgba(237, 50, 55, 0.05) !important;
  font-size: 16px !important;
  color: var(--mba-secondary) !important;
}

/* ---- COURSE FEE ---- */
.mba-course-fee {
  padding: 70px 0;
  background: linear-gradient(180deg, #f0f4f8 0%, #e8eef5 100%);
  position: relative;
}

/* Fee Table */
.fee-tab {
  width: 100%;
  border-collapse: collapse;
  background: var(--mba-white);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 58, 102, 0.08);
  border: 1px solid rgba(0, 58, 102, 0.08);
  font-size: 14px;
}

.fee-tab thead th {
  background: linear-gradient(135deg, var(--mba-primary), #0a4d7a);
  color: #fff;
  padding: 14px 18px;
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13.5px;
  letter-spacing: 0.2px;
}

.fee-tab thead th:first-child {
  text-align: left;
}

.fee-tab thead th:last-child {
  border-right: none;
}

.fee-tab tbody td {
  padding: 14px 18px;
  text-align: center;
  color: var(--mba-dark);
  border-bottom: 1px solid rgba(0, 58, 102, 0.06);
  border-right: 1px solid rgba(0, 58, 102, 0.06);
  font-weight: 500;
}

.fee-tab tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--mba-primary);
}

.fee-tab tbody td:last-child {
  border-right: none;
}

.fee-tab tbody tr:last-child td {
  border-bottom: none;
  background: rgba(0, 58, 102, 0.04);
  font-weight: 700;
  color: var(--mba-primary);
  font-size: 15px;
}

.fee-tab tbody tr:hover td {
  background: rgba(0, 58, 102, 0.02);
}

/* Price Offer */
.price-offer {
  text-align: center;
  padding: 20px 24px;
  background: linear-gradient(135deg,
      rgba(237, 50, 55, 0.06),
      rgba(247, 201, 72, 0.08));
  border-radius: 12px;
  border: 1px dashed rgba(237, 50, 55, 0.2);
  font-size: 15px;
  font-weight: 600;
  color: var(--mba-dark);
  max-width: 700px;
  margin: 0 auto;
}

.price-offer .original {
  text-decoration: line-through;
  color: var(--mba-gray);
  margin: 0 6px;
  font-weight: 400;
}

.price-offer .discounted {
  color: var(--mba-secondary);
  font-size: 20px;
  font-weight: 800;
  margin-left: 4px;
}

.fee-discount-note {
  padding: 16px 20px;
  background: rgba(237, 50, 55, 0.04);
  text-align: center;
  font-size: 13.5px;
  color: var(--mba-dark);
  border-top: 1px dashed rgba(237, 50, 55, 0.15);
  border-radius: 0 0 var(--mba-radius) var(--mba-radius);
  margin-top: -1px;
}

/* ---- SKILLS YOU WILL LEARN ---- */
.mba-skills {
  padding: 60px 0;
  background: var(--mba-gradient);
  position: relative;
}

.skill-card {
  text-align: center;
  padding: 30px 20px;
}

.skill-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--mba-accent);
  margin-bottom: 20px;
  transition: all 0.35s;
}

.skill-card:hover .skill-icon {
  background: rgba(255, 255, 255, 0.18);
  transform: scale(1.08);
  border-color: var(--mba-accent);
}

.skill-card h5 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.skill-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  margin: 0;
  line-height: 1.6;
}

/* ---- VISUAL RHYTHM HELPERS ---- */
.persona-card .persona-subtitle {
  font-style: italic;
  border-left: 2px solid var(--mba-accent);
  padding-left: 12px;
}

.mba-career .career-stat {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mba-career .career-stat:last-child {
  border-bottom: none;
}

/* ---- COURSE FEE TABLE ENHANCEMENTS ---- */
.fee-tab {
  font-size: 14.5px;
}

.fee-tab thead th:first-child {
  text-align: left;
  padding-left: 22px;
}

.fee-tab tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--mba-primary);
  padding-left: 22px;
  border-left: 3px solid transparent;
}

.fee-tab tbody tr:hover td:first-child {
  border-left-color: var(--mba-secondary);
}

.fee-tab tbody tr:last-child td {
  background: linear-gradient(135deg,
      rgba(0, 58, 102, 0.07),
      rgba(0, 58, 102, 0.03));
  font-weight: 800;
  color: var(--mba-primary);
  font-size: 15.5px;
  border-top: 2px solid rgba(0, 58, 102, 0.12);
}

.fee-tab tbody tr:last-child td:first-child {
  border-left: 3px solid var(--mba-secondary);
  color: var(--mba-secondary);
}

/* ---- ADMISSION PROCESS TIMELINE ---- */

/* Hide old dot-stage elements */
.mba-process .dot-stage,
.mba-process .wrapper,
.mba-process .hide-mob-viw {
  display: none !important;
}

/* Card Grid — 7 columns desktop, fills next row for steps 8–14 */
.ap-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}

.ap-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 10px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: 0 3px 16px rgba(0, 58, 102, 0.08);
  border: 1px solid rgba(0, 58, 102, 0.07);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  position: relative;
}

/* Direction arrow after each card */
.ap-card::after {
  content: "\203A";
  /* single right-pointing angle quotation mark › */
  position: absolute;
  right: -11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  font-weight: 900;
  color: var(--mba-primary);
  opacity: 0.28;
  z-index: 2;
  pointer-events: none;
  line-height: 1;
}

/* Hide arrow on last card of row 1 (7th) and row 2 (14th) */
.ap-card:nth-child(7)::after,
.ap-card:nth-child(14)::after {
  display: none;
}

.ap-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mba-primary), #1565c0);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 58, 102, 0.14);
  border-color: rgba(0, 58, 102, 0.14);
}

.ap-card:hover::before {
  opacity: 1;
}

/* Final card (step 14) — green accent */
.ap-card-final .ap-card-icon {
  background: linear-gradient(135deg, #1a7a4a, #22a06b) !important;
}

.ap-card-final::before {
  background: linear-gradient(90deg, #22a06b, #1a7a4a) !important;
}

.ap-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mba-primary) 0%, #1565c0 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 58, 102, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.ap-card:hover .ap-card-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 6px 20px rgba(0, 58, 102, 0.3);
}

.ap-card-num {
  font-size: 10px;
  font-weight: 800;
  color: var(--mba-secondary);
  background: rgba(237, 50, 55, 0.09);
  padding: 2px 9px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  line-height: 1.6;
}

.ap-card-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--mba-primary);
  line-height: 1.35;
}

.ap-card-desc {
  font-size: 10px;
  color: var(--mba-gray);
  font-style: italic;
  line-height: 1.3;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .mba-hero h1 {
    font-size: 2.1rem;
  }

  .mba-hero {
    padding: 48px 0 36px;
  }

  .mba-section-title h2 {
    font-size: 1.7rem;
  }

  .mba-final-cta {
    padding: 70px 0;
  }

  .process-step::after {
    display: none;
  }

  .process-steps {
    gap: 10px;
  }

  .mba-enrol-learn>.container>.row>div {
    padding: 28px 24px;
  }

  .mba-enrol-learn,
  .mba-skills-info,
  .mba-course-structure,
  .mba-course-fee,
  .mba-process,
  .mba-faq {
    padding: 50px 0;
  }

  .si-heading {
    font-size: 18px;
  }

  .ap-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .ap-card-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .ap-card-title {
    font-size: 10.5px;
  }

  /* Hide arrows at end of each 4-col row */
  .ap-card:nth-child(4)::after,
  .ap-card:nth-child(8)::after,
  .ap-card:nth-child(12)::after {
    display: none;
  }

  /* Show again for 7th and 14th (row ends that were hidden globally) */
  .ap-card:nth-child(7)::after {
    display: block;
  }
}

@media (max-width: 767px) {
  .mba-hero h1 {
    font-size: 1.7rem;
  }

  .mba-hero .hero-facts {
    gap: 12px;
  }

  .mba-trust .trust-items {
    gap: 20px;
  }

  .fee-card {
    margin: 0 10px;
  }

  .mba-final-cta h2 {
    font-size: 1.6rem;
  }

  .mba-final-cta .btn-cta-final {
    padding: 14px 32px;
    font-size: 15px;
  }

  .mba-career .career-stat .stat-num {
    font-size: 2.2rem;
  }

  .process-step {
    min-width: 140px;
  }

  .mba-reasons,
  .mba-audience,
  .mba-career,
  .mba-fees {
    padding: 60px 0;
  }

  .mba-enrol-learn>.container>.row>div {
    padding: 24px 20px;
    border-radius: 12px;
  }

  .kf-list li {
    font-size: 14px;
    padding: 11px 12px;
  }

  .mba-course-structure .accordion-button {
    font-size: 14.5px;
    padding: 14px 18px;
  }

  .fee-tab {
    font-size: 12.5px;
  }

  .fee-tab thead th {
    padding: 10px 10px;
    font-size: 12px;
  }

  .fee-tab tbody td {
    padding: 10px 10px;
  }

  .ci-info-table {
    font-size: 12px;
  }

  .si-heading {
    font-size: 17px;
  }

  .price-offer {
    font-size: 13.5px;
    padding: 16px 18px;
  }

  .price-offer .discounted {
    font-size: 17px;
  }

  /* Admission timeline → 2-column grid on mobile */
  .ap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ap-card {
    padding: 14px 8px 12px;
  }

  .ap-card-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 9px;
  }

  .ap-card-num {
    font-size: 9px;
  }

  .ap-card-title {
    font-size: 10.5px;
  }

  .ap-card-desc {
    font-size: 9px;
  }

  /* Hide arrows at end of every 2-col row */
  .ap-card:nth-child(even)::after {
    display: none;
  }

  /* Re-show for odd-row-end cards that were hidden in desktop/tablet */
  .ap-card:nth-child(7)::after,
  .ap-card:nth-child(4)::after,
  .ap-card:nth-child(8)::after,
  .ap-card:nth-child(12)::after {
    display: block;
  }

  .ap-card:nth-child(odd):last-child::after {
    display: none;
  }
}

/* ---- DARK CAREER ROLES ---- */
.mba-career-dark {
  padding: 85px 0;
  background: #0a1628;
  /* --mba-dark */
  position: relative;
  overflow: hidden;
}

.mba-career-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(0, 58, 102, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(237, 50, 55, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.mba-career-dark .mba-section-title h2 {
  color: #fff;
}

.career-grid-dark {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 45px;
}

.career-item-dark {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.career-item-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.career-item-dark:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.career-item-dark:hover::before {
  opacity: 1;
}

.career-item-dark .role-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: var(--mba-accent);
  transition: all 0.4s ease;
}

.career-item-dark:hover .role-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--mba-accent);
  color: #000;
  box-shadow: 0 0 20px rgba(247, 201, 72, 0.4);
}

.career-item-dark h4 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
}

.career-item-dark p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}

.career-item-dark .role-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(247, 201, 72, 0.1);
  color: var(--mba-accent);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   ADDITIONAL CLASSES FOR BBA PAGE
   ============================================ */

/* ---- COURSE INFO TABLE ---- */
.ci-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 58, 102, 0.08);
  font-size: 14px;
  margin-top: 8px;
}

.ci-info-table th {
  background: linear-gradient(135deg, var(--mba-primary), #0a2540);
  color: #fff;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.ci-info-table td {
  background: var(--mba-white);
  padding: 14px 16px;
  color: #374151;
  border-bottom: 1px solid var(--mba-border);
}

.ci-info-table tr:last-child td {
  border-bottom: none;
}

.ci-info-table tr td:first-child {
  font-weight: 700;
  color: var(--mba-primary);
}

/* ---- STANDALONE BTN-HERO-PRIMARY ---- */
.btn-hero-primary {
  background: var(--mba-secondary);
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(237, 50, 55, 0.3);
  display: inline-block;
}

.btn-hero-primary:hover {
  background: #c4282d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 50, 55, 0.35);
  color: #fff;
  text-decoration: none;
}

/* ---- FINAL CTA SECTION ---- */
.mba-final-cta {
  background: radial-gradient(circle at 20% 50%, #003a66 0%, #0a1628 60%, #050a14 100%);
  padding: 90px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mba-final-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.08) 0%, transparent 70%);
  filter: blur(40px);
}

.mba-final-cta h2 {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.mba-final-cta p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto 34px;
  line-height: 1.75;
}

.btn-cta-final {
  background: var(--mba-secondary);
  color: #fff;
  padding: 16px 44px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(237, 50, 55, 0.4);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.btn-cta-final:hover {
  background: #c4282d;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(237, 50, 55, 0.45);
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .mba-final-cta h2 {
    font-size: 1.8rem;
  }

  .ci-info-table {
    font-size: 12px;
  }

  .ci-info-table th,
  .ci-info-table td {
    padding: 10px 10px;
  }
}

/* ============================================
   BBA CAREER OPPORTUNITIES — UNIQUE MOSAIC SECTION
   ============================================ */

.bba-career-section {
  background: #f4f7fa;
  overflow: hidden;
}

/* ── Header Band ── */
.bba-career-header {
  background: linear-gradient(135deg, #003a66 0%, #0a1628 70%, #0a2540 100%);
  padding: 64px 0 60px;
  position: relative;
  overflow: hidden;
}

.bba-career-header::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 201, 72, 0.07) 0%, transparent 70%);
  filter: blur(30px);
}

.career-badge-pill {
  display: inline-block;
  background: rgba(247, 201, 72, 0.15);
  border: 1px solid rgba(247, 201, 72, 0.35);
  color: #f7c948;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.bba-career-header h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}

.career-highlight {
  color: #f7c948;
}

.bba-career-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 560px;
  margin: 0;
}

/* ── Stat Strip ── */
.career-stat-strip {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
  backdrop-filter: blur(10px);
}

.cs-stat {
  text-align: center;
  flex: 1;
}

.cs-num {
  font-size: 1.9rem;
  font-weight: 900;
  color: #f7c948;
  line-height: 1;
  letter-spacing: -1px;
}

.cs-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cs-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* ── Mosaic Grid ── */
.bba-career-grid-wrap {
  padding: 36px 0 44px;
}

.bba-career-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* ── Domain Card ── */
.career-domain-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 58, 102, 0.08);
  box-shadow: 0 4px 16px rgba(0, 58, 102, 0.06);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.career-domain-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mba-primary), var(--mba-secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.career-domain-card:hover::before {
  transform: scaleX(1);
}

.career-domain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0, 58, 102, 0.12);
  border-color: rgba(0, 58, 102, 0.12);
}

/* ── Card Icon ── */
.cdc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mba-primary), #1a4f7e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.35s ease;
  box-shadow: 0 4px 14px rgba(0, 58, 102, 0.2);
}

.cdc-icon-wrap.cdc-red {
  background: linear-gradient(135deg, #ed3237, #c4282d);
  box-shadow: 0 6px 18px rgba(237, 50, 55, 0.25);
}

.cdc-icon-wrap.cdc-gold {
  background: linear-gradient(135deg, #f7c948, #e0a800);
  color: #003a66;
  box-shadow: 0 6px 18px rgba(247, 201, 72, 0.3);
}

.career-domain-card:hover .cdc-icon-wrap {
  transform: scale(1.08) rotate(-6deg);
}

/* ── Card Title ── */
.career-domain-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--mba-primary);
  margin: 0;
  line-height: 1.3;
}

/* ── Role Tags ── */
.role-tags {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1;
}

.role-tags li {
  background: rgba(0, 58, 102, 0.05);
  border: 1px solid rgba(0, 58, 102, 0.1);
  color: var(--mba-primary);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 50px;
  transition: all 0.25s ease;
  cursor: default;
}

.career-domain-card:hover .role-tags li {
  background: rgba(0, 58, 102, 0.08);
  border-color: rgba(0, 58, 102, 0.18);
}

/* ── Card Footer ── */
.cdc-footer {
  border-top: 1px solid rgba(0, 58, 102, 0.07);
  padding-top: 14px;
  margin-top: auto;
}

.cdc-avg {
  font-size: 12px;
  color: var(--mba-gray);
  font-weight: 500;
}

.cdc-avg strong {
  color: var(--mba-primary);
}

/* ── CTA Card (6th card) ── */
.career-domain-cta {
  background: linear-gradient(135deg, #003a66 0%, #0a1628 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.career-domain-cta::before {
  background: linear-gradient(90deg, #f7c948, #ed3237);
}

.career-domain-cta h4 {
  color: #fff;
}

.career-domain-cta:hover {
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35);
}

.cdc-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #ed3237, #c4282d);
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(237, 50, 55, 0.35);
  transition: all 0.35s ease;
  margin-top: auto;
  align-self: flex-start;
}

.cdc-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(237, 50, 55, 0.45);
  color: #fff;
  text-decoration: none;
}


/* ── Responsive ── */
@media (max-width: 991px) {
  .bba-career-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }

  .career-stat-strip {
    margin-top: 32px;
    justify-content: center;
  }

  .bba-career-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .bba-career-mosaic {
    grid-template-columns: 1fr;
  }

  .cs-num {
    font-size: 1.5rem;
  }

  .bba-career-header {
    padding: 44px 0 40px;
  }
}

/* ============================================
   ENHANCED SKILLS YOU WILL LEARN SECTION
   ============================================ */
.enhanced-skills-section {
  background: linear-gradient(135deg, var(--mba-primary) 0%, #0a1628 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.enhanced-skills-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(237, 50, 55, 0.05);
  border-radius: 50%;
  top: -100px;
  right: -100px;
  filter: blur(80px);
}

.skill-card-premium {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px 30px;
  height: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.skill-card-premium:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(237, 50, 55, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.sk-icon-box {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--mba-accent) 0%, #d4a017 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #000;
  box-shadow: 0 10px 25px rgba(247, 201, 72, 0.3);
  transition: all 0.4s ease;
  margin-bottom: 5px;
}

.skill-card-premium:hover .sk-icon-box {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 15px 35px rgba(247, 201, 72, 0.4);
}

.skill-card-premium h5 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  transition: color 0.3s ease;
}

.skill-card-premium:hover h5 {
  color: var(--mba-accent);
}

/* ── Specific Icon Colors ── */
.skill-card-red .sk-icon-box {
  background: linear-gradient(135deg, #ed3237 0%, #b31d21 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(237, 50, 55, 0.3);
}

.skill-card-blue .sk-icon-box {
  background: linear-gradient(135deg, #1a4f7e 0%, #003a66 100%);
  color: #fff;
  box-shadow: 0 10px 25px rgba(0, 58, 102, 0.3);
}

/* ============================================
   ENHANCED "IS THIS PROGRAM RIGHT FOR YOU"
   ============================================ */
.right-for-you-section {
  padding: 100px 0;
  background: #f8fafc;
}

.rfy-card {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  height: 100%;
  border: 1px solid rgba(0, 58, 102, 0.05);
  box-shadow: 0 10px 30px rgba(0, 58, 102, 0.03);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.rfy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--mba-primary);
  transition: height 0.4s ease;
}

.rfy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 58, 102, 0.08);
}

.rfy-card:hover::before {
  height: 100%;
}

.rfy-icon-wrap {
  width: 60px;
  height: 60px;
  background: rgba(0, 58, 102, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--mba-primary);
  margin-bottom: 25px;
  transition: all 0.4s ease;
}

.rfy-card:hover .rfy-icon-wrap {
  background: var(--mba-primary);
  color: #fff;
  transform: scale(1.1);
}

.rfy-card h5 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--mba-primary);
  margin-bottom: 15px;
}

.rfy-card p {
  color: var(--mba-gray);
  line-height: 1.6;
  font-size: 14.5px;
  margin: 0;
}

@media (max-width: 768px) {

  .enhanced-skills-section,
  .right-for-you-section {
    padding: 70px 0;
  }
}

/* =======================================================
   ENHANCED ONLINE DEGREE CARDS & BENEFITS
   ======================================================= */

.online-program-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 58, 102, 0.06);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
}

.online-program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 58, 102, 0.12);
  border-color: var(--mba-primary);
}

.online-program-card .img-wrapper {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.online-program-card .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.online-program-card:hover .img-wrapper img {
  transform: scale(1.05);
}

.online-program-card .card-body-enhanced {
  padding: 20px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.online-program-card h4 {
  color: var(--mba-primary);
  font-weight: 800;
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}

.online-program-card p {
  color: var(--mba-gray);
  font-size: 13.5px;
  line-height: 1.5;
  margin-bottom: 0;
}

.online-program-card .btn-row {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 15px;
  flex-wrap: wrap;
}

/* UI Buttons Enhanced */
.btn-course-red {
  background: var(--mba-secondary) !important;
  color: #fff !important;
  border: none;
  padding: 12px 28px;
  font-weight: 800;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  box-shadow: 0 6px 15px rgba(237, 50, 55, 0.25);
  gap: 10px;
}

.btn-course-red:hover {
  background: #c4282d !important;
  color: #fff !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 20px rgba(237, 50, 55, 0.4);
}

.btn-brochure-blue {
  background: transparent !important;
  color: var(--mba-primary) !important;
  border: 2px solid var(--mba-primary) !important;
  padding: 11px 26px;
  font-weight: 800;
  border-radius: 50px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  gap: 8px;
}

.btn-brochure-blue:hover {
  background: var(--mba-primary) !important;
  color: #fff !important;
  transform: translateY(-3px) scale(1.03);
}

/* Benefit Cards */
.benefit-card-premium {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  height: 100%;
  border: 3px solid rgba(0, 58, 102, 0.08);
  box-shadow: 0 4px 20px rgba(0, 58, 102, 0.04);
  transition: all 0.4s ease;
  z-index: 1;
  position: relative;
}

.benefit-card-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mba-primary), var(--mba-secondary));
  border-radius: 20px 20px 0 0;
  opacity: 0;
  transition: opacity 0.4s;
}

.benefit-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 58, 102, 0.1);
  border-color: rgba(237, 50, 55, 0.2);
}

.benefit-card-premium:hover::before {
  opacity: 1;
}

.benefit-card-premium .icon-box {
  width: 76px;
  height: 76px;
  margin: 0 auto 25px;
  background: #f8fafc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--mba-primary);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.benefit-card-premium:hover .icon-box {
  background: var(--mba-primary);
  color: #fff;
  transform: rotate(360deg);
}

.benefit-card-premium h5 {
  color: var(--mba-primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.benefit-card-premium p {
  color: var(--mba-gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}