/* ==========================================================
   ASTER INSTITUTIONS & KC INTERNATIONAL - MODERN DESIGN SYSTEM & STYLESHEET
   ========================================================== */

/* PRELOADER STYLING */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loader-wrapper {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-spinner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(31, 178, 238, 0.2);
  border-top: 4px solid var(--accent-blue);
  border-right: 4px solid var(--accent-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  box-sizing: border-box;
}

.loader-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #1fb2ee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&family=Philosopher:wght@400;700&display=swap');

:root {
  /* Color Palette */
  --primary-navy: #0b1f3a;
  --primary-navy-light: #162f52;
  --accent-blue: #1fb2ee;
  --accent-blue-hover: #0093d9;
  --accent-gold: #f5a623;
  --accent-gold-hover: #e09212;
  --accent-red: #e63946;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  
  /* Fonts */
  --font-heading: 'Outfit', 'Philosopher', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Elevation & Shadows */
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.1);
  --shadow-lg: 0 16px 36px rgba(11, 31, 58, 0.15);
  --shadow-glow: 0 0 20px rgba(31, 178, 238, 0.35);

  /* Radius & Transitions */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: #f4f6f9;
  background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
  background-size: 24px 24px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, select, textarea {
  font-family: inherit;
  outline: none;
}

/* Utility Layout Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  position: relative;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 40px;
}

.highlight-cyan {
  color: var(--accent-blue);
}

/* Buttons & Badges */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-blue) 0%, #0088cc 100%);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
  background: linear-gradient(135deg, #2fc2ff 0%, var(--accent-blue) 100%);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #d4830c 100%);
  color: #fff;
}

.btn-gold:hover {
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-blue);
  color: var(--accent-blue);
}

.btn-outline:hover {
  background: var(--accent-blue);
  color: #fff;
}

/* Vertical Enquire Now Blinking Tab */
.vertical-enquire-btn, .kc-vertical-btn, .aster-vertical-btn {
  position: fixed;
  left: -48px;
  top: 45vh;
  z-index: 9999;
  transform: rotate(-90deg);
  background: var(--bg-white);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 8px 8px 0 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border: 2px solid var(--accent-blue);
  cursor: pointer;
  animation: blinkBorder 2s infinite;
  letter-spacing: 1px;
}

@keyframes blinkBorder {
  0%, 100% { color: var(--accent-blue); border-color: var(--accent-blue); }
  33% { color: var(--accent-gold); border-color: var(--accent-gold); }
  66% { color: var(--accent-red); border-color: var(--accent-red); }
}

/* Floating Action Buttons (Call & WhatsApp) */
.floating-actions, .kc-floating-actions, .aster-floating-actions {
  position: fixed;
  right: 24px;
  bottom: 95px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.float-btn, .kc-float-btn, .aster-float-btn {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  transition: var(--transition-fast);
}

.float-btn:hover, .kc-float-btn:hover, .aster-float-btn:hover {
  transform: scale(1.12);
  color: #fff;
}

.float-call, .kc-float-call, .aster-float-call {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
}

.float-whatsapp, .kc-float-whatsapp, .aster-float-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* TOP BAR & NAVIGATION HEADER (FULL WIDTH) */
.topbar {
  background: var(--primary-navy);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.topbar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-badges {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-pill {
  background: rgba(255,255,255,0.1);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

/* Header Navbar (Full Width Layout) */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
  width: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.excellence-badge {
  height: 48px;
  width: auto;
  border-left: 2px solid #e2e8f0;
  padding-left: 14px;
}

/* Navigation Links & Dropdown Overrides */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--primary-navy);
  padding: 14px 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-item.active .nav-link {
  color: var(--accent-blue);
}

/* Dropdown Menu - Override Bootstrap Hidden Rule */
.nav-menu .dropdown-menu {
  display: block !important;
  position: absolute;
  top: 100%;
  left: -12px;
  background: #ffffff;
  min-width: 250px;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-top: 3px solid var(--accent-blue);
  z-index: 1050;
}

/* Show Dropdown Menu on Hover */
.nav-item:hover > .dropdown-menu,
.nav-menu .dropdown-menu:hover {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

.dropdown-link {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: #1e293b;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-link:hover {
  background: rgba(31, 178, 238, 0.08);
  color: var(--accent-blue);
  padding-left: 24px;
}

.dropdown-header {
  padding: 8px 20px 4px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--accent-blue);
}

/* Dark Mode Dropdown Overrides */
[data-theme="dark"] .navbar {
  background: rgba(11, 31, 58, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .nav-link {
  color: #f1f5f9;
}

[data-theme="dark"] .nav-menu .dropdown-menu {
  background: #071324 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-top: 3px solid var(--accent-blue) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6) !important;
}

[data-theme="dark"] .dropdown-link {
  color: #cbd5e1 !important;
}

[data-theme="dark"] .dropdown-link:hover {
  background: rgba(31, 178, 238, 0.18) !important;
  color: #1fb2ee !important;
}

/* Hamburger Drawer Toggle */
.hamburger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger-icon {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-navy);
  border-radius: 3px;
  transition: var(--transition-fast);
}

/* Offcanvas Drawer for Mobile */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--primary-navy);
  color: #fff;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
  padding: 30px 24px;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-link {
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 0;
  display: block;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* HERO SHOWCASE CAROUSEL */
.hero-slider {
  position: relative;
  height: calc(100vh - 120px);
  min-height: 540px;
  max-height: 720px;
  background: var(--primary-navy);
  overflow: hidden;
}

.slide-track {
  height: 100%;
  width: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 1s ease;
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
}

.slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(11, 31, 58, 0.3) 0%, rgba(11, 31, 58, 0.7) 100%);
  pointer-events: none;
}

.slide-container {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-content {
  max-width: 680px;
  color: #fff;
}

.slide-tag {
  display: inline-block;
  background: var(--accent-blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.slide-desc {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  line-height: 1.6;
}

.slide-btns {
  display: flex;
  gap: 16px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 25;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
}

.prev-arrow { left: 24px; }
.next-arrow { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  width: 32px;
  background: var(--accent-blue);
}

/* Side Social Links */
.side-socials {
  position: absolute;
  right: 24px;
  top: 36%;
  transform: translateY(-50%);
  z-index: 22;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background: var(--accent-blue);
  transform: translateX(-4px);
}

/* QUICK ACCESS STICKY BAR */
.quick-bar, .kc-quick-bar, .aster-quick-bar {
  background: var(--primary-navy-light);
  color: #fff;
  padding: 16px 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 30;
}

.quick-nav-list, .kc-quick-list, .aster-quick-list {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;

}

.quick-nav-item a, .kc-quick-item a, .aster-quick-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
}

.quick-nav-item a:hover, .kc-quick-item a:hover, .aster-quick-item a:hover {
  background: rgba(255,255,255,0.1);
  color: var(--accent-blue);
}

.quick-nav-item i, .kc-quick-item i, .aster-quick-item i {
  color: var(--accent-blue);
  font-size: 1.2rem;
}

/* INSTITUTIONAL OVERVIEW & BRANCH SELECTOR */
.overview-section {
  background: var(--bg-white);
  position: relative;
}

.branch-pills, .kc-pills, .aster-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.branch-pill, .kc-pill, .aster-pill {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-fast);
}

.branch-pill:hover, .branch-pill.active, .kc-pill:hover, .kc-pill.active, .aster-pill:hover, .aster-pill.active {
  background: var(--primary-navy);
  color: #fff;
  border-color: var(--primary-navy);
  box-shadow: var(--shadow-sm);
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.overview-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.overview-text p {
  margin-bottom: 20px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.stat-card {
  background: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--accent-blue);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.overview-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-video-card img, .overview-video-card video {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.play-button-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 58, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: var(--accent-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-glow);
  cursor: pointer;
  transition: var(--transition-fast);
}

.play-circle:hover {
  transform: scale(1.15);
  background: #fff;
  color: var(--accent-blue);
}

/* OUR CAMPUSES / BRANCH SHOWCASE */
.campuses-section {
  background: #f1f5f9;
}

.campus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.campus-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.campus-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.campus-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.campus-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.campus-card:hover .campus-img-wrap img {
  transform: scale(1.08);
}

.campus-location-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-navy);
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
}

.campus-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.campus-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.campus-subtitle {
  font-size: 0.9rem;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.campus-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* CORE PILLARS (EXPLORE, EXPAND, EXCEL) */
.pillars-section {
  background: var(--bg-white);
}

.pillar-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.pillar-row:last-child {
  margin-bottom: 0;
}

.pillar-row.reverse {
  direction: rtl;
}

.pillar-row.reverse .pillar-content {
  direction: ltr;
}

.pillar-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}

.pillar-img-box img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.pillar-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(11, 31, 58, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.1rem;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* ALUMNI SUCCESS STORIES */
.alumni-section {
  background: linear-gradient(135deg, var(--primary-navy) 0%, #0d2847 100%);
  color: #fff;
}

.alumni-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 40px;
}

.alumni-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-fast);
}

.alumni-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
}

.alumni-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.alumni-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  object-fit: cover;
  border: 2px solid var(--accent-blue);
}

.alumni-name {
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}

.alumni-batch {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 600;
}

.alumni-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
}

.alumni-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.alumni-detail-item i {
  color: var(--accent-blue);
  width: 18px;
}

.univariety-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 20px;
}

/* CORE LEADERSHIP TEAM */
.team-section {
  background: var(--bg-white);
}

.teamSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--primary-navy);
  opacity: 0.25;
  transition: all 0.3s ease;
}

.teamSwiper .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 6px;
  background: var(--accent-blue);
  opacity: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.team-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-fast);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.team-img-box {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.team-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-box img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.88rem;
  color: var(--accent-blue);
  font-weight: 600;
}

/* ENQUIRY MODAL */
.modal, .kc-modal, .aster-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 58, 0.7);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-fast);
}

.modal.active, .kc-modal.active, .aster-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-dialog, .kc-modal-dialog, .aster-modal-dialog {
  background: var(--bg-white);
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: scale(0.9);
  transition: var(--transition-fast);
}

.modal.active .modal-dialog, .kc-modal.active .kc-modal-dialog, .aster-modal.active .aster-modal-dialog {
  transform: scale(1);
}

.modal-close, .kc-modal-close, .aster-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-light);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-dark);
}

.modal-title, .kc-modal-title, .aster-modal-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.modal-subtitle, .kc-modal-subtitle, .aster-modal-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus {
  border-color: var(--accent-blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 178, 238, 0.15);
}

/* FOOTER */
.footer {
  background: var(--primary-navy);
  color: rgba(255,255,255,0.8);
  padding: 70px 0 30px;
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS */
@media (max-width: 991.98px) {
  .nav-menu { display: none; }
  .hamburger-toggle { display: block; }
  
  .navbar-container { height: 70px; padding-left: 16px; padding-right: 16px; }
  .excellence-badge { display: none !important; }
  .topbar { display: none; }

  /* Compact Apply Now Button in Navbar */
  .navbar .btn-primary, 
  .navbar .open-enquiry-modal {
    padding: 7px 16px !important;
    font-size: 0.84rem !important;
    border-radius: 50px !important;
  }

  /* Compact General Buttons on Tablet */
  .btn-primary, .btn-gold, .btn-outline {
    font-size: 0.88rem;
    padding: 8px 18px;
  }

  /* Responsive Logo for Tablet/Mobile */
  .brand-logo-img-sm {
    height: 42px !important;
    width: auto;
    object-fit: contain;
  }

  /* Responsive Hero Slider Container (Prevents Shifting Under Navbar) */
  .hero-slider {
    height: auto;
    min-height: 540px;
    max-height: none;
  }

  .slide-container {
    padding-top: 110px !important;
    padding-bottom: 60px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }

  .slide-content {
    max-width: 92%;
    margin-top: 10px;
  }

  .slide-title {
    font-size: clamp(1.8rem, 4.5vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .slide-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* Non-overlapping Social Media Bar for Tablet/Mobile (Bottom-Right Badge) */
  .side-socials {
    position: absolute;
    bottom: 18px;
    right: 16px;
    top: auto;
    transform: none;
    flex-direction: row;
    gap: 8px;
    z-index: 25;
  }

  .social-icon-btn {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    background: rgba(11, 31, 58, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  /* Touch-friendly Slider Controls */
  .slider-arrow {
    width: 42px;
    height: 42px;
    font-size: 1rem;
    z-index: 30;
    top: 50%;
  }

  .prev-arrow { left: 12px; }
  .next-arrow { right: 12px; }

  .slider-dots {
    bottom: 22px;
    left: 40%;
  }

  /* Grid Layouts */
  .overview-grid, .pillar-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .pillar-row.reverse { direction: ltr; }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* MOBILE SCREENS (<768px) */
@media (max-width: 767.98px) {
  .navbar-container { height: 64px; }
  .brand-logo-img-sm { height: 36px !important; }

  /* Compact Buttons on Mobile */
  .btn-primary, .btn-gold, .btn-outline {
    font-size: 0.82rem;
    padding: 7px 14px;
  }

  /* Compact Floating Buttons */
  .float-btn, .kc-float-btn, .aster-float-btn {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .ai-chat-btn {
    width: 46px;
    height: 46px;
    font-size: 1.1rem;
    bottom: 18px;
    left: 16px;
  }

  /* Compact Quick Nav & Filter Pills */
  .quick-nav-item a, .kc-quick-item a {
    font-size: 0.82rem;
    padding: 6px 12px;
  }

  .branch-pill, .kc-pill {
    font-size: 0.8rem;
    padding: 6px 14px;
  }

  .hero-slider {
    min-height: 520px;
  }

  .slide-container {
    padding-top: 96px !important;
    padding-bottom: 56px !important;
  }

  .slide-tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    margin-bottom: 12px;
    letter-spacing: 1px;
  }

  .slide-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .slide-desc {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    background: rgba(11, 31, 58, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.25);
  }

  .prev-arrow { left: 8px; }
  .next-arrow { right: 8px; }

  .side-socials {
    bottom: 14px;
    right: 12px;
    gap: 6px;
  }

  .social-icon-btn {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .slider-dots {
    bottom: 18px;
    left: 35%;
  }
}

/* SMALL MOBILE SCREENS (<576px) */
@media (max-width: 575.98px) {
  /* Header Apply Now Button - Extra Compact */
  .navbar .btn-primary, 
  .navbar .open-enquiry-modal {
    padding: 6px 11px !important;
    font-size: 0.78rem !important;
    gap: 4px !important;
  }

  .slide-content {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .slide-btns {
    flex-direction: column;
    width: 100%;
    gap: 8px;
  }

  .slide-btns .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.82rem !important;
    padding: 9px 14px !important;
  }
}

/* VERY SMALL SCREENS (<380px) */
@media (max-width: 379.98px) {
  .navbar .btn-primary, 
  .navbar .open-enquiry-modal {
    padding: 5px 9px !important;
    font-size: 0.74rem !important;
  }

  .hero-slider {
    min-height: 370px;
  }

  .slide-container {
    padding-top: 24px;
    padding-bottom: 44px;
  }

  .slide-tag {
    font-size: 0.7rem;
    padding: 3px 10px;
    margin-bottom: 8px;
  }

  .slide-title {
    font-size: 1.25rem;
    margin-bottom: 8px;
  }

  .slide-desc {
    font-size: 0.82rem;
    margin-bottom: 14px;
    -webkit-line-clamp: 2;
  }

  .slider-arrow {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .prev-arrow { left: 4px; }
  .next-arrow { right: 4px; }

  .slider-dots {
    bottom: 10px;
    gap: 6px;
  }

  .dot {
    width: 8px;
    height: 8px;
  }

  .dot.active {
    width: 20px;
  }
}

/* ==========================================================
   2026 EDITION - GLASSMORPHISM, DARK MODE & PARALLAX ENGINE
   ========================================================== */

/* 1. SCROLL PROGRESS BAR */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #1fb2ee, #f5a623, #0b1f3a);
  z-index: 100001;
  width: 0%;
  transition: width 0.1s linear;
}

/* 2. CURSOR GLOW */
#cursorGlow {
  position: fixed;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 178, 238, 0.15) 0%, rgba(245, 166, 35, 0.05) 50%, transparent 70%);
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.05s ease-out;
}

/* 3. DARK MODE THEME CUSTOM PROPERTIES */
[data-theme="dark"] {
  --bg-white: #0a111a;
  --bg-light: #111c2a;
  --text-dark: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(255, 255, 255, 0.12);
  --primary-navy: #0b1727;
  --primary-navy-light: #162438;
}

[data-theme="dark"] body {
  background-color: #070d14;
  color: #f8fafc;
}

[data-theme="dark"] .bg-white {
  background-color: #0b1727 !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .bg-light {
  background-color: #111c2a !important;
  color: #e2e8f0 !important;
}

[data-theme="dark"] .card, 
[data-theme="dark"] .campus-card, 
[data-theme="dark"] .team-card {
  background-color: #111c2a !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #f8fafc !important;
}

[data-theme="dark"] .text-dark {
  color: #f8fafc !important;
}

[data-theme="dark"] .navbar {
  background-color: rgba(11, 23, 39, 0.95);
}

/* 4. GLASSMORPHISM UTILITY CLASSES */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.08);
}

[data-theme="dark"] .glass-card {
  background: rgba(17, 28, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* 5. FLOATING ACTION WIDGETS & AI CHAT UI */
.ai-chat-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1fb2ee, #0b1f3a);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 10px 25px rgba(31, 178, 238, 0.4);
  cursor: pointer;
  border: none;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-chat-btn:hover {
  transform: scale(1.1) rotate(10deg);
}

.ai-chat-box {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: 9991;
  width: 340px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: none;
  overflow: hidden;
}

.ai-chat-box.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 6. MARQUEE NOTICE TICKER */
.notice-marquee {
  background: #0b1f3a;
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
}

.notice-marquee-track {
  display: inline-block;
  animation: marquee 25s linear infinite;
}

.notice-marquee-track:hover {
  animation-play-state: paused;
}

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

/* 7. INTERACTIVE TIMELINE */
.decadal-timeline-wrapper {
  position: relative;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #0b1f3a 0%, #0d6efd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-gold {
  background: linear-gradient(135deg, #ffe082 0%, #ffc107 100%);
  border: 1px solid #ffd54f;
}

.timeline-track {
  position: relative;
  max-width: 960px;
  margin: 20px auto 0;
  padding: 20px 0;
}

/* Glowing central track line */
.timeline-track::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(to bottom, #0d6efd 0%, #fd7e14 35%, #198754 70%, #6f42c1 100%);
  border-radius: 4px;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.3);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 15px 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* Timeline Dot / Icon Node */
.timeline-dot-wrapper {
  position: absolute;
  top: 25px;
  z-index: 10;
}

.timeline-item.left .timeline-dot-wrapper {
  right: -24px;
}

.timeline-item.right .timeline-dot-wrapper {
  left: -24px;
}

.timeline-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #0b1f3a;
  box-shadow: 0 0 0 5px rgba(11, 31, 58, 0.12), 0 8px 20px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0b1f3a;
  font-size: 1.1rem;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.18) rotate(8deg);
  background: #0b1f3a;
  color: #ffc107;
  border-color: #ffc107;
  box-shadow: 0 0 0 8px rgba(255, 193, 7, 0.3), 0 12px 25px rgba(11, 31, 58, 0.25);
}

/* Timeline Card */
.timeline-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.timeline-card::after {
  content: '';
  position: absolute;
  top: 36px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  transform: rotate(45deg);
}

.timeline-item.left .timeline-card::after {
  right: -8px;
  border-left: none;
  border-bottom: none;
}

.timeline-item.right .timeline-card::after {
  left: -8px;
  border-right: none;
  border-top: none;
}

.timeline-item:hover .timeline-card {
  transform: translateY(-6px);
  border-color: rgba(13, 110, 253, 0.3);
  box-shadow: 0 20px 40px rgba(11, 31, 58, 0.12);
}

.timeline-card.highlight-2026 {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 2px solid rgba(13, 110, 253, 0.35);
  box-shadow: 0 12px 35px rgba(13, 110, 253, 0.12);
}

.timeline-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.timeline-item.left .timeline-card-header {
  flex-direction: row-reverse;
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 30px;
  color: #ffffff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-badge-2016 { background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%); }
.bg-badge-2019 { background: linear-gradient(135deg, #fd7e14 0%, #e65c00 100%); }
.bg-badge-2023 { background: linear-gradient(135deg, #198754 0%, #146c43 100%); }
.bg-badge-2026 { background: linear-gradient(135deg, #6f42c1 0%, #0d6efd 100%); }

.timeline-meta-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6c757d;
  background: rgba(108, 117, 125, 0.08);
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-excellence {
  color: #856404;
  background: #fff3cd;
  border: 1px solid #ffeeba;
}

.timeline-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #0b1f3a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 14px;
}

/* Tag Chips */
.timeline-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.timeline-item.left .timeline-tags {
  justify-content: flex-end;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0b1f3a;
  background: #f1f5f9;
  padding: 5px 10px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.tag-chip:hover {
  background: #e2e8f0;
}

.tag-chip.chip-gold {
  background: #fff8e1;
  color: #b78103;
  border: 1px solid #ffe082;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .timeline-track::before {
    left: 24px;
  }

  .timeline-item {
    width: 100%;
    text-align: left !important;
    padding-left: 65px;
    padding-right: 15px;
    margin-bottom: 25px;
  }

  .timeline-item.right, .timeline-item.left {
    left: 0;
  }

  .timeline-item.left .timeline-dot-wrapper,
  .timeline-item.right .timeline-dot-wrapper {
    left: 0px;
    right: auto;
  }

  .timeline-item.left .timeline-card::after,
  .timeline-item.right .timeline-card::after {
    left: -8px;
    right: auto;
    border-right: none;
    border-top: none;
    border-left: 1px solid rgba(11, 31, 58, 0.08);
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  }

  .timeline-item.left .timeline-card-header {
    flex-direction: row;
  }

  .timeline-item.left .timeline-tags {
    justify-content: flex-start;
  }
}

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-actions, .kc-floating-actions, .aster-floating-actions {
    right: 16px;
    bottom: 85px;
  }

  .vertical-enquire-btn, .kc-vertical-btn, .aster-vertical-btn {
    display: none;
  }
}
