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

:root {
  /* Premium Design Tokens */
  --primary: #0b1f5e;
  --primary-rgb: 11, 31, 94;
  --primary-light: #1d4ed8;
  --primary-dark: #07133b;
  --accent: #d97706; /* Gold/Amber */
  --accent-rgb: 217, 119, 6;
  --accent-light: #f59e0b;
  --accent-dark: #b45309;
  --secondary: #0ea5e9; /* Sky Blue */
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --bg-main: #f3f6fc;
  --bg-card: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.35);
  --glass-shadow: 0 8px 32px 0 rgba(11, 31, 94, 0.06);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Global resets & styling */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.25;
}


a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--primary-dark);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb), 0.4);
}

/* Utility bar */
.top-utility-bar {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.5rem 0;
  position: relative;
  z-index: 1010;
}

.top-utility-bar a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.top-utility-bar a:hover {
  color: var(--accent-light);
}

.top-utility-bar .btn-apply-small {
  background: var(--accent);
  color: #ffffff;
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.4);
  animation: pulse-glow 2s infinite;
}

.top-utility-bar .btn-apply-small:hover {
  background: var(--accent-light);
  color: #ffffff;
}

/* Navigation Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--glass-shadow);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-logo img {
  height: 52px;
  width: auto;
  transition: var(--transition-smooth);
}

.brand-logo .logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--primary);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.brand-logo .logo-text span {
  color: var(--accent);
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link-btn {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.6rem 0.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
}

.nav-link-btn:hover,
.nav-item:hover .nav-link-btn {
  color: var(--primary-light);
}

.nav-link-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 3px;
  background: var(--accent);
  border-radius: 999px;
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.nav-item:hover .nav-link-btn::after,
.nav-item.active .nav-link-btn::after {
  transform: scaleX(1);
}

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 780px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(11, 31, 94, 0.12);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 1050;
  pointer-events: none;
}

.nav-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
  pointer-events: auto;
}

/* Single column dropdown */
.single-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 360px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  box-shadow: 0 20px 40px rgba(11, 31, 94, 0.12);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 1050;
  pointer-events: none;
}

.nav-item:hover .single-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
  pointer-events: auto;
}

.dropdown-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 0.85rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  padding-bottom: 0.4rem;
}

.dropdown-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.dropdown-menu-link {
  font-size: 0.92rem;
  color: var(--text-dark);
  font-weight: 500;
  display: inline-block;
  padding: 0.25rem 0;
}

.dropdown-menu-link:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

/* Apply Alert inside drop-down */
.dropdown-admissions-alert {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(29, 78, 216, 0.06), rgba(14, 165, 233, 0.06));
  border: 1px solid rgba(29, 78, 216, 0.12);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.5rem;
}

.dropdown-admissions-alert a {
  color: var(--primary-light);
  text-decoration: underline;
}

/* Mobile Menu Toggler */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  padding: 0.5rem;
}


/* Hero Section / Cinematic Slider */
.hero-slider-section {
  position: relative;
  height: 82vh;
  min-height: 580px;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7, 19, 59, 0.85) 30%, rgba(7, 19, 59, 0.4) 70%, rgba(7, 19, 59, 0.1) 100%),
              linear-gradient(to bottom, rgba(7, 19, 59, 0.4) 0%, rgba(7, 19, 59, 0.8) 100%);
  z-index: 2;
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  color: #ffffff;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  max-width: 780px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  color: #ffffff;
}

.hero-title span {
  color: var(--accent-light);
  background: linear-gradient(120deg, var(--accent-light), #fde047);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.25rem;
  font-weight: 400;
  max-width: 620px;
  margin-bottom: 2.5rem;
  color: rgba(248, 250, 252, 0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Beautiful Premium Buttons */
.btn-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.2rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
  z-index: 1;
  border: none;
}

.btn-premium-accent {
  background: var(--accent);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.45);
}

.btn-premium-accent:hover {
  background: var(--accent-light);
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.6);
  transform: translateY(-2px);
}

.btn-premium-light {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-premium-light:hover {
  background: #ffffff;
  color: var(--primary-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.25);
}

/* Hero Controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  gap: 0.75rem;
  z-index: 10;
}

.hero-control-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}

.hero-control-btn:hover {
  background: #ffffff;
  color: var(--primary-dark);
}

.hero-indicators {
  position: absolute;
  bottom: 2.5rem;
  left: 2.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.hero-indicator {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-indicator.active {
  background: var(--accent-light);
  width: 48px;
}

/* Stats Counter Section */
.stats-overlap-section {
  position: relative;
  z-index: 20;
  margin-top: -4.5rem;
  padding: 0 2rem;
}

.stats-glass-card {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 1.75rem;
  box-shadow: 0 20px 50px rgba(11, 31, 94, 0.08);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 2.25rem 1rem;
}

.stat-item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(var(--primary-rgb), 0.12);
}

.stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  font-size: 1.3rem;
  transition: var(--transition-smooth);
}

.stat-item:hover .stat-icon {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px) rotate(6deg);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Sections Global Styling */
.section-padding {
  padding: 6.5rem 0;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
  padding: 0.35rem 1rem;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: 999px;
}

.section-main-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Featured Programs Section */
.tab-filter-container {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  background: rgba(var(--primary-rgb), 0.02);
}

.filter-btn.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.25);
}

/* Program Cards Grid */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.program-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 31, 94, 0.03);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(11, 31, 94, 0.09);
  border-color: rgba(var(--primary-rgb), 0.15);
}

.card-img-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

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

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

.card-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 10;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.card-img-overlay-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 31, 94, 0.6), transparent);
  pointer-events: none;
}

.card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--primary-light);
  width: fit-content;
}

.card-footer-link svg {
  transition: var(--transition-smooth);
}

.program-card:hover .card-footer-link svg {
  transform: translateX(5px);
}

/* Animations for program filters */
.program-card.fade-out {
  opacity: 0;
  transform: scale(0.95) translateY(10px);
}

.program-card.fade-in {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* News & Events Split Section */
.news-events-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 3rem;
}

/* Left: News slider */
.news-slider-wrapper {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(11, 31, 94, 0.04);
}

.news-slide-item {
  display: none;
  flex-direction: column;
}

.news-slide-item.active {
  display: flex;
}

.news-slide-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.news-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-slide-body {
  padding: 2.5rem;
}

.news-slide-date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: block;
}

.news-slide-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 0.85rem;
  line-height: 1.3;
}

.news-slide-desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.news-slide-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary-light);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.news-slide-link:hover {
  color: var(--accent);
}

/* Custom indicators with progress for news */
.news-slider-controls {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.news-slide-arrow-btn {
  background: var(--primary-dark);
  color: #ffffff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.news-slide-arrow-btn:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.news-slider-dots {
  display: flex;
  gap: 0.45rem;
}

.news-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb), 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.news-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* Right: Upcoming Events Timeline */
.events-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.event-timeline-item {
  display: flex;
  gap: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0 10px 25px rgba(11, 31, 94, 0.02);
  transition: var(--transition-smooth);
}

.event-timeline-item:hover {
  transform: translateX(6px);
  border-color: rgba(var(--primary-rgb), 0.12);
  box-shadow: 0 15px 35px rgba(11, 31, 94, 0.05);
}

.event-date-card {
  min-width: 80px;
  width: 80px;
  height: 90px;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.event-date-month {
  background: var(--primary-dark);
  color: #ffffff;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  padding: 0.35rem 0;
  letter-spacing: 0.08em;
}

.event-date-day {
  background: #ffffff;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  border-bottom: 2px solid var(--accent);
}

.event-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-category {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  letter-spacing: 0.03em;
}

.event-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.3;
}

.event-details p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Partners & Accreditations (Infinite Marquee) */
.partners-section {
  background: #ffffff;
  border-top: 1px solid rgba(var(--primary-rgb), 0.04);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.04);
  padding: 4.5rem 0;
}

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  width: max-content;
  animation: scroll-marquee 25s linear infinite;
}

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

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--bg-main);
  border: 1px solid var(--glass-border);
  padding: 0.75rem 1.5rem;
  border-radius: 1rem;
  min-width: 180px;
  transition: var(--transition-smooth);
}

.partner-logo-item:hover {
  background: #ffffff;
  border-color: rgba(var(--primary-rgb), 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 31, 94, 0.05);
}

.partner-logo-item img {
  height: 36px;
  width: 36px;
  object-fit: contain;
}

.partner-logo-item span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-dark);
}

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

/* Call to Action Parallax Section */
.cta-parallax-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 7.5rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax */
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 19, 59, 0.9) 20%, rgba(29, 78, 216, 0.8) 100%);
  z-index: 1;
}

.cta-parallax-section .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.cta-desc {
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.cta-chips {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-chip {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(4px);
}

/* Premium Footer */
.premium-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top {
  padding: 5.5rem 0 4rem 0;
  display: grid;
  grid-template-columns: 2.2fr 1.5fr 1.5fr 2.2fr;
  gap: 3.5rem;
}

.footer-logo-area p {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.6rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--accent);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-link:hover {
  color: var(--accent-light);
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.85rem;
  font-size: 0.92rem;
}

.footer-contact-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.footer-newsletter p {
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
}

.footer-subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.footer-input-email {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  flex-grow: 1;
  transition: var(--transition-smooth);
}

.footer-input-email:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-light);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.2);
}

.btn-subscribe {
  background: var(--accent);
  color: #ffffff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-subscribe:hover {
  background: var(--accent-light);
  transform: scale(1.05);
}

/* Parent Org banner */
.parent-org-banner {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
}

.parent-org-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

.parent-org-text strong a {
  color: #ffffff;
  font-weight: 700;
}

.parent-org-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.parent-org-links a {
  color: rgba(255, 255, 255, 0.6);
}

.parent-org-links a:hover {
  color: #ffffff;
}

/* Copyright footer */
.footer-bottom {
  padding: 1.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* Scroll Animations */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.85s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Floating widgets */
.floating-widgets {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.widget-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
  color: #ffffff;
}

.widget-whatsapp {
  background: #25d366;
}

.widget-whatsapp:hover {
  background: #20ba5a;
  transform: scale(1.08) translateY(-3px);
}

.widget-scrolltop {
  background: var(--primary-dark);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.widget-scrolltop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.widget-scrolltop:hover {
  background: var(--accent);
  transform: scale(1.08) translateY(-3px);
}

/* Animations declarations */
@keyframes pulse-glow {
  0% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(var(--accent-rgb), 0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0); }
}

/* Mobile Sidebar (Offcanvas) */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: var(--bg-card);
  box-shadow: 10px 0 30px rgba(0,0,0,0.15);
  z-index: 2000;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: left 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
}

.mobile-sidebar.open {
  left: 0;
}

.mobile-sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 1rem;
}

.btn-close-sidebar {
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-item .mobile-nav-link-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-dark);
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem 0;
}

.mobile-submenu {
  list-style: none;
  padding-left: 1rem;
  border-left: 2px solid var(--accent);
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu-link {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 500;
}

.mobile-submenu-link:hover {
  color: var(--primary-light);
}

.mobile-sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 19, 59, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-sidebar-backdrop.open {
  opacity: 1;
  visibility: visible;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .hero-title { font-size: 3.25rem; }
  .stats-glass-card { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
  .top-utility-bar { display: none; }
  .nav-menu { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-title { font-size: 2.75rem; }
  .news-events-grid { grid-template-columns: 1fr; gap: 4rem; }
  .news-slide-img { height: 300px; }
}

@media (max-width: 768px) {
  .hero-slider-section { height: 75vh; }
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 1.05rem; }
  .hero-controls { bottom: 1.5rem; right: 1.5rem; }
  .hero-indicators { bottom: 1.5rem; left: 1.5rem; }
  .stats-overlap-section { margin-top: -3rem; }
  .stats-glass-card { grid-template-columns: 1fr; padding: 1.75rem 1rem; }
  .stat-item::after { display: none !important; }
  .programs-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .parent-org-container { justify-content: center; text-align: center; }
  .footer-bottom { justify-content: center; text-align: center; }
}


/* ==========================================================================
   About Page Specific Styles (Inspired by LUMS, keeping current theme)
   ========================================================================== */

.about-hero-section {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
  background: var(--primary-dark);
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 19, 59, 0.5) 0%, rgba(7, 19, 59, 0.85) 100%);
  z-index: 2;
}

.about-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.about-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.about-hero-title span {
  color: var(--accent);
}

.about-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-intro-container {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.about-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-section-title {
  font-size: 2.25rem;
  color: var(--primary-dark);
  position: relative;
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
}

.about-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}

.about-paragraph {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.75;
}

/* Sidebar Styles */
.about-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(11, 31, 94, 0.05);
  border-radius: 1rem;
  padding: 1.75rem;
}

.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  font-weight: 700;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-link {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  transition: var(--transition-smooth);
}

.sidebar-link:hover,
.sidebar-link.active {
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary-light);
  padding-left: 1.25rem;
}

/* Vision / Mission / History Cards */
.about-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 1.25rem;
  padding: 2.25rem;
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 31, 94, 0.1);
}

.about-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  background: rgba(var(--primary-rgb), 0.05);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.about-card:hover .about-card-icon {
  background: var(--primary-light);
  color: #ffffff;
}

.about-card-title {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.about-card-text {
  font-size: 0.98rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Stats Counter Bar */
.about-stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
}

.about-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  position: relative;
}

.about-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(var(--primary-rgb), 0.1);
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Core Values Value Cards */
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(11, 31, 94, 0.08);
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.08);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.value-card:hover .value-icon {
  background: var(--secondary);
  color: #ffffff;
}

.value-title {
  font-size: 1.25rem;
  color: var(--primary-dark);
}

.value-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Governance Section */
.about-gov-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 4rem;
  align-items: center;
}

.about-gov-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-gov-stats-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gov-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 2.25rem;
  box-shadow: var(--glass-shadow);
  border-left: 5px solid var(--accent);
}

.gov-card h4 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

.gov-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Founding Leadership */
.leadership-highlight-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #0b1f5e 100%);
  border-radius: 1.5rem;
  padding: 3.5rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 50px rgba(7, 19, 59, 0.25);
  position: relative;
  overflow: hidden;
}

.leadership-highlight-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 15rem;
  font-family: Georgia, serif;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.leadership-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-light);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.leadership-title {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.leadership-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 300;
}

.leadership-signature {
  display: block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive about styles */
@media (max-width: 991px) {
  .about-intro-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-sidebar { position: static; }
  .about-grid-3 { grid-template-columns: 1fr; }
  .about-stats-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }
  .about-stat-item:nth-child(2)::after { display: none; }
  .about-gov-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .leadership-highlight-card { padding: 2.5rem; }
  .leadership-title { font-size: 1.85rem; }
  .leadership-text { font-size: 1.05rem; }
}

@media (max-width: 576px) {
  .about-hero-title { font-size: 2.5rem; }
  .about-hero-subtitle { font-size: 1.05rem; }
  .about-stats-container { grid-template-columns: 1fr; }
  .about-stat-item::after { display: none !important; }
}


/* ==========================================================================
   Students Resources Page Specific Styles (Inspired by MIT Resources)
   ========================================================================== */

.resources-hero-section {
  position: relative;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
  background: var(--primary-dark);
}

.resources-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.resources-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(7, 19, 59, 0.4) 0%, rgba(7, 19, 59, 0.8) 100%);
  z-index: 2;
}

.resources-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
}

.resources-hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3.25rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.resources-hero-title span {
  color: var(--accent);
}

.resources-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.resources-intro {
  max-width: 800px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.resources-intro-text {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.7;
}

.resources-sections-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.resources-group {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--glass-shadow);
}

.resources-group-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
  font-weight: 700;
}

.resources-group-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.resources-links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 2.5rem;
}

.resource-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.05);
  transition: var(--transition-smooth);
}

.resource-link-item:hover {
  border-bottom-color: var(--primary-light);
  transform: translateX(5px);
}

.resource-link-icon {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  transition: var(--transition-smooth);
}

.resource-link-item:hover .resource-link-icon {
  color: var(--primary-light);
  transform: scale(1.2);
}

.resource-link-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.resource-link-item:hover .resource-link-label {
  color: var(--primary-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .resources-hero-title { font-size: 2.5rem; }
  .resources-hero-subtitle { font-size: 1rem; }
  .resources-links-grid { grid-template-columns: 1fr; gap: 1rem; }
  .resources-group { padding: 1.75rem; }
  .resources-group-title { font-size: 1.5rem; }
}

/* Academics Layout in Home */
.academics-layout-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.column-heading {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 2px solid rgba(11, 31, 94, 0.05);
  padding-bottom: 0.75rem;
}

.column-heading svg {
  color: var(--accent);
}

/* Faculties Column */
.faculties-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faculty-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(11, 31, 94, 0.02);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.faculty-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 31, 94, 0.07);
  border-color: rgba(11, 31, 94, 0.15);
}

.faculty-mini-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(11, 31, 94, 0.05);
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faculty-mini-card:hover .faculty-mini-icon {
  background: rgba(217, 119, 6, 0.1);
  transform: scale(1.1);
}

.faculty-mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faculty-mini-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  transition: var(--transition-smooth);
}

.faculty-mini-card:hover .faculty-mini-title {
  color: var(--primary-light);
}

.faculty-mini-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Featured Programs Column */
.featured-programs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-program-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(11, 31, 94, 0.02);
  transition: var(--transition-smooth);
}

.featured-program-item:hover {
  border-color: rgba(11, 31, 94, 0.15);
  box-shadow: 0 10px 25px rgba(11, 31, 94, 0.05);
  transform: translateX(4px);
}

.program-type-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  text-align: center;
  width: 78px;
}

.medical-badge {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.tech-badge {
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.business-badge {
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.program-details {
  display: flex;
  flex-direction: column;
}

.program-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.program-item-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* CTA styling */
.all-programs-cta {
  transition: var(--transition-smooth);
}

.resource-link-item:hover .resource-link-icon {
  color: var(--primary-light);
  transform: scale(1.2);
}

.resource-link-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.resource-link-item:hover .resource-link-label {
  color: var(--primary-light);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .resources-hero-title { font-size: 2.5rem; }
  .resources-hero-subtitle { font-size: 1rem; }
  .resources-links-grid { grid-template-columns: 1fr; gap: 1rem; }
  .resources-group { padding: 1.75rem; }
  .resources-group-title { font-size: 1.5rem; }
}

/* Academics Layout in Home */
.academics-layout-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}

.column-heading {
  font-size: 1.4rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-bottom: 2px solid rgba(11, 31, 94, 0.05);
  padding-bottom: 0.75rem;
}

.column-heading svg {
  color: var(--accent);
}

/* Faculties Column */
.faculties-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.faculty-mini-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  box-shadow: 0 4px 20px rgba(11, 31, 94, 0.02);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.faculty-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 31, 94, 0.07);
  border-color: rgba(11, 31, 94, 0.15);
}

.faculty-mini-icon {
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(11, 31, 94, 0.05);
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: var(--transition-smooth);
}

.faculty-mini-card:hover .faculty-mini-icon {
  background: rgba(217, 119, 6, 0.1);
  transform: scale(1.1);
}

.faculty-mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faculty-mini-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
  transition: var(--transition-smooth);
}

.faculty-mini-card:hover .faculty-mini-title {
  color: var(--primary-light);
}

.faculty-mini-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Featured Programs Column */
.featured-programs-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.featured-program-item {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(11, 31, 94, 0.02);
  transition: var(--transition-smooth);
}

.featured-program-item:hover {
  border-color: rgba(11, 31, 94, 0.15);
  box-shadow: 0 10px 25px rgba(11, 31, 94, 0.05);
  transform: translateX(4px);
}

.program-type-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  text-align: center;
  width: 78px;
}

.medical-badge {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.tech-badge {
  background: rgba(14, 165, 233, 0.08);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.15);
}

.business-badge {
  background: rgba(217, 119, 6, 0.08);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.15);
}

.program-details {
  display: flex;
  flex-direction: column;
}

.program-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 0.2rem;
}

.program-item-text {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* CTA styling */
.all-programs-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.all-programs-cta .btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.05rem;
}

/* Welcome Section v2 (Inspired from Live Site) */
.welcome-section-v2 {
  background-color: #ffffff;
  padding: 6rem 0;
}

.welcome-container-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.welcome-grid-v2 {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 4rem;
  align-items: center;
}

.welcome-info-block-v2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.welcome-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0a3161;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  text-transform: uppercase;
  background-color: #eff6ff; /* blue-50 */
  padding: 0.375rem 1rem;
  border-radius: 9999px;
}

.welcome-badge-v2 i {
  color: #ffb81c;
}

.welcome-title-v2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0a3161;
  line-height: 1.25;
}

.welcome-title-v2 .highlight-gold-v2 {
  color: #ffb81c;
}

.welcome-lead-v2 {
  font-size: 1.125rem;
  color: #475569; /* slate-600 */
  line-height: 1.7;
  font-weight: 300;
}

.welcome-text-v2 {
  font-size: 0.95rem;
  color: #475569; /* slate-600 */
  line-height: 1.6;
}

.pillars-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1.5rem;
  width: 100%;
}

.pillar-item-v2 {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pillar-icon-wrapper-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.bg-blue-light-v2 { background-color: #eff6ff; }
.text-isra-blue-v2 { color: #0a3161; }

.bg-yellow-light-v2 { background-color: #fef9c3; }
.text-isra-gold-v2 { color: #d97706; }

.bg-emerald-light-v2 { background-color: #ecfdf5; }
.text-isra-green-v2 { color: #059669; }

.pillar-content-v2 h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.15rem;
}

.pillar-content-v2 p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.4;
}

.welcome-cta-v2 {
  padding-top: 1rem;
}

.welcome-link-btn-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #0a3161;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.welcome-link-btn-v2 i {
  transition: transform 0.3s ease;
}

.welcome-link-btn-v2:hover {
  color: #ffb81c;
}

.welcome-link-btn-v2:hover i {
  transform: translateX(6px);
}

/* Right Media Block */
.welcome-media-block-v2 {
  position: relative;
  width: 100%;
}

.media-glow-gold-v2 {
  position: absolute;
  top: -1rem;
  left: -1rem;
  width: 6rem;
  height: 6rem;
  background-color: rgba(255, 184, 28, 0.15);
  border-radius: 9999px;
  filter: blur(24px);
}

.media-glow-blue-v2 {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background-color: rgba(10, 49, 97, 0.1);
  border-radius: 9999px;
  filter: blur(24px);
}

.welcome-video-card-v2 {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid #ffffff;
  display: flex;
}

.welcome-video-card-v2 img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.welcome-video-card-v2:hover img {
  transform: scale(1.04);
}

.video-overlay-v2 {
  position: absolute;
  inset: 0;
  background-color: rgba(10, 49, 97, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.welcome-video-card-v2:hover .video-overlay-v2 {
  opacity: 1;
}

.play-btn-v2 {
  position: relative;
  width: 5rem;
  height: 5rem;
  background-color: #ffffff;
  color: #0a3161;
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn-v2 i {
  font-size: 1.5rem;
  margin-left: 4px;
}

.play-btn-v2:hover {
  color: #ffb81c;
  transform: scale(1.1);
}

.play-btn-ripple-v2 {
  position: absolute;
  inset: -0.75rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.2);
  animation: ripple-v2 2s infinite;
}

@keyframes ripple-v2 {
  0% {
    transform: scale(0.95);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.video-label-v2 {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background-color: rgba(10, 49, 97, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  backdrop-filter: blur(4px);
  z-index: 15;
}

/* Responsive adjustment for Welcome Section */
@media (max-width: 1024px) {
  .welcome-grid-v2 {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .welcome-video-card-v2 img {
    height: 350px;
  }
}

@media (max-width: 640px) {
  .pillars-grid-v2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .welcome-title-v2 {
    font-size: 2rem;
  }
}

/* Faculties Section v2 (Inspired from Live Site) */
.faculties-section-v2 {
  background-color: #f1f5f9; /* slate-100 */
}

.faculties-header-v2 {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.faculties-tag-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0a3161;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  text-transform: uppercase;
  background-color: #ffffff;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faculties-tag-badge-v2 i {
  color: #ffb81c;
}

.faculties-section-title-v2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.faculties-section-title-v2 .title-highlight-v2 {
  color: #0a3161;
}

.faculties-section-subtitle-v2 {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 38rem;
  margin: 0 auto;
}

.faculties-3col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 3.5rem;
}

.faculty-card-v2 {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.faculty-card-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.faculty-card-img-wrapper {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

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

.faculty-card-v2:hover .faculty-card-img-wrapper img {
  transform: scale(1.05);
}

.faculty-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 10;
}

.faculty-card-icon-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  color: #0a3161;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faculty-card-v2:hover .faculty-card-icon-badge {
  transform: scale(1.05);
}

.faculty-card-body-v2 {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.faculty-card-title-v2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0a3161;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

.faculty-card-v2:hover .faculty-card-title-v2 {
  color: #ffb81c;
}

.faculty-card-text-v2 {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.625;
  flex-grow: 1;
}

.faculty-card-tags-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}

.faculty-tag-v2 {
  font-size: 0.625rem;
  font-weight: 700;
  background-color: #f8fafc;
  color: #64748b;
  padding: 0.25rem 0.625rem;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.faculty-card-footer-v2 {
  padding: 1.5rem;
  padding-top: 0;
}

.faculty-card-btn-v2 {
  width: 100%;
  padding: 0.625rem 0;
  background-color: #f8fafc;
  color: #334155;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  transition: all 0.3s ease;
}

.faculty-card-v2:hover .faculty-card-btn-v2 {
  background-color: #0a3161;
  color: #ffffff;
}

/* Interactive Modal CSS */
.degree-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.degree-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.degree-modal-container {
  background: var(--bg-card);
  border-radius: 1.5rem;
  max-width: 480px;
  width: 90%;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-top: 8px solid var(--accent);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 2.25rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.degree-modal-overlay.open .degree-modal-container {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1.3;
}

.modal-close-btn {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0 0.5rem;
  line-height: 1;
  transition: var(--transition-smooth);
}

.modal-close-btn:hover {
  color: var(--text-dark);
  transform: scale(1.1);
}

.modal-subtitle {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.modal-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: rgba(11, 31, 94, 0.03);
  border: 1px solid rgba(11, 31, 94, 0.05);
  border-radius: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: var(--transition-smooth);
}

.modal-list-item:hover {
  background: rgba(11, 31, 94, 0.06);
  transform: translateX(4px);
}

.modal-list-icon {
  color: var(--accent);
  font-weight: bold;
}

.modal-footer-note {
  background: var(--bg-main);
  border: 1px solid var(--glass-border);
  padding: 1rem;
  border-radius: 1rem;
  margin-top: 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.modal-footer-note-icon {
  font-size: 1.2rem;
}

.modal-footer-note-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.modal-action-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.modal-action-buttons .btn-premium {
  flex: 1;
  text-align: center;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.85rem 1.5rem;
}

.modal-close-action-btn {
  background: rgba(15, 23, 42, 0.05);
  color: var(--text-dark);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex: 1;
}

.modal-close-action-btn:hover {
  background: rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

/* Newsletters Section v2 (Inspired from Live Site) */
.newsletters-section-v2 {
  background-color: #ffffff;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.decor-glow-gold-v2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(255, 184, 28, 0.05);
  border-radius: 9999px;
  filter: blur(64px);
  transform: translate(30%, -30%);
  pointer-events: none;
}

.decor-glow-blue-v2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20rem;
  height: 20rem;
  background-color: rgba(10, 49, 97, 0.05);
  border-radius: 9999px;
  filter: blur(64px);
  transform: translate(-30%, 30%);
  pointer-events: none;
}

.newsletters-container-v2 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

.newsletters-header-v2 {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 4rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.newsletters-tag-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #0a3161;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  text-transform: uppercase;
  background-color: rgba(255, 184, 28, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.newsletters-tag-badge-v2 i {
  color: #ffb81c;
}

.newsletters-title-v2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
}

.newsletters-title-v2 .title-highlight-v2 {
  color: #0a3161;
}

.newsletters-subtitle-v2 {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.625;
  max-width: 38rem;
  margin: 0 auto;
}

.newsletters-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.newsletter-card-v2 {
  background-color: #f8fafc;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-card-v2:hover {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
  border-color: #cbd5e1;
}

/* cover */
.newsletter-cover-v2 {
  width: 8rem;
  height: 11rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.75rem;
  color: #ffffff;
  border-bottom: 4px solid #ffb81c;
}

.bg-cover-blue-v2 { background-color: #0a3161; }
.bg-cover-green-v2 { background-color: #059669; }
.bg-cover-slate-v2 { background-color: #1e293b; }

.cover-title-v2 {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #ffb81c;
}

.cover-line-v2 {
  width: 1.5rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0.25rem auto 0 auto;
}

.cover-mid-v2 {
  text-align: center;
  margin: auto 0;
}

.cover-mid-v2 .issue-label-v2 {
  font-size: 0.7rem;
  color: #e2e8f0;
  margin-bottom: 2px;
  line-height: 1;
}

.cover-mid-v2 .issue-number-v2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffb81c;
  line-height: 1;
}

.cover-bot-v2 {
  text-align: center;
}

.cover-bot-v2 .date-month-v2 {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #cbd5e1;
}

.cover-bot-v2 .date-year-v2 {
  font-size: 0.55rem;
  font-weight: 800;
  color: #ffffff;
}

.cover-decor-v2 {
  position: absolute;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 4rem;
  height: 4rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  pointer-events: none;
}

/* details */
.newsletter-details-v2 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-start;
}

.details-issue-tag-v2 {
  font-size: 0.75rem;
  font-weight: 700;
}

.text-blue-v2 { color: #0a3161; }
.text-green-v2 { color: #059669; }
.text-slate-v2 { color: #475569; }

.details-title-v2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.25;
  margin-top: 0.25rem;
  transition: color 0.2s ease;
}

.newsletter-card-v2:hover .details-title-v2 {
  color: #ffb81c;
}

.details-pub-date-v2 {
  font-size: 0.7rem;
  color: #94a3b8;
}

.details-desc-v2 {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
}

.btn-download-pdf-v2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  background-color: #0a3161;
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-download-pdf-v2:hover {
  background-color: #ffb81c;
  color: #0a3161;
}

/* Toast */
#toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 3000;
  background-color: #0a3161;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid #ffb81c;
  transform: translateY(5rem);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#toast.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .faculties-3col-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletters-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .newsletters-grid-v2 {
    grid-template-columns: 1fr;
  }
  .newsletter-card-v2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .newsletter-details-v2 {
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .faculties-3col-grid {
    grid-template-columns: 1fr;
  }
}
