@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");
:root {
  --fs-sx: 0.625rem;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 2.5rem;
  --fs-6xl: 3rem;
  --fs-7xl: 3.5rem;
  --fs-8xl: 4rem;
  --lh-h1: 1.1;
  --lh-h2: 1.1;
  --lh-h3: 1.1;
  --lh-h4: 1.1;
  --lh-h5: 1.1;
  --lh-h6: 1.1;
  --lh-sm: 1.1;
  --lh-base: 1.5;
  --lh-body: 1.5;
  --lh-lg: 1.5;
  --paper: #f6f0e6;
  --muted: rgba(246, 240, 230, .72);
  --nav-bg: rgba(31, 43, 58, .72);
  --line: rgba(255, 255, 255, .16);
  --theme-primary: #27257f;
  --theme-secondary: #19175a;
  --theme-gold: #c9a84c;
  --theme-white: #ffffff;
  --theme-light: #f6f6f6;
  --theme-black: #222222;
  --theme-muted: #999999;
  --black-color-20: #9b9b9b;
  --white-color-100: #fffff;
  --white-color-80: #f5f5f5;
  --white-color-60: #e5e5e5;
  --white-color-20: #c5c5c5;
  --brand-purple: #9292ba;
  --brand-purple-dark: #6b6b96;
  --brand-purple-deeper: #5d5d91;
  --brand-purple-light: #e8e8f4;
  --brand-purple-xlight: #f4f4fa;
  --brand-gold: #c9a84c;
  --brand-gold-dark: #a07830;
  --brand-gold-light: #e8d4a0;
  --brand-gold-xlight: #fdf8ec;
  --white: #ffffff;
  --text-dark: #2a2a3e;
  --text-mid: #5a5a78;
  --text-light: #8888aa;
  --border: rgba(146, 146, 186, 0.18);
  --bg-background: #050b14;
  --text-foreground: #f8fafc;
  --text-muted-foreground: #94a3b8;
  --primary-color: #c5a880; /* Adjust to match your exact gold theme */
  --accent-subtle: rgba(255, 255, 255, 0.05);
  --header-height: 80px;
  --bg-dark: #080C14;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);
  --gold-primary: #C5A059;
  --gold-light: #E5C483;
  --text-muted: #8A94A6;
  --bg-deep-navy: #25236A; /* Primary dark navy background color */
  --overlay-box: rgba(255, 255, 255, 0.12); /* Semi-transparent highlight box */
  --text-muted-light: #B4B5D1; /* Lighter soft purple-gray text color */
  --bg-dark-panel: #0E0E0E;
  --bg-light-cream: #F5F1E6;
  --bg-card-container: #EFEBE0;
  --orange-accent: #E06132;
  --text-muted-light: #9DA3A8;
  --border-muted: rgba(255, 255, 255, 0.15);
  --color-swiss: #C2391B;
  --color-advanced: #1B4E96;
  --color-degree: #256A47;
  --bg-cream: #F8F5EE;
  --orange-accent: #C85A32;
  --blue-accent: #224C8C;
  --green-accent: #2E5C3D;
  --timeline-gray: #D6D3CC;
  --card-pill-bg: #EAE5DB;
  --color-culinary: #c8441b;
  --color-rooms: #1a4f9c;
  --color-fb: #3d6b4f;
  --bg-dark: #081220;
  --bg-light: #fcfbf7;
  --gold-primary: #d8b768;
  --gold-hover: #c9a453;
  --card-border: rgba(255, 255, 255, 0.08);
}

body {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  min-height: 100vh;
  color: var(--theme-black);
}

p {
  margin-bottom: 1rem;
  color: var(--theme-black);
  line-height: 1.5;
}

/**/
.theme-text-primary {
  color: var(--theme-primary);
}

/*Brand Color CSS Class*/
.text-brand-purple {
  color: var(--brand-purple);
}

.text-brand-purple-dark {
  color: var(--brand-purple-dark);
}

.text-brand-purple-deeper {
  color: var(--theme-primary);
}

.text-brand-purple-light {
  color: var(--brand-purple-light);
}

.text-brand-purple-extra-light {
  color: var(--brand-purple-xlight);
}

.text-brand-gold {
  color: var(--brand-gold);
}

.text-brand-gold-dark {
  color: var(--brand-gold-dark);
}

.text-brand-gold-light {
  color: var(--brand-gold-light);
}

.text-brand-gold-xlight {
  color: var(--brand-gold-xlight);
}

/*Final Utilities missing in Bootstrap*/
.z-index-1 {
  z-index: 1;
}

.z-index-10 {
  z-index: 10;
}

.z-index-20 {
  z-index: 20;
}

.z-index-30 {
  z-index: 30;
}

.z-index-40 {
  z-index: 40;
}

.z-index-50 {
  z-index: 50;
}

.z-index-60 {
  z-index: 60;
}

.z-index-70 {
  z-index: 70;
}

.z-index-80 {
  z-index: 80;
}

.z-index-90 {
  z-index: 90;
}

.z-index-100 {
  z-index: 100;
}

.z-index-1000 {
  z-index: 1000;
}

.opacity-0 {
  opacity: 0;
}

.opacity-10 {
  opacity: 0.1;
}

.opacity-20 {
  opacity: 0.2;
}

.opacity-30 {
  opacity: 0.3;
}

.opacity-40 {
  opacity: 0.4;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-60 {
  opacity: 0.6;
}

.opacity-70 {
  opacity: 0.7;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.fs-sx {
  font-size: var(--fs-sx);
}

.fs-xs {
  font-size: var(--fs-xs);
}

.fs-sm {
  font-size: var(--fs-sm);
}

.fs-base {
  font-size: var(--fs-base);
}

.fs-md {
  font-size: var(--fs-md);
}

.fs-lg {
  font-size: var(--fs-lg);
}

.fs-xl {
  font-size: var(--fs-xl);
}

.fs-2xl {
  font-size: var(--fs-2xl);
}

.fs-3xl {
  font-size: var(--fs-3xl);
}

.fs-4xl {
  font-size: var(--fs-4xl);
}

.fs-5xl {
  font-size: var(--fs-5xl);
}

.fs-6xl {
  font-size: var(--fs-6xl);
}

.fw-extrabold {
  font-weight: 800;
}

.letter-spacing-tight {
  letter-spacing: -0.025em;
}

.letter-spacing-wider {
  letter-spacing: -0.05em;
}

.lh-105 {
  line-height: 1.05;
}

.lh-tight {
  line-height: 1.25;
}

.text-dark {
  color: var(--text-dark);
}

.text-mid {
  color: var(--text-mid);
}

.text-light {
  color: var(--text-light);
}

.text-white {
  color: var(--white);
}

.max-w-2xl {
  max-width: 42rem;
}

.max-w-sm {
  max-width: 24rem;
}

/*Included in Bootstrap5*/
/*
fw-bold,
fw-bolder
fw-normal
fw-light
fw-lighter
fst-italic
fst-normal
 */
/* Utilities missing natively in Bootstrap */
.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.min-h-300 {
  min-height: 300px;
}

.x-small {
  font-size: 0.75rem;
}

.object-cover {
  object-fit: cover;
}

.bg-background {
  background-color: var(--bg-background);
}

.text-foreground {
  color: var(--text-foreground);
}

.text-muted-foreground {
  color: #c6c6c6;
}

* {
  box-sizing: border-box;
}

.site-header {
  padding: 15px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 100px;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 22px;
  min-height: 43px;
  z-index: 10;
  /* Level 2 + Level 3 */
  /* Show Menu */
  /* Menu Links */
  /* Arrow for submenu items */
}
.main-nav a {
  padding: 12px 15px;
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s ease;
}
.main-nav a:hover {
  color: var(--brand-purple-dark);
}
.main-nav .nav-item {
  position: relative;
}
.main-nav .nav-item .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}
.main-nav .nav-item .nav-link .arrow {
  font-size: 10px;
}
.main-nav .dropdown-menu-custom,
.main-nav .submenu {
  padding-left: 0;
  list-style: none;
  margin: 0;
  min-width: 240px;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(18, 28, 42, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  z-index: 100;
}
.main-nav .submenu {
  top: 0;
  left: 100%;
  margin-left: 0;
  padding-left: 0;
}
.main-nav .has-submenu::after {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
}
.main-nav .has-dropdown:hover > .dropdown-menu-custom,
.main-nav .has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  padding: 0;
}
.main-nav .dropdown-menu-custom li,
.main-nav .submenu li {
  position: relative;
}
.main-nav .dropdown-menu-custom a,
.main-nav .submenu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.main-nav .dropdown-menu-custom .has-submenu a, .main-nav .dropdown-menu-custom .submenu a {
  color: rgb(255, 255, 255);
}
.main-nav .dropdown-menu-custom a:hover,
.main-nav .submenu a:hover {
  background: rgba(212, 170, 53, 0.12);
  color: var(--brand-gold-light);
}
.main-nav .has-submenu > a::after {
  content: "›";
  margin-left: auto;
  font-size: 14px;
}

/* Level 1 */
/* Mobile */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: inline-flex;
}

/* Styles for Screens Smaller than 992px */
@media (min-width: 992px) and (hover: hover) {
  .dropdown-menu-custom,
.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 200px;
  }
  .submenu {
    top: 0;
    left: 100%;
  }
  /* Standard Desktop Hover Triggers */
  .has-dropdown:hover > .dropdown-menu-custom,
.has-submenu:hover > .submenu {
    display: block;
  }
}
/* ==========================================================================
   MOBILE STYLES (Relative expansion, zero hover dependence)
   ========================================================================== */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .mobile-only {
    display: flex !important;
    margin-top: 1rem;
  }
  .desktop-only {
    display: none !important;
  }
  /* Mobile Container Drawer */
  .main-nav {
    display: none;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    gap: 0.5rem;
  }
  .main-nav.is-open {
    display: flex;
  }
  .nav-item, .has-submenu {
    width: 100%;
  }
  .main-nav a,
.nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: #333;
    text-decoration: none;
    width: 100%;
  }
  /* Disable Absolute Positioning & Floating on Mobile Dropdowns */
  .dropdown-menu-custom,
.submenu {
    display: none; /* Hidden by default */
    position: relative; /* Expands in flow, pushing content down */
    top: auto;
    left: auto;
    width: 100%;
    box-shadow: none;
    background-color: #f9f9f9; /* Subtle background shift for depth */
    padding-left: 1rem;
    margin: 0;
    list-style: none;
    border-left: 2px solid #ddd;
  }
  /* Transition arrow rotation when active */
  .has-dropdown.is-active > .nav-link .arrow,
.has-submenu.is-active > .submenu-toggle .arrow {
    transform: rotate(180deg);
    transition: transform 0.2s ease;
  }
  /* Relative Expansion Classes Controlled by JS Click */
  .has-dropdown.is-active > .dropdown-menu-custom,
.has-submenu.is-active > .submenu {
    display: block;
  }
}
/*@media (max-width: 991px) {
    .dropdown-menu-custom,
    .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        margin: 0;
        box-shadow: none;
        background: rgba(255,255,255,.03);
        border: none;
        border-radius: 12px;
    }

    .has-dropdown:hover > .dropdown-menu-custom,
    .has-submenu:hover > .submenu {
        display: block;
    }

}*/
.btn {
  min-height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 0 27px;
  border-width: 1px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-apply {
  min-width: 185px;
  color: #182235;
  border-color: rgba(255, 225, 127, 0.32);
  background: linear-gradient(180deg, var(--brand-gold-light), var(--brand-gold));
  box-shadow: 0 16px 36px rgba(188, 140, 28, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.38);
}
.btn-apply:hover {
  color: #182235;
  border-color: rgba(255, 225, 127, 0.45);
  background: linear-gradient(180deg, #f5d879, #ddb43f);
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  text-decoration: none;
  width: max-content;
}
.brand img {
  color: var(--color-blue-20);
}

.header-cta {
  justify-self: end;
}

@media (max-width: 991.98px) {
  .site-header {
    padding-top: 22px;
  }
  .header-grid {
    grid-template-columns: 1fr auto;
  }
  .main-nav {
    grid-column: 1/-1;
    grid-row: 2;
    justify-content: center;
    overflow-x: auto;
    width: 100%;
  }
  .hero-content {
    padding-top: 56px;
  }
  h1 span {
    margin-left: 82px;
  }
}
@media (max-width: 575.98px) {
  .container-xxl {
    padding-inline: 22px;
  }
  .header-grid {
    gap: 18px;
  }
  .header-cta {
    padding-inline: 18px;
    min-height: 40px;
    font-size: 9px;
  }
  .main-nav {
    justify-content: flex-start;
    padding-inline: 12px;
    min-height: 42px;
  }
  .main-nav a {
    padding: 13px 12px;
    font-size: 8px;
  }
  .hero-content {
    padding-top: 46px;
    padding-bottom: 46px;
  }
  .partner-pill {
    margin-bottom: 26px;
    max-width: 100%;
    font-size: 8px;
    letter-spacing: 1.1px;
  }
  h1 {
    font-size: clamp(46px, 16vw, 66px);
  }
  h1 span {
    margin-left: 0;
  }
  h1 span::before {
    display: none;
  }
  .hero-copy p {
    margin-top: 24px;
    font-size: 15px;
  }
  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .hero-actions .btn,
.hero-actions .btn-apply,
.btn-programmes {
    width: 100%;
    min-width: 0;
    font-size: var(--fs-sx);
  }
}
/* Tiny absolute "Scroll" text next to the '18' */
.scroll-indicator {
  position: absolute;
  left: -15px;
  top: 35%;
  transform: rotate(-90deg);
  font-size: 12px;
  color: #4a5568;
  letter-spacing: 2px;
}

/* ==========================
   Programmes Section
========================== */
.programmes-section {
  background: #f2f2f2;
  padding: 25px 0;
}
.programmes-section .badge-tag {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 7px 15px;
  color: rgba(248, 250, 252, 0.8);
  border-radius: 50rem;
  font-size: var(--fs-xs);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.partners-section {
  padding: 25px 0;
}
.partners-section .glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.partners-section .card-img-zoom {
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.partners-section .card-hover:hover .card-img-zoom {
  transform: scale(1.05);
}

.badge-partner {
  border-color: rgba(197, 168, 128, 0.3) !important;
}

.gold-border {
  border: 1px solid rgba(197, 168, 128, 0.2);
}

.image-overlay-gradient {
  background: linear-gradient(to right, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
}

/* Responsive Overrides */
@media (max-width: 767.98px) {
  .header-description {
    max-w: 100%;
  }
  .image-overlay-gradient {
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
  }
}
/* Unique Component layouts for the Program Section */
.program-ambient-glow {
  background: radial-gradient(ellipse 60% 40% at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
}

.max-w-md {
  max-width: 28rem;
}

.white-space-nowrap {
  white-space: nowrap;
}

/* Custom Text Opacities */
.text-foreground-80 {
  color: rgba(248, 250, 252, 0.8);
}

.text-foreground-70 {
  color: rgba(248, 250, 252, 0.7);
}

.text-foreground-60 {
  color: rgba(248, 250, 252, 0.6);
}

/* Card Element Positioning Containers */
.programme-card {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background-color: #0A1628;
}

.programme-card .bg-img-container {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.programme-card:hover .bg-img-container {
  transform: scale(1.03);
}

/* Height constraints matching Tailwind classes min-h-[500px] & min-h-[320px] */
.programme-card.featured-card {
  min-height: 500px;
}

.programme-card.standard-card {
  min-height: 320px;
}

@media (min-width: 992px) {
  .programme-card.featured-card {
    min-height: 700px;
  }
}
/* Image overlays and specific gradient flow maps */
.program-overlay-gradient {
  background: linear-gradient(to top, #333333 0%, rgba(10, 22, 40, 0.5) 60%, transparent 100%);
}

/* Featured Badge design block */
.badge-popular {
  background: linear-gradient(135deg, #8B6914, #C9A84C);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Tiny Card Pills */
.badge-tag {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Custom interactive triggers for links nested inside cards */
.btn-link-group {
  color: var(--primary-color);
}

.btn-link-group:hover {
  color: var(--text-foreground);
}

.btn-link-group:hover .arrow-icon {
  transform: translateX(4px);
}

/* Line-Clamp logic replacement targeting modern cross-browser styles */
.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Small Responsive Alignment Adjustments */
@media (max-width: 575.98px) {
  .sm-flex-row {
    flex-direction: column !important;
  }
}
/* Partners Section Specifics */
.partner-ambient-glow {
  background: linear-gradient(180deg, transparent 0%, rgba(22, 34, 64, 0.4) 50%, transparent 100%);
}

.glass-navy {
  background: rgba(17, 30, 53, 0.6);
}

.border-primary-10 {
  border-color: rgba(197, 168, 128, 0.1);
}

.text-foreground-40 {
  color: rgba(248, 250, 252, 0.4);
}

.text-primary-50 {
  color: rgba(197, 168, 128, 0.5);
}

/* Card Image Zoom Effect */
/* Gradient Overlay for Images */
.bg-partner-overlay {
  background: linear-gradient(to top, #111E35 0%, transparent 100%);
}

.apply-section {
  /*background-image:
      linear-gradient(90deg, rgba(74, 74, 114, 0.5) 0%, rgba(74, 74, 114, 0.5) 36%, rgba(54, 54, 90, 0.5) 62%, rgba(106, 106, 163, 0.5) 100%),
      linear-gradient(180deg, rgba(53, 53, 97, 0.5) 0%, rgba(71, 71, 124, 0.5) 42%, rgba(73, 73, 133, 0.5) 100%),
      url("../images/hero-banner.jpg");*/
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 36%, rgba(0, 0, 0, 0.5) 62%, rgba(0, 0, 0, 0.5) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 42%, rgba(0, 0, 0, 0.5) 100%), url("../images/hero-banner.jpg");
}

/* Icon Box Styles */
.square-icon-box {
  width: 3.5rem;
  height: 3.5rem;
  flex-shrink: 0;
}

.bg-gold-gradient {
  background: linear-gradient(135deg, #8B6914, #C9A84C);
}

.bg-navy-gradient {
  background: linear-gradient(135deg, #162240, #1E3A5F);
}

/* Apply Section Overlays */
.bg-cta-gradient {
  background: linear-gradient(to bottom, rgba(10, 22, 40, 0.2), rgba(10, 22, 40, 0.2), rgba(10, 22, 40, 0.25));
}

.apply-ambient-glow {
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6);
}

.text-muted-foreground-20 {
  color: rgba(148, 163, 184, 0.2);
}

/* Pulse Animation */
.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--primary-color);
  animation: pulseGold 2s ease-in-out infinite;
}

@keyframes pulseGold {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(197, 168, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}
/* CTA Buttons */
.btn-cta-gold {
  background: linear-gradient(135deg, #8B6914 0%, #C9A84C 50%, #F0C96A 100%);
  color: #fff;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.btn-cta-gold:hover {
  transform: scale(1.05);
}

.btn-cta-outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-foreground);
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-cta-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: scale(1.05);
}

/* Noise overlay utility (assumed existing) */
.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyBAMAAADsEZWCAAAAGFBMVEVMaXG8vLz////w8PD///8AAAAAAABp2QxSAAAACHRSTlMAAQIDBAUGBwgJCgsMDQ4PEJqZq7AAAAAElFTkSuQmCC");
}

.border-purple-5 {
  border-color: rgba(197, 168, 128, 0.05);
}

/* Custom Border Accents */
.border-white-10 {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-5 {
  border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Muted Subtle Opacity Utilities */
.text-muted-foreground-50 {
  color: rgba(148, 163, 184, 0.5);
}

/* Custom Color Interactivity States */
.hover-text-foreground:hover {
  color: var(--text-foreground) !important;
}

.hover-text-primary:hover {
  color: var(--primary-color) !important;
}

.hover-text-muted:hover {
  color: var(--text-muted-foreground) !important;
}

/* Transition speed matching theme rules */
.transition-colors {
  transition: color 0.2s ease-in-out;
}

/*test*/
.recruiter-ticker-section {
  overflow: hidden;
}

.text-amber {
  color: #d4aa35; /* Gold accent color */
}

.tracking-widest {
  letter-spacing: 2px;
}

.x-small {
  font-size: 11px;
}

/* ==========================================================
   THE TICKER ENGINE
   ========================================================== */
.industry-partner-ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

/* Elegant edge fading masking so logos fade out nicely left & right */
.industry-partner-ticker-container::before,
.industry-partner-ticker-container::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
  top: 0;
  pointer-events: none;
}

.industry-partner-ticker-container::before {
  left: 0;
}

.industry-partner-ticker-container::after {
  right: 0;
  transform: rotateZ(180deg);
}

/* The actual running train */
.industry-partner-track {
  display: flex;
  width: 22400px; /* Width of one slide multiplied by total slide elements (including duplicates) */
  animation: scrollTicker 60s linear infinite;
}

/* Pause running animation smoothly when recruiter hovers over a logo */
.industry-partner-track:hover {
  animation-play-state: paused;
}

/* Individual Logo Windows */
.industry-partner-slide {
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.industry-partner-slide img {
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Bring logo to full clear color when focused */
.industry-partner-slide:hover img {
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.05);
}

/* CSS Animation Engine */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    /* This translates exactly half the track width (the duplicated set length) */
    transform: translateX(-11200px);
  }
}
/* ==========================================================
   THE TICKER ENGINE
   ========================================================== */
.logo-ticker-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 20px 0;
}

/* Elegant edge fading masking so logos fade out nicely left & right */
.logo-ticker-container::before,
.logo-ticker-container::after {
  content: "";
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
  top: 0;
  pointer-events: none;
}

.logo-ticker-container::before {
  left: 0;
}

.logo-ticker-container::after {
  right: 0;
  transform: rotateZ(180deg);
}

/* The actual running train */
.logo-ticker-track {
  display: flex;
  width: 12760px; /* Width of one slide multiplied by total slide elements (including duplicates) */
  animation: scrollTicker 60s linear infinite;
}

/* Pause running animation smoothly when recruiter hovers over a logo */
.logo-ticker-track:hover {
  animation-play-state: paused;
}

/* Individual Logo Windows */
.logo-slide {
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--theme-white);
  margin-right: 20px;
}

.logo-slide img {
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Bring logo to full clear color when focused */
.logo-slide:hover img {
  filter: brightness(1) invert(0) opacity(1);
  transform: scale(1.05);
}

/* CSS Animation Engine */
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    /* This translates exactly half the track width (the duplicated set length) */
    transform: translateX(-6380px);
  }
}
/* Container Background */
.locations-section {
  background-color: #0d192b; /* Matches your core dark layout */
}

/* Custom Utilities if not already defined */
.text-amber {
  color: #d4aa35;
}

.tracking-widest {
  letter-spacing: 2px;
}

.x-small {
  font-size: 11px;
}

/* ==========================================================
   LOCATIONS INLINE BUTTONS STYLING
   ========================================================== */
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 600;
  color: var(--theme-black); /* Soft, readable gray-blue */
  text-decoration: none;
  /* Border Styling */
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px; /* Fully rounded pill style */
  /* Clean Subtle Shadow */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Small Indicator Dot next to city name */
.location-dot {
  width: 6px;
  height: 6px;
  background-color: var(--theme-black); /* Subtle tech-blue indicator */
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* Hover States */
.location-btn:hover {
  color: var(--theme-white);
  background: var(--theme-primary); /* Very slight amber tint */
  border-color: var(--theme-primary); /* Gold border pop */
  /* Stronger glowing shadow effect on hover */
  box-shadow: 0 6px 20px rgba(212, 170, 53, 0.15), 0 0 0 1px rgba(212, 170, 53, 0.2);
  transform: translateY(-2px);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Glow up the indicator dot on hover */
.location-btn:hover .location-dot {
  background-color: var(--theme-white);
  transform: scale(1.2);
}

/*whatsapp button*/
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: #fff !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 2px 2px 10px #666;
  text-decoration: none;
}

/* Ensures the icon fits perfectly */
.whatsapp-float i {
  margin-top: 0;
}

/* Container hides the overflow outside the screen width */
.location-slider-container {
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  padding: 10px 0;
}

/* Track holds both lists side by side */
.location-slider-track {
  display: flex;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

/* Override Bootstrap's wrap to force a single line */
.location-slider-track .locations-inline-list {
  display: flex !important;
  flex-wrap: nowrap !important;
  padding-right: 1rem; /* Keeps a consistent gap between the two lists */
}

/* Optional: Pauses the slider when a user hovers over it */
.location-slider-container:hover .location-slider-track {
  animation-play-state: paused;
}

/* Keyframe to move the track by exactly half its total width (one full list size) */
@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.about-hero {
  background: var(--theme-primary);
  padding: 50px 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 100px);
  background-position: center;
  background-size: cover;
  /* Typography styling */
  /* Outline Filter Buttons */
  /* Solid Gold CTA Button */
}
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 16% 76%, rgba(18, 33, 52, 0.9), transparent 32%), linear-gradient(90deg, rgba(5, 14, 28, 0.2), transparent 48%);
  pointer-events: none;
}
.about-hero .sub-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brand-gold);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-hero .sub-title::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: var(--brand-gold);
}
.about-hero .main-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 20px;
  margin-bottom: 25px;
  color: var(--white);
}
.about-hero .main-heading::after {
  content: none;
}
.about-hero .main-heading span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: var(--brand-gold-light);
  margin-left: 0;
}
.about-hero .main-heading span:before {
  content: none;
  width: 0;
  height: 0;
}
.about-hero .desc-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}
.about-hero .btn {
  min-height: 30px;
}
.about-hero .btn-outline-custom {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: var(--fs-sx);
  padding: 3px 9px;
  transition: all 0.3s ease;
}
.about-hero .btn-outline-custom:hover {
  color: #fff;
  border-color: var(--brand-gold);
}
.about-hero .btn-gold {
  background-color: var(--brand-gold);
  color: #000;
  font-weight: 600;
  border-radius: 4px;
  font-size: var(--fs-sx);
  padding: 3px 9px;
  border: none;
  transition: background-color 0.3s ease;
}
.about-hero .btn-gold:hover {
  background-color: var(--brand-gold-light);
  color: #000;
}

/* Right Side Ecosystem Wrapper */
.ecosystem-container {
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 25px;
  position: relative;
}

.ecosystem-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 600;
  color: #353552;
}

/* Ecosystem Inner Cards Grid */
.ecosystem-grid {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  background-color: #fff;
}

.partner-card {
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #dbdbdb;
  margin: -1px; /* Overlaps borders cleanly to form a grid */
  min-height: 115px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Top premier partner row highlight */
.partner-card.featured {
  border-bottom: 1px solid var(--card-border);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.partner-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #353552;
  text-align: center;
}
.partner-title.fs-base {
  font-size: 1rem;
}

.partner-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.stat-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 20px 30px;
  margin-bottom: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
.stat-card:hover {
  transform: translateX(5px);
  transition: all 0.3s ease;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-gold);
  min-width: 130px;
}

.stat-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.stat-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.pl-stat-card {
  background-color: var(--theme-primary); /* Dark background so white/gold text is visible */
  border-radius: 8px;
}

.pl-stat-number {
  color: var(--brand-gold); /* Golden color */
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.2;
}

.pl-stat-label {
  color: var(--theme-white); /* Muted white */
  font-size: var(--fs-sm);
  font-weight: 400;
  line-height: 1.4;
  text-transform: uppercase;
}

.ecosystem-container {
  background-color: #15135c;
  border: 1px solid var(--card-border, #e5e7eb);
  border-radius: 16px;
  padding: 25px;
  position: relative;
}

.ecosystem-label {
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 600;
  color: var(--theme-white);
  text-align: center;
}

/* Outer wrapper */
.ecosystem-grid {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #dbdbdb;
  background-color: #fff;
}

/* All partner cards: Horizontal & Vertical Centering */
.partner-card {
  background-color: #ffffff;
  padding: 15px;
  border: 1px solid #dbdbdb;
  margin: -1px; /* Borders overlap cleanly */
  height: 115px;
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
}

/* Featured top partner centered */
.partner-card.featured {
  height: 130px;
  display: flex;
  align-items: center; /* Vertically center */
  justify-content: center; /* Horizontally center */
}

/* Global rule for all partner images */
.partner-card img {
  max-width: 100%;
  max-height: 80px; /* Constrains height so logos stay uniform */
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Text colors inside cards */
.text-partner-red {
  color: #E06666;
}

.text-partner-green {
  color: #6AA84F;
}

.text-partner-blue {
  color: #6FA8DC;
}

.text-partner-gold {
  color: var(--brand-gold);
}

.featured-rank {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--brand-gold);
  font-size: 1.25rem;
}

/* Bottom Fixed/Absolute Apply Button */
.floating-apply-btn {
  position: absolute;
  bottom: -60px;
  right: 0;
  background-color: var(--brand-gold);
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  font-size: 0.9rem;
  padding: 12px 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-apply-btn:hover {
  background-color: var(--brand-gold-light);
  color: #000;
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
  .main-heading {
    font-size: 2.5rem;
  }
  .ecosystem-container {
    margin-top: 50px;
  }
  .floating-apply-btn {
    position: static;
    margin-top: 30px;
    display: inline-flex;
    float: right;
  }
}
/* Floating Absolute Pill Button */
.apply-btn {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: #92753C;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: var(--brand-gold);
  color: #ffffff;
}

/* Responsive Settings */
@media (max-width: 991.98px) {
  .main-title {
    font-size: 2.5rem;
  }
  .right-column-wrapper {
    margin-top: 50px;
  }
  .stat-card {
    padding: 15px 20px;
  }
  .stat-number {
    min-width: 100px;
    font-size: 2rem;
  }
  .apply-btn {
    position: static;
    margin-top: 25px;
    float: right;
  }
}
.location-page {
  overflow: hidden;
  /* --- Responsiveness Controls --- */
  /* Top Header Area Styling */
  /* Timeline Connector System */
  /* The horizontal dotted connector line across nodes */
  /* Circular Number Nodes */
  /* Step interval micro-pill labels */
  /* Columns Content Information Text */
  /* Detail feature list blocks */
  /* Arrow indicators */
  /* Floating Corner Button Layout */
  /* Breakpoint configurations layout responsiveness overrides */
}
.location-page .top-navbar-banner {
  background-color: #f2f2f2;
  padding: 15px 0;
  font-size: 0.85rem;
  color: #555555;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.location-page .top-navbar-banner .breadcrumb-link {
  color: #777;
  text-decoration: none;
}
.location-page .top-navbar-banner .campus-badge {
  background-color: #000000;
  color: #ffffff !important;
  border-radius: 20px;
  padding: 5px 16px;
  font-weight: 500;
}
.location-page .top-navbar-banner .campus-pill-btn {
  color: #333333;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.location-page .top-navbar-banner .campus-pill-btn:hover {
  background-color: #000;
  color: #fff;
}
.location-page .split-main-wrapper {
  display: flex;
  align-items: stretch; /* Vertically centers children */
  min-height: calc(100vh - 144px);
  height: calc(100vh - 144px);
  /* --- Left Side Components --- */
  /* --- Right Side Components --- */
  /* Course Pathway Strip Rows */
}
.location-page .split-main-wrapper .left-dark-side {
  background-color: var(--theme-primary);
  color: #ffffff;
  flex: 1 1 50%;
  width: 100%;
  min-height: 100%;
  height: 100%;
  padding: 50px 50px 50px calc((100vw - 1320px) / 2 + 20px);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Vertically centers the content */
  box-sizing: border-box;
}
.location-page .split-main-wrapper .right-light-side {
  background-color: #f6f6f6;
  flex: 1 1 50%;
  height: 100%;
  padding: 50px calc((100vw - 1320px) / 4 + 20px) 50px 50px;
  display: flex;
  flex-direction: column; /* Changed to column stack */
  justify-content: center; /* Vertically centers the content */
  box-sizing: border-box;
}
.location-page .split-main-wrapper .campus-label {
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  color: #f9d16b;
}
.location-page .split-main-wrapper .campus-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #f9d16b;
}
.location-page .split-main-wrapper .hero-heading {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #f6f6f6;
}
.location-page .split-main-wrapper .hero-heading span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 600;
  color: #f6f6f6;
}
.location-page .split-main-wrapper .hero-desc {
  color: #f6f6f6;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 45px;
}
.location-page .split-main-wrapper .btn-explore {
  background-color: #FBF7F0;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  transition: opacity 0.2s;
}
.location-page .split-main-wrapper .btn-explore:hover {
  opacity: 0.9;
}
.location-page .split-main-wrapper .btn-view-pathways {
  background: var(--theme-primary);
  color: #ffffff;
  border: 1px solid var(--border-muted);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 6px;
  transition: all 0.2s;
}
.location-page .split-main-wrapper .btn-view-pathways:hover {
  border-color: #ffffff;
  border: 1px solid var(--border-muted);
  background-color: var(--brand-purple-dark);
}
.location-page .split-main-wrapper .info-card-container {
  background-color: var(--bg-card-container);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 620px;
}
.location-page .split-main-wrapper .stat-metric-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px 24px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
.location-page .split-main-wrapper .metric-num {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #12161A;
  line-height: 1;
  margin-bottom: 4px;
}
.location-page .split-main-wrapper .metric-num span {
  color: var(--brand-gold-dark);
}
.location-page .split-main-wrapper .metric-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #777D84;
  font-weight: 600;
  margin: 0;
}
.location-page .split-main-wrapper .pathway-strip {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 0, 0, 0.01);
}
.location-page .split-main-wrapper .pathway-strip:last-child {
  margin-bottom: 0;
}
.location-page .split-main-wrapper .pathway-title-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
}
.location-page .split-main-wrapper .dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.location-page .split-main-wrapper .dot-swiss {
  background-color: var(--color-swiss);
}
.location-page .split-main-wrapper .dot-advanced {
  background-color: var(--color-advanced);
}
.location-page .split-main-wrapper .dot-degree {
  background-color: var(--color-degree);
}
.location-page .split-main-wrapper .duration-badge {
  background-color: #F0EDE4;
  color: #7A7466;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
}
@media (max-width: 991.98px) {
  .location-page .left-dark-side {
    flex: 1 1 100%;
    padding: 60px 30px;
  }
  .location-page .right-light-side {
    flex: 1 1 100%;
    padding: 40px 20px;
    justify-content: center;
  }
  .location-page .hero-heading {
    font-size: 2.8rem;
  }
  .location-page .info-card-container {
    padding: 24px;
  }
}
.location-page .section-tag {
  color: var(--orange-accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 15px;
}
.location-page .main-heading {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 3.2rem;
  margin-bottom: 20px;
}
.location-page .header-divider {
  width: 45px;
  height: 2px;
  background-color: var(--text-dark);
  margin-bottom: 30px;
}
.location-page .intro-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 80px;
}
.location-page .timeline-row {
  position: relative;
}
.location-page .timeline-line {
  position: absolute;
  top: 40px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dashed var(--timeline-gray);
  z-index: 0;
}
.location-page .stage-container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.location-page .circle-node {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--bg-cream);
  border: 2px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 25px;
}
.location-page .stage-1 .circle-node {
  border-color: var(--orange-accent);
  color: var(--orange-accent);
}
.location-page .stage-2 .circle-node {
  border-color: var(--blue-accent);
  color: var(--blue-accent);
}
.location-page .stage-3 .circle-node {
  border-color: var(--green-accent);
  color: var(--green-accent);
}
.location-page .interval-pill {
  position: absolute;
  top: 48px;
  background-color: var(--card-pill-bg);
  color: #595244;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 12px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}
.location-page .pill-left {
  left: 33.33%;
}
.location-page .pill-right {
  left: 66.66%;
}
.location-page .stage-duration {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.location-page .stage-1 .stage-duration {
  color: var(--orange-accent);
}
.location-page .stage-2 .stage-duration {
  color: var(--blue-accent);
}
.location-page .stage-3 .stage-duration {
  color: var(--green-accent);
}
.location-page .stage-title {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 16px;
  min-height: 54px; /* Sync alignment matching */
}
.location-page .affiliation-badge {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--text-muted);
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 30px;
}
.location-page .info-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.01);
  text-align: left;
}
.location-page .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-page .feature-item {
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
}
.location-page .feature-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.location-page .feature-item:first-child {
  padding-top: 0;
}
.location-page .feature-item::before {
  content: "→";
  position: absolute;
  left: 0;
  font-weight: 600;
}
.location-page .stage-1 .feature-item::before {
  color: var(--orange-accent);
}
.location-page .stage-2 .feature-item::before {
  color: var(--blue-accent);
}
.location-page .stage-3 .feature-item::before {
  color: var(--green-accent);
}
.location-page .bottom-action-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #BA3D1D;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 26px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: background-color 0.2s;
}
.location-page .bottom-action-btn:hover {
  background-color: #A03115;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .location-page .timeline-line, .location-page .interval-pill {
    display: none;
  }
  .location-page .stage-title {
    min-height: auto;
  }
  .location-page .stage-container {
    margin-bottom: 50px;
  }
}

/* Custom dark container card */
.cta-banner {
  background-color: #0f0f0f;
  border-radius: 16px;
  color: #b5b5b5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Primary text bold accent */
.cta-banner strong {
  color: #ffffff;
  font-weight: 700;
}

/* Custom orange button styling */
.btn-orange {
  background-color: #c8411b;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  padding: 12px 24px;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  border: none;
}

.btn-orange:hover {
  background-color: #b03614;
  color: #ffffff;
}

/* Custom styles to enhance the Bootstrap 5 Accordion look */
.location-faqs {
  background-color: var(--theme-primary);
}
.location-faqs .faq-accordion .faq-box {
  border: 1px solid #e2e8f0;
  border-radius: 8px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}
.location-faqs .faq-accordion .faq-box .faq-question {
  font-size: var(--fs-base);
  font-weight: 600;
  color: #1a202c;
  background-color: #ffffff;
  padding: 1.25rem 1.5rem;
}
.location-faqs .faq-accordion .faq-box .faq-question:not(.collapsed) {
  color: #4a4a72; /* Bootstrap primary color */
  background-color: var(--brand-purple-light);
  box-shadow: none;
}
.location-faqs .faq-accordion .faq-box .faq-question:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}
.location-faqs .faq-accordion .faq-box .faq-answer {
  padding: 1.25rem 1.5rem;
  color: #4a5568;
  line-height: 1.6;
}

.section-heading-1 .section-label {
  color: var(--brand-purple);
  font-weight: 700;
}

.location-programs {
  padding: 80px 0 0;
  background: #ffffff;
  /* Section Header Styles */
  /* Main Card Container */
  /* Icon Box */
  /* Content Typography */
  /* Bottom Badges / Tags */
}
.location-programs .section-subtitle {
  color: var(--theme-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.location-programs .section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--theme-primary);
}
.location-programs .title-underline {
  width: 36px;
  height: 2px;
  background-color: var(--text-dark);
}
.location-programs .section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 420px;
  line-height: 1.5;
}
.location-programs .pathway-card {
  background: #ffffff;
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 0 40px 40px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.location-programs .icon-box {
  width: 56px;
  height: 56px;
  background-color: #fdf5f3;
  border: 1px solid #f7dfd7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.location-programs .card-subtitle {
  color: var(--theme-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.location-programs .card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}
.location-programs .card-body-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}
.location-programs .badge-tag {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
}
.location-programs .badge-coral {
  background-color: #fcebe6;
  color: #b03614;
  border: 1px solid #f8d0c5;
}
.location-programs .badge-blue {
  background-color: #edf4fc;
  color: #2b5b88;
  border: 1px solid #d4e4f7;
}
.location-programs .badge-green {
  background-color: #f0f7f2;
  color: #2e6643;
  border: 1px solid #d3e7d9;
}
.location-programs .badge-gray {
  background-color: #f2f2f2;
  color: #555555;
  border: 1px solid #e2e2e2;
}

.location-programs-tab-content {
  background-color: #f6f6f6;
  padding: 50px 0 50px 0;
  /* ---------------- LEFT TABS STYLING ---------------- */
  /* Custom horizontal divider for left panel */
  /* ---------------- DARK MIDDLE CARD STYLING ---------------- */
  /* ---------------- RIGHT PANEL STYLING ---------------- */
  /* Bottom Career Outcomes Box */
}
.location-programs-tab-content .nav-pills .nav-link {
  background: var(--brand-purple-light);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  color: var(--text-dark);
  transition: all 0.2s ease;
  position: relative;
  margin-bottom: 0;
}
.location-programs-tab-content .nav-pills .nav-link.active {
  background-color: #ffffff !important;
  border-color: #121212 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}
.location-programs-tab-content .dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  flex-shrink: 0;
}
.location-programs-tab-content .dot-orange {
  background-color: #c8411b;
}
.location-programs-tab-content .dot-blue {
  background-color: #1a56db;
}
.location-programs-tab-content .dot-green {
  background-color: #2e6643;
}
.location-programs-tab-content .tab-title {
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #121212;
}
.location-programs-tab-content .tab-subtitle {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.location-programs-tab-content .tab-badge {
  background-color: var(--badge-bg);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  color: #555;
}
.location-programs-tab-content .tab-divider {
  border-bottom: 1px solid #e5e0d8;
  margin: 16px 0;
}
.location-programs-tab-content .dark-card {
  background-color: var(--dark-card-bg);
  border-radius: 20px;
  padding: 36px 36px 0 36px;
  color: #ffffff;
  height: 100%;
}
.location-programs-tab-content .dark-card-subtitle {
  color: var(--theme-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.location-programs-tab-content .dark-card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--theme-primary);
  margin-bottom: 28px;
}
.location-programs-tab-content .info-grid-box {
  background-color: var(--dark-inner-bg);
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px 18px;
}
.location-programs-tab-content .info-grid-label {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.location-programs-tab-content .info-grid-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--theme-primary);
}
.location-programs-tab-content .info-grid-value.text-orange {
  color: var(--theme-primary);
}
.location-programs-tab-content .dark-feature-item {
  font-size: 0.88rem;
  color: var(--theme-primary);
  padding: 12px 0;
  border-bottom: 1px solid #222222;
  display: flex;
  align-items: center;
}
.location-programs-tab-content .dark-feature-item:last-child {
  border-bottom: none;
}
.location-programs-tab-content .dark-feature-item span.arrow {
  color: var(--theme-primary);
  margin-right: 12px;
  font-size: 1rem;
}
.location-programs-tab-content .phase-heading {
  color: var(--theme-primary);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 12px;
}
.location-programs-tab-content .phase-heading:first-child {
  margin-top: 0;
}
.location-programs-tab-content .module-card {
  background: var(--brand-purple-light);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.location-programs-tab-content .module-num {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--theme-primary);
  margin-right: 16px;
}
.location-programs-tab-content .module-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
.location-programs-tab-content .module-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}
.location-programs-tab-content .module-duration {
  background-color: var(--badge-bg);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  color: #555;
  white-space: nowrap;
}
.location-programs-tab-content .outcomes-box {
  background-color: #f5f0e8;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}
.location-programs-tab-content .outcomes-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.location-programs-tab-content .outcome-tag {
  background-color: #fbeee9;
  border: 1px solid #f2d0c4;
  color: var(--theme-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
}

.location-centers {
  background-color: var(--theme-primary);
  padding: 50px 0;
  /* Section Typography */
  /* Filter Buttons Styling */
  /* Summary Stat Banner Cards */
  /* Hotel Cards */
  /* Map Iframe Styling */
  /* Seat Metrics Section inside Card */
  /* Tag Pills */
  /* Card Footer */
}
.location-centers .section-subtitle {
  color: var(--theme-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.location-centers .section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #ffffff;
}
.location-centers .section-desc {
  color: var(--brand-purple-light);
  font-size: 0.9rem;
  max-width: 480px;
  line-height: 1.6;
}
.location-centers .filter-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-purple-light);
  letter-spacing: 1.5px;
}
.location-centers .btn {
  height: auto;
  min-height: auto;
}
.location-centers .btn-filter {
  background-color: #161616;
  border: 1px solid #282828;
  color: #888888;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.location-centers .btn-filter:hover {
  color: #ffffff;
  border-color: #444;
}
.location-centers .btn-filter.active[data-filter=all] {
  background-color: #222;
  border-color: #555;
  color: #fff;
}
.location-centers .btn-filter.active[data-filter=culinary] {
  border-color: var(--color-culinary);
  color: var(--color-culinary);
  background-color: rgba(226, 88, 62, 0.1);
}
.location-centers .btn-filter.active[data-filter=rooms] {
  border-color: var(--color-rooms);
  color: var(--color-rooms);
  background-color: rgba(58, 123, 213, 0.1);
}
.location-centers .btn-filter.active[data-filter=fb] {
  border-color: var(--color-fb);
  color: var(--color-fb);
  background-color: rgba(46, 147, 98, 0.1);
}
.location-centers .summary-card {
  background-color: #4e4e7a;
  border: 1px solid rgba(78, 78, 122, 0.6);
  border-radius: 12px;
  padding: 16px 20px;
}
.location-centers .summary-card .dot, .location-centers .metric-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.location-centers .dot-culinary {
  background-color: #c8441b;
}
.location-centers .dot-rooms {
  background-color: #1a4f9c;
}
.location-centers .dot-fb {
  background-color: #3d6b4f;
}
.location-centers .summary-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
}
.location-centers .summary-sub {
  font-size: 0.7rem;
  color: var(--brand-purple-light);
}
.location-centers .summary-count {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}
.location-centers .hotel-card {
  background: rgb(255, 255, 255);
  border: 1px solid rgba(78, 78, 122, 0.6);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s ease;
}
.location-centers .hotel-header {
  padding: 20px 20px 14px 20px;
}
.location-centers .hotel-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #353552;
  margin-bottom: 5px;
}
.location-centers .hotel-subtitle {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.location-centers .hotel-location-badge {
  font-size: 0.68rem;
  color: #aaa;
  background-color: #353552;
  border: 1px solid #2a2a2a;
  padding: 4px 8px;
  border-radius: 8px;
}
.location-centers .map-container {
  position: relative;
  width: 100%;
  background-color: #222;
}
.location-centers .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.3) contrast(1.1);
}
.location-centers .seats-section {
  padding: 20px;
  flex-grow: 1;
}
.location-centers .seats-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #555;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.location-centers .metric-row {
  margin-bottom: 10px;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.location-centers .metric-row.highlight {
  opacity: 1;
}
.location-centers .metric-row.dim {
  opacity: 0.25;
}
.location-centers .metric-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #b0b0b0;
  width: 90px;
}
.location-centers .metric-bar-bg {
  background-color: #222222;
  height: 4px;
  border-radius: 2px;
  flex-grow: 1;
  overflow: hidden;
  margin: 0 12px;
}
.location-centers .metric-bar-fill {
  height: 100%;
  border-radius: 2px;
}
.location-centers .fill-culinary {
  background-color: var(--color-culinary);
}
.location-centers .fill-rooms {
  background-color: var(--color-rooms);
}
.location-centers .fill-fb {
  background-color: var(--color-fb);
}
.location-centers .metric-val {
  font-size: 0.75rem;
  font-weight: 700;
  width: 15px;
  text-align: right;
}
.location-centers .metric-status {
  font-size: 0.68rem;
  color: #666;
  width: 50px;
  text-align: right;
}
.location-centers .hotel-tags {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.location-centers .tag-pill {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  border: 1px solid transparent;
}
.location-centers .tag-culinary {
  background-color: rgba(226, 88, 62, 0.1);
  color: #e2583e;
  border-color: rgba(226, 88, 62, 0.3);
}
.location-centers .tag-rooms {
  background-color: rgba(58, 123, 213, 0.1);
  color: #3a7bd5;
  border-color: rgba(58, 123, 213, 0.3);
}
.location-centers .tag-fb {
  background-color: rgba(46, 147, 98, 0.1);
  color: #2e9362;
  border-color: rgba(46, 147, 98, 0.3);
}
.location-centers .card-footer-custom {
  border-top: 1px solid #dedede;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.location-centers .enquire-btn {
  color: var(--theme-primary);
  text-decoration: none;
  font-weight: 700;
}
.location-centers .enquire-btn:hover {
  text-decoration: underline;
}

.location-partners-section {
  background: var(--brand-purple-xlight);
  padding: 80px 0;
  border-top: 1px solid rgba(14, 14, 14, 0.1);
  /* Section Typography */
  /* Grid Wrapper */
  /* Grid Items */
  /* Remove right border on the 4th column in desktop view */
}
.location-partners-section .section-subtitle {
  color: var(--theme-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.location-partners-section .section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-dark);
}
.location-partners-section .title-underline {
  width: 36px;
  height: 2px;
  background-color: var(--text-dark);
}
.location-partners-section .section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 520px;
  line-height: 1.6;
}
.location-partners-section .partners-grid {
  border-radius: 20px;
  overflow: hidden;
}
.location-partners-section .partner-card {
  background: #ffffff;
  padding: 40px 24px;
  text-align: center;
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  /* Icon Box */
  /* Card Titles */
  /* Red Subtitle Badge */
  /* Bottom Tags Text */
}
.location-partners-section .partner-card:hover {
  background-color: #f7f3ec;
}
.location-partners-section .partner-card .partner-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
  line-height: 1;
}
.location-partners-section .partner-card .partner-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.location-partners-section .partner-card .partner-brand {
  color: var(--theme-primary);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.location-partners-section .partner-card .partner-tags {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .location-partners-section {
    /* Remove bottom border on the last row */
  }
  .location-partners-section .partner-card:nth-child(4n) {
    border-right: none;
  }
  .location-partners-section .partner-card:nth-child(n+5) {
    border-bottom: none;
  }
}

.location-apply-section {
  padding: 50px 0;
  background-color: #ffffff;
  /* Subtitle Tag */
  /* Main Headline with Serif Italic Accent */
  /* Paragraph Text */
  /* Call To Action Buttons */
  /* Contact Details Item Styling */
}
.location-apply-section .section-subtitle {
  color: var(--theme-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.location-apply-section .hero-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
}
.location-apply-section .hero-title span.italic-accent {
  font-style: italic;
  color: var(--theme-primary);
  display: block;
  margin-left: 0;
}
.location-apply-section .hero-title span.italic-accent:before {
  content: none;
  width: 0;
  height: 0;
}
.location-apply-section .hero-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin: 0 150px 20px 150px;
  line-height: 1.6;
  text-align: center;
}
.location-apply-section .btn-apply-now {
  background-color: var(--theme-primary);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  transition: background-color 0.2s ease;
}
.location-apply-section .btn-apply-now:hover {
  background-color: #121212;
  color: #ffffff;
}
.location-apply-section .btn-download-brochure {
  background-color: transparent;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #dcd6cb;
  transition: all 0.2s ease;
}
.location-apply-section .btn-download-brochure:hover {
  background-color: #f0ebe1;
  color: var(--text-dark);
}
.location-apply-section .contact-item {
  margin-bottom: 20px;
}
.location-apply-section .contact-item:last-child {
  margin-bottom: 0;
}
.location-apply-section .contact-item .icon-square {
  width: 44px;
  height: 44px;
  background-color: #ede7da;
  border: 1px solid rgba(14, 14, 14, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.location-apply-section .contact-item .contact-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #8c8983;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.location-apply-section .contact-item .contact-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.placement-section {
  background-color: var(--theme-primary);
  background-image: linear-gradient(rgba(15, 10, 25, 0.5), rgba(15, 10, 25, 0.7)), url("../images/placement-bg-img.jpeg");
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  position: relative;
  overflow: hidden;
  height: calc(100vh - 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  /* Heading Styling */
}
.placement-section .container {
  width: 100%;
}
.placement-section .main-heading {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.15;
  color: #ffffff;
}
.placement-section .sub-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  line-height: 1.6;
}
.placement-section h1 span {
  margin-left: 0;
}
.placement-section h1 span::before {
  content: none;
  width: 0;
  height: 0;
}

/* Custom Colors */
.text-gold {
  color: #d4af37; /* Warm Gold Tone */
}

/* Badge Pill */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #7d6527;
  background-color: rgba(18, 28, 48, 0.6);
  color: #d4af37;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

.badge-pill .dot {
  width: 6px;
  height: 6px;
  background-color: #d4af37;
  border-radius: 50%;
  display: inline-block;
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
  .main-heading {
    font-size: 2.4rem;
  }
  .stat-col:not(:last-child) .stat-item::after {
    display: none; /* Hide vertical borders on smaller stacked screens */
  }
  .stat-item {
    padding: 15px 0;
  }
}
.placement-section-2 {
  background-color: #f7f6f0; /* Off-white / Cream background */
  color: #2b303a;
  font-family: "Inter", sans-serif;
  padding: 80px 0;
}

/* Subtitle Tag */
.sub-title {
  color: #bfa15f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Main Title & Gold Underline Accent */
.main-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #0b1528;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.main-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 40px;
  height: 3px;
  background-color: #bfa15f;
}

.description-text {
  color: #6c757d;
  font-size: 1rem;
  max-width: 520px;
  margin-top: 15px;
  margin-bottom: 45px;
}

/* Table Container Card */
.table-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Custom Table Styling */
.custom-table {
  margin-bottom: 0;
  vertical-align: middle;
}

.custom-table thead {
  background-color: #0b1528; /* Dark Navy Header */
  color: #ffffff;
}

.custom-table th {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 18px 24px;
  border: none;
  text-transform: uppercase;
}

.custom-table td {
  padding: 22px 24px;
  border-color: #f0f0f0;
  color: #333333;
  font-size: 0.95rem;
}

.batch-year {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1528;
}

/* Custom Progress Bar Styling */
.progress-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.custom-progress {
  height: 8px;
  background-color: #e9ecef;
  border-radius: 10px;
  flex-grow: 1;
  max-width: 140px;
}

.custom-progress .progress-bar {
  background-color: #d8b768;
  border-radius: 10px;
}

/* Percentage Badges */
.badge-percent {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
}

.badge-green {
  background-color: #d1e7dd;
  color: #0f5132;
}

.badge-yellow {
  background-color: #fff3cd;
  color: #856404;
}

/* Trend Icon Box */
.trend-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #ecebfa;
  border-radius: 4px;
  color: #6366f1;
  font-size: 0.75rem;
  margin-left: 6px;
}

/* Footer Legend */
.legend-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #6c757d;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background-color: #d9383a;
}

.dot-blue {
  background-color: #2b59c0;
}

.dot-green {
  background-color: #2e7d32;
}

.dot-gold {
  background-color: #d8b768;
}

/* CTA Section Base Styling */
.cta-section {
  background: var(--theme-primary);
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 90px 20px;
  text-align: center;
}

/* Subtitle / Eyebrow Text */
.cta-subtitle {
  color: #d8b768;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* Main Heading */
.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-heading .text-gold {
  color: #d8b768;
}

/* Paragraph Text */
.cta-description {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

/* Buttons Container */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Solid Gold Primary Button */
.btn-gold {
  background-color: #d8b768;
  color: #0b1528;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid #d8b768;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-gold:hover {
  background-color: #c9a453;
  border-color: #c9a453;
  color: #0b1528;
  transform: translateY(-2px);
}

/* Outline Secondary Button */
.btn-outline-custom {
  background-color: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
  .cta-heading {
    font-size: 2.2rem;
  }
  .cta-description {
    font-size: 0.95rem;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-gold, .btn-outline-custom {
    width: 100%;
    max-width: 320px;
  }
}
/* Section Base Background */
.recruiter-section {
  background-color: #08111e;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  padding: 80px 0;
}

/* Subtitle Tag */
.section-subtitle {
  color: #d8b768;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Recruiter Card Component */
.recruiter-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 20px 24px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.recruiter-card:hover {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(216, 183, 104, 0.3);
  transform: translateY(-4px);
}

/* Icon Styling */
.card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  line-height: 1;
}

/* Colored Indicator Dot below Icon */
.indicator-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin: 0 auto 16px auto;
}

/* Dot Color Variants */
.dot-red {
  background-color: #dc3545;
}

.dot-blue {
  background-color: #0d6efd;
}

.dot-green {
  background-color: #198754;
}

.dot-gold {
  background-color: #d8b768;
}

.dot-purple {
  background-color: #8b5cf6;
}

/* Card Title */
.card-title-text {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

/* Card Subtext Footer */
.card-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: #6b7c93;
  text-transform: uppercase;
  line-height: 1.4;
}

/* Responsive Grid Layout */
.recruiter-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

@media (max-width: 1200px) {
  .recruiter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .recruiter-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .recruiter-grid {
    grid-template-columns: 1fr;
  }
}
/* Sticky Tab Menu Bar (Fixes directly below main header) */
.sticky-tabs-bar {
  position: sticky;
  top: 98px; /* Offset equal to .site-header height */
  background-color: #141255;
  z-index: 1020;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.batch-nav {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  white-space: nowrap;
  padding: 0 15px;
}

.batch-nav .nav-link {
  color: #a0aec0;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 16px 20px;
  border: none;
  border-bottom: 3px solid transparent;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.batch-nav .nav-link:hover {
  color: #ffffff;
}

/* Active tab state */
.batch-nav .nav-link.active {
  color: #ffffff;
  background: transparent;
  border-bottom-color: #d8b768;
}

.batch-nav .badge-count {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 0.72rem;
  padding: 2px 7px;
  border-radius: 12px;
}

.batch-nav .nav-link.active .badge-count {
  background-color: #d8b768;
  color: #0b1528;
}

/* Section Background Variants */
.section-light {
  background-color: #f8fafc;
  color: #1e293b;
  padding: 70px 0;
  scroll-margin-top: 110px; /* Offset to align perfectly when clicking tabs */
}

.section-dark {
  background-color: #141255;
  color: #f8fafc;
  padding: 70px 0;
  scroll-margin-top: 110px;
}

/* Batch Title Pill */
.batch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #0b1528;
  color: #d8b768;
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.section-dark .batch-pill {
  background-color: #1e293b;
  border: 1px solid rgba(216, 183, 104, 0.3);
}

/* Main Title */
.batch-main-title {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0;
}

/* Summary Metric Boxes */
.stat-box {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  min-width: 95px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.section-dark .stat-box {
  background-color: #1e293b;
  border-color: #334155;
}

.stat-box .stat-val {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.1;
}

.stat-box .stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #64748b;
  text-transform: uppercase;
  margin-top: 4px;
}

.section-dark .stat-box .stat-lbl {
  color: #94a3b8;
}

/* Color Helpers for Stat values */
.val-red {
  color: #dc2626;
}

.val-blue {
  color: #1d4ed8;
}

.val-green {
  color: #15803d;
}

.val-gold {
  color: #b45309;
}

.section-dark .val-gold {
  color: #d8b768;
}

.student-grid {
  display: grid !important;
  /* Default Mobile: 2 columns */
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; /* Matches Bootstrap g-4 gap */
}

/* Tablet (Medium screens): 4 columns for smooth transition */
@media (min-width: 768px) {
  .student-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Desktop (Large screens): 7 columns */
@media (min-width: 1200px) {
  .student-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.student-grid-col {
  width: 100%;
}

/* Student Grid Cards */
.student-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 16px 20px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.section-dark .student-card {
  background: #232341;
  border-color: #c9a84c;
  color: #f8fafc;
}

.student-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Top Accent Line on Card */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.accent-red {
  background-color: #dc2626;
}

.accent-blue {
  background-color: #1d4ed8;
}

.accent-green {
  background-color: #15803d;
}

/* Avatar Circles */
.avatar-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 14px auto;
}

.avatar-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Playfair Display", serif;
}

/* Avatar Colors */
.bg-avatar-navy {
  background-color: #0b1528;
}

.bg-avatar-purple {
  background-color: #6366f1;
}

.bg-avatar-teal {
  background-color: #0d9488;
}

.bg-avatar-crimson {
  background-color: #be123c;
}

.bg-avatar-amber {
  background-color: #d97706;
}

.bg-avatar-blue {
  background-color: #0284c7;
}

.avatar-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  position: absolute;
  bottom: 2px;
  right: 2px;
}

.section-dark .avatar-dot {
  border-color: #1e293b;
}

/* Student Info */
.student-name {
  font-weight: 700;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.student-role {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 12px;
}

.section-dark .student-role {
  color: #94a3b8;
}

/* Hotel Badge */
.hotel-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.tag-taj {
  background-color: #fee2e2;
  color: #991b1b;
}

.tag-hyatt {
  background-color: #dbeafe;
  color: #1e40af;
}

.tag-itc {
  background-color: #fef3c7;
  color: #92400e;
}

.location-text {
  font-size: 0.72rem;
  color: #94a3b8;
}

/*

//Global Section Heading
.section-heading {
    &-type-1 {
        .tag {
            color: var(--brand-gold);
            text-transform: uppercase;
            font-size: var(--fs-lg);
            letter-spacing: 2.5px;
            font-weight: 600;
            margin-bottom: 15px;
        }
        .heading {
            font-weight: 800;
            font-size: var(--fs-6xl);
            line-height: 1;
            &.purple {
                color: var(--theme-primary);
            }
            .gold-gradient-text {
                display: block;
                background: linear-gradient(to right, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }
        .divider {
            width: 45px;
            height: 2px;
            background-color: var(--text-dark);
            margin-bottom: 30px;
        }
        .section-label {
            font-weight: 600;
            font-size: var(--fs-sm);
            display: inline-block;
            line-height: 1;
            margin-bottom: 20px;
            &.purple {
                color: var(--brand-purple);
                &.bordered {
                    border: 1px solid var(--brand-gold-light) !important;
                    padding: 7px 15px;
                    border-radius: 25px;
                    text-transform: uppercase;
                }
            }
            &.gold {
                color: var(--brand-gold);
                &.bordered {
                    border: 1px solid  var(--brand-gold-light) !important;
                    padding: 7px 12px;
                    border-radius: 25px;
                    text-transform: uppercase;
                }
            }

        }

        &.align-start {
            .tag {
                text-align: left;
            }

            .heading {
                text-align: left;
            }
        }
        &.align-center {
            .tag {
                text-align: center;
            }
            .heading {
                text-align: center;
            }

            .divider {
                margin: 0 auto;
            }
            .section-desc {
                text-align: center;
            }
            .section-label {
                margin-inline: auto;
                width: fit-content;
                display: block;
            }
        }
        .section-desc {
            color: var(--theme-primary);
            font-size: (--fs-sm);
            line-height: 1.6;
            margin: 0 0 10px 0;
        }

    }
    &-type-2 {
        .tag {
            font-size: var(--fs-base);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1.5px;
            margin-bottom: 5px;
            &.purple {
                color: var(--brand-purple);
            }
            &.gold {
                color: var(--brand-gold);
            }
        }
        .heading {
            font-weight: 800;
            font-size: var(--fs-6xl);
            margin-bottom: 20px;
            line-height: 1;
            color: var(--theme-primary);
            .gold-gradient-text {
                background: linear-gradient(to right, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }
        }
        .section-label {
            font-weight: 600;
            font-size: var(--fs-sm);
            display: inline-block;
            line-height: 1;
            margin-bottom: 20px;
            &.purple {
                color: var(--brand-purple);
                &.bordered {
                    border: 1px solid var(--brand-gold-light) !important;
                    padding: 7px 15px;
                    border-radius: 25px;
                    text-transform: uppercase;
                }
            }
            &.gold {
                color: var(--brand-gold);
                &.bordered {
                    border: 1px solid  var(--brand-gold-light) !important;
                    padding: 7px 12px;
                    border-radius: 25px;
                    text-transform: uppercase;
                }
            }

        }
        &.align-start {
            .tag {
                text-align: left;
            }
            .heading {
                text-align: left;
            }
        }
        &.align-center {
            .tag {
                text-align: center;
            }
            .heading {
                text-align: center;
            }

            .divider {
                margin: 0 auto;
            }
        }
        .section-desc {
            color: var(--theme-primary);
            font-size: var(--fs-sm);
            max-width: 480px;
            line-height: 1.6;
        }
    }

}*/
.location-enquiry-form {
  width: 100%;
  display: flex;
  justify-content: center;
  /* Mobile Responsiveness */
}
.location-enquiry-form .hero-form {
  width: 100%;
  max-width: 480px; /* Adjust based on hero layout */
  background: #ffffff;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-y: auto; /* Fallback for very small screens */
  /* Filled Header Section */
  /* Inline Gender Selection */
  /* Submit Button */
}
.location-enquiry-form .hero-form .form-header {
  background: var(--theme-primary, var(--theme-secondary)); /* Uses brand variable or fallback */
  padding: 0.85rem 1rem;
  text-align: center;
  color: var(--white);
  margin-bottom: 20px;
}
.location-enquiry-form .hero-form .form-header .form-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}
.location-enquiry-form .hero-form .form-header .form-subtitle {
  font-size: 0.75rem;
  margin: 0.25rem 0 0 0;
  opacity: 0.9;
  font-weight: 400;
  color: var(--brand-gold-light);
}
.location-enquiry-form .hero-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 0.75rem; /* Tight spacing to fit vertical constraint */
}
.location-enquiry-form .hero-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}
.location-enquiry-form .hero-form .form-group.full-width {
  grid-column: span 2;
}
.location-enquiry-form .hero-form .form-group label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--theme-primary);
  margin-bottom: 0.5rem;
}
.location-enquiry-form .hero-form .form-group input, .location-enquiry-form .hero-form .form-group select, .location-enquiry-form .hero-form .form-group textarea {
  width: 100%;
  padding: 0.6rem 0.85rem;
  font-size: var(--fs-sm);
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  background-color: #f8fafc;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.location-enquiry-form .hero-form .form-group input:focus, .location-enquiry-form .hero-form .form-group select:focus, .location-enquiry-form .hero-form .form-group textarea:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
  background-color: #ffffff;
}
.location-enquiry-form .hero-form .form-group textarea {
  resize: none; /* Prevents user resizing from breaking layout */
  height: 48px;
}
.location-enquiry-form .hero-form .gender-group .radio-options {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  height: 32px; /* Matches input height */
}
.location-enquiry-form .hero-form .gender-group .radio-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: #334155;
  cursor: pointer;
}
.location-enquiry-form .hero-form .gender-group .radio-label input[type=radio] {
  width: auto;
  margin: 0;
  cursor: pointer;
}
.location-enquiry-form .hero-form .submit-btn {
  margin-top: 0.85rem;
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background-color: var(--theme-primary);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.location-enquiry-form .hero-form .submit-btn:hover {
  background-color: var(--brand-gold);
}
@media (max-width: 480px) {
  .location-enquiry-form .hero-form .form-grid {
    grid-template-columns: 1fr; /* Single column on mobile */
  }
  .location-enquiry-form .hero-form .form-group.full-width {
    grid-column: span 1;
  }
}

.section-heading {
  /* ==========================================================================
     Shared Base Styles Across Types
     ========================================================================== */
  /* Shared Alignment Modifiers */
  /* ==========================================================================
     Type 1 Variations
     ========================================================================== */
  /* ==========================================================================
     Type 2 Variations
     ========================================================================== */
  /* ==========================================================================
     Type 3 Variations
     ========================================================================== */
  /* ==========================================================================
     Type 3 Variations
     ========================================================================== */
}
.section-heading .icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  border-radius: 5px;
  background: var(--brand-purple-light);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}
.section-heading .icon span {
  display: inline-block;
  font-size: 1.5rem;
  vertical-align: middle;
}
.section-heading .heading {
  font-weight: 800;
  font-size: var(--fs-6xl);
  line-height: 1;
  color: var(--theme-primary);
}
.section-heading .heading .gold-gradient-text {
  background: linear-gradient(to right, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-heading .section-label {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px; /* Adjust gap size here (e.g., 10px, 12px, 14px) */
  font-weight: 600;
  font-size: var(--fs-sm);
  line-height: 1.2; /* Slightly relaxed from 1 to prevent text clipping */
  margin-bottom: 20px;
  /* Target SVG explicitly for precise alignment */
}
.section-heading .section-label svg {
  display: block;
  margin: 0; /* Clears me-1 from HTML */
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--brand-gold);
}
.section-heading .section-label.purple {
  color: var(--theme-primary);
}
.section-heading .section-label.gold {
  color: var(--brand-gold);
}
.section-heading .section-label.bordered {
  border: 1px solid var(--brand-gold-light);
  border-radius: 25px;
  text-transform: uppercase;
}
.section-heading .section-label.bordered.purple {
  padding: 7px 15px;
}
.section-heading .section-label.bordered.gold {
  padding: 7px 12px;
}
.section-heading .section-desc {
  line-height: 1.5;
}
.section-heading .section-desc.min-width-560 {
  width: min(100%, 560px);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.section-heading.align-start {
  text-align: left;
}
.section-heading.align-start .tag, .section-heading.align-start .heading {
  text-align: left;
}
.section-heading.align-center {
  text-align: center;
}
.section-heading.align-center .tag, .section-heading.align-center .heading, .section-heading.align-center .section-desc {
  text-align: center;
}
.section-heading.align-center .divider {
  margin-inline: auto;
}
.section-heading.align-center .section-label {
  display: inline-flex; /* Ensures flex alignment stays intact when centered */
  margin-inline: auto;
}
.section-heading-type-1 .tag {
  color: var(--brand-gold);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 15px;
}
.section-heading-type-1 .tag.fs-small {
  font-size: var(--fs-xs);
  letter-spacing: 1.5px;
}
.section-heading-type-1 .heading.ff-playfair {
  font-family: "Playfair Display", serif;
}
.section-heading-type-1 .heading.fs-4xl {
  font-size: var(--fs-4xl);
}
.section-heading-type-1 .heading .gold-gradient-text {
  display: block;
  line-height: 1.4;
}
.section-heading-type-1 .divider {
  margin-top: 20px;
  width: 45px;
  height: 2px;
  margin-bottom: 20px;
  background-color: var(--text-dark);
}
.section-heading-type-1 .divider.purple {
  background-color: var(--text-dark);
}
.section-heading-type-1 .divider.gold {
  background-color: var(--brand-gold);
}
.section-heading-type-1 .section-desc {
  margin: 0 0 10px 0;
}
.section-heading-type-2 .tag {
  font-size: var(--fs-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 5px;
  color: var(--theme-black);
}
.section-heading-type-2 .tag.primary {
  color: var(--theme-primary);
}
.section-heading-type-2 .tag.secondary {
  color: var(--theme-secondary);
}
.section-heading-type-2 .tag.gold {
  color: var(--theme-gold);
}
.section-heading-type-2 .heading {
  margin-bottom: 20px;
  line-height: 1.2;
  font-size: var(--fs-5xl);
}
.section-heading-type-2 .heading.ff-playfair {
  font-family: "Playfair Display", serif;
}
.section-heading-type-2 .section-desc {
  max-width: 480px;
  font-size: var(--fs-sm);
}
.section-heading-type-2 .divider {
  margin-top: 20px;
  width: 45px;
  height: 2px;
  margin-bottom: 20px;
  background-color: var(--text-dark);
}
.section-heading-type-2 .divider.purple {
  background-color: var(--text-dark);
}
.section-heading-type-2 .divider.gold {
  background-color: var(--brand-gold);
}
.section-heading-type-3 .heading {
  margin-bottom: 10px;
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1.2;
}
.section-heading-type-3 .section-desc {
  font-size: var(--fs-base);
}
.section-heading-type-4 .tag {
  color: var(--white);
  margin-bottom: 15px;
}
.section-heading-type-4 .heading {
  color: var(--white);
  margin-bottom: 20px;
}
.section-heading-type-4 .section-desc {
  color: var(--white);
}
.section-heading-type-4 .divider {
  background-color: rgba(255, 255, 255, 0.7);
  width: 45px;
  height: 2px;
  margin-bottom: 20px;
}

.cii-program-section {
  padding: 40px 0;
}
.cii-program-section .cii-program-card {
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cii-program-section .cii-program-card.culinary {
  background: linear-gradient(135deg, #fff8ee, #fff3d6);
  border-color: #c9a84c;
}
.cii-program-section .cii-program-card.fnb {
  background: linear-gradient(135deg, #eef4ff, #dceeff);
  border-color: #2563eb;
}
.cii-program-section .cii-program-card.rooms {
  background: linear-gradient(135deg, #eefaf3, #d4f0e0);
  border-color: #059669;
}
.cii-program-section .cii-program-card .cii-program-icon {
  font-size: var(--fs-6xl);
}
.cii-program-section .cii-program-card .cii-program-name h3 {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin: 10px 0;
}
.cii-program-section .cii-program-card .cii-program-desc p {
  color: var(--text-dark);
  font-size: var(--fs-base);
}
.cii-program-section .cii-program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.campus-gallery {
  padding: 50px 0;
  background: linear-gradient(135deg, #f0f4f8, #f8f6f0);
  /* Mobile responsiveness: collapse spans to 1 column */
}
.campus-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  grid-auto-rows: 220px;
  grid-auto-flow: dense; /* Fills empty gaps dynamically */
  gap: 16px;
  width: 100%;
}
.campus-gallery .gallery-grid .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background-color: #1e293b;
  /* Image fitting magic */
  /* Span classes for specific image orientations */
  /* Caption Overlay Styling */
  /* Hover effect */
}
.campus-gallery .gallery-grid .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Fits any image to grid size without stretching */
  display: block;
  transition: transform 0.4s ease;
}
.campus-gallery .gallery-grid .gallery-item.span-horizontal {
  grid-column: span 2;
}
.campus-gallery .gallery-grid .gallery-item.span-vertical {
  grid-row: span 2;
}
.campus-gallery .gallery-grid .gallery-item.span-large {
  grid-column: span 2;
  grid-row: span 2;
}
.campus-gallery .gallery-grid .gallery-item .caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  pointer-events: none;
}
.campus-gallery .gallery-grid .gallery-item .caption-overlay .tag {
  background: var(--brand-gold, #f59e0b);
  color: #0f172a;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 0.25rem;
}
.campus-gallery .gallery-grid .gallery-item .caption-overlay .name {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  color: #ffffff;
}
.campus-gallery .gallery-grid .gallery-item .caption-overlay .location {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.campus-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.05);
}
@media (max-width: 576px) {
  .campus-gallery .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }
  .campus-gallery .gallery-item.span-horizontal, .campus-gallery .gallery-item.span-vertical, .campus-gallery .gallery-item.span-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

.event-section {
  padding: 50px 0;
  /* Responsive Grid: 3 columns on Desktop, 1 on Mobile */
  /* Base Card Styling */
}
.event-section .btn-load-more {
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 27px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  white-space: nowrap;
  display: block;
  margin: 20px auto;
  background-color: transparent;
  color: var(--theme-primary);
  border: 2px solid var(--theme-primary);
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}
.event-section .btn-load-more:hover {
  color: #ffffff;
  border-color: var(--theme-primary);
  background-color: var(--theme-primary);
}
.event-section .events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .event-section .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .event-section .events-grid {
    grid-template-columns: 1fr;
  }
}
.event-section .event-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  /* Top Media Header */
  /* Card Body Content */
  /* Color Variations */
}
.event-section .event-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.event-section .event-card .card-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Date Badge (Top Left Overlay) */
}
.event-section .event-card .card-media .media-icon {
  font-size: 2.2rem;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 700;
}
.event-section .event-card .card-media .date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.event-section .event-card .card-media .date-badge .day {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
}
.event-section .event-card .card-media .date-badge .month-year {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 2px;
}
.event-section .event-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.event-section .event-card .card-body .category-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.event-section .event-card .card-body .card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.35;
  margin: 0 0 10px 0;
}
.event-section .event-card .card-body .card-desc {
  font-size: 0.825rem;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.event-section .event-card.card-purple .card-media {
  background: linear-gradient(135deg, #2e1065 0%, #1e1b4b 100%);
}
.event-section .event-card.card-purple .category-tag {
  background-color: #fef3c7;
  color: #854d0e;
}
.event-section .event-card.card-blue .card-media {
  background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
}
.event-section .event-card.card-blue .category-tag {
  background-color: #eff6ff;
  color: #1d4ed8;
}
.event-section .event-card.card-green .card-media {
  background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
}
.event-section .event-card.card-green .category-tag {
  background-color: #ecfdf5;
  color: #047857;
}

.cohort-memories {
  background: var(--theme-primary);
  padding: 50px 0;
  /* Grid Container: 4 columns on desktop, responsive breakdown */
  /* Base Card */
}
.cohort-memories .batch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 20px;
  margin-inline: auto;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  .cohort-memories .batch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .cohort-memories .batch-grid {
    grid-template-columns: 1fr;
  }
}
.cohort-memories .batch-card {
  background-color: #121a24; /* Dark body card background */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Top Media Header */
  /* Header Color Variants */
  /* Card Body */
}
.cohort-memories .batch-card .card-media {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cohort-memories .batch-card .card-media .emoji-icon {
  font-size: 3rem;
}
.cohort-memories .batch-card.card-brown .card-media {
  background-color: #5c2807;
}
.cohort-memories .batch-card.card-purple .card-media {
  background-color: #2a1154;
}
.cohort-memories .batch-card.card-green .card-media {
  background-color: #0b4528;
}
.cohort-memories .batch-card.card-gold .card-media {
  background-color: #543e0c;
}
.cohort-memories .batch-card .card-body {
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  /* Gold Batch Badge */
  /* Title */
  /* Description */
  /* Tags Group */
}
.cohort-memories .batch-card .card-body .batch-badge {
  display: inline-block;
  width: fit-content;
  background-color: #d8b763;
  color: #0f172a;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.cohort-memories .batch-card .card-body .card-title {
  font-family: "Playfair Display", Georgia, serif;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.cohort-memories .batch-card .card-body .card-desc {
  color: #94a3b8;
  font-size: 0.825rem;
  line-height: 1.55;
  margin: 0 0 20px 0;
  flex-grow: 1; /* Pushes bottom tags to stay aligned */
}
.cohort-memories .batch-card .card-body .tags-group {
  display: flex;
  gap: 6px;
  align-items: center;
}
.cohort-memories .batch-card .card-body .tags-group .tag {
  font-size: 0.675rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
  border: 1px solid transparent;
}
.cohort-memories .batch-card .card-body .tags-group .tag.tag-culinary {
  background-color: rgba(216, 183, 99, 0.15);
  color: #d8b763;
  border-color: rgba(216, 183, 99, 0.2);
}
.cohort-memories .batch-card .card-body .tags-group .tag.tag-fb {
  background-color: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border-color: rgba(59, 130, 246, 0.2);
}
.cohort-memories .batch-card .card-body .tags-group .tag.tag-rooms {
  background-color: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.2);
}

.students-speak-section {
  /* 3-Column Responsive Grid */
  padding: 50px 0;
  /* Card Styling */
}
.students-speak-section .testimonials-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}
@media (max-width: 992px) {
  .students-speak-section .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .students-speak-section .testimonials-grid {
    grid-template-columns: 1fr;
  }
}
.students-speak-section .testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px 28px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Gold Decorative Quote Mark */
  /* Main Quote Text */
  /* Thin Horizontal Line */
  /* Author Section */
}
.students-speak-section .testimonial-card .quote-mark {
  color: var(--brand-gold, #d9b252);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  line-height: 0.8;
  margin-bottom: 24px;
  user-select: none;
}
.students-speak-section .testimonial-card .quote-text {
  font-size: var(--fs-base);
  font-style: italic;
  color: #334155;
  line-height: 1.5;
  margin: 0 0 24px 0;
  font-weight: 400;
}
.students-speak-section .testimonial-card .card-divider {
  height: 1px;
  background-color: #e2e8f0;
  width: 100%;
  margin-bottom: 20px;
}
.students-speak-section .testimonial-card .author-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.students-speak-section .testimonial-card .author-info .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand-gold, #d9b252);
  color: #0f172a;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.students-speak-section .testimonial-card .author-info .author-details {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.students-speak-section .testimonial-card .author-info .author-details .author-name {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}
.students-speak-section .testimonial-card .author-info .author-details .author-meta {
  font-size: var(--fs-xs);
  color: #64748b;
  margin: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 6px;
}
.students-speak-section .testimonial-card .author-info .author-details .author-meta .icon {
  font-size: 0.85rem;
}

.cii-life-cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--brand-purple) 0%, var(--theme-primary) 100%);
  /* Centered Wrapper Container */
  /* Base Button Style */
}
.cii-life-cta-section .cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 40px 20px;
  box-sizing: border-box;
  /* Stack vertically on small mobile screens */
}
@media (max-width: 576px) {
  .cii-life-cta-section .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cii-life-cta-section .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}
.cii-life-cta-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Solid Gold Button (Primary) */
  /* Outlined Button (Secondary) */
}
.cii-life-cta-section .btn.btn-primary {
  background-color: #e3be61;
  color: #121c27;
  border: 1px solid #e3be61;
  /* Soft golden glow underneath */
  box-shadow: 0 8px 24px rgba(227, 190, 97, 0.25);
}
.cii-life-cta-section .btn.btn-primary:hover {
  background-color: #d8af4e;
  border-color: #d8af4e;
  box-shadow: 0 10px 28px rgba(227, 190, 97, 0.4);
  transform: translateY(-1px);
}
.cii-life-cta-section .btn.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(227, 190, 97, 0.2);
}
.cii-life-cta-section .btn.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cii-life-cta-section .btn.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}
.cii-life-cta-section .btn.btn-outline:active {
  transform: translateY(0);
  background-color: rgba(255, 255, 255, 0.02);
}

.footer-section {
  background: var(--theme-white);
  padding: 50px 0 25px;
}
.footer-section .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}
.footer-section .social-icons a {
  color: var(--theme-muted);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.footer-section .social-icons a:hover {
  transition: all 0.3s ease;
  transform: scale(1.2) translateY(-2px);
}
.footer-section .social-icons a.facebook-icon:hover {
  color: #1877F2;
}
.footer-section .social-icons a.instagram-icon:hover {
  color: #E4405F;
}
.footer-section .social-icons a.youtube-icon:hover {
  color: #FF0033;
}
.footer-section .social-icons a.linkedin-icon:hover {
  color: #0A66C2;
}
.footer-section .footer-col-title {
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.footer-section .footer-menu-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.footer-section .footer-menu-links a {
  color: var(--theme-black);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 2px 0;
  margin-bottom: 5px;
}
.footer-section .footer-menu-links a:hover {
  transition: all 0.3s ease;
  transform: translateX(5px);
  color: var(--theme-primary);
}
.footer-section .footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.footer-section .footer-contact-info .footer-contact-card {
  border-bottom: 1px dashed #dddddd;
  padding-bottom: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}
.footer-section .footer-contact-info .footer-contact-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer-section .footer-contact-info .footer-contact-card:hover {
  transition: all 0.3s ease;
  transform: translateX(5px);
  color: var(--theme-primary);
}
.footer-section .footer-contact-info .footer-contact-card:hover a {
  color: var(--theme-primary);
}
.footer-section .footer-contact-info .footer-contact-card a {
  color: var(--theme-black);
  font-size: 1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 2px 0;
}
.footer-section .copyright {
  font-size: var(--fs-sm);
  font-weight: 500;
}
.footer-section .copyright a {
  color: var(--theme-black);
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 2px 0;
}
.footer-section .copyright a:hover {
  color: var(--theme-primary);
}

/*# sourceMappingURL=common.css.map */
