/* ==========================================================================
   EXECUTIVE MBA MASTERCLASS ULTRA-PREMIUM OVERRIDE STYLESHEET
   Target: executive-master-of-business-administration.html
   ========================================================================== */

html {
  scroll-behavior: smooth !important;
}

#past-participant-profiles,
section[id] {
  scroll-margin-top: 110px !important;
}

/* --------------------------------------------------------------------------
   1. GLOBAL RESET & COLOR TOKENS
   -------------------------------------------------------------------------- */
:root {
  --emba-navy-dark: #656398;
  --emba-navy-main: #0b132b;
  --emba-navy-card: #151e3d;
  --emba-indigo: #231f6a;

  --emba-gold: #c8a84b;
  --emba-gold-dark: #d4af37;
  --emba-gold-glow: rgba(246, 197, 1, 0.4);

  --emba-text-dark: #0f172a;
  --emba-text-body: #334155;
  --emba-text-muted: #64748b;

  --emba-bg-light: #f8fafc;
  --emba-border-light: #e2e8f0;

  --emba-shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --emba-shadow-md: 0 10px 25px -5px rgba(11, 19, 43, 0.08);
  --emba-shadow-lg: 0 20px 40px -15px rgba(11, 19, 43, 0.14);
}

body,
.boxed_wrapper {
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: var(--emba-text-body) !important;
  background-color: #ffffff !important;
  overflow-x: hidden !important;
}

/* --------------------------------------------------------------------------
   2. MAIN HEADER & STICKY ON SCROLL SYSTEM
   -------------------------------------------------------------------------- */
/* Permanently hide duplicate HTML sticky-header element */
.sticky-header,
.main-header .sticky-header,
.fixed-header .sticky-header,
.main-header.fixed-header .sticky-header {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* STRICTLY REMOVE ALL DUAL CARET SOURCES EXCEPT ONE INLINE ARROW */
/* Source 1: Remove FontAwesome CSS pseudo-element caret (:before and :after) */
.header-upper .navigation>li.dropdown>a::after,
.navigation>li.dropdown>a::after,
.header-upper .navigation>li.dropdown>a:after,
.navigation>li.dropdown>a:after,
.header-upper .navigation>li.dropdown>a::before,
.navigation>li.dropdown>a::before,
.header-upper .navigation>li.dropdown>a:before,
.navigation>li.dropdown>a:before {
  display: none !important;
  content: "" !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Source 2: Style single template dropdown-btn arrow directly inside the anchor text flow */
.header-upper .navigation li.dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
}

.header-upper .navigation li.dropdown .dropdown-btn,
.navigation li.dropdown .dropdown-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  top: 0 !important;
  right: auto !important;
  margin-left: 4px !important;
  font-size: 0.8rem !important;
  color: inherit !important;
  cursor: pointer !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.header-upper .navigation li.dropdown:hover .dropdown-btn {
  color: #ad302a !important;
  transform: rotate(180deg) !important;
  transition: transform 0.2s ease !important;
}

/* Seamless Dropdown Hover & Positioning Fix */
.header-upper .navigation li.dropdown,
.navigation li.dropdown {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  padding-bottom: 12px !important;
  margin-bottom: -12px !important;
}

/* Dropdown Container */
.header-upper .navigation li.dropdown>ul,
.navigation li.dropdown>ul {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  right: auto !important;
  margin-top: 0 !important;
  display: block !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(4px) !important;
  min-width: 250px !important;
  width: max-content !important;
  max-width: 340px !important;
  background: #ffffff !important;
  border-radius: 10px !important;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18) !important;
  border: 1px solid #e2e8f0 !important;
  padding: 8px 6px !important;
  z-index: 999999 !important;
  list-style: none !important;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
  transition-delay: 0.15s !important;
}

/* Invisible Hit-Box Bridge extending 20px above dropdown */
.header-upper .navigation li.dropdown>ul::before,
.navigation li.dropdown>ul::before {
  content: "" !important;
  position: absolute !important;
  top: -20px !important;
  left: 0 !important;
  right: 0 !important;
  height: 20px !important;
  background: transparent !important;
  display: block !important;
  z-index: 10 !important;
}

/* Hover State - Instant Open, Graceful Close */
.header-upper .navigation li.dropdown:hover>ul,
.navigation li.dropdown:hover>ul {
  visibility: visible !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  transition-delay: 0s !important;
}

/* Dropdown Menu Items */
.header-upper .navigation li.dropdown>ul>li,
.navigation li.dropdown>ul>li {
  display: block !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 0 2px 0 !important;
  border: none !important;
}

.header-upper .navigation li.dropdown>ul>li>a,
.navigation li.dropdown>ul>li>a {
  display: block !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  color: #0f172a !important;
  text-decoration: none !important;
  white-space: normal !important;
  word-break: normal !important;
  line-height: 1.4 !important;
  border-radius: 6px !important;
  transition: all 0.2s ease !important;
}

.header-upper .navigation li.dropdown>ul>li>a:hover,
.navigation li.dropdown>ul>li>a:hover {
  background: #f1f5f9 !important;
  color: #656398 !important;
}

/* Main Header Base */
.main-header {
  position: relative !important;
  background: #ffffff !important;
  z-index: 9990 !important;
  transition: padding-top 0.1s linear !important;
}

/* Top Header Contact Bar Visible at Top of Page */
.header-top {
  display: block !important;
  background: linear-gradient(135deg, #656398 0%, #151e3d 100%) !important;
  padding: 6px 0 !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
}

.header-top a {
  color: #ffffff !important;
}

/* Header Upper Normal Position when at Top of Page */
.header-upper {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  width: 100% !important;
  background: #ffffff !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04) !important;
  z-index: 995 !important;
  transition: all 0.3s ease !important;
}

/* Sticky Header ONLY When Scrolled (.emba-is-sticky added by JS) */
.main-header.emba-is-sticky .header-top {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 100000 !important;
}

.main-header.emba-is-sticky .header-upper {
  position: fixed !important;
  top: var(--top-height, 37px) !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12) !important;
}

.main-header.emba-is-sticky {
  padding-top: calc(var(--top-height, 37px) + var(--upper-height, 80px)) !important;
}

.section-tabs {
  top: calc(var(--top-height, 0px) + var(--upper-height, 80px)) !important;
}

.header-upper .outer-box {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
}

.header-upper .navigation {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  gap: 6px !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
}

.header-upper .navigation>li {
  display: inline-flex !important;
  align-items: center !important;
  white-space: nowrap !important;
  position: relative !important;
  margin: 0 !important;
}

.header-upper .navigation>li>a {
  padding: 8px 10px !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  word-break: keep-all !important;
}

.header-upper .navigation>li.current>a,
.header-upper .navigation>li>a:hover {
  color: #ad302a !important;
}

/* Header Buttons */
.header-upper .navigation>a.btn,
.header-upper .navigation>a.btn-warning {
  margin: 0 0 0 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  background: #c8a84b !important;
  color: #000000 !important;
  border: none !important;
  box-shadow: 0 2px 8px rgba(246, 197, 1, 0.3) !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

.header-upper .navigation>a.btn:hover,
.header-upper .navigation>a.btn-warning:hover {
  transform: translateY(-2px) !important;
  background: #e5b700 !important;
  box-shadow: 0 4px 14px rgba(246, 197, 1, 0.45) !important;
  color: #000000 !important;
}

/* WhatsApp Header Button (Circular Icon Button after Working Professionals Button) */
.header-upper .navigation>a.btn-whatsapp,
.btn-whatsapp,
a.btn-whatsapp {
  margin: 0 0 0 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  background: #25D366 !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  vertical-align: middle !important;
}

.header-upper .navigation>a.btn-whatsapp:hover,
.btn-whatsapp:hover,
a.btn-whatsapp:hover {
  transform: scale(1.1) translateY(-2px) !important;
  background: #128C7E !important;
  color: #ffffff !important;
  box-shadow: 0 5px 16px rgba(37, 211, 102, 0.6) !important;
}

.header-upper .navigation>a.btn-whatsapp i,
.btn-whatsapp i,
a.btn-whatsapp i {
  font-size: 1.25rem !important;
  color: #ffffff !important;
  line-height: 1 !important;
  margin: 0 !important;
}

/* Reset margin for top announcement bar so top bar & header display naturally */
section.emba-announcement-bar,
section[style*="background-color: #545287"] {
  margin-top: 0 !important;
}

/* --------------------------------------------------------------------------
   3. TOP ANNOUNCEMENT BAR OVERRIDES
   -------------------------------------------------------------------------- */
section.emba-announcement-bar,
section[style*="background-color: #545287"] {
  background: linear-gradient(135deg, #656398 0%, #151e3d 100%) !important;
  border-bottom: 2px solid var(--emba-gold) !important;
  padding: 12px 0 !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
}

section.emba-announcement-bar .text-left,
section[style*="background-color: #545287"] .text-left {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}


section.emba-announcement-bar .btn-warning,
section[style*="background-color: #545287"] .btn-warning {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  font-weight: 800 !important;
  font-size: 0.85rem !important;
  border: none !important;
  border-radius: 30px !important;
  padding: 7px 22px !important;
  box-shadow: 0 4px 14px rgba(246, 197, 1, 0.35) !important;
  transition: all 0.3s ease !important;
}

/* --------------------------------------------------------------------------
   4. UNCROPPED HERO BANNER & OVERLAY FORM
   -------------------------------------------------------------------------- */
#bg-image,
.slider-image,
.emba-hero-container {
  /* background: #656398 !important; */
  position: relative !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  min-height: auto !important;
  height: auto !important;
  overflow: hidden !important;
  display: block !important;
}

/* Full Width Uncropped Banner Image (Exact Aspect Ratio 1920x700) */
.emba-banner-img {
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  aspect-ratio: 1920 / 700 !important;
}

/* Form Overlay Positioned on Right Side Over Banner */
@media (min-width: 992px) {
  .emba-banner-overlay-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 100% !important;
    max-width: 1200px !important;
    z-index: 10 !important;
    pointer-events: none !important;
  }

  .emba-banner-form-col {
    pointer-events: auto !important;
  }

  /* Compact & unclipped form styling */
  .emba-banner-form-col .form-pad>div,
  .emba-banner-form-col div[style*="background:#fff"] {
    padding: 14px 18px !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35) !important;
  }

  .emba-banner-form-col .title {
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
  }

  .emba-banner-form-col .form-group {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
    margin-bottom: 0 !important;
  }

  .emba-banner-form-col .form-control {
    padding: 5px 8px !important;
    font-size: 0.8rem !important;
    height: 36px !important;
    min-height: 36px !important;
    line-height: 1.2 !important;
    border-radius: 8px !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .emba-banner-form-col select.form-control {
    padding: 2px 6px !important;
    font-size: 0.78rem !important;
  }

  .emba-banner-form-col p {
    font-size: 0.8rem !important;
    margin-bottom: 6px !important;
    line-height: 1.25 !important;
  }

  .emba-banner-form-col p br {
    display: none !important;
  }

  .emba-banner-form-col #submitBtn {
    padding: 7px 28px !important;
    font-size: 0.88rem !important;
    margin-bottom: 0 !important;
  }
}

@media (max-width: 991px) {
  .emba-banner-overlay-container {
    position: relative !important;
    padding-top: 20px !important;
    padding-bottom: 30px !important;
    background: #656398 !important;
  }
}

.slider-content {
  background: transparent !important;
  width: 100% !important;
  height: 100% !important;
}

.form-pad>div,
.emba-form-card {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 24px !important;
  padding: 34px 28px !important;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.5) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.9) !important;
}

.form-pad .title {
  color: var(--emba-navy-main) !important;
  font-size: 1.55rem !important;
  font-weight: 900 !important;
  margin-bottom: 22px !important;
}

.form-pad .form-control {
  border-radius: 10px !important;
  border: 1.5px solid #cbd5e1 !important;
  padding: 11px 15px !important;
  font-size: 0.9rem !important;
  color: var(--emba-text-dark) !important;
  background-color: #f8fafc !important;
  transition: all 0.25s ease !important;
}

.form-pad .form-control:focus {
  background-color: #ffffff !important;
  border-color: #2563eb !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15) !important;
  outline: none !important;
}

.form-pad #submitBtn,
.form-contact button[type="submit"] {
  background: linear-gradient(135deg, var(--emba-indigo) 0%, #312e81 100%) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  letter-spacing: 0.04em !important;
  padding: 10px !important;
  border-radius: 40px !important;
  border: none !important;
  box-shadow: 0 10px 25px -5px rgba(35, 31, 106, 0.4) !important;
  transition: all 0.3s ease !important;
  width: 70% !important;
}

.form-pad #submitBtn:hover,
.form-contact button[type="submit"]:hover {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 14px 28px -5px rgba(246, 197, 1, 0.5) !important;
}

/* --------------------------------------------------------------------------
   5. APPLICATION COUNTDOWN TIMER OVERRIDES
   -------------------------------------------------------------------------- */
.cd-timer-section {
  background: linear-gradient(135deg, #656398 0%, #151e3d 100%) !important;
  padding: 22px 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.cd-digit {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1.5px solid rgba(246, 197, 1, 0.4) !important;
  border-radius: 12px !important;
  color: var(--emba-gold) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25) !important;
  min-width: 52px !important;
  height: 52px !important;
  font-weight: 900 !important;
  font-size: 1.7rem !important;
}

.cd-cta {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  font-weight: 900 !important;
  font-size: 0.95rem !important;
  padding: 12px 34px !important;
  border-radius: 40px !important;
  box-shadow: 0 4px 18px rgba(246, 197, 1, 0.45) !important;
  transition: all 0.3s ease !important;
}

/* --------------------------------------------------------------------------
   6. STICKY SECTION NAVIGATION TABS - COLUMN BOX CARDS DESIGN
   -------------------------------------------------------------------------- */
.section-tabs {
  background: #f8fafc !important;
  border-top: 1px solid #cbd5e1 !important;
  border-bottom: 1px solid #cbd5e1 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08) !important;
  padding: 10px 0 !important;
  position: sticky !important;
  top: 60px !important;
  z-index: 99 !important;
}

.section-tabs__inner {
  background: transparent !important;
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  max-width: 1450px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: thin !important;
  -webkit-overflow-scrolling: touch !important;
}

.section-tab {
  display: inline-flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 10px 16px !important;
  border-radius: 12px !important;
  background: #ffffff !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  text-decoration: none !important;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.05) !important;
  white-space: nowrap !important;
  text-align: center !important;
  flex-shrink: 0 !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.section-tabs__inner a img,
.section-tab img {
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  object-fit: contain !important;
  margin: 0 auto !important;
  display: block !important;
  filter: brightness(0) saturate(100%) invert(15%) sepia(60%) saturate(3000%) hue-rotate(225deg) brightness(90%) !important;
  transition: transform 0.25s ease, filter 0.25s ease !important;
}

.section-tab p {
  margin: 0 !important;
  padding: 0 !important;
  color: #0f172a !important;
  font-weight: 800 !important;
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
  display: block !important;
  text-align: center !important;
  letter-spacing: -0.01em !important;
}

.section-tab:hover {
  background: #ffffff !important;
  border-color: var(--emba-indigo) !important;
  color: var(--emba-indigo) !important;
  box-shadow: 0 8px 22px rgba(35, 31, 106, 0.18) !important;
  transform: translateY(-3px) !important;
}

.section-tab:hover p {
  color: var(--emba-indigo) !important;
}

.section-tab:hover img {
  transform: scale(1.12) !important;
}

.section-tab.active,
.section-tab.new-tab {
  background: linear-gradient(135deg, #1e1b4b 0%, #231f6a 100%) !important;
  border-color: #231f6a !important;
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(35, 31, 106, 0.35) !important;
  transform: translateY(-3px) !important;
}

.section-tab.active p,
.section-tab.new-tab p {
  color: #ffffff !important;
}

.section-tab.active img,
.section-tab.new-tab img {
  filter: brightness(0) invert(1) !important;
}

/* --------------------------------------------------------------------------
   7. PROGRAMME FEATURES / QUICK STATS BAR
   -------------------------------------------------------------------------- */
.programme-features {
  background: linear-gradient(135deg, #656398 0%, #151e3d 100%) !important;
  padding: 0px 0 !important;
  border-top: 3px solid var(--emba-gold) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.programme-features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(246, 197, 1, 0.07) 0%, transparent 75%);
  pointer-events: none;
}

.programme-features-row {
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.feature-wrapper {
  display: flex !important;
  align-items: center !important;
  padding: 12px 24px !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  position: relative !important;
  z-index: 1 !important;
}

.feature-wrapper:last-child {
  border-right: none !important;
}

.calender-image-wrap {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  border-radius: 16px !important;
  background: rgba(246, 197, 1, 0.12) !important;
  border: 1.5px solid rgba(246, 197, 1, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin-right: 16px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  transition: all 0.3s ease !important;
}

.feature-wrapper:hover .calender-image-wrap {
  background: var(--emba-gold) !important;
  transform: scale(1.05) !important;
}

.feature-wrapper:hover .calender-image-wrap img {
  filter: brightness(0) !important;
}

.calender-image-wrap p {
  margin: 0 !important;
  padding: 0 !important;
}

.calender-image-wrap img {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

.feature-wrapper .head-text {
  color: var(--emba-gold) !important;
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  display: block !important;
  margin-bottom: 3px !important;
}

.feature-wrapper .main-text {
  color: #ffffff !important;
  font-size: 1.35rem !important;
  font-weight: 900 !important;
  display: block !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
}

/* --------------------------------------------------------------------------
   8. MAIN FOOTER & FLOATING BUTTON OVERRIDES (DARK THEME MATCHING HOME PAGE)
   -------------------------------------------------------------------------- */
.main-footer {
  background: #0f1738 !important;
  color: #ffffff !important;
  border-top: 4px solid var(--emba-gold) !important;
  padding-top: 50px !important;
  padding-bottom: 25px !important;
  position: relative !important;
}

.main-footer .widget-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  padding-bottom: 40px !important;
}

.main-footer .widget-title h3 {
  color: #ffffff !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
}

.main-footer .links-widget .links-list li {
  margin-bottom: 8px !important;
}

.main-footer .links-widget .links-list li a {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
}

.main-footer .links-widget .links-list li a:hover {
  color: #c8a84b !important;
  padding-left: 4px !important;
}

.main-footer .contact-widget .info-list li {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.95rem !important;
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
}

.main-footer .contact-widget .info-list li a {
  color: #ffffff !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  transition: color 0.25s ease !important;
}

.main-footer .contact-widget .info-list li a:hover {
  color: #c8a84b !important;
}

.footer-social li a {
  width: 38px !important;
  height: 38px !important;
  line-height: 36px !important;
  font-size: 15px !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  text-align: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.footer-social li a:hover {
  background: #c8a84b !important;
  border-color: #c8a84b !important;
  color: #0f1738 !important;
  transform: translateY(-3px) !important;
}

.footer-bottom {
  border-top: none !important;
  padding-top: 20px !important;
  padding-bottom: 0 !important;
}

.footer-bottom .bottom-inner p {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.88rem !important;
  margin: 0 !important;
  padding: 0 !important;
}

.float-btn-rght .btn-primary {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  font-weight: 900 !important;
  border: none !important;
  box-shadow: 0 8px 24px rgba(246, 197, 1, 0.45) !important;
}

/* --------------------------------------------------------------------------
   9. ULTRA-PREMIUM COURSE ELIGIBILITY CARD DESIGN
   -------------------------------------------------------------------------- */
.emba-eligibility-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 32px 30px !important;
  margin-top: 30px !important;
  margin-bottom: 25px !important;
  box-shadow: 0 15px 40px -10px rgba(11, 19, 43, 0.08) !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.emba-eligibility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #231f6a 0%, #c8a84b 50%, #231f6a 100%);
}

.emba-eligibility-header {
  margin-bottom: 24px !important;
}

.emba-badge {
  display: inline-block !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #c8a84b !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}

.emba-badge i {
  display: none !important;
}

div:has(> .emba-badge) {
  margin-bottom: 4px !important;
}

.emba-eligibility-title {
  font-size: 1.75rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.emba-eligibility-title span {
  color: #231f6a !important;
}

.emba-eligibility-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.emba-eligibility-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 16px 20px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.emba-eligibility-item:hover {
  background: #ffffff !important;
  border-color: rgba(35, 31, 106, 0.3) !important;
  box-shadow: 0 8px 24px rgba(35, 31, 106, 0.08) !important;
  transform: translateY(-2px) !important;
}

.emba-eligibility-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  border-radius: 12px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  box-shadow: 0 4px 12px rgba(35, 31, 106, 0.25) !important;
  transition: transform 0.3s ease !important;
}

.emba-eligibility-item:hover .emba-eligibility-icon {
  transform: scale(1.08) rotate(3deg) !important;
}

.emba-eligibility-text h4 {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #656398 !important;
  margin-bottom: 4px !important;
  line-height: 1.3 !important;
}

.emba-eligibility-text p {
  font-size: 0.9rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.emba-eligibility-text p strong {
  color: #0f172a !important;
  font-weight: 700 !important;
}

.emba-eligibility-footer {
  margin-top: 24px !important;
  padding-top: 16px !important;
  border-top: 1px dashed #e2e8f0 !important;
}

.emba-eligibility-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  padding: 12px 28px !important;
  border-radius: 40px !important;
  text-decoration: none !important;
  box-shadow: 0 6px 20px rgba(35, 31, 106, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.emba-eligibility-btn i {
  color: #c8a84b !important;
}

.emba-eligibility-btn .icon-arrow {
  font-size: 0.8rem !important;
  transition: transform 0.25s ease !important;
}

.emba-eligibility-btn:hover {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  box-shadow: 0 8px 25px rgba(246, 197, 1, 0.45) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

.emba-eligibility-btn:hover i {
  color: #000000 !important;
}

.emba-eligibility-btn:hover .icon-arrow {
  transform: translateX(4px) !important;
}

/* --------------------------------------------------------------------------
   10. ULTRA-PREMIUM COURSE STRUCTURE & ACCORDION SYSTEM
   -------------------------------------------------------------------------- */
#course-structure {
  margin-bottom: 25px !important;
}

#course-structure h2,
.size-24.pb-4.pt-4,
.size-24 {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  position: relative !important;
  display: inline-block !important;
  padding-bottom: 10px !important;
  margin-bottom: 20px !important;
}

#course-structure h2::after {
  /* content: ''; */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: #c8a84b;
  border-radius: 2px;
}

/* Accordion Buttons (Area, Term 1, Term 2, Term 3, Term 4, Term 5, Term 6) */
.accordion1 {
  background: linear-gradient(135deg, #656398 0%, #151e3d 100%) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(246, 197, 1, 0.35) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(101, 99, 152, 0.15) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  cursor: pointer !important;
  margin-bottom: 8px !important;
  width: 100% !important;
  text-decoration: none !important;
}

.accordion1::after {
  font-family: "Font Awesome 5 Free" !important;
  content: '\f107' !important;
  font-weight: 900 !important;
  color: #c8a84b !important;
  font-size: 1rem !important;
  transition: transform 0.3s ease !important;
  float: none !important;
  margin-left: 10px !important;
}

.accordion1.active1,
.accordion1:hover {
  background: linear-gradient(135deg, #151e3d 0%, #231f6a 100%) !important;
  border-color: #c8a84b !important;
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(35, 31, 106, 0.3) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

.accordion1.active1::after {
  transform: rotate(180deg) !important;
  color: #c8a84b !important;
}

/* Accordion Expandable Panel */
.panel {
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 14px !important;
  padding: 10px 14px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06) !important;
  margin-bottom: 20px !important;
}

/* Subject & Credit Tables */
.panel table.table,
.panel table.table-bordered {
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  width: 100% !important;
}

.panel table th {
  background: #f8fafc !important;
  color: #231f6a !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  padding: 10px 12px !important;
  border: none !important;
  border-bottom: 2px solid #e2e8f0 !important;
}

.panel table td {
  padding: 10px 12px !important;
  font-size: 0.88rem !important;
  color: #0f172a !important;
  font-weight: 600 !important;
  border: none !important;
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle !important;
  transition: background 0.2s ease !important;
}

.panel table tr:last-child td {
  border-bottom: none !important;
}

.panel table tr:hover td {
  background: #f8fafc !important;
}

/* Total Credits Summary Bar Overrides */
.col-12.mt-4>div[style*="background-color: #dbdbdb"],
.col-12.mt-4>div {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  border: 1px solid #c8a84b !important;
  border-radius: 30px !important;
  padding: 8px 24px !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  box-shadow: 0 4px 15px rgba(14, 28, 58, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  width: fit-content !important;
  max-width: max-content !important;
  margin: 15px auto 0 auto !important;
}

.col-12.mt-4>div b,
.col-12.mt-4>div strong {
  color: #c8a84b !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
}

.col-12.mt-4>div::before {
  display: none !important;
  content: none !important;
}

/* --------------------------------------------------------------------------
   12. ULTRA-PREMIUM KEY BENEFITS SECTION (LIGHT THEME, 4 CARDS)
   -------------------------------------------------------------------------- */
.emba-benefits-section {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 45px 30px !important;
  /* margin-top: 35px !important; */
  /* margin-bottom: 35px !important; */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.emba-benefits-title {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  margin-top: 6px !important;
  margin-bottom: 25px !important;
}

.emba-benefits-title span {
  color: #231f6a !important;
}

.emba-benefit-card {
  position: relative !important;
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 32px 24px 28px 24px !important;
  height: 100% !important;
  box-shadow: 0 10px 30px rgba(14, 28, 58, 0.06) !important;
  border: 1px solid #e2e8f0 !important;
  border-top: 4px solid #c8a84b !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  overflow: hidden !important;
}

.emba-benefit-card::before {
  display: none !important;
}

.emba-benefit-card:hover {
  background: #ffffff !important;
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 40px rgba(14, 28, 58, 0.12) !important;
  border-color: #e2e8f0 !important;
  border-top-color: #1e3158 !important;
}

.emba-benefit-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  border-radius: 12px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.25rem !important;
  margin-bottom: 20px !important;
  box-shadow: 0 4px 14px rgba(30, 49, 88, 0.2) !important;
  flex-shrink: 0 !important;
  transition: transform 0.3s ease !important;
}

.emba-benefit-card:hover .emba-benefit-icon {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  box-shadow: 0 4px 14px rgba(30, 49, 88, 0.2) !important;
  transform: scale(1.08) !important;
}

.emba-benefit-card h4 {
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: #0e1c3a !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}

.emba-benefit-card p {
  font-size: 0.92rem !important;
  color: #334155 !important;
  line-height: 1.6 !important;
  margin: 0 !important;
  flex-grow: 1 !important;
}

/* --------------------------------------------------------------------------
   13. ULTRA-PREMIUM PROGRAM FRAMEWORK (FULL SECTION LIGHT THEME & GEOMETRIC BG)
   -------------------------------------------------------------------------- */
.emba-framework-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%) !important;
  padding: 60px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.emba-framework-container {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  position: relative !important;
}

/* Full Section Geometric Background Accents */
.emba-geo-shape {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.emba-geo-circle-1 {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 31, 106, 0.05) 0%, rgba(35, 31, 106, 0) 70%);
  top: -120px;
  right: -100px;
}

.emba-geo-circle-2 {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px dashed rgba(246, 197, 1, 0.3);
  bottom: -80px;
  left: 10%;
}

.emba-geo-diamond {
  width: 180px;
  height: 180px;
  border: 1.5px solid rgba(35, 31, 106, 0.08);
  transform: rotate(45deg);
  top: 10%;
  right: 12%;
  border-radius: 20px;
}

.emba-geo-grid-pattern {
  width: 250px;
  height: 250px;
  bottom: 10px;
  right: 5%;
  background-image: radial-gradient(rgba(35, 31, 106, 0.12) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
  opacity: 0.7;
}

/* Media Side (Left) */
.emba-framework-media {
  position: relative !important;
  z-index: 2 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 35px rgba(101, 99, 152, 0.12) !important;
}

.emba-framework-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.emba-framework-media:hover .emba-framework-img {
  transform: scale(1.03) !important;
}

.emba-framework-badge {
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
  background: rgba(101, 99, 152, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  color: #ffffff !important;
  padding: 10px 18px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(246, 197, 1, 0.4) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

.emba-framework-badge i {
  color: #c8a84b !important;
  font-size: 1rem !important;
}

/* Content Side (Right) */
.emba-framework-content {
  position: relative !important;
  z-index: 2 !important;
  padding-left: 10px !important;
}

.emba-framework-title {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  margin-bottom: 24px !important;
}

.emba-framework-title span {
  color: #231f6a !important;
}

.emba-framework-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.emba-framework-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  transition: all 0.25s ease !important;
}

.emba-framework-item:hover {
  border-color: rgba(35, 31, 106, 0.3) !important;
  box-shadow: 0 6px 18px rgba(35, 31, 106, 0.06) !important;
  transform: translateX(4px) !important;
}

.emba-framework-check {
  width: 26px !important;
  height: 26px !important;
  min-width: 26px !important;
  border-radius: 50% !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.72rem !important;
  margin-top: 2px !important;
  box-shadow: 0 3px 8px rgba(35, 31, 106, 0.2) !important;
}

.emba-framework-item p {
  font-size: 0.88rem !important;
  color: #334155 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

.emba-framework-item p strong {
  color: #0f172a !important;
  font-weight: 700 !important;
}

/* --------------------------------------------------------------------------
   14. ULTRA-PREMIUM COURSE OBJECTIVES SECTION
   -------------------------------------------------------------------------- */
.emba-objectives-section {
  background: #ffffff !important;
  padding: 50px 0 !important;
}

.emba-objectives-title {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  margin-top: 6px !important;
  margin-bottom: 25px !important;
}

.emba-objectives-title span {
  color: #231f6a !important;
}

.emba-objective-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 24px 24px !important;
  height: 100% !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.emba-objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #231f6a 0%, #c8a84b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.emba-objective-card:hover {
  background: #ffffff !important;
  border-color: rgba(35, 31, 106, 0.3) !important;
  box-shadow: 0 15px 35px -5px rgba(35, 31, 106, 0.12) !important;
  transform: translateY(-4px) !important;
}

.emba-objective-card:hover::before {
  opacity: 1;
}

.emba-objective-icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  border-radius: 14px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  font-size: 1.25rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 16px rgba(35, 31, 106, 0.25) !important;
  transition: transform 0.35s ease !important;
}

.emba-objective-card:hover .emba-objective-icon {
  transform: scale(1.1) rotate(4deg) !important;
}

.emba-objective-body h4 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #656398 !important;
  margin-bottom: 6px !important;
  line-height: 1.35 !important;
}

.emba-objective-body p {
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* --------------------------------------------------------------------------
   15. ULTRA-PREMIUM LEARNING OUTCOMES SECTION (3-COLUMN EXECUTIVE PILLARS)
   -------------------------------------------------------------------------- */
.emba-outcomes-section {
  background: #f8fafc !important;
  padding: 55px 0 !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.emba-outcomes-title {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.emba-outcomes-title span {
  color: #231f6a !important;
}

.emba-outcomes-subtitle {
  font-size: 0.92rem !important;
  color: #64748b !important;
  margin: 0 !important;
}

.emba-outcome-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 30px 24px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  position: relative !important;
  overflow: hidden !important;
}

.emba-outcome-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #231f6a 0%, #c8a84b 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.emba-outcome-card:hover {
  border-color: rgba(35, 31, 106, 0.3) !important;
  box-shadow: 0 18px 40px -10px rgba(35, 31, 106, 0.12) !important;
  transform: translateY(-5px) !important;
}

.emba-outcome-card:hover::before {
  opacity: 1;
}

.emba-outcome-top {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 20px !important;
}

.emba-outcome-icon {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  border-radius: 16px !important;
  background: rgba(35, 31, 106, 0.06) !important;
  color: #231f6a !important;
  font-size: 1.35rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.35s ease !important;
}

.emba-outcome-card:hover .emba-outcome-icon {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  box-shadow: 0 8px 20px rgba(35, 31, 106, 0.25) !important;
  transform: scale(1.08) rotate(3deg) !important;
}

.emba-outcome-num {
  font-size: 1.6rem !important;
  font-weight: 900 !important;
  color: #cbd5e1 !important;
  line-height: 1 !important;
  letter-spacing: -0.02em !important;
  transition: color 0.3s ease !important;
}

.emba-outcome-card:hover .emba-outcome-num {
  color: #231f6a !important;
}

.emba-outcome-card h4 {
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #656398 !important;
  margin-bottom: 8px !important;
  line-height: 1.35 !important;
}

.emba-outcome-card p {
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* --------------------------------------------------------------------------
   16. PREMIUM FEE STRUCTURE SECTION V2
   -------------------------------------------------------------------------- */
.emba-fee-section-v2 {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f1f5f9 100%) !important;
  padding: 60px 0 !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Geometric Background Shapes */
.emba-fee-geo {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.emba-fee-geo-1 {
  width: 320px !important;
  height: 320px !important;
  top: -80px !important;
  right: -60px !important;
  background: radial-gradient(circle, rgba(35, 31, 106, 0.06) 0%, transparent 70%) !important;
}

.emba-fee-geo-2 {
  width: 200px !important;
  height: 200px !important;
  bottom: 40px !important;
  left: -60px !important;
  background: radial-gradient(circle, rgba(246, 197, 1, 0.08) 0%, transparent 70%) !important;
}

.emba-fee-geo-3 {
  width: 140px !important;
  height: 140px !important;
  top: 50% !important;
  right: 10% !important;
  background: radial-gradient(circle, rgba(35, 31, 106, 0.04) 0%, transparent 70%) !important;
}

.emba-fee-section-v2 .container {
  position: relative !important;
  z-index: 1 !important;
}

/* Fee Intro */
.emba-fee-intro {
  font-size: 0.92rem !important;
  color: #334155 !important;
  line-height: 1.65 !important;
  margin-top: 4px !important;
  margin-bottom: 28px !important;
}

/* Fee Table Card V2 */
.emba-fee-table-v2 {
  background: #ffffff !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 8px 32px rgba(35, 31, 106, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04) !important;
  border: 1px solid rgba(35, 31, 106, 0.08) !important;
}

/* Banner Header Row */
.emba-fee-banner-header {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  padding: 16px !important;
  letter-spacing: 0.03em !important;
  text-transform: none !important;
}

/* Grand Total Row */
.emba-fee-grand-total-row {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
}

.emba-fee-grand-total-row td {
  color: #c8a84b !important;
  font-size: 1.05rem !important;
  font-weight: 900 !important;
  padding: 16px !important;
  border: none !important;
}

/* Fee Guidelines Card */
.emba-fee-guidelines-card {
  background: #ffffff !important;
  border: 1px solid rgba(35, 31, 106, 0.08) !important;
  border-radius: 18px !important;
  padding: 28px 30px !important;
  box-shadow: 0 6px 24px rgba(35, 31, 106, 0.06) !important;
}

/* EMI Highlight */
.emba-fee-emi-highlight {
  font-size: 0.92rem !important;
  color: #d32f2f !important;
  font-weight: 700 !important;
  margin-bottom: 16px !important;
}

/* Guideline List */
.emba-fee-guideline-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.emba-fee-guideline-list>li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  font-size: 0.9rem !important;
  color: #334155 !important;
  line-height: 1.6 !important;
}

.emba-fee-guideline-list>li>i {
  color: #c8a84b !important;
  font-size: 0.7rem !important;
  margin-top: 6px !important;
  min-width: 14px !important;
}

/* Sub List (Campus Immersion) */
.emba-fee-sub-list {
  list-style: circle !important;
  padding-left: 20px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
}

.emba-fee-sub-list li {
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
}

/* Total Footer */
.emba-fee-total-footer {
  font-size: 0.95rem !important;
  color: #656398 !important;
  font-weight: 800 !important;
  margin-top: 20px !important;
  padding-top: 16px !important;
  border-top: 1px dashed #e2e8f0 !important;
}



/* --------------------------------------------------------------------------
   17. ULTRA-PREMIUM ADMISSION PROCESS SECTION (OPEN POINTER LIST)
   -------------------------------------------------------------------------- */
.emba-admission-section {
  background: #ffffff !important;
  padding: 55px 0 !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.emba-admission-title {
  font-size: 1.85rem !important;
  font-weight: 900 !important;
  color: #656398 !important;
  margin-top: 6px !important;
  margin-bottom: 20px !important;
}

.emba-admission-title span {
  color: #231f6a !important;
}

/* Pointer Blocks (No Boxes) */
.emba-admission-pointers {
  display: flex !important;
  flex-direction: column !important;
  gap: 24px !important;
}

.emba-pointer-block {
  padding-bottom: 22px !important;
  border-bottom: 1px dashed #e2e8f0 !important;
}

.emba-pointer-block:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}

.emba-pointer-heading {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #656398 !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.emba-heading-icon {
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 10px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  font-size: 0.95rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(35, 31, 106, 0.25) !important;
}

.emba-heading-icon i {
  color: #c8a84b !important;
}

/* Info Cards (Eligibility & Weightage) */
.emba-admission-info-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 28px 26px !important;
  height: 100% !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
}

.emba-info-card-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #656398 !important;
  margin-bottom: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.emba-info-card-title i {
  color: #231f6a !important;
}

.emba-eligibility-table {
  width: 100% !important;
}

.emba-eligibility-table thead th {
  background: #231f6a !important;
  color: #ffffff !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  padding: 12px 14px !important;
  border: none !important;
}

.emba-eligibility-table tbody td {
  padding: 12px 14px !important;
  font-size: 0.86rem !important;
  border-color: #f1f5f9 !important;
}

.emba-progress {
  height: 10px !important;
  border-radius: 10px !important;
  background: #e2e8f0 !important;
  overflow: hidden !important;
}

.emba-progress-bar {
  background: linear-gradient(90deg, #231f6a 0%, #151e3d 100%) !important;
  border-radius: 10px !important;
}

.emba-progress-bar.gold {
  background: linear-gradient(90deg, #c8a84b 0%, #d9a700 100%) !important;
}

/* Pointer Lists */
.emba-clean-bullet-list {
  list-style: disc !important;
  padding-left: 24px !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.emba-clean-bullet-list li {
  font-size: 0.9rem !important;
  color: #334155 !important;
  line-height: 1.6 !important;
}

/* --------------------------------------------------------------------------
   18. PREMIUM FAQ SECTION
   -------------------------------------------------------------------------- */
.emba-faq-section {
  background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 50%, #f8fafc 100%) !important;
  padding: 60px 0 70px !important;
  position: relative !important;
  overflow: hidden !important;
}

.emba-faq-geo {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.emba-faq-geo-1 {
  width: 280px !important;
  height: 280px !important;
  top: -60px !important;
  left: -80px !important;
  background: radial-gradient(circle, rgba(35, 31, 106, 0.05) 0%, transparent 70%) !important;
}

.emba-faq-geo-2 {
  width: 220px !important;
  height: 220px !important;
  bottom: -40px !important;
  right: -40px !important;
  background: radial-gradient(circle, rgba(246, 197, 1, 0.07) 0%, transparent 70%) !important;
}

.emba-faq-section .container {
  position: relative !important;
  z-index: 1 !important;
}

/* FAQ List */
.emba-faq-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* FAQ Item Card */
.emba-faq-item {
  background: #ffffff !important;
  border: 1px solid rgba(35, 31, 106, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03) !important;
}

.emba-faq-item:hover {
  box-shadow: 0 6px 20px rgba(35, 31, 106, 0.08) !important;
  border-color: rgba(35, 31, 106, 0.15) !important;
}

.emba-faq-item.active {
  border-color: rgba(35, 31, 106, 0.2) !important;
  box-shadow: 0 8px 28px rgba(35, 31, 106, 0.1) !important;
}

/* FAQ Header */
.emba-faq-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 16px 22px !important;
  cursor: pointer !important;
  user-select: none !important;
  transition: background 0.2s ease !important;
}

.emba-faq-header:hover {
  background: rgba(35, 31, 106, 0.02) !important;
}

/* Number Badge */
.emba-faq-num {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 10px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  font-size: 0.85rem !important;
  font-weight: 900 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  letter-spacing: 0.02em !important;
  box-shadow: 0 3px 10px rgba(35, 31, 106, 0.2) !important;
}

/* Question Text */
.emba-faq-question {
  flex: 1 !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}

/* Toggle Icon */
.emba-faq-toggle {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 50% !important;
  background: #f1f5f9 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.3s ease !important;
}

.emba-faq-toggle i {
  font-size: 0.75rem !important;
  color: #64748b !important;
  transition: transform 0.3s ease !important;
}

.emba-faq-item.active .emba-faq-toggle {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
}

.emba-faq-item.active .emba-faq-toggle i {
  color: #c8a84b !important;
  transform: rotate(180deg) !important;
}

/* FAQ Answer Body */
.emba-faq-body {
  max-height: 0 !important;
  overflow: hidden !important;
  transition: max-height 0.4s ease, padding 0.3s ease !important;
  padding: 0 22px 0 74px !important;
}

.emba-faq-item.active .emba-faq-body {
  max-height: 500px !important;
  padding: 0 22px 20px 74px !important;
}

.emba-faq-body p {
  font-size: 0.9rem !important;
  color: #475569 !important;
  line-height: 1.65 !important;
  margin-bottom: 8px !important;
}

.emba-faq-body ul,
.emba-faq-body ol {
  margin-bottom: 0 !important;
}

.emba-faq-body li {
  font-size: 0.88rem !important;
  color: #475569 !important;
  line-height: 1.55 !important;
  margin-bottom: 4px !important;
}

/* --------------------------------------------------------------------------
   19. PREMIUM NOTE CALLOUT (LIGHT THEME)
   -------------------------------------------------------------------------- */
.emba-note-callout {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%) !important;
  border: 1px solid rgba(35, 31, 106, 0.12) !important;
  border-left: 5px solid #231f6a !important;
  border-radius: 12px !important;
  padding: 22px 26px !important;
  margin: 25px 0 !important;
  display: flex !important;
  gap: 18px !important;
  align-items: flex-start !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04) !important;
  position: relative !important;
}

.emba-note-callout::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  width: 80px !important;
  height: 80px !important;
  background: radial-gradient(circle at top right, rgba(246, 197, 1, 0.2), transparent 70%) !important;
  border-top-right-radius: 12px !important;
  pointer-events: none !important;
}

.emba-note-icon {
  width: 38px !important;
  height: 38px !important;
  min-width: 38px !important;
  border-radius: 10px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.05rem !important;
  box-shadow: 0 3px 10px rgba(35, 31, 106, 0.2) !important;
  margin-top: 2px !important;
}

.emba-note-content {
  flex: 1 !important;
}

.emba-note-title {
  font-weight: 800 !important;
  color: #0f172a !important;
  font-size: 1.02rem !important;
  margin-bottom: 8px !important;
  letter-spacing: 0.01em !important;
}

.emba-note-text {
  font-size: 0.92rem !important;
  color: #334155 !important;
  line-height: 1.65 !important;
  margin-bottom: 10px !important;
  text-align: justify !important;
}

.emba-note-text:last-child {
  margin-bottom: 0 !important;
}

/* --------------------------------------------------------------------------
   20. CTA BUTTON TEXT COLOR OVERRIDE
   -------------------------------------------------------------------------- */
.header-upper .navigation>a.btn-warning,
section.emba-announcement-bar .btn-warning,
section[style*="background-color: #545287"] .btn-warning,
.cd-cta,
.float-btn-rght .btn-primary,
.float-btn-rght .btn,
.btn-warning,
a.btn-warning,
.emba-eligibility-btn:hover {
  color: #000000 !important;
}


/* ==========================================================================
   CAMPUS IMMERSION SECTION - COMPACT PREMIUM DESIGN
   ========================================================================== */
.emba-ci-section {
  position: relative;
  background-color: #f8fafc;
  padding: 42px 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Subtle Geometric Background Elements */
.emba-ci-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.emba-ci-geo-1 {
  top: -50px;
  right: -50px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, rgba(30, 49, 88, 0) 70%);
  border: 1px dashed rgba(200, 168, 75, 0.2);
}

.emba-ci-geo-2 {
  bottom: -60px;
  left: -60px;
  width: 280px;
  height: 280px;
  border-radius: 30px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(30, 49, 88, 0.03) 0%, rgba(14, 28, 58, 0.05) 100%);
  border: 1px solid rgba(30, 49, 88, 0.06);
}

.emba-ci-geo-3 {
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
  width: 100%;
  max-width: 1200px;
  height: 100%;
  background-image: radial-gradient(rgba(30, 49, 88, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
}

/* Tag Badge */
.emba-ci-tag-badge {
  display: inline-block !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #c8a84b !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  text-transform: uppercase !important;
  margin-bottom: 4px !important;
}

.emba-ci-tag-badge i {
  display: none !important;
}

div:has(> .emba-ci-tag-badge) {
  margin-bottom: 4px !important;
}

/* Header Typography */
.emba-ci-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1e3158;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.emba-ci-title span {
  color: #c8a84b;
}

.emba-ci-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1c3a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.emba-ci-desc {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 10px;
}

/* Feature Cards (Compact Side-by-Side Layout) */

.emba-ci-card:hover {
  box-shadow: 0 10px 28px rgba(14, 28, 58, 0.09);
  transform: translateY(-2px);
}

.emba-ci-card-primary {
  border-top: 3px solid #c8a84b;
}

.emba-ci-card-secondary {
  border-top: 3px solid #1e3158;
}

/* Card Header */
.emba-ci-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #f1f5f9;
}

.emba-ci-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%);
  color: #c8a84b;
  box-shadow: 0 2px 8px rgba(30, 49, 88, 0.15);
  flex-shrink: 0;
}

.emba-ci-card-icon.emba-ci-icon-muted {
  background: rgba(30, 49, 88, 0.08);
  color: #1e3158;
  box-shadow: none;
}

.emba-ci-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0e1c3a;
  margin: 0;
}

/* List Items */
.emba-ci-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.emba-ci-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: #334155;
  font-weight: 500;
  line-height: 1.4;
}

.emba-ci-item-icon {
  color: #c8a84b;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.emba-ci-item-icon-muted {
  color: #656398;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* CTA Button */
.emba-ci-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #c8a84b !important;
  color: #000000 !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  padding: 10px 26px !important;
  border-radius: 50px !important;
  border: 1px solid #c8a84b !important;
  box-shadow: 0 4px 15px rgba(200, 168, 75, 0.3) !important;
  transition: all 0.25s ease !important;
  text-decoration: none !important;
  letter-spacing: 0.02em !important;
}

.emba-ci-btn:hover {
  background: #b8973a !important;
  border-color: #b8973a !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(200, 168, 75, 0.45) !important;
}

/* Right Side Media Container */
.emba-ci-media {
  position: relative !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 30px rgba(14, 28, 58, 0.1) !important;
  border: 1px solid #e2e8f0 !important;
  height: 700px !important;
  max-height: 700px !important;
  width: 100% !important;
}

.emba-ci-img {
  width: 100% !important;
  height: 100% !important;
  max-height: 700px !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}

.emba-ci-media:hover .emba-ci-img {
  transform: scale(1.03) !important;
}

.emba-ci-img-badge {
  position: absolute !important;
  bottom: 14px !important;
  left: 14px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  border: 1px solid #c8a84b !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.emba-ci-img-badge i {
  color: #c8a84b !important;
}

@media (max-width: 991px) {
  .emba-ci-section {
    padding: 35px 0 !important;
  }

  .emba-ci-title {
    font-size: 1.8rem !important;
  }

  .emba-ci-subtitle {
    font-size: 1rem !important;
  }

  .emba-ci-media {
    height: 320px !important;
    min-height: 320px !important;
    max-height: 320px !important;
  }
}


/* ==========================================================================
   LEADERSHIP JOURNEY SECTION (ULTRA-PREMIUM VISION BANNER)
   ========================================================================== */
.emba-lj-section {
  position: relative;
  padding: 50px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.emba-lj-card {
  position: relative;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%);
  border-radius: 28px;
  padding: 50px 40px;
  box-shadow: 0 20px 50px rgba(14, 28, 58, 0.2);
  border: 1px solid rgba(200, 168, 75, 0.3);
  overflow: hidden;
}

/* Subtle Geometric Background Shapes */
.emba-lj-geo {
  position: absolute;
  pointer-events: none;
}

.emba-lj-geo-1 {
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.12) 0%, transparent 70%);
}

.emba-lj-geo-2 {
  bottom: -90px;
  left: -90px;
  width: 360px;
  height: 360px;
  border-radius: 40px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(200, 168, 75, 0.06) 100%);
}

/* Header */
.emba-lj-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.3);
  color: #c8a84b;
  padding: 5px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.emba-lj-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 35px;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.emba-lj-title span {
  color: #c8a84b;
}

/* Vision Pillars Grid */
.emba-lj-grid {
  margin-bottom: 10px;
}

.emba-lj-pillar {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.emba-lj-pillar:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 168, 75, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.emba-lj-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.35);
  color: #c8a84b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin: 0 auto 16px auto;
  transition: transform 0.3s ease;
}

.emba-lj-pillar:hover .emba-lj-icon-box {
  transform: scale(1.1);
  background: #c8a84b;
  color: #000000;
}

.emba-lj-pillar-text {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

/* Footer Callout & CTA */
.emba-lj-callout {
  font-size: 1.2rem;
  font-weight: 700;
  color: #c8a84b;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.emba-lj-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #c8a84b !important;
  color: #000000 !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  padding: 14px 38px !important;
  border-radius: 50px !important;
  border: 1px solid #c8a84b !important;
  box-shadow: 0 6px 20px rgba(200, 168, 75, 0.35) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  letter-spacing: 0.02em !important;
}

.emba-lj-btn:hover {
  background: #b8973a !important;
  border-color: #b8973a !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(200, 168, 75, 0.55) !important;
}

.emba-lj-btn i {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.emba-lj-btn:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .emba-lj-card {
    padding: 36px 24px;
  }

  .emba-lj-title {
    font-size: 1.8rem;
  }

  .emba-lj-callout {
    font-size: 1.05rem;
  }
}

@media (max-width: 575px) {
  .emba-lj-section {
    padding: 40px 0;
  }

  .emba-lj-card {
    padding: 28px 18px;
    border-radius: 20px;
  }

  .emba-lj-title {
    font-size: 1.5rem;
  }

  .emba-lj-btn {
    width: 100%;
    padding: 12px 20px !important;
    font-size: 0.92rem !important;
  }
}

/* ==========================================================================
   IIM BODH GAYA EDGE SECTION (ULTRA-PREMIUM INSTITUTIONAL EXCELLENCE)
   ========================================================================== */
.emba-edge-section {
  position: relative;
  background-color: #f8fafc;
  padding: 40px 0;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

/* Background Accents */
.emba-edge-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.emba-edge-geo-1 {
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, transparent 70%);
}

.emba-edge-geo-2 {
  bottom: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 40px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, rgba(30, 49, 88, 0.03) 0%, rgba(14, 28, 58, 0.06) 100%);
}

/* Header */
.emba-edge-header {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.emba-edge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 49, 88, 0.06);
  border: 1px solid rgba(30, 49, 88, 0.12);
  color: #1e3158;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.emba-edge-tag i {
  color: #c8a84b;
}

.emba-edge-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1e3158;
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

.emba-edge-title span {
  color: #c8a84b;
}

/* Grid & Cards */
.emba-edge-grid {
  position: relative;
  z-index: 1;
}

.emba-edge-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px 28px 24px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(14, 28, 58, 0.06);
  border: 1px solid #e2e8f0;
  border-top: 4px solid #c8a84b;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
}

.emba-edge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(14, 28, 58, 0.12);
  border-top-color: #1e3158;
}

.emba-edge-stat-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(200, 168, 75, 0.12);
  color: #b8973a;
  border: 1px solid rgba(200, 168, 75, 0.3);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.emba-edge-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%);
  color: #c8a84b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(30, 49, 88, 0.2);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.emba-edge-card:hover .emba-edge-icon {
  transform: scale(1.08);
}

.emba-edge-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0e1c3a;
  margin-bottom: 10px;
  line-height: 1.35;
}

.emba-edge-card-desc {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .emba-edge-section {
    padding: 50px 0;
  }

  .emba-edge-title {
    font-size: 2rem;
  }

  .emba-edge-card {
    padding: 26px 20px;
  }
}

@media (max-width: 575px) {
  .emba-edge-section {
    padding: 40px 0;
  }

  .emba-edge-title {
    font-size: 1.7rem;
  }
}

/* ==========================================================================
   HOMEPAGE CTA SECTION REDESIGN (COMPACT & NEAT)
   ========================================================================== */
.cta-section {
  position: relative;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  padding: 42px 0 !important;
  overflow: hidden !important;
  color: #ffffff !important;
}

.cta-section .pattern-layer {
  display: none !important;
}

.cta-section .main8-title h1 {
  color: #c8a84b !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  margin-bottom: 6px !important;
}

.cta-section .sec-title.light h2 {
  color: #ffffff !important;
  font-size: 1.8rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  margin-bottom: 12px !important;
}

.cta-section .content-box p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 0.93rem !important;
  line-height: 1.6 !important;
  margin-bottom: 18px !important;
}

.cta-section .content-box p a {
  color: #c8a84b !important;
  text-decoration: none !important;
  font-weight: 700 !important;
}

.cta-section .theme-btn.btn-two,
.cta-section .btn-box a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #c8a84b !important;
  color: #000000 !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
  padding: 10px 28px !important;
  border-radius: 50px !important;
  border: 1px solid #c8a84b !important;
  box-shadow: 0 4px 15px rgba(200, 168, 75, 0.3) !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.cta-section .theme-btn.btn-two:hover,
.cta-section .btn-box a:hover {
  background: #b8973a !important;
  border-color: #b8973a !important;
  color: #000000 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 22px rgba(200, 168, 75, 0.45) !important;
}

.cta-section .image-box {
  position: relative;
  /* border-radius: 16px; */
  /* overflow: hidden; */
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); */
  /* border: 1px solid rgba(200, 168, 75, 0.3); */
  max-width: 310px;
  margin: 0 auto;
}

.cta-section .image-box img {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
  transition: transform 0.4s ease;
}

.cta-section .image-box:hover img {
  transform: scale(1.03);
}

.cta-section .image-shape {
  display: none !important;
}


/* ==========================================================================
   WHY CHOOSE IIM BODH GAYA SECTION (ULTRA-PREMIUM LIGHT THEME)
   ========================================================================== */
.icon-box-area.emba-why-section,
.emba-why-section {
  position: relative;
  background: #ffffff !important;
  padding: 75px 0 !important;
  overflow: hidden !important;
  border-top: none !important;
  border-bottom: none !important;
  margin: 0 !important;
  box-shadow: 0 1px 0 rgba(200, 168, 75, 0.18), 0 -1px 0 rgba(200, 168, 75, 0.12);
}

.icon-box-area.emba-why-section::before,
.emba-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c8a84b 25%, #1e3158 60%, transparent 100%);
  z-index: 2;
}

/* Subtle Geometric Background Elements */
.emba-why-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Geo 1 — soft blue-white glow circle top-right */
.emba-why-geo-1 {
  top: -80px;
  right: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(30, 49, 88, 0.05) 0%, transparent 65%);
  border: 1px solid rgba(30, 49, 88, 0.07);
}

/* Geo 2 — light navy diagonal stripe zone bottom-left */
.emba-why-geo-2 {
  bottom: -70px;
  left: -70px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background-image:
    repeating-linear-gradient(-45deg,
      transparent,
      transparent 10px,
      rgba(30, 49, 88, 0.04) 10px,
      rgba(30, 49, 88, 0.04) 11px);
  border: none;
}

/* Geo 3 — fine cool-grey dot grid across section */
.emba-why-geo-3 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background-image: radial-gradient(circle, rgba(30, 49, 88, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
  border-radius: 0;
}

/* Section Header */
.emba-why-header {
  position: relative;
  z-index: 1;
}

.emba-why-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 49, 88, 0.06);
  border: 1px solid rgba(30, 49, 88, 0.12);
  color: #1e3158;
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.emba-why-tag i {
  color: #c8a84b;
}

.emba-why-title {
  font-size: 2.4rem !important;
  font-weight: 800 !important;
  color: #1e3158 !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
}

.emba-why-title span {
  color: #c8a84b !important;
}

/* Cards Grid */
.emba-why-grid {
  position: relative;
  z-index: 1;
}

.emba-why-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 28px 24px !important;
  height: 100% !important;
  box-shadow: 0 2px 12px rgba(30, 49, 88, 0.07), 0 1px 3px rgba(30, 49, 88, 0.04) !important;
  border: 1px solid #e8ecf2 !important;
  border-top: 3px solid #1e3158 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 18px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
}

.emba-why-card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 14px 36px rgba(30, 49, 88, 0.12), 0 4px 10px rgba(30, 49, 88, 0.06) !important;
  border-color: #c8a84b !important;
  border-top-color: #c8a84b !important;
}

.emba-why-card-icon {
  width: 52px !important;
  height: 52px !important;
  border-radius: 14px !important;
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  padding: 12px !important;
  box-shadow: 0 4px 14px rgba(30, 49, 88, 0.2) !important;
}

.emba-why-card-icon img {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  filter: brightness(0) invert(1) !important;
}

.emba-why-card-content {
  flex-grow: 1 !important;
}

.emba-why-card-content h4 {
  font-size: 1.18rem !important;
  font-weight: 700 !important;
  color: #0e1c3a !important;
  margin-bottom: 6px !important;
  line-height: 1.3 !important;
}

.emba-why-card-content h4 span {
  color: #c8a84b !important;
}

.emba-why-card-content p {
  font-size: 0.92rem !important;
  color: #334155 !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* Responsive */
@media (max-width: 991px) {
  .emba-why-section {
    padding: 50px 0 !important;
  }

  .emba-why-title {
    font-size: 2rem !important;
  }

  .emba-why-card {
    padding: 22px 18px !important;
  }
}

@media (max-width: 575px) {
  .emba-why-section {
    padding: 40px 0 !important;
  }

  .emba-why-title {
    font-size: 1.7rem !important;
  }

  .emba-why-card {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}

/* ==========================================================================
   TESTIMONIAL / HEAR FROM OUR LEARNERS BRAND COLOR OVERRIDE
   ========================================================================== */
.page-body,
.testimonial-section-1,
section.testimonial-section-1 {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
}

.reviews-slider>h2 {
  color: #ffffff !important;
}

.reviews-slider>h2 span {
  color: #c8a84b !important;
}

.reviews-slider>h2::after {
  background: #c8a84b !important;
  box-shadow: 0 0 10px rgba(200, 168, 75, 0.5) !important;
}

.reviews-slider .control-btn {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #ffffff !important;
  border: 1px solid rgba(200, 168, 75, 0.4) !important;
  transition: all 0.3s ease !important;
}

.reviews-slider .control-btn:hover {
  background: #c8a84b !important;
  color: #000000 !important;
  border-color: #c8a84b !important;
  box-shadow: 0 4px 15px rgba(200, 168, 75, 0.4) !important;
}

.reviews-slider .dot.active,
.reviews-slider .dots .dot.active,
.reviews-slider .swiper-pagination-bullet-active {
  background: #c8a84b !important;
}

/* ==========================================================================
   CAMPUS IMMERSION HIGHLIGHTS BRAND COLOR OVERRIDE
   ========================================================================== */
.hero-showcase .wrapper>h2 {
  color: #1e3158 !important;
}

.hero-showcase .wrapper>h2::after {
  background: #c8a84b !important;
  box-shadow: 0 0 10px rgba(200, 168, 75, 0.4) !important;
}

.hero-showcase .image-container {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
}

.hero-showcase .slide-item .item-wrapper {
  box-shadow: 0 8px 24px rgba(14, 28, 58, 0.08) !important;
  border-radius: 16px !important;
}

.hero-showcase .slide-item .item-wrapper:hover {
  border-color: #c8a84b !important;
  box-shadow: 0 14px 35px rgba(14, 28, 58, 0.16) !important;
}

.hero-showcase .nav-button {
  background: linear-gradient(150deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  border: 1px solid rgba(200, 168, 75, 0.4) !important;
  box-shadow: 0 4px 15px rgba(14, 28, 58, 0.25) !important;
  transition: all 0.3s ease !important;
}

.hero-showcase .nav-button:hover {
  background: #c8a84b !important;
  color: #000000 !important;
  border-color: #c8a84b !important;
  box-shadow: 0 6px 20px rgba(200, 168, 75, 0.45) !important;
}

.hero-showcase .dot-indicator.dot-active {
  background: #c8a84b !important;
  border-color: #c8a84b !important;
  box-shadow: 0 2px 8px rgba(200, 168, 75, 0.4) !important;
}

.hero-showcase .dot-indicator:hover {
  background: #b8973a !important;
  border-color: #b8973a !important;
}

/* ==========================================================================
   COMPACT CAREER IMPACT SECTION (NEAT ROWS)
   ========================================================================== */
.emba-career-impact-section {
  position: relative;
  background-color: #f8fafc !important;
  /* Premium off-white/light slate */
  padding: 40px 0 !important;
  overflow: hidden !important;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.emba-career-geo {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.emba-career-geo-1 {
  top: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
}

.emba-career-geo-2 {
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 49, 88, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
}

.emba-career-row-header {
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  color: #64748b !important;
  letter-spacing: 0.08em !important;
}

.emba-career-row {
  position: relative;
  z-index: 1;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  padding: 14px 20px !important;
  margin-bottom: 10px !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02) !important;
  transition: all 0.25s ease !important;
}

.emba-career-row:hover {
  transform: translateX(4px) !important;
  border-color: #c8a84b !important;
  box-shadow: 0 4px 14px rgba(200, 168, 75, 0.15) !important;
}

.emba-career-role {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #1e3158 !important;
}

.emba-career-salary {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  color: #c8a84b !important;
}

/* --------------------------------------------------------------------------
   CTA Section - Slightly larger right-side image
   -------------------------------------------------------------------------- */
.cta-section .image-box .image img {
  transform: scale(1.4);
  transform-origin: bottom center;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.cta-section .image-box .image-shape .shape-1,
.cta-section .image-box .image-shape .shape-2 {
  display: none !important;
}

/* Hide About Logo from navigation header dropdowns across all pages */
.header-upper .navigation li.dropdown>ul>li.d-none,
.navigation li.dropdown>ul>li.d-none,
.header-upper .navigation li.dropdown>ul>li:has(a[href*="about-logo"]),
.navigation li.dropdown>ul>li:has(a[href*="about-logo"]) {
  display: none !important;
}

/* --------------------------------------------------------------------------
   Modal Z-Index Fix
   Sticky header uses z-index 100000; modals and backdrops must be higher
   -------------------------------------------------------------------------- */
.modal-backdrop {
  z-index: 200000 !important;
}

.modal-backdrop.show {
  opacity: 0.7 !important;
}

.modal {
  z-index: 200001 !important;
}

.modal.show {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.modal-dialog {
  z-index: 200002 !important;
}

/* ==========================================================================
   Premium Enquiry Modal — Brand Design
   Brand Colors: Navy #1e3158 / #0e1c3a | Gold #c8a84b / #d4af37
   ========================================================================== */

/* Dialog sizing & entrance animation */
.emba-modal-dialog {
  max-width: 560px !important;
  margin: 1.75rem auto !important;
}

.emba-modal-dialog .emba-modal-content {
  animation: embaModalSlideIn 0.35s cubic-bezier(0.34, 1.3, 0.64, 1) both;
}

@keyframes embaModalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-28px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Modal content container */
.emba-modal-content {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 30px 80px rgba(14, 28, 58, 0.35), 0 8px 30px rgba(14, 28, 58, 0.2) !important;
}

/* ---- Header ---- */
.emba-modal-header {
  position: relative !important;
  background: linear-gradient(135deg, #0e1c3a 0%, #1e3158 50%, #162a4e 100%) !important;
  padding: 22px 28px 22px 24px !important;
  border-bottom: none !important;
  overflow: hidden !important;
  align-items: center !important;
}

/* Decorative diagonal stripes on header */
.emba-modal-header-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
      transparent,
      transparent 12px,
      rgba(200, 168, 75, 0.05) 12px,
      rgba(200, 168, 75, 0.05) 13px);
  pointer-events: none;
}

/* Gold accent bar on left edge of header */
.emba-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #c8a84b 0%, #d4af37 100%);
}

/* Gold shimmer line at header bottom */
.emba-modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 168, 75, 0.5), transparent);
}

/* Title wrapper */
.emba-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  position: relative;
  z-index: 1;
}

/* Logo badge */
.emba-modal-badge {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}

.emba-modal-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Supertitle */
.emba-modal-supertitle {
  color: rgba(200, 168, 75, 0.85);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 3px 0;
}

/* Main title */
.emba-modal-title {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.25 !important;
}

.emba-modal-title-gold {
  color: #c8a84b;
}

/* Close button */
.emba-modal-close {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  font-size: 0.85rem !important;
  flex-shrink: 0;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
}

.emba-modal-close:hover {
  background: rgba(200, 168, 75, 0.25) !important;
  border-color: #c8a84b !important;
  color: #c8a84b !important;
  transform: rotate(90deg) !important;
}

/* ---- Body ---- */
.emba-modal-body {
  background: #ffffff !important;
  padding: 26px 28px 28px !important;
}

.emba-modal-form {
  margin: 0 !important;
}

/* Inputs */
.emba-modal-input,
.emba-modal-select {
  height: 46px !important;
  border: 1.5px solid #dde2ec !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 0.9rem !important;
  color: #1e3158 !important;
  background: #f8fafd !important;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease !important;
  width: 100% !important;
  box-shadow: none !important;
}

.emba-modal-input::placeholder {
  color: #9aa5b8 !important;
  font-size: 0.87rem !important;
}

.emba-modal-input:focus,
.emba-modal-select:focus {
  border-color: #c8a84b !important;
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.15) !important;
  background: #ffffff !important;
  outline: none !important;
}

/* Selects */
.emba-modal-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231e3158' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
  color: #6b7a99 !important;
}

/* Consent row */
.emba-modal-consent-row {
  margin-top: 4px !important;
}

.emba-modal-consent {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 0.87rem !important;
  color: #4a5568 !important;
  cursor: pointer !important;
  margin: 0 !important;
  font-weight: 400 !important;
}

.emba-modal-consent input[type="checkbox"] {
  width: 17px !important;
  height: 17px !important;
  flex-shrink: 0 !important;
  accent-color: #c8a84b !important;
  cursor: pointer !important;
}

/* Submit button */
.emba-modal-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  padding: 10px 28px !important;
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 50%, #b8942e 100%) !important;
  color: #0e1c3a !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.35) !important;
  letter-spacing: 0.3px !important;
  margin-top: 4px !important;
}

.emba-modal-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 28px rgba(200, 168, 75, 0.55) !important;
  background: linear-gradient(135deg, #d4af37 0%, #e0bc42 50%, #c8a84b 100%) !important;
}

.emba-modal-submit:active {
  transform: translateY(0) !important;
}

.emba-modal-submit i {
  font-size: 0.9rem !important;
  transition: transform 0.25s ease !important;
}

.emba-modal-submit:hover i {
  transform: translateX(4px) !important;
}

/* Responsive */
@media (max-width: 575px) {
  .emba-modal-dialog {
    margin: 0.5rem !important;
    max-width: calc(100% - 1rem) !important;
  }

  .emba-modal-header {
    padding: 18px 16px !important;
  }

  .emba-modal-body {
    padding: 20px 16px 24px !important;
  }

  .emba-modal-title {
    font-size: 1.05rem !important;
  }
}

/* ==========================================================================
   BANNER SECTION — PREMIUM REDESIGN
   ========================================================================== */

/* ── Outer Section ─────────────────────────────────────────────────────── */
.emba-banner-section {
  position: relative !important;
  overflow: hidden !important;
  background: url('../img/web-banner.jpg') center center / cover no-repeat !important;
  min-height: 500px !important;
  display: flex !important;
  align-items: center !important;
}

/* Dark overlay */
.emba-banner-section::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(105deg,
      rgba(11, 19, 43, 0.82) 0%,
      rgba(11, 19, 43, 0.65) 55%,
      rgba(11, 19, 43, 0.45) 100%) !important;
  z-index: 0 !important;
}

.emba-banner-wrapper {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
}

.emba-banner-overlay-container {
  position: relative !important;
  z-index: 2 !important;
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Override old @media(min-width:992px) absolute positioning & pointer-events:none */
@media (min-width: 992px) {
  .emba-banner-section .emba-banner-overlay-container {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    pointer-events: all !important;
    background: transparent !important;
  }

  .emba-banner-section .emba-banner-form-col,
  .emba-banner-section .emba-banner-content-col {
    pointer-events: auto !important;
  }
}

@media (max-width: 991px) {
  .emba-banner-section .emba-banner-overlay-container {
    background: transparent !important;
  }
}

/* ── LEFT CONTENT COLUMN ───────────────────────────────────────────────── */
.emba-banner-content-col {
  padding-right: 30px !important;
}

/* Vertical Sticky Ribbon attached to Left Edge of Banner */
.emba-batch-sticky-ribbon {
  display: none !important;
}

/* Ranking Logo & Batch Badge Container */
.emba-ranks-logo-batch-wrap {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 16px !important;
  flex-wrap: wrap !important;
}

/* Ranking Logo Wrapper & Image */
.emba-ranks-logo-wrap {
  display: inline-block !important;
  background: #ffffff !important;
  border-radius: 8px !important;
  padding: 5px 12px !important;
  margin-bottom: 0 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25) !important;
  transition: transform 0.25s ease !important;
}

.emba-ranks-logo-wrap:hover {
  transform: translateY(-1px) !important;
}

/* Premium Batch Badge next to logo */
.emba-batch-logo-badge {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #0b132b !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  letter-spacing: 1px !important;
  padding: 0 16px !important;
  height: 50px !important;
  border-radius: 8px !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 16px rgba(200, 168, 75, 0.35) !important;
  line-height: 1 !important;
  transition: transform 0.25s ease !important;
}

.emba-batch-logo-badge:hover {
  transform: translateY(-1px) !important;
}

.emba-ranks-logo-img {
  height: 55px !important;
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
  object-fit: contain !important;
}

/* Ranking Highlight Points */
.emba-rank-points-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 12px 0 18px 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 12px !important;
}

.emba-rank-points-list li {
  color: #c8a84b !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: rgba(200, 168, 75, 0.12) !important;
  border: 1px solid rgba(200, 168, 75, 0.3) !important;
  padding: 5px 12px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(4px) !important;
  transition: all 0.25s ease !important;
  line-height: 20px
}

.emba-rank-points-list li i {
  color: #d4af37 !important;
  font-size: 0.85rem !important;
}

.emba-rank-points-list li:hover {
  background: rgba(200, 168, 75, 0.2) !important;
  border-color: rgba(200, 168, 75, 0.5) !important;
  transform: translateY(-1px) !important;
}

/* Main Heading */
.emba-banner-heading {
  font-size: 3.2rem !important;
  font-weight: 300 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin-bottom: 22px !important;
  letter-spacing: -0.5px !important;
}

.emba-banner-heading strong {
  font-weight: 800 !important;
  color: #ffffff !important;
}

/* Bullet Points */
.emba-banner-bullets {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 28px 0 !important;
}

.emba-banner-bullets li {
  position: relative !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
  padding: 4px 0 4px 22px !important;
  margin-bottom: 2px !important;
}

.emba-banner-bullets li::before {
  content: "\2013" !important;
  position: absolute !important;
  left: 0 !important;
  top: 4px !important;
  color: var(--emba-gold, #c8a84b) !important;
  font-weight: 700 !important;
}

/* Download Brochure & Apply Now CTA Buttons Row */
.emba-banner-cta-wrap {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 22px !important;
}

.emba-brochure-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: #ffffff !important;
  color: #1e3158 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  border: 2px solid #ffffff !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2) !important;
  white-space: nowrap !important;
}

.emba-brochure-btn:hover {
  background: var(--emba-gold, #c8a84b) !important;
  border-color: var(--emba-gold, #c8a84b) !important;
  color: #000000 !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(200, 168, 75, 0.45) !important;
}

.emba-brochure-btn i {
  font-size: 0.85rem !important;
}

.emba-hero-apply-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  background: var(--emba-gold, #c8a84b) !important;
  color: #000000 !important;
  font-size: 0.86rem !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  border: 2px solid var(--emba-gold, #c8a84b) !important;
  text-decoration: none !important;
  transition: all 0.25s ease !important;
  letter-spacing: 0.2px !important;
  box-shadow: 0 4px 14px rgba(200, 168, 75, 0.35) !important;
  white-space: nowrap !important;
}

.emba-hero-apply-btn:hover {
  background: #e5b700 !important;
  border-color: #e5b700 !important;
  color: #000000 !important;
  text-decoration: none !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(246, 197, 1, 0.45) !important;
}

.emba-hero-apply-btn i {
  font-size: 0.85rem !important;
}


/* ── RIGHT FORM CARD ───────────────────────────────────────────────────── */
.emba-banner-form-col {
  z-index: 3 !important;
  display: flex !important;
  justify-content: flex-end !important;
}

.emba-premium-form-card {
  background: #ffffff !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  box-shadow: 0 20px 50px rgba(11, 19, 43, 0.4), 0 0 0 1px rgba(200, 168, 75, 0.25) !important;
  border: none !important;
  width: 100% !important;
  max-width: 420px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.emba-premium-form-card:hover {
  box-shadow: 0 24px 60px rgba(11, 19, 43, 0.5), 0 0 0 1.5px rgba(200, 168, 75, 0.4) !important;
}

/* Form Card Header */
.emba-form-card-header {
  background: linear-gradient(135deg, #0b132b 0%, #1e3158 100%) !important;
  padding: 14px 18px 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  position: relative !important;
  border-bottom: 2px solid var(--emba-gold, #c8a84b) !important;
}

.emba-form-header-icon {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(200, 168, 75, 0.15) !important;
  border: 1.5px solid rgba(200, 168, 75, 0.6) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2) !important;
}

.emba-form-header-icon i {
  color: var(--emba-gold, #c8a84b) !important;
  font-size: 1rem !important;
}

.emba-form-header-text {
  flex-grow: 1 !important;
}

.emba-form-card-title {
  color: #ffffff !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
  letter-spacing: -0.2px !important;
  text-align: center !important;
}

.emba-form-card-title span {
  color: var(--emba-gold, #c8a84b) !important;
  font-weight: 800 !important;
}

.emba-form-header-tag {
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(200, 168, 75, 0.4) !important;
  color: var(--emba-gold, #c8a84b) !important;
  font-size: 0.62rem !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border-radius: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  white-space: nowrap !important;
}

/* Form Card Body */
.emba-form-card-body {
  padding: 14px 18px 14px !important;
  background: #ffffff !important;
}

/* Form Inputs & Selects */
.emba-form-group {
  margin-bottom: 0 !important;
}

.emba-form-input {
  width: 100% !important;
  height: 36px !important;
  padding: 5px 10px !important;
  font-size: 0.78rem !important;
  font-weight: 400 !important;
  color: #0f172a !important;
  background: #f8fafc !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 7px !important;
  outline: none !important;
  transition: all 0.2s ease !important;
  -webkit-appearance: none !important;
  appearance: none !important;
  box-shadow: none !important;
  font-family: 'Roboto', sans-serif !important;
}

.emba-form-input:focus {
  border-color: var(--emba-gold, #c8a84b) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.16) !important;
}

.emba-form-input::placeholder {
  color: #94a3b8 !important;
  font-size: 0.76rem !important;
  font-weight: 400 !important;
}

select.emba-form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%231e3158' d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 10px center !important;
  padding-right: 26px !important;
  cursor: pointer !important;
}

/* Consent */
.emba-form-consent {
  margin-top: 8px !important;
  margin-bottom: 10px !important;
}

.emba-consent-label {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  cursor: pointer !important;
  margin: 0 !important;
}

.emba-consent-label input[type="checkbox"] {
  flex-shrink: 0 !important;
  width: 14px !important;
  height: 14px !important;
  margin-top: 2px !important;
  accent-color: #1e3158 !important;
  border-radius: 3px !important;
  cursor: pointer !important;
}

.emba-consent-label span {
  font-size: 0.72rem !important;
  color: #475569 !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

/* Submit Button - Decreased Size & Centered */
.emba-form-submit-wrap {
  margin-top: 2px !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.emba-form-submit-btn {
  width: auto !important;
  min-width: 180px !important;
  height: 38px !important;
  padding: 6px 24px !important;
  background: linear-gradient(135deg, #1e3158 0%, #0b132b 100%) !important;
  color: #ffffff !important;
  font-size: 0.84rem !important;
  font-weight: 700 !important;
  border: 1px solid rgba(200, 168, 75, 0.4) !important;
  border-radius: 20px !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
  letter-spacing: 0.3px !important;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.3) !important;
  position: relative !important;
  overflow: hidden !important;
}

.emba-form-submit-btn::before {
  content: '' !important;
  position: absolute !important;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  transition: left 0.6s ease !important;
}

.emba-form-submit-btn:hover::before {
  left: 100% !important;
}

.emba-form-submit-btn:hover {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #0b132b !important;
  border-color: #c8a84b !important;
  box-shadow: 0 8px 20px rgba(200, 168, 75, 0.45) !important;
  transform: translateY(-2px) !important;
}

.emba-form-submit-btn i {
  font-size: 0.8rem !important;
  transition: transform 0.25s ease !important;
}

.emba-form-submit-btn:hover i {
  transform: translateX(4px) !important;
}

/* ── PROGRESS BAR FOOTER (Replacing Bottom Border) ───────────────────────── */
.emba-form-progress-footer {
  background: linear-gradient(135deg, #0b132b 0%, #151e3d 100%) !important;
  padding: 10px 18px 12px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
}

.emba-progress-info {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 6px !important;
}

.emba-progress-text {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  letter-spacing: 0.2px !important;
}

.emba-progress-text i {
  color: #f59e0b !important;
  animation: embaFlamePulse 1.8s infinite ease-in-out !important;
}

@keyframes embaFlamePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.85;
  }
}

.emba-progress-badge {
  font-size: 0.65rem !important;
  font-weight: 700 !important;
  color: var(--emba-gold, #c8a84b) !important;
  background: rgba(200, 168, 75, 0.15) !important;
  border: 1px solid rgba(200, 168, 75, 0.35) !important;
  padding: 2px 8px !important;
  border-radius: 10px !important;
  letter-spacing: 0.3px !important;
  text-transform: uppercase !important;
}

.emba-progress-bar-track {
  width: 100% !important;
  height: 6px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  position: relative !important;
}

.emba-progress-bar-fill {
  height: 100% !important;
  background: linear-gradient(90deg, #c8a84b 0%, #e0bc42 50%, #f6c501 100%) !important;
  border-radius: 10px !important;
  position: relative !important;
  box-shadow: 0 0 10px rgba(246, 197, 1, 0.5) !important;
  transition: width 1s ease-in-out !important;
}

.emba-progress-shimmer {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.6) 50%,
      transparent 100%) !important;
  animation: embaBarShimmer 2.2s infinite linear !important;
}

@keyframes embaBarShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .emba-banner-overlay-container {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .emba-banner-content-col {
    padding-right: 15px !important;
    margin-bottom: 30px !important;
  }

  .emba-banner-heading {
    font-size: 2.4rem !important;
  }

  .emba-banner-form-col {
    justify-content: center !important;
    max-width: 100% !important;
  }

  .emba-premium-form-card {
    max-width: 100% !important;
  }
}

@media (max-width: 767px) {
  .emba-batch-sticky-ribbon {
    top: 16px !important;
    font-size: 0.6rem !important;
    padding: 8px 4px 10px 4px !important;
  }

  .emba-ranks-logo-wrap {
    margin-left: 18px !important;
  }

  .emba-ranks-logo-img {
    height: 34px !important;
  }

  .emba-banner-section::before {
    background: rgba(11, 19, 43, 0.88) !important;
  }

  .emba-banner-overlay-container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .emba-banner-heading {
    font-size: 2rem !important;
  }

  .emba-banner-bullets li {
    font-size: 0.9rem !important;
  }

  .emba-premium-form-card {
    margin-top: 20px !important;
  }
}

@media (max-width: 575px) {
  .emba-banner-heading {
    font-size: 1.75rem !important;
  }

  .emba-form-card-header {
    padding: 12px 14px 10px !important;
  }

  .emba-form-card-body {
    padding: 12px 14px 12px !important;
  }

  .emba-form-card-title {
    font-size: 0.92rem !important;
  }

  .emba-form-header-tag {
    display: none !important;
  }

  .emba-form-progress-footer {
    padding: 10px 14px 10px !important;
  }

  .emba-banner-cta-wrap {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .emba-brochure-btn,
  .emba-hero-apply-btn {
    flex: 1 1 50% !important;
    font-size: 0.81rem !important;
    padding: 10px 8px !important;
    text-align: center !important;
    justify-content: center !important;
    gap: 5px !important;
    white-space: nowrap !important;
  }
}

/* --------------------------------------------------------------------------
   PROGRAMME OVERVIEW SECTION COMPACT STYLING
   -------------------------------------------------------------------------- */
.project-details {
  padding: 35px 0 25px 0 !important;
}

.emba-overview-img {
  max-height: 250px !important;
  width: auto !important;
  max-width: 100% !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12) !important;
  display: inline-block !important;
}

/* --------------------------------------------------------------------------
   DEDICATED COURSE ELIGIBILITY SECTION & CARD (FULL WIDTH 3-BOX ROW)
   -------------------------------------------------------------------------- */
.emba-eligibility-section {
  position: relative !important;
  padding: 35px 0 50px 0 !important;
  background: #f8fafc !important;
}

.emba-eligibility-card-box {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 40px 40px !important;
  box-shadow: 0 15px 40px -10px rgba(11, 19, 43, 0.08) !important;
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 auto !important;
}

.emba-eligibility-card-box::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 5px !important;
  background: linear-gradient(90deg, #1e3158 0%, #c8a84b 50%, #1e3158 100%) !important;
}

.emba-eligibility-header {
  margin-bottom: 32px !important;
}

.emba-eligibility-header .emba-badge {
  display: inline-block !important;
  color: #c8a84b !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 6px !important;
}

.emba-eligibility-title {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #525185 !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

.emba-eligibility-title span {
  color: #0f172a !important;
  font-weight: 900 !important;
}

.emba-eligibility-row {
  display: flex !important;
  align-items: stretch !important;
}

.emba-eligibility-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 18px !important;
  padding: 28px 24px !important;
  height: 100% !important;
  transition: all 0.3s ease !important;
}

.emba-eligibility-item:hover {
  background: #ffffff !important;
  border-color: rgba(200, 168, 75, 0.4) !important;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
  transform: translateY(-4px) !important;
}

.emba-eligibility-icon {
  width: 52px !important;
  height: 52px !important;
  min-width: 52px !important;
  border-radius: 14px !important;
  background: #0f172a !important;
  color: #c8a84b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.3rem !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2) !important;
}

.emba-eligibility-text h4 {
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: #525185 !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}

.emba-eligibility-text p {
  font-size: 0.94rem !important;
  color: #475569 !important;
  line-height: 1.65 !important;
  margin: 0 !important;
}

.emba-eligibility-footer {
  margin-top: 32px !important;
  padding-top: 24px !important;
  border-top: 1px dashed #cbd5e1 !important;
}

.emba-eligibility-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #000000 !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  padding: 14px 34px !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(200, 168, 75, 0.35) !important;
  transition: all 0.3s ease !important;
}

.emba-eligibility-btn i {
  color: #000000 !important;
}

.emba-eligibility-btn .icon-arrow {
  font-size: 0.85rem !important;
  transition: transform 0.25s ease !important;
}

.emba-eligibility-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, #e5c158 100%) !important;
  color: #000000 !important;
  box-shadow: 0 10px 25px rgba(200, 168, 75, 0.5) !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

.emba-eligibility-btn:hover .icon-arrow {
  transform: translateX(4px) !important;
}

@media (max-width: 991px) {
  .emba-eligibility-row {
    row-gap: 20px !important;
  }
}

@media (max-width: 767px) {
  .emba-eligibility-card-box {
    padding: 24px 20px !important;
  }

  .emba-eligibility-item {
    padding: 20px 18px !important;
  }

  .emba-eligibility-title {
    font-size: 1.8rem !important;
  }
}

/* --------------------------------------------------------------------------
   PROGRAMME FEATURES - PRESENTATION PATTERN (NO ICONS, BULLETED LISTS)
   -------------------------------------------------------------------------- */
.programme-features-row .feature-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding: 12px 20px !important;
  border-right: 1px dashed rgba(255, 255, 255, 0.25) !important;
}

.programme-features-row .feature-wrapper:last-child {
  border-right: none !important;
}

.pf-content {
  width: 100% !important;
}

.pf-head-text {
  color: var(--emba-gold, #c8a84b) !important;
  font-size: 0.85rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 12px !important;
}

.pf-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.pf-list li {
  color: #ffffff !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
}

.pf-list li:last-child {
  margin-bottom: 0 !important;
}

.pf-arrow {
  color: #ffffff !important;
  font-size: 0.75rem !important;
  line-height: 1.4 !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
}

.pf-single-text {
  color: #ffffff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

@media (max-width: 991px) {
  .programme-features-row .feature-wrapper {
    border-right: none !important;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.18) !important;
    padding-bottom: 16px !important;
    margin-bottom: 16px !important;
  }

  .programme-features-row .feature-wrapper:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
  }
}

/* --------------------------------------------------------------------------
   WHATSAPP HEADER & MOBILE MENU BUTTON (REMOVED FIXED FLOATING RIGHT SIDE)
   -------------------------------------------------------------------------- */
.whatsapp-float-btn {
  display: none !important;
}

/* Mobile Navigation Drawer Adjustments for Header Buttons */
@media (max-width: 991px) {

  .mobile-menu .navigation>a.btn,
  .mobile-menu .navigation>a.btn-warning {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin: 12px 20px !important;
    padding: 11px 18px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    text-align: center !important;
    width: calc(100% - 40px) !important;
    box-sizing: border-box !important;
    white-space: normal !important;
  }

  .mobile-menu .navigation>a.btn-warning {
    background-color: #c8a84b !important;
    color: #000000 !important;
    box-shadow: 0 3px 10px rgba(200, 168, 75, 0.3) !important;
  }

  .mobile-menu .navigation>a.btn-whatsapp {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    padding: 0 !important;
    margin: 14px auto 8px auto !important;
    border-radius: 50% !important;
    background-color: #25D366 !important;
    color: #ffffff !important;
    box-shadow: 0 3px 10px rgba(37, 211, 102, 0.35) !important;
  }

  .mobile-menu .navigation>a.btn-whatsapp:hover {
    background-color: #128C7E !important;
    color: #ffffff !important;
  }

  .mobile-menu .navigation>a.btn-whatsapp i {
    font-size: 1.35rem !important;
    color: #ffffff !important;
    margin: 0 !important;
  }
}

/* ==========================================================================
   EXECUTIVE MBA COUNSELOR CAROUSEL & CONSULTATION MODAL
   ========================================================================== */

/* Section Layout & Background */
.emba-counselor-section {
  position: relative !important;
  padding: 40px 0 !important;
  background-color: var(--emba-bg-light, #f8fafc) !important;
  background-image: radial-gradient(circle at 15% 20%, rgba(200, 168, 75, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(35, 31, 106, 0.04) 0%, transparent 45%) !important;
  overflow: hidden !important;
}

/* Subtle Geometric Background Elements */
.emba-counselor-geo {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.emba-counselor-geo-1 {
  top: 40px !important;
  left: -50px !important;
  width: 220px !important;
  height: 220px !important;
  border-radius: 40px !important;
  border: 2px dashed rgba(200, 168, 75, 0.15) !important;
  transform: rotate(25deg) !important;
}

.emba-counselor-geo-2 {
  bottom: 30px !important;
  right: -60px !important;
  width: 300px !important;
  height: 300px !important;
  border-radius: 50% !important;
  background: radial-gradient(circle, rgba(11, 19, 43, 0.03) 0%, transparent 70%) !important;
}

.emba-counselor-geo-3 {
  top: 15% !important;
  right: 8% !important;
  width: 12px !important;
  height: 12px !important;
  background: var(--emba-gold, #c8a84b) !important;
  opacity: 0.3 !important;
  border-radius: 50% !important;
  box-shadow: 0 0 20px 8px rgba(200, 168, 75, 0.25) !important;
}

.emba-counselor-geo-4 {
  bottom: 20% !important;
  left: 6% !important;
  width: 18px !important;
  height: 18px !important;
  border: 3px solid rgba(35, 31, 106, 0.12) !important;
  transform: rotate(45deg) !important;
}

/* Section Header */
.emba-counselor-header {
  margin-bottom: 55px !important;
  position: relative !important;
  z-index: 2 !important;
}

.emba-counselor-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 6px 18px !important;
  background: rgba(200, 168, 75, 0.12) !important;
  border: 1px solid rgba(200, 168, 75, 0.3) !important;
  border-radius: 30px !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  color: #927220 !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 16px !important;
}

.emba-counselor-badge i {
  color: var(--emba-gold, #c8a84b) !important;
}

.emba-counselor-title {
  font-size: 2.35rem !important;
  font-weight: 800 !important;
  color: var(--emba-navy-main, #0b132b) !important;
  line-height: 1.25 !important;
  margin-bottom: 14px !important;
  letter-spacing: -0.5px !important;
}

.emba-counselor-title span {
  color: var(--emba-gold, #c8a84b) !important;
  position: relative !important;
  display: inline-block !important;
}

.emba-counselor-subtitle {
  font-size: 1.05rem !important;
  color: var(--emba-text-muted, #64748b) !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  line-height: 1.6 !important;
}

/* Carousel Container */
.emba-counselor-carousel-wrapper {
  position: relative !important;
  z-index: 2 !important;
  padding: 0 50px !important;
}

.emba-counselor-carousel-track-container {
  overflow: hidden !important;
  border-radius: 20px !important;
  padding: 15px 5px !important;
}

.emba-counselor-carousel-track {
  display: flex !important;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1) !important;
  will-change: transform !important;
  gap: 24px !important;
}

/* Card Items */
.emba-counselor-card-item {
  flex: 0 0 calc((100% - 48px) / 3) !important;
  max-width: calc((100% - 48px) / 3) !important;
  box-sizing: border-box !important;
}

.emba-counselor-card {
  background: #ffffff !important;
  border: 1px solid var(--emba-border-light, #e2e8f0) !important;
  border-radius: 18px !important;
  padding: 28px 24px 24px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  height: 100% !important;
  box-shadow: 0 10px 25px -5px rgba(11, 19, 43, 0.05), 0 4px 10px -2px rgba(0, 0, 0, 0.02) !important;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative !important;
}

.emba-counselor-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 22px 40px -10px rgba(11, 19, 43, 0.12), 0 8px 16px -4px rgba(200, 168, 75, 0.1) !important;
  border-color: rgba(200, 168, 75, 0.4) !important;
}

/* Counselor Card Top */
.emba-counselor-card-top {
  text-align: center !important;
  margin-bottom: 10px !important;
}

.emba-counselor-img-box {
  position: relative !important;
  width: 105px !important;
  height: 105px !important;
  margin: 0 auto 16px auto !important;
}

.emba-counselor-img {
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid #ffffff !important;
  box-shadow: 0 8px 20px rgba(11, 19, 43, 0.12), 0 0 0 3px rgba(200, 168, 75, 0.35) !important;
  transition: transform 0.35s ease !important;
}

.emba-counselor-card:hover .emba-counselor-img {
  transform: scale(1.05) !important;
  box-shadow: 0 10px 25px rgba(11, 19, 43, 0.15), 0 0 0 3px var(--emba-gold, #c8a84b) !important;
}

.emba-counselor-verified {
  position: absolute !important;
  bottom: 4px !important;
  right: 4px !important;
  width: 26px !important;
  height: 26px !important;
  background: var(--emba-gold, #c8a84b) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 0.72rem !important;
  border: 2px solid #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
}

.emba-counselor-name {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--emba-navy-main, #0b132b) !important;
  margin-bottom: 4px !important;
  letter-spacing: -0.2px !important;
}

.emba-counselor-role {
  font-size: 0.82rem !important;
  color: var(--emba-gold, #c8a84b) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  margin: 0 !important;
}

/* Counselor Features */
.emba-counselor-card-body {
  margin-bottom: 22px !important;
  padding: 16px !important;
  background: #f8fafc !important;
  border-radius: 12px !important;
  border: 1px solid #edf2f7 !important;
}

.emba-counselor-features {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

.emba-counselor-features li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  font-size: 0.9rem !important;
  color: var(--emba-text-body, #334155) !important;
  line-height: 1.45 !important;
}

.emba-counselor-features li i {
  color: var(--emba-gold, #c8a84b) !important;
  font-size: 0.95rem !important;
  margin-top: 3px !important;
  flex-shrink: 0 !important;
}

.emba-counselor-features li strong {
  color: var(--emba-navy-main, #0b132b) !important;
  font-weight: 700 !important;
}

/* Button CTA */
.emba-counselor-card-footer {
  margin-top: auto !important;
}

.emba-counselor-btn {
  width: 100% !important;
  padding: 13px 20px !important;
  border: none !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, #0b132b 0%, #231f6a 100%) !important;
  color: #ffffff !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.15) !important;
}

.emba-counselor-btn i {
  font-size: 0.85rem !important;
  transition: transform 0.3s ease !important;
}

.emba-counselor-btn:hover {
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #0b132b !important;
  box-shadow: 0 6px 18px rgba(200, 168, 75, 0.35) !important;
}

.emba-counselor-btn:hover i {
  transform: translateX(4px) !important;
}

/* Navigation Arrows */
.emba-counselor-nav {
  position: absolute !important;
  top: calc(50% - 25px) !important;
  width: 48px !important;
  height: 48px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  border: 1px solid var(--emba-border-light, #e2e8f0) !important;
  color: var(--emba-navy-main, #0b132b) !important;
  font-size: 1rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease !important;
}

.emba-counselor-prev {
  left: 0 !important;
}

.emba-counselor-next {
  right: 0 !important;
}

.emba-counselor-nav:hover {
  background: var(--emba-navy-main, #0b132b) !important;
  color: var(--emba-gold, #c8a84b) !important;
  border-color: var(--emba-navy-main, #0b132b) !important;
  transform: scale(1.08) !important;
  box-shadow: 0 8px 20px rgba(11, 19, 43, 0.2) !important;
}

/* Dots Indicator */
.emba-counselor-dots {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 32px !important;
}

.emba-counselor-dot {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background: #cbd5e1 !important;
  border: none !important;
  cursor: pointer !important;
  padding: 0 !important;
  transition: all 0.35s ease !important;
}

.emba-counselor-dot.active {
  width: 28px !important;
  border-radius: 12px !important;
  background: var(--emba-gold, #c8a84b) !important;
  box-shadow: 0 2px 8px rgba(200, 168, 75, 0.4) !important;
}


/* ==========================================================================
   CONSULTATION MODAL POPUP
   ========================================================================== */

.emba-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 99999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: opacity 0.35s ease, visibility 0.35s ease !important;
}

.emba-modal-overlay.active {
  opacity: 1 !important;
  visibility: visible !important;
}

.emba-modal-backdrop {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(11, 19, 43, 0.75) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.emba-modal-dialog {
  position: relative !important;
  z-index: 2 !important;
  width: 92% !important;
  max-width: 440px !important;
  max-height: 92vh !important;
  margin: auto !important;
  transform: scale(0.9) translateY(20px) !important;
  transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.emba-modal-overlay.active .emba-modal-dialog {
  transform: scale(1) translateY(0) !important;
}

.emba-modal-content {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 0 !important;
  box-shadow: 0 20px 45px rgba(11, 19, 43, 0.35) !important;
  position: relative !important;
  border: 1px solid rgba(200, 168, 75, 0.3) !important;
  overflow: hidden !important;
}

.emba-modal-close {
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
  background: rgba(255, 255, 255, 0.15) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 50% !important;
  font-size: 1.2rem !important;
  color: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  z-index: 10 !important;
  transition: all 0.25s ease !important;
}

.emba-modal-close:hover {
  background: rgba(200, 168, 75, 0.35) !important;
  color: #ffffff !important;
  transform: rotate(90deg) !important;
}

.emba-modal-header {
  text-align: center !important;
  background: linear-gradient(135deg, #0b132b 0%, #1e3158 100%) !important;
  padding: 16px 20px !important;
  margin: 0 !important;
  border-bottom: 2px solid var(--emba-gold, #c8a84b) !important;
  position: relative !important;
}

.emba-modal-title {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

/* Modal Form Controls */
.emba-modal-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 11px !important;
  padding: 20px 22px !important;
}

.emba-form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.emba-input-wrapper {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
}

.emba-input-icon {
  position: absolute !important;
  left: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #94a3b8 !important;
  font-size: 0.85rem !important;
  pointer-events: none !important;
  transition: color 0.25s ease !important;
  z-index: 2 !important;
}

.emba-form-control {
  width: 100% !important;
  height: 44px !important;
  padding: 0 14px 0 38px !important;
  line-height: 42px !important;
  border: 1.5px solid #cbd5e1 !important;
  border-radius: 8px !important;
  font-size: 0.88rem !important;
  color: var(--emba-navy-main, #0b132b) !important;
  background: #ffffff !important;
  outline: none !important;
  transition: all 0.25s ease !important;
  box-shadow: none !important;
}

.emba-form-control::placeholder {
  color: #94a3b8 !important;
  opacity: 1 !important;
}

.emba-form-control:focus {
  border-color: var(--emba-gold, #c8a84b) !important;
  box-shadow: 0 0 0 3px rgba(200, 168, 75, 0.2) !important;
}

.emba-form-control.is-invalid {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
}

.emba-field-error {
  color: #ef4444 !important;
  font-size: 0.74rem !important;
  font-weight: 600 !important;
  margin-top: 2px !important;
  margin-left: 2px !important;
  display: block !important;
  line-height: 1.2 !important;
}

.emba-form-control:focus+.emba-input-icon,
.emba-input-wrapper:focus-within .emba-input-icon {
  color: var(--emba-gold, #c8a84b) !important;
}

select.emba-form-control {
  cursor: pointer !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  padding: 0 34px 0 38px !important;
  line-height: 42px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
}

select.emba-form-control option {
  padding: 8px 12px !important;
  font-size: 0.88rem !important;
  color: #0b132b !important;
  background: #ffffff !important;
}

/* Submit Button */
.emba-form-actions {
  margin-top: 4px !important;
}

.emba-form-submit-btn {
  width: 100% !important;
  padding: 12px 18px !important;
  border: none !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, #c8a84b 0%, #d4af37 100%) !important;
  color: #0b132b !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  cursor: pointer !important;
  box-shadow: 0 4px 14px rgba(200, 168, 75, 0.3) !important;
  transition: all 0.3s ease !important;
}

.emba-form-submit-btn:hover {
  background: linear-gradient(135deg, #0b132b 0%, #231f6a 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(11, 19, 43, 0.25) !important;
}

.emba-form-message {
  padding: 10px 14px !important;
  border-radius: 8px !important;
  font-size: 0.85rem !important;
  text-align: center !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
}

.emba-form-message.success {
  background: #dcfce7 !important;
  color: #15803d !important;
  border: 1px solid #bbf7d0 !important;
}

.emba-form-message.error {
  background: #fef2f2 !important;
  color: #b91c1c !important;
  border: 1px solid #fecaca !important;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .emba-counselor-card-item {
    flex: 0 0 calc((100% - 24px) / 2) !important;
    max-width: calc((100% - 24px) / 2) !important;
  }
}

@media (max-width: 768px) {
  .emba-counselor-section {
    padding: 60px 0 70px 0 !important;
  }

  .emba-counselor-title {
    font-size: 1.8rem !important;
  }

  .emba-counselor-carousel-wrapper {
    padding: 0 !important;
  }

  .emba-counselor-card-item {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .emba-counselor-nav {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   PROGRAMME OVERVIEW VIDEO PLAYER STYLING
   -------------------------------------------------------------------------- */
.emba-overview-video-card {
  background: #ffffff !important;
  border: 1.5px solid #e2e8f0 !important;
  border-radius: 20px !important;
  padding: 14px !important;
  box-shadow: 0 15px 35px -10px rgba(11, 19, 43, 0.12) !important;
  position: relative !important;
  transition: all 0.3s ease !important;
}

.emba-overview-video-card:hover {
  box-shadow: 0 20px 45px -10px rgba(11, 19, 43, 0.18) !important;
  border-color: #cbd5e1 !important;
}

.emba-video-wrapper {
  position: relative !important;
  width: 100% !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  background: #0b132b !important;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

.emba-overview-video {
  width: 100% !important;
  height: 100% !important;
  max-height: 350px !important;
  object-fit: cover !important;
  display: block !important;
  border-radius: 14px !important;
  cursor: pointer !important;
}

.emba-video-overlay-badge {
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  background: rgba(11, 19, 43, 0.75) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #ffffff !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 6px 14px !important;
  border-radius: 30px !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

.emba-video-overlay-badge i {
  color: #c8a84b !important;
}

.emba-video-center-play-btn {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(0.9) !important;
  width: 56px !important;
  height: 56px !important;
  background: rgba(11, 19, 43, 0.7) !important;
  backdrop-filter: blur(4px) !important;
  border: 2px solid rgba(255, 255, 255, 0.6) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  font-size: 1.2rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  opacity: 0 !important;
  transition: all 0.3s ease !important;
  z-index: 2 !important;
  padding-left: 3px !important;
}

.emba-video-wrapper:hover .emba-video-center-play-btn,
.emba-video-center-play-btn.emba-show {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

.emba-video-center-play-btn:hover {
  background: #231f6a !important;
  border-color: #c8a84b !important;
  color: #c8a84b !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
}

.emba-video-controls {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-top: 12px !important;
  padding: 4px 6px 2px 6px !important;
  flex-wrap: wrap !important;
}

.emba-video-status {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: #64748b !important;
}

.emba-video-live-dot {
  width: 8px !important;
  height: 8px !important;
  background-color: #10b981 !important;
  border-radius: 50% !important;
  display: inline-block !important;
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2) !important;
  animation: embaPulseDot 2s infinite !important;
}

@keyframes embaPulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.emba-video-btn-group {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.emba-video-control-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  background: #f1f5f9 !important;
  color: #0b132b !important;
  border: 1px solid #cbd5e1 !important;
  padding: 7px 16px !important;
  border-radius: 30px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  outline: none !important;
}

.emba-video-control-btn i {
  font-size: 0.85rem !important;
}

.emba-video-control-btn:hover {
  background: #0b132b !important;
  color: #ffffff !important;
  border-color: #0b132b !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(11, 19, 43, 0.15) !important;
}

.emba-video-control-btn.emba-muted-btn {
  background: #fff7ed !important;
  color: #c2410c !important;
  border-color: #ffedd5 !important;
}

.emba-video-control-btn.emba-muted-btn:hover {
  background: #c2410c !important;
  color: #ffffff !important;
  border-color: #c2410c !important;
}

.emba-video-control-btn.emba-unmuted-btn {
  background: #f0fdf4 !important;
  color: #15803d !important;
  border-color: #dcfce7 !important;
}

.emba-video-control-btn.emba-unmuted-btn:hover {
  background: #15803d !important;
  color: #ffffff !important;
  border-color: #15803d !important;
}

/* Curriculum Cards Equal Height & Always Open */
.curriculum-row {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
}

.curriculum-col {
  display: flex !important;
  flex-direction: column !important;
  margin-bottom: 20px !important;
}

.curriculum-card-group {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  width: 100% !important;
}

.curriculum-card-group .accordion1 {
  height: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  margin-bottom: 8px !important;
}

.curriculum-panel {
  max-height: none !important;
  display: flex !important;
  flex-direction: column !important;
  flex-grow: 1 !important;
  margin-bottom: 0 !important;
  overflow: visible !important;
}

.curriculum-panel table {
  width: 100% !important;
}

.curriculum-card-group .accordion1::after,
.curriculum-card-group .accordion1.active1::after {
  display: none !important;
  content: none !important;
}

/* Fee Structure V3 Redesign */
.emba-fee-card-wrapper {
  background: #ffffff !important;
  border-radius: 20px !important;
  box-shadow: 0 10px 30px rgba(14, 28, 58, 0.08), 0 2px 8px rgba(14, 28, 58, 0.04) !important;
  border: 1px solid #e2e8f0 !important;
  border-top: 4px solid #c8a84b !important;
  overflow: hidden !important;
  padding: 0 !important;
}

.emba-fee-table-v3 {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  margin: 0 !important;
}

.emba-fee-table-v3 thead th {
  background: linear-gradient(135deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  padding: 16px 24px !important;
  border: none !important;
}

.emba-fee-table-v3 tbody td {
  padding: 16px 24px !important;
  font-size: 0.95rem !important;
  color: #1e293b !important;
  border-bottom: 1px solid #f1f5f9 !important;
  vertical-align: middle !important;
  transition: background 0.2s ease !important;
}

.emba-fee-table-v3 tbody tr:hover td {
  background: #f8fafc !important;
}

.emba-fee-table-v3 tbody tr:last-child td {
  border-bottom: none !important;
}

.emba-fee-table-v3 tbody td .fee-item-title {
  font-weight: 700 !important;
  color: #0e1c3a !important;
  display: inline-block !important;
  margin-right: 6px !important;
}

.emba-fee-table-v3 tbody td .fee-item-sub {
  font-style: italic !important;
  color: #64748b !important;
  font-size: 0.88rem !important;
  font-weight: 500 !important;
}

.emba-fee-table-v3 tbody td.fee-amount {
  color: #0e1c3a !important;
  font-size: 1.05rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}

.emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td {
  background: linear-gradient(135deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #ffffff !important;
  padding: 18px 24px !important;
}

.emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td:hover {
  background: linear-gradient(135deg, #1e3158 0%, #0e1c3a 100%) !important;
}

.emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td .fee-total-title {
  color: #ffffff !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin-right: 8px !important;
}

.emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td .fee-total-sub {
  color: rgba(255, 255, 255, 0.85) !important;
  font-style: italic !important;
  font-size: 0.9rem !important;
}

.emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td.fee-total-amount,
.emba-fee-table-v3 tbody td.fee-total-amount,
.emba-fee-table-v3 .fee-total-amount {
  color: #ffdc73 !important;
  font-size: 1.35rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.03em !important;
  white-space: nowrap !important;
}

@media (max-width: 767px) {

  .emba-fee-table-v3 thead th,
  .emba-fee-table-v3 tbody td,
  .emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td {
    padding: 12px 14px !important;
  }

  .fee-item-sub {
    display: block !important;
    margin-top: 2px !important;
  }

  .fee-total-sub {
    display: block !important;
    margin-top: 2px !important;
  }

  .emba-fee-table-v3 tbody tr.emba-fee-total-row-v3 td.fee-total-amount,
  .emba-fee-table-v3 tbody td.fee-total-amount,
  .emba-fee-table-v3 .fee-total-amount {
    font-size: 1.15rem !important;
  }
}

/* --------------------------------------------------------------------------
   SKILLS YOU'LL LEARN SECTION - ULTRA-PREMIUM LIGHT THEME (COMPACT)
   -------------------------------------------------------------------------- */
.emba-skills-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #ffffff 100%) !important;
  padding: 50px 0 !important;
  position: relative !important;
  overflow: hidden !important;
  border-top: 1px solid #e2e8f0 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

.emba-skills-geo {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.emba-skills-geo-1 {
  width: 340px !important;
  height: 340px !important;
  top: -80px !important;
  right: -60px !important;
  background: radial-gradient(circle, rgba(200, 168, 75, 0.08) 0%, rgba(200, 168, 75, 0) 70%) !important;
}

.emba-skills-geo-2 {
  width: 360px !important;
  height: 360px !important;
  bottom: -90px !important;
  left: -80px !important;
  background: radial-gradient(circle, rgba(30, 49, 88, 0.07) 0%, rgba(30, 49, 88, 0) 70%) !important;
}

.emba-skills-section .container {
  position: relative !important;
  z-index: 2 !important;
}

.emba-skill-card-compact {
  position: relative !important;
  background: #ffffff !important;
  border-radius: 14px !important;
  padding: 14px 18px !important;
  height: 100% !important;
  box-shadow: 0 4px 14px rgba(30, 49, 88, 0.04) !important;
  border: 1px solid #e2e8f0 !important;
  border-left: 4px solid #1e3158 !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-left-color 0.25s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.emba-skill-card-compact:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 24px rgba(30, 49, 88, 0.1) !important;
  border-left-color: #c8a84b !important;
  border-color: #e2e8f0 !important;
}

.emba-skill-icon-compact {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #1e3158 0%, #0e1c3a 100%) !important;
  color: #c8a84b !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  box-shadow: 0 3px 10px rgba(30, 49, 88, 0.15) !important;
  flex-shrink: 0 !important;
  transition: transform 0.25s ease !important;
}

.emba-skill-card-compact:hover .emba-skill-icon-compact {
  transform: scale(1.08) !important;
}

.emba-skill-title-compact {
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #0e1c3a !important;
  line-height: 1.35 !important;
}

@media (max-width: 767px) {
  .emba-skills-section {
    padding: 35px 0 !important;
  }

  .emba-skill-card-compact {
    padding: 12px 14px !important;
    gap: 10px !important;
  }

  .emba-skill-icon-compact {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    font-size: 0.95rem !important;
  }

  .emba-skill-title-compact {
    font-size: 0.88rem !important;
  }

  /* ==========================================================================
   CURRICULUM TABLE HIGHLIGHTED NOTE STYLES
   ========================================================================== */
  table.table tbody tr td.emba-table-note-highlight,
  .emba-table-note-highlight {
    background-color: #fef3c7 !important;
    background: #fef3c7 !important;
    border: 1px solid #fde68a !important;
    border-left: 4px solid #d97706 !important;
    color: #78350f !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 10px 14px !important;
    text-align: left !important;
    line-height: 1.45 !important;
    border-radius: 6px !important;
    margin-top: 6px !important;
  }

  table.table tbody tr td.emba-table-note-highlight strong,
  .emba-table-note-highlight strong {
    color: #b45309 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    font-size: 0.82rem !important;
    letter-spacing: 0.03em !important;
    margin-right: 4px !important;
  }
}

/* ==========================================================================
   ADMISSION PROCESS – PREMIUM TIMELINE & MODAL
   ========================================================================== */

/* ── Section Container ────────────────────────────────────────────────── */
.emba-ap-section {
  position: relative;
  padding: 70px 0 60px;
  background-color: #f8fafc;
  background-image:
    radial-gradient(circle at 10% 25%, rgba(200, 168, 75, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 75%, rgba(30, 49, 88, 0.05) 0%, transparent 50%);
  overflow: hidden;
}

/* ── Horizontal Timeline Track ────────────────────────────────────────── */
.emba-ap-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 45px auto 0;
  max-width: 1200px;
  position: relative;
}

/* ── Step ─────────────────────────────────────────────────────────────── */
.emba-ap-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  width: 170px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: embaApFadeUp 0.5s ease forwards;
}
.emba-ap-step[data-step="1"] { animation-delay: 0.1s; }
.emba-ap-step[data-step="2"] { animation-delay: 0.2s; }
.emba-ap-step[data-step="3"] { animation-delay: 0.3s; }
.emba-ap-step[data-step="4"] { animation-delay: 0.4s; }
.emba-ap-step[data-step="5"] { animation-delay: 0.5s; }

@keyframes embaApFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Node Ring ────────────────────────────────────────────────────────── */
.emba-ap-node {
  position: relative;
  z-index: 2;
}

.emba-ap-node-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3158 0%, #2a4270 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 20px rgba(30, 49, 88, 0.28),
    0 0 0 5px rgba(200, 168, 75, 0.18);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.emba-ap-node-ring:hover {
  transform: scale(1.12);
  box-shadow:
    0 8px 28px rgba(30, 49, 88, 0.38),
    0 0 0 7px rgba(200, 168, 75, 0.35);
  background: linear-gradient(135deg, #c8a84b 0%, #dab95e 100%);
}

.emba-ap-node-num {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.05em;
}

/* ── Step Label ───────────────────────────────────────────────────────── */
.emba-ap-label {
  margin-top: 16px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e3158;
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.01em;
  max-width: 160px;
}

/* ── Connector (Horizontal) ───────────────────────────────────────────── */
.emba-ap-connector {
  display: flex;
  align-items: center;
  flex: 1 1 0;
  min-width: 35px;
  max-width: 100px;
  height: 72px;
  position: relative;
}

.emba-ap-connector-line {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c8a84b 0%, rgba(200, 168, 75, 0.4) 50%, #c8a84b 100%);
  position: relative;
}

.emba-ap-connector-line::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c8a84b;
}

/* ── View More CTA Button ─────────────────────────────────────────────── */
.emba-ap-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 30px;
  background: linear-gradient(135deg, #c8a84b 0%, #dab95e 100%);
  color: #1e3158;
  border: none;
  border-radius: 50px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 18px rgba(200, 168, 75, 0.35);
  position: relative;
  overflow: hidden;
}

.emba-ap-view-more-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s ease;
}

.emba-ap-view-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200, 168, 75, 0.45);
  background: linear-gradient(135deg, #dab95e 0%, #c8a84b 100%);
}

.emba-ap-view-more-btn:hover::before {
  left: 100%;
}

.emba-ap-view-more-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.emba-ap-view-more-btn:hover i {
  transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════════════
   ADMISSION PROCESS – XXL MODAL
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Overlay ──────────────────────────────────────────────────────────── */
.emba-ap-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(10, 15, 30, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.emba-ap-modal-overlay.emba-ap-modal--active {
  opacity: 1;
  visibility: visible;
}

/* ── Modal Container ──────────────────────────────────────────────────── */
.emba-ap-modal {
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(200, 168, 75, 0.12);
  transform: translateY(30px) scale(0.96);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
}

.emba-ap-modal-overlay.emba-ap-modal--active .emba-ap-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Modal Header ─────────────────────────────────────────────────────── */
.emba-ap-modal-header {
  position: relative;
  padding: 28px 36px;
  background: linear-gradient(135deg, #1e3158 0%, #2a4270 100%);
  flex-shrink: 0;
}

.emba-ap-modal-header-bg {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg,
    transparent,
    transparent 12px,
    rgba(200, 168, 75, 0.06) 12px,
    rgba(200, 168, 75, 0.06) 13px);
  pointer-events: none;
}

.emba-ap-modal-header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.emba-ap-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #c8a84b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.emba-ap-modal-title {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.01em;
}

.emba-ap-modal-close {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.emba-ap-modal-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

/* ── Modal Body ───────────────────────────────────────────────────────── */
.emba-ap-modal-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 36px 40px 40px;
  scroll-behavior: smooth;
}

/* Custom scrollbar for modal body */
.emba-ap-modal-body::-webkit-scrollbar {
  width: 6px;
}
.emba-ap-modal-body::-webkit-scrollbar-track {
  background: #f1f5f9;
}
.emba-ap-modal-body::-webkit-scrollbar-thumb {
  background: #c8a84b;
  border-radius: 10px;
}

/* ── Modal Steps (vertical timeline inside modal) ─────────────────────── */
.emba-ap-modal-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.emba-ap-modal-step {
  display: flex;
  gap: 24px;
  position: relative;
}

/* ── Step Marker (left side) ──────────────────────────────────────────── */
.emba-ap-modal-step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
}

.emba-ap-modal-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e3158 0%, #2a4270 100%);
  color: #ffffff;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(30, 49, 88, 0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.emba-ap-modal-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, #c8a84b 0%, rgba(200, 168, 75, 0.15) 100%);
  min-height: 20px;
}

.emba-ap-modal-step--last .emba-ap-modal-step-line {
  display: none;
}

/* ── Step Content (right side) ────────────────────────────────────────── */
.emba-ap-modal-step-content {
  flex: 1;
  padding-bottom: 32px;
  min-width: 0;
}

.emba-ap-modal-step--last .emba-ap-modal-step-content {
  padding-bottom: 0;
}

.emba-ap-modal-step-title {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1e3158;
  margin: 0 0 12px;
  padding-top: 12px;
  line-height: 1.3;
}

.emba-ap-modal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.emba-ap-modal-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.65;
}

.emba-ap-modal-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8a84b;
}

/* ── Modal Tables ─────────────────────────────────────────────────────── */
.emba-ap-modal-table-wrap {
  margin-top: 16px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.emba-ap-modal-table {
  margin-bottom: 0 !important;
  border-collapse: collapse;
  width: 100%;
  min-width: 520px;
}

.emba-ap-modal-table thead th {
  background: #1e3158 !important;
  color: #ffffff !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  padding: 10px 14px !important;
  border: none !important;
  letter-spacing: 0.02em;
}

.emba-ap-modal-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.emba-ap-modal-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.emba-ap-modal-table tbody td {
  font-size: 0.88rem !important;
  padding: 10px 14px !important;
  color: #334155 !important;
  border: 1px solid #e2e8f0 !important;
  background: #ffffff !important;
}

.emba-ap-modal-table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 8px;
}

.emba-ap-modal-table tbody tr:last-child td:last-child {
  border-radius: 0 0 8px 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   ADMISSION PROCESS – RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
  .emba-ap-section {
    padding: 50px 0 45px;
  }

  .emba-ap-step {
    width: 140px;
  }

  .emba-ap-node-ring {
    width: 60px;
    height: 60px;
  }

  .emba-ap-node-num {
    font-size: 0.95rem;
  }

  .emba-ap-connector {
    height: 60px;
    min-width: 25px;
  }

  .emba-ap-label {
    font-size: 0.88rem;
    margin-top: 12px;
    max-width: 130px;
  }

  .emba-ap-modal {
    max-width: 95%;
  }

  .emba-ap-modal-body {
    padding: 28px 24px 32px;
  }
}

/* Mobile – Switch to Vertical Timeline */
@media (max-width: 767px) {
  .emba-ap-section {
    padding: 40px 0 35px;
  }

  /* Vertical timeline layout */
  .emba-ap-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-width: 100%;
    margin: 35px auto 0;
    padding-left: 24px;
  }

  .emba-ap-step {
    flex-direction: row;
    align-items: center;
    width: 100%;
    gap: 18px;
    position: relative;
    padding-left: 0;
  }

  .emba-ap-node {
    flex-shrink: 0;
  }

  .emba-ap-node-ring {
    width: 54px;
    height: 54px;
  }

  .emba-ap-node-num {
    font-size: 0.92rem;
  }

  .emba-ap-label {
    margin-top: 0;
    text-align: left;
    font-size: 0.95rem;
    max-width: none;
  }

  /* Vertical connector */
  .emba-ap-connector {
    height: auto;
    width: 54px;
    min-width: 54px;
    max-width: 54px;
    flex: 0 0 54px;
    justify-content: center;
    padding: 0;
  }

  .emba-ap-connector-line {
    width: 3px;
    height: 28px;
    background: linear-gradient(180deg, #c8a84b 0%, rgba(200, 168, 75, 0.3) 100%);
  }

  .emba-ap-connector-line::after {
    display: none;
  }

  /* Modal mobile adjustments */
  .emba-ap-modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 16px;
    margin: 8px;
  }

  .emba-ap-modal-header {
    padding: 20px 18px;
  }

  .emba-ap-modal-title {
    font-size: 1.15rem;
  }

  .emba-ap-modal-body {
    padding: 20px 16px 28px;
  }

  .emba-ap-modal-step {
    gap: 14px;
  }

  .emba-ap-modal-step-marker {
    width: 38px;
  }

  .emba-ap-modal-step-num {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

  .emba-ap-modal-step-title {
    font-size: 0.98rem;
    padding-top: 8px;
  }

  .emba-ap-modal-list li {
    font-size: 0.86rem;
    padding-left: 16px;
  }

  .emba-ap-modal-step-content {
    padding-bottom: 24px;
  }

  .emba-ap-modal-table-wrap {
    padding: 12px;
    overflow-x: auto;
  }

  .emba-ap-modal-close {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .emba-ap-view-more-btn {
    padding: 12px 28px;
    font-size: 0.92rem;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .emba-ap-timeline {
    padding-left: 14px;
  }

  .emba-ap-node-ring {
    width: 48px;
    height: 48px;
  }

  .emba-ap-connector {
    width: 48px;
    min-width: 48px;
    max-width: 48px;
    flex: 0 0 48px;
  }

  .emba-ap-label {
    font-size: 0.9rem;
  }

  .emba-ap-modal-badge {
    font-size: 0.62rem;
    padding: 4px 10px;
  }

  .emba-ap-modal-table thead th,
  .emba-ap-modal-table tbody td {
    font-size: 0.78rem !important;
    padding: 8px 10px !important;
  }
}