/* Responsive grid for team member tiles */
@media (max-width: 1200px) {
  .team-section-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem;
  }
  
  .team-section-grid .team-card {
    min-height: 380px !important;
    max-height: 380px !important;
    width: 280px !important;
    max-width: 280px !important;
  }
  
  .team-section-grid .team-card .team-photo {
    width: 120px !important;
    height: 120px !important;
  }
  
  .team-section-grid .team-card h3 {
    height: 2.3rem !important;
    font-size: 1rem !important;
  }
  
  .team-section-grid .team-card p {
    height: 3.2rem !important;
    font-size: 0.8rem !important;
  }
}

@media (max-width: 1024px) {
  .team-section-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.2rem;
  }
  
  .team-section-grid .team-card {
    min-height: 360px !important;
    max-height: 360px !important;
    width: 260px !important;
    max-width: 260px !important;
  }
  
  .team-section-grid .team-card .team-photo {
    width: 110px !important;
    height: 110px !important;
  }
  
  .team-section-grid .team-card h3 {
    height: 2.2rem !important;
    font-size: 0.95rem !important;
  }
  
  .team-section-grid .team-card p {
    height: 3rem !important;
    font-size: 0.75rem !important;
  }
}

@media (max-width: 768px) {
  .team-section-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem;
  }
  
  .team-section-grid .team-card {
    min-height: 340px !important;
    max-height: 340px !important;
    width: 240px !important;
    max-width: 240px !important;
  }
  
  .team-section-grid .team-card .team-photo {
    width: 100px !important;
    height: 100px !important;
  }
  
  .team-section-grid .team-card h3 {
    font-size: 0.9rem !important;
    height: 2rem !important;
  }
  
  .team-section-grid .team-card p {
    font-size: 0.7rem !important;
    height: 2.8rem !important;
  }
}

@media (max-width: 480px) {
  .team-section-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  
  .team-section-grid .team-card {
    min-height: 320px !important;
    max-height: 320px !important;
    width: 100% !important;
    max-width: 280px !important;
  }
  
  .team-section-grid .team-card .team-photo {
    width: 90px !important;
    height: 90px !important;
  }
  
  .team-section-grid .team-card h3 {
    font-size: 0.85rem !important;
    height: 1.8rem !important;
  }
  
  .team-section-grid .team-card p {
    font-size: 0.65rem !important;
    height: 2.5rem !important;
  }
}
/* Modern Team Card Styles */
.team-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 2.2rem 1.8rem 1.8rem 1.8rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  height: 100%;
}

.team-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.team-card:focus-within {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.team-card--medium {
  width: 300px;
}

.team-card--large {
  width: 340px;
  border-color: var(--color-primary);
  box-shadow: 0 8px 30px rgba(13, 61, 145, 0.1);
}

.team-card--large .team-photo {
  width: 200px;
  height: 200px;
}

.team-card--large h3 {
  font-size: 1.3rem;
}

.team-card--medium .team-photo {
  width: 190px;
  height: 190px;
}

.team-card--medium h3 {
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .team-card--large,
  .team-card--medium {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .team-card--large,
  .team-card--medium {
    width: 100%;
    max-width: 300px;
  }
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--color-border);
  overflow: hidden;
}

.team-card:hover .team-photo {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--color-border);
}

.team-card h3 {
  font-weight: 600;
  line-height: 1.1;
  margin: 0.2rem 0 0.2rem 0;
  color: #2c3e50;
  transition: color 0.3s ease;
  text-align: center;
}

.team-card p {
  text-align: center;
  color: #666;
  line-height: 1.1;
  margin: 10px 0 10px 0;
}

.team-card:hover h3 {
  color: var(--color-primary);
}

.team-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(13, 61, 145, 0.1);
  color: var(--color-primary);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 10px;
  font-size: 14px;
}

.team-link-icon:hover {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-link-icon:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* Faculty rows styling */
.faculty-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Subtle alternating background for hierarchy levels */
.faculty-row:nth-child(odd) {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(248, 250, 252, 0.9));
}

.faculty-row:nth-child(even) {
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.6), rgba(241, 245, 249, 0.8));
}

/* Director level - special styling */
.faculty-row:first-child {
  background: linear-gradient(135deg, rgba(239, 246, 255, 0.8), rgba(219, 234, 254, 0.9));
  border: 1px solid rgba(59, 130, 246, 0.1);
}

@media (max-width: 1200px) {
  .team-card {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
  }
  .team-photo {
    width: 180px;
    height: 180px;
    font-size: 1.8rem;
  }
}

@media (max-width: 1024px) {
  .team-card {
    padding: 1.8rem 1.3rem 1.3rem 1.3rem;
  }
  .team-photo {
    width: 160px;
    height: 160px;
    font-size: 1.7rem;
  }
  .team-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .team-card {
    padding: 1.5rem 1rem 1.2rem 1rem;
    max-width: 280px;
    margin: 0 auto;
  }
  .team-photo {
    width: 140px;
    height: 140px;
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }
  .team-card h3 {
    font-size: 1.1rem !important;
  }
  .team-link-icon {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .team-card {
    padding: 1.2rem 0.8rem 1rem 0.8rem;
    max-width: 260px;
  }
  .team-photo {
    width: 100px;
    height: 100px;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .team-card:hover {
    transform: translateY(-2px);
  }
}

/* Student Leadership Table Enhancements */
.student-table {
  border-radius: 12px !important;
  overflow: hidden;
  transition: all 0.3s ease;
}

.student-table:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
}

.student-table tbody tr {
  transition: all 0.3s ease;
}

.student-table tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.05) !important;
  transform: translateX(4px);
}

.student-table thead th {
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Responsive faculty row adjustments */
@media (max-width: 768px) {
  .faculty-row {
    gap: 1.5rem;
    padding: 1rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .faculty-row {
    gap: 1rem;
    padding: 0.8rem;
    margin-bottom: 1.5rem;
  }
}

/* Hamburger button for sidebar */
#sidebar-toggle {
  display: none;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  box-shadow: 0 2px 12px rgba(13, 61, 145, 0.13);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
  padding: 0;
  z-index: 2001;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  #sidebar-toggle {
    border: 2px solid currentColor;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 900px) {
  #sidebar-toggle {
    display: flex !important;
    position: fixed;
    top: 1rem;
    left: 1rem;
  }
}
#sidebar-toggle svg {
  width: 32px;
  height: 32px;
  color: #fff;
  display: block;
}
#sidebar-toggle:hover,
#sidebar-toggle:focus {
  background: var(--color-secondary);
  box-shadow: 0 4px 18px rgba(164, 0, 45, 0.18);
  transform: scale(1.07);
}
/* =====================================================
   SDG Campus Initiative Stylesheet
   Inspired by MIT University structure & college colors
   ===================================================== */

:root {
  --color-primary: #0d3d91; /* Deep academic blue */
  --color-primary-dark: #072657;
  --color-secondary: #a4002d; /* Crimson accent */
  --color-secondary-dark: #7a0021;
  --color-accent: #f6b11a; /* Golden highlight */
  --color-bg: #ffffff;
  --color-bg-alt: #f4f7fb;
  --color-border: #d9e2ef;
  --color-text: #1d2433;
  --color-text-light: #5a6475;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 18px;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.12);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1220px;
  --nav-height: 70px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Segoe UI", system-ui, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
  animation: fadeInBody 0.8s ease-out forwards;
  margin: 0;
  padding: 0;
}

/* Page Loading Animation */
@keyframes fadeInBody {
  to {
    opacity: 1;
  }
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure text visibility */
.main-content {
  color: var(--color-text);
  background: var(--color-bg);
}

.main-content p,
.main-content h1,
.main-content h2,
.main-content h3,
.main-content h4,
.main-content li {
  color: var(--color-text);
  visibility: visible;
  opacity: 1;
}

/* Fix sticky header spacing */
.layout-wrapper {
  margin-top: 0;
  padding-top: 0;
  max-width: 100vw;
  overflow-x: hidden;
}

/* Main content flex fix */
.main-content {
  min-width: 0; /* Important: allows flex item to shrink below content size */
  width: 100%;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.8rem;
}
h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}
h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}
h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
}
p {
  margin: 0 0 1rem;
}
a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}
a:hover,
a:focus {
  text-decoration: underline;
  color: var(--color-secondary);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Prevent any element from causing horizontal overflow */
* {
  box-sizing: border-box;
}

/* Additional overflow protection */
body,
html,
.layout-wrapper,
.main-content {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-secondary) 0%,
    var(--color-primary) 100%
  );
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  transform: translateY(0);
}

.go-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(38, 189, 226, 0.4);
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-secondary) 100%
  );
}

.go-to-top.show {
  display: flex;
  animation: fadeInUp 0.3s ease;
}

.go-to-top.hide {
  animation: fadeOut 0.3s ease;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

/* Responsive adjustments for go-to-top */
@media (max-width: 768px) {
  .go-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .go-to-top {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 1rem;
  }
}

img,
video,
iframe,
embed,
object {
  max-width: 100%;
  height: auto;
}
.grid {
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure all grid containers don't cause overflow */
[class*="grid"],
[style*="display: grid"],
[style*="display:grid"] {
  max-width: 100%;
  overflow-x: hidden;
}
.flex {
  display: flex;
}
.center {
  justify-content: center;
  align-items: center;
}
.text-center {
  text-align: center;
}

/* Fade-in animations for sections */
.main-content > section {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.main-content > section:nth-child(2) {
  animation-delay: 0.2s;
}

.main-content > section:nth-child(3) {
  animation-delay: 0.4s;
}

.main-content > section:nth-child(4) {
  animation-delay: 0.6s;
}

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

/* Header Section */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.top-bar {
  background: #26bde2;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-bar a:hover {
  opacity: 0.8;
}

nav.main-nav {
  background: var(--color-primary-dark);
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

nav.main-nav .container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  padding: 1rem 0;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-link:hover {
  color: white;
  text-decoration: none;
}

.nav-link.active {
  color: white;
  border-bottom: 3px solid var(--color-accent);
}

.nav-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-actions .btn.outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.nav-actions .btn.outline:hover {
  background: white;
  color: var(--color-primary-dark);
}

.nav-actions .btn:not(.outline) {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.nav-actions .btn:not(.outline):hover {
  background: #e09e00;
  color: var(--color-primary-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border: none;
  background: var(--color-secondary);
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px; /* Touch-friendly */
  touch-action: manipulation; /* Prevents double-tap zoom */
  transform: translateY(0);
}

.btn:hover,
.btn:focus {
  background: var(--color-secondary-dark);
  text-decoration: none;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

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

/* Modern Breadcrumb Styles */
.breadcrumb {
  padding: 0.75rem 1.5rem;
  background: var(--breadcrumb-bg);
  backdrop-filter: blur(8px);
  border-radius: 0 0 0 var(--radius-lg);
  box-shadow: var(--breadcrumb-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 10;
  width: fit-content;
  margin-left: auto;
}

.breadcrumb-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.85rem;
  color: var(--color-text-light);
  gap: 0.5rem;
}

.breadcrumb-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  background: transparent;
}

.breadcrumb-link:hover {
  color: var(--color-secondary);
  background: var(--breadcrumb-hover-bg);
  transform: translateY(-1px);
  text-decoration: none;
}

.breadcrumb-link::after {
  content: '›';
  margin-left: 0.5rem;
  opacity: 0.5;
  font-size: 1.2em;
  line-height: 1;
}

.breadcrumb-separator {
  display: none;
}

.breadcrumb-current {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--breadcrumb-hover-bg);
  border-radius: var(--radius-sm);
  letter-spacing: 0.01em;
}

/* Responsive breadcrumb adjustments */
@media (max-width: 768px) {
  .breadcrumb {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 1rem 0 2rem 0;
  }

  .breadcrumb-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .breadcrumb-link::after {
    margin: 0 0.25rem;
  }
}

/* Layout & Sidebar Styles */
.layout-wrapper {
  display: flex;
  min-height: calc(100vh - 200px);
  margin-top: 0;
  position: relative;
}

@media (max-width: 900px) {
  .layout-wrapper {
    flex-direction: column;
    min-height: auto;
  }
}

/* CSS Variable for primary color RGB */
:root {
  --color-primary-rgb: 13, 61, 145;
  --breadcrumb-bg: rgba(255, 255, 255, 0.9);
  --breadcrumb-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --breadcrumb-hover-bg: rgba(13, 61, 145, 0.08);
}

/* Modern right-aligned breadcrumb styles */
.breadcrumb {
  padding: 0.75rem 1.5rem;
  background: var(--breadcrumb-bg);
  backdrop-filter: blur(8px);
  border-radius: 0 0 0 var(--radius-lg);
  box-shadow: var(--breadcrumb-shadow);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 10;
  width: fit-content;
  margin-left: auto;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 0.85rem;
  color: var(--color-text-light);
  gap: 0.5rem;
}

.breadcrumb a {
  color: var(--color-primary);
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  background: transparent;
}

.breadcrumb a:hover {
  color: var(--color-secondary);
  background: var(--breadcrumb-hover-bg);
  transform: translateY(-1px);
  text-decoration: none;
}

.breadcrumb a::after {
  content: '›';
  margin-left: 0.5rem;
  opacity: 0.5;
  font-size: 1.2em;
  line-height: 1;
}

.breadcrumb span {
  color: var(--color-text);
  font-weight: 600;
  padding: 0.5rem 1rem;
  background: var(--breadcrumb-hover-bg);
  border-radius: var(--radius-sm);
  margin: 0;
  letter-spacing: 0.01em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .breadcrumb {
    width: 100%;
    border-radius: var(--radius-md);
    margin: 1rem 0 2rem 0;
  }

  .breadcrumb .container {
    justify-content: center;
    flex-wrap: wrap;
  }
}

.sidebar {
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  background: #f8f9fa;
  border-right: 1px solid #e9ecef;
  padding: 2rem 0;
  position: sticky;
  top: 80px;
  height: fit-content;
  overflow-x: hidden;
  /* max-height and overflow-y removed to prevent double scrollbar */
}

.sidebar h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-nav a {
  display: block;
  padding: 0.75rem 1rem;
  color: #495057;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.sidebar-nav a:hover {
  background: #e9ecef;
  color: var(--color-primary);
  text-decoration: none;
}

.sidebar-nav a.active {
  background: var(--color-primary);
  color: white;
}

.main-content {
  flex: 1;
  padding: 2rem;
  color: var(--color-text);
  background: var(--color-bg);
  min-height: calc(100vh - 200px);
  overflow-x: hidden;
  box-sizing: border-box;
}

.main-content .hero {
  padding: 0;
  margin-bottom: 3rem;
  max-width: 100%;
  width: 100%;
}

.main-content .hero h1 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--color-text);
  text-align: left;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero {
  background: transparent;
  color: var(--color-text);
  padding: 2rem 0;
  text-align: left;
  max-width: 100%;
}

.hero .container {
  max-width: none;
  padding: 0;
}

.hero.bg-gradient {
  background: linear-gradient(
    135deg,
    var(--color-primary-dark) 0%,
    var(--color-primary) 100%
  );
  color: #fff;
  padding: 4rem 0;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.hero.bg-gradient h1 {
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 800px;
  margin: 0 0 2rem 0;
  color: var(--color-text);
  line-height: 1.6;
  text-align: left;
}

.hero.bg-gradient p {
  color: #fff;
}

/* Modern Stats Section */
.stats {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  z-index: 0;
}

.stats .container {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Modern Stat Card Styles */
.stat-card {
  position: relative;
  padding: 1.5rem 1.2rem;
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 12px;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  cursor: pointer;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 50%, var(--color-accent) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.stat-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
}

/* Stat Card Link Wrapper */
.stat-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.stat-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.stat-card-link:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

.stats-grid a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.stats-grid a:hover {
  text-decoration: none;
  color: inherit;
}

.stats-grid a:focus {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.3rem;
  line-height: 1;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
  filter: brightness(1.2);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.stat-card:hover .stat-label {
  color: var(--color-primary);
  opacity: 1;
  transform: translateY(-2px);
}

/* Individual card background colors */
.stat-card:nth-child(1),
.stats-grid > *:nth-child(1) .stat-card {
  background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 100%);
}

.stat-card:nth-child(2),
.stats-grid > *:nth-child(2) .stat-card {
  background: linear-gradient(145deg, #f3e5f5 0%, #e1bee7 100%);
}

.stat-card:nth-child(3),
.stats-grid > *:nth-child(3) .stat-card {
  background: linear-gradient(145deg, #e8f5e8 0%, #c8e6c9 100%);
}

.stat-card:nth-child(4),
.stats-grid > *:nth-child(4) .stat-card {
  background: linear-gradient(145deg, #fff3e0 0%, #ffe0b2 100%);
}

.stat-card:nth-child(5),
.stats-grid > *:nth-child(5) .stat-card {
  background: linear-gradient(145deg, #fce4ec 0%, #f8bbd9 100%);
}

.stat-card:nth-child(6),
.stats-grid > *:nth-child(6) .stat-card {
  background: linear-gradient(145deg, #e0f2f1 0%, #b2dfdb 100%);
}

/* Hover effects for linked cards */
.stat-card-link:hover .stat-card {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.06);
}

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

.stat-card-link:hover .stat-number {
  transform: scale(1.05);
}

.stat-card-link:hover .stat-label {
  color: var(--color-primary);
  opacity: 1;
}

/* Simple hover effect for non-linked cards */
.stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.08),
    0 3px 8px rgba(0, 0, 0, 0.04);
}

/* Vision/Mission */
.vision-mission {
  padding: 4rem 0;
}

.vision-mission .grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.vision-card,
.mission-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
}

.vision-card {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.mission-card {
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.vision-card h2,
.mission-card h2 {
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

/* Thrust Areas */
.thrust-areas {
  background: var(--color-bg-alt);
  padding: 4rem 0;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.area-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.area-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.8rem;
}

.area-card .goals {
  font-size: 0.85rem;
  color: var(--color-text-light);
  font-style: italic;
}

/* Gallery */
.gallery {
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 4/3;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer.site-footer {
  background: var(--color-primary-dark);
  color: #d2ddf0;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #d2ddf0;
  font-size: 0.9rem;
}

.footer-section a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
}

/* Leadership Section Styles */
.leadership-container {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
}

.leadership-card {
  flex: 1 1 300px;
  padding: 2rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: white;
}

.leadership-card.director {
  flex: 1 1 400px;
  border: 1px solid var(--color-border);
  background: #fcfdff;
  box-shadow: 0 8px 30px rgba(13, 61, 145, 0.1);
  transform: scale(1.02);
}

.leadership-card .team-photo {
  width: 200px;
  height: 200px;
  margin-bottom: 1rem;
}

.leadership-card.director .team-photo {
  width: 190px;
  height: 190px;
}

.leadership-card h3 {
  font-size: 1.3rem;
}

.leadership-card.director h3 {
  font-size: 1.5rem;
}

.designation {
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.department {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.team-card h3 {
  font-size: 1.1rem;
}

.team-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 100%;
    margin: 2rem auto 0;
}

/* Force all team cards in grid to have identical dimensions */
.team-section-grid .team-card {
    min-height: 420px !important;
    max-height: 420px !important;
    width: 300px !important;
    max-width: 300px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;
    padding: 1.5rem 1rem 1.5rem 1rem !important;
    box-sizing: border-box !important;
    text-align: center !important;
}

/* Consistent photo size for grid cards */
.team-section-grid .team-card .team-photo {
    width: 160px !important;
    height: 160px !important;
    margin: 0 auto 0.8rem auto !important;
    flex-shrink: 0 !important;
}

/* Fixed text sizing and alignment for grid cards */
.team-section-grid .team-card h3 {
    font-size: 1.05rem !important;
    line-height: 1.1 !important;
    margin: 0 0 0.2rem 0 !important;
    height: 2.2rem !important;
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
    font-weight: 600 !important;
}

.team-section-grid .team-card p {
    font-size: 1rem !important;
    line-height: 1.1 !important;
    margin: 10px 0 10px 0 !important;
    text-align: center !important;
    flex-grow: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: auto !important;
    width: 100% !important;
    overflow: hidden !important;
    color: #666 !important;
}

/* Link icon positioning */
.team-section-grid .team-card .team-link-icon {
    margin-top: auto !important;
    flex-shrink: 0 !important;
    padding: 0.5rem !important;
}

.team-card .team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-card .team-link-icon {
    vertical-align: middle;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .stat-card {
    padding: 2rem 1.5rem;
    min-height: 180px;
  }

  .stat-number {
    font-size: 3rem;
  }
}

@media (max-width: 1024px) {
  .sidebar {
    width: 260px;
  }

  .main-content {
    max-width: calc(100% - 260px);
    padding: 1.8rem;
  }

  .top-bar .flex:last-child {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .top-bar .flex:last-child a {
    font-size: 0.8rem;
  }

  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}

@media (max-width: 900px) {
  .layout-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: relative;
    top: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
  }

  .main-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .vision-mission .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .top-bar .flex {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .top-bar .flex:last-child {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-content {
    padding: 1.2rem;
  }

  .hero {
    padding: 1.5rem 0;
  }

  .hero .container {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    text-align: center;
  }

  .hero p {
    text-align: center;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.2rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .area-card,
  .vision-card,
  .mission-card {
    padding: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }

  .main-content {
    padding: 1rem;
  }

  .hero {
    padding: 1rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .area-card,
  .vision-card,
  .mission-card {
    padding: 1rem;
  }

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

  h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    text-align: center;
  }

  h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .sidebar,
  .nav-menu,
  #sidebar-toggle,
  .top-bar,
  .modern-marquee {
    display: none !important;
  }

  .main-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .layout-wrapper {
    flex-direction: column;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  .area-card,
  .team-card,
  .stat-card {
    break-inside: avoid;
  }
}

/* Faculty Specialists Section */
.specialist-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--border-color, var(--color-secondary));
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.specialist-card h3 {
  color: var(--color-primary-dark);
  margin-bottom: 0.8rem;
}

.specialist-card p {
  font-size: 0.9rem;
  margin: 0;
}

/* Student Leadership Table */
.student-table-container {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

.student-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  background-color: white;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-md);
  overflow: hidden; /* Ensures border-radius is respected on table */
}

.student-table thead {
  background-color: var(--color-primary);
  color: white;
}

.student-table th,
.student-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.student-table tbody tr:nth-child(even) {
  background-color: #f9f9f9;
}

.student-table tbody tr:hover {
  background-color: #f1f5f9;
}


/* Join Our Team Section */
.join-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.join-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.join-card h3 {
  color: var(--color-primary-dark);
}

.join-card ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
  flex-grow: 1;
}

.join-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* =====================================================
   Generic Section Styling
   ===================================================== */

.section-padding {
  padding: 4rem 0;
}

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

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.student-note {
  font-style: italic;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.join-footer {
  text-align: center;
  margin-top: 2rem;
}

.join-footer p {
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 1200px) {
  .container {
    padding: 0 1.2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

@media (max-width: 1024px) {
  .sidebar {
    width: 260px;
  }

  .main-content {
    max-width: calc(100% - 260px);
    padding: 1.8rem;
  }

  .top-bar .flex:last-child {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .top-bar .flex:last-child a {
    font-size: 0.8rem;
  }

  .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .hero h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}

@media (max-width: 900px) {
  .layout-wrapper {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: relative;
    top: auto;
    max-height: none;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
  }

  .main-content {
    max-width: 100%;
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .vision-mission .grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .top-bar .flex {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .top-bar .flex:last-child {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .nav-menu {
    display: none;
  }

  .nav-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .main-content {
    padding: 1.2rem;
  }

  .hero {
    padding: 1.5rem 0;
  }

  .hero .container {
    padding: 0;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    text-align: center;
  }

  .hero p {
    text-align: center;
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1.2rem 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .area-card,
  .vision-card,
  .mission-card {
    padding: 1.2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .btn {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.8rem;
  }

  .main-content {
    padding: 1rem;
  }

  .hero {
    padding: 1rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .area-card,
  .vision-card,
  .mission-card {
    padding: 1rem;
  }

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

  h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    text-align: center;
  }

  h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .sidebar,
  .nav-menu,
  #sidebar-toggle,
  .top-bar,
  .modern-marquee {
    display: none !important;
  }

  .main-content {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .layout-wrapper {
    flex-direction: column;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }

  .area-card,
  .team-card,
  .stat-card {
    break-inside: avoid;
  }
}


 
 / *   S D G   C a r d s   E n h a n c e m e n t   * / 
 . s d g - c a r d   { 
     p o s i t i o n :   r e l a t i v e ; 
     p a d d i n g - t o p :   1 r e m ; 
 } 
 
 . s d g - g o a l - h e a d e r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   0 . 7 5 r e m ; 
     m a r g i n - b o t t o m :   1 r e m ; 
     p a d d i n g - b o t t o m :   0 . 5 r e m ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 } 
 
 . s d g - i c o n   { 
     w i d t h :   3 2 p x ; 
     h e i g h t :   3 2 p x ; 
     o b j e c t - f i t :   c o n t a i n ; 
     b o r d e r - r a d i u s :   4 p x ; 
     f l e x - s h r i n k :   0 ; 
 } 
 
 . s d g - g o a l - h e a d e r   h 3   { 
     m a r g i n :   0 ; 
     f o n t - s i z e :   1 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y - d a r k ) ; 
     l i n e - h e i g h t :   1 . 2 ; 
 } 
 
 . f a c u l t y - l i s t   { 
     m a r g i n - t o p :   0 . 5 r e m ; 
 } 
 
 . f a c u l t y - l i s t   p   { 
     m a r g i n :   0 . 2 5 r e m   0 ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   v a r ( - - c o l o r - t e x t ) ; 
     l i n e - h e i g h t :   1 . 3 ; 
 } 
 
 . f a c u l t y - l i s t   p   e m   { 
     c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t ) ; 
     f o n t - s t y l e :   i t a l i c ; 
 } 
 
 
 / *   S D G   G o a l s   s p e c i f i c   s t y l i n g   * / 
 . s d g - g o a l - h e a d e r   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   0 . 7 5 r e m ; 
     m a r g i n - b o t t o m :   1 r e m ; 
     p a d d i n g - b o t t o m :   0 . 5 r e m ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - c o l o r - b o r d e r ) ; 
 } 
 
 . s d g - i c o n   { 
     w i d t h :   3 0 p x ; 
     h e i g h t :   3 0 p x ; 
     b o r d e r - r a d i u s :   4 p x ; 
     o b j e c t - f i t :   c o n t a i n ; 
     f l e x - s h r i n k :   0 ; 
 } 
 
 . f a c u l t y - s e c t i o n - t i t l e   { 
     f o n t - s i z e :   0 . 8 5 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
     m a r g i n :   0 . 7 5 r e m   0   0 . 5 r e m   0 ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 5 p x ; 
 } 
 
 
 / *   E n h a n c e d   S D G   G o a l s   s t y l i n g   * / 
 . s d g - i c o n   { 
     w i d t h :   2 0 p x   ! i m p o r t a n t ; 
     h e i g h t :   2 0 p x   ! i m p o r t a n t ; 
     b o r d e r - r a d i u s :   3 p x   ! i m p o r t a n t ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e   ! i m p o r t a n t ; 
 } 
 
 . f a c u l t y - s e c t i o n - t i t l e   { 
     f o n t - s i z e :   0 . 7 5 r e m   ! i m p o r t a n t ; 
     f o n t - w e i g h t :   7 0 0   ! i m p o r t a n t ; 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y )   ! i m p o r t a n t ; 
     m a r g i n :   0 . 7 5 r e m   0   0 . 5 r e m   0   ! i m p o r t a n t ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e   ! i m p o r t a n t ; 
     l e t t e r - s p a c i n g :   1 p x   ! i m p o r t a n t ; 
     p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
     p a d d i n g - l e f t :   1 2 p x   ! i m p o r t a n t ; 
 } 
 
 . f a c u l t y - s e c t i o n - t i t l e : : b e f o r e   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     l e f t :   0 ; 
     f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . f a c u l t y - l i s t   p   { 
     m a r g i n :   0 . 3 r e m   0   ! i m p o r t a n t ; 
     f o n t - s i z e :   0 . 9 r e m   ! i m p o r t a n t ; 
     c o l o r :   v a r ( - - c o l o r - t e x t )   ! i m p o r t a n t ; 
     l i n e - h e i g h t :   1 . 4   ! i m p o r t a n t ; 
     p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
     p a d d i n g - l e f t :   2 0 p x   ! i m p o r t a n t ; 
     t r a n s i t i o n :   a l l   0 . 2 s   e a s e   ! i m p o r t a n t ; 
 } 
 
 . f a c u l t y - l i s t   p : : b e f o r e   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     l e f t :   0 ; 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y ) ; 
     f o n t - w e i g h t :   b o l d ; 
     t r a n s i t i o n :   t r a n s f o r m   0 . 2 s   e a s e ; 
 } 
 
 . f a c u l t y - l i s t   p : h o v e r   { 
     c o l o r :   v a r ( - - c o l o r - p r i m a r y )   ! i m p o r t a n t ; 
     t r a n s f o r m :   t r a n s l a t e X ( 3 p x )   ! i m p o r t a n t ; 
 } 
 
 . f a c u l t y - l i s t   p : h o v e r : : b e f o r e   { 
     t r a n s f o r m :   s c a l e ( 1 . 2 ) ; 
 } 
 
 . a r e a - c a r d . s d g - c a r d   { 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
     p o s i t i o n :   r e l a t i v e   ! i m p o r t a n t ; 
     o v e r f l o w :   h i d d e n   ! i m p o r t a n t ; 
 } 
 
 . a r e a - c a r d . s d g - c a r d : : b e f o r e   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   0 ; 
     l e f t :   - 1 0 0 % ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   2 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   v a r ( - - c o l o r - p r i m a r y ) ,   v a r ( - - c o l o r - a c c e n t ) ) ; 
     t r a n s i t i o n :   l e f t   0 . 3 s   e a s e ; 
 } 
 
 . a r e a - c a r d . s d g - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x )   ! i m p o r t a n t ; 
     b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 )   ! i m p o r t a n t ; 
 } 
 
 . a r e a - c a r d . s d g - c a r d : h o v e r : : b e f o r e   { 
     l e f t :   0 ; 
 } 
 
 . a r e a - c a r d . s d g - c a r d : h o v e r   . s d g - i c o n   { 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 . s d g - i n f o - t i l e   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 1 e 4 0 a f   0 % ,   # 3 b 8 2 f 6   1 0 0 % )   ! i m p o r t a n t ; 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
     t e x t - a l i g n :   c e n t e r   ! i m p o r t a n t ; 
     d i s p l a y :   f l e x   ! i m p o r t a n t ; 
     f l e x - d i r e c t i o n :   c o l u m n   ! i m p o r t a n t ; 
     j u s t i f y - c o n t e n t :   c e n t e r   ! i m p o r t a n t ; 
     a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
     m i n - h e i g h t :   2 0 0 p x   ! i m p o r t a n t ; 
 } 
 
 . s d g - i n f o - t i l e   h 3   { 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
     m a r g i n - b o t t o m :   1 r e m   ! i m p o r t a n t ; 
     f o n t - s i z e :   1 . 1 r e m   ! i m p o r t a n t ; 
 } 
 
 . s d g - i n f o - t i l e   p   { 
     c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 9 )   ! i m p o r t a n t ; 
     m a r g i n - b o t t o m :   1 . 5 r e m   ! i m p o r t a n t ; 
     l i n e - h e i g h t :   1 . 5   ! i m p o r t a n t ; 
 } 
 
 . s d g - i n f o - l i n k   { 
     d i s p l a y :   i n l i n e - f l e x   ! i m p o r t a n t ; 
     a l i g n - i t e m s :   c e n t e r   ! i m p o r t a n t ; 
     g a p :   0 . 5 r e m   ! i m p o r t a n t ; 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 )   ! i m p o r t a n t ; 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
     p a d d i n g :   0 . 7 5 r e m   1 . 5 r e m   ! i m p o r t a n t ; 
     b o r d e r - r a d i u s :   2 5 p x   ! i m p o r t a n t ; 
     t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
     f o n t - w e i g h t :   6 0 0   ! i m p o r t a n t ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e   ! i m p o r t a n t ; 
     b a c k d r o p - f i l t e r :   b l u r ( 1 0 p x )   ! i m p o r t a n t ; 
 } 
 
 . s d g - i n f o - l i n k : h o v e r   { 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 )   ! i m p o r t a n t ; 
     t r a n s f o r m :   s c a l e ( 1 . 0 5 )   ! i m p o r t a n t ; 
     c o l o r :   w h i t e   ! i m p o r t a n t ; 
     t e x t - d e c o r a t i o n :   n o n e   ! i m p o r t a n t ; 
 } 
 
 
 / *   O b j e c t i v e s   S e c t i o n   S t y l i n g   * / 
 . o b j e c t i v e s - s e c t i o n   { 
     p a d d i n g :   4 r e m   0 ; 
     b a c k g r o u n d :   v a r ( - - c o l o r - b g - l i g h t ) ; 
 } 
 
 . o b j e c t i v e s - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ; 
     g a p :   2 r e m ; 
     m a r g i n - t o p :   2 r e m ; 
 } 
 
 . o b j e c t i v e - c a r d   { 
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     p a d d i n g :   2 r e m ; 
     b o x - s h a d o w :   0   4 p x   6 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     d i s p l a y :   f l e x ; 
     g a p :   1 . 5 r e m ; 
     a l i g n - i t e m s :   f l e x - s t a r t ; 
     b o r d e r - l e f t :   4 p x   s o l i d   v a r ( - - c o l o r - p r i m a r y ) ; 
 } 
 
 . o b j e c t i v e - c a r d : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
     b o x - s h a d o w :   0   8 p x   2 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . o b j e c t i v e - n u m b e r   { 
     b a c k g r o u n d :   v a r ( - - c o l o r - p r i m a r y ) ; 
     c o l o r :   w h i t e ; 
     w i d t h :   4 0 p x ; 
     h e i g h t :   4 0 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - w e i g h t :   b o l d ; 
     f o n t - s i z e :   1 . 2 r e m ; 
     f l e x - s h r i n k :   0 ; 
 } 
 
 . o b j e c t i v e - c o n t e n t   h 3   { 
     m a r g i n :   0   0   0 . 7 5 r e m   0 ; 
     f o n t - s i z e :   1 . 1 r e m ; 
     c o l o r :   v a r ( - - c o l o r - t e x t ) ; 
     f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . o b j e c t i v e - c o n t e n t   p   { 
     m a r g i n :   0 ; 
     c o l o r :   v a r ( - - c o l o r - t e x t - l i g h t ) ; 
     l i n e - h e i g h t :   1 . 6 ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 
 / *   R e s p o n s i v e   a d j u s t m e n t s   f o r   o b j e c t i v e s   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . o b j e c t i v e s - g r i d   { 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
         g a p :   1 . 5 r e m ; 
     } 
     
     . o b j e c t i v e - c a r d   { 
         p a d d i n g :   1 . 5 r e m ; 
         g a p :   1 r e m ; 
     } 
     
     . o b j e c t i v e - n u m b e r   { 
         w i d t h :   3 5 p x ; 
         h e i g h t :   3 5 p x ; 
         f o n t - s i z e :   1 r e m ; 
     } 
     
     . o b j e c t i v e - c o n t e n t   h 3   { 
         f o n t - s i z e :   1 r e m ; 
     } 
     
     . o b j e c t i v e - c o n t e n t   p   { 
         f o n t - s i z e :   0 . 9 r e m ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
     . o b j e c t i v e - c a r d   { 
         p a d d i n g :   1 . 2 5 r e m ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         t e x t - a l i g n :   c e n t e r ; 
     } 
     
     . o b j e c t i v e - n u m b e r   { 
         a l i g n - s e l f :   c e n t e r ; 
     } 
 } 
 
 

 / *   O b j e c t i v e s   S e c t i o n   -   P r o f e s s i o n a l   S t y l i n g   * / 
 . o b j e c t i v e s - s e c t i o n   { 
     p a d d i n g :   4 r e m   0 ; 
     b a c k g r o u n d - c o l o r :   # f 8 f 9 f a ; 
 } 
 
 . o b j e c t i v e s - s e c t i o n   . a r e a - c a r d   { 
     p o s i t i o n :   r e l a t i v e ; 
     p a d d i n g - t o p :   3 r e m ; 
 } 
 
 . o b j e c t i v e - n u m b e r   { 
     p o s i t i o n :   a b s o l u t e ; 
     t o p :   - 1 5 p x ; 
     l e f t :   2 0 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
     c o l o r :   w h i t e ; 
     w i d t h :   3 5 p x ; 
     h e i g h t :   3 5 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f o n t - w e i g h t :   b o l d ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     b o x - s h a d o w :   0   3 p x   1 0 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
     z - i n d e x :   2 ; 
 } 
 
 . o b j e c t i v e s - s e c t i o n   h 2   { 
     c o l o r :   # 2 c 3 e 5 0 ; 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . o b j e c t i v e s - s e c t i o n   . c o n t a i n e r   >   . t e x t - c e n t e r   p   { 
     c o l o r :   # 6 c 7 5 7 d ; 
     f o n t - s i z e :   1 . 1 r e m ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 / *   R e s p o n s i v e   a d j u s t m e n t s   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . o b j e c t i v e s - s e c t i o n   h 2   { 
         f o n t - s i z e :   2 r e m ; 
     } 
     
     . o b j e c t i v e s - s e c t i o n   . c o n t a i n e r   >   . t e x t - c e n t e r   p   { 
         f o n t - s i z e :   1 r e m ; 
     } 
     
     . o b j e c t i v e - n u m b e r   { 
         w i d t h :   3 0 p x ; 
         h e i g h t :   3 0 p x ; 
         f o n t - s i z e :   0 . 8 r e m ; 
         t o p :   - 1 2 p x ; 
         l e f t :   1 5 p x ; 
     } 
     
     . o b j e c t i v e s - s e c t i o n   . a r e a - c a r d   { 
         p a d d i n g - t o p :   2 . 5 r e m ; 
     } 
 } 
 
 
 / *   P r o p o s e d   P l a n   T i m e l i n e   S e c t i o n   * / 
 . p r o p o s e d - p l a n   { 
     p a d d i n g :   4 r e m   0 ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f 9 f a   0 % ,   # e 9 e c e f   1 0 0 % ) ; 
 } 
 
 . p r o p o s e d - p l a n   h 2   { 
     c o l o r :   # 2 c 3 e 5 0 ; 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . p r o p o s e d - p l a n   . c o n t a i n e r   >   . t e x t - c e n t e r   p   { 
     c o l o r :   # 6 c 7 5 7 d ; 
     f o n t - s i z e :   1 . 1 r e m ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 . t i m e l i n e   { 
     p o s i t i o n :   r e l a t i v e ; 
     m a x - w i d t h :   1 0 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     p a d d i n g :   2 r e m   0 ; 
 } 
 
 . t i m e l i n e : : b e f o r e   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     l e f t :   5 0 % ; 
     t o p :   0 ; 
     b o t t o m :   0 ; 
     w i d t h :   3 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( t o   b o t t o m ,   # 0 0 7 b f f ,   # 2 8 a 7 4 5 ,   # 1 7 a 2 b 8 ) ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
     b o r d e r - r a d i u s :   3 p x ; 
 } 
 
 . t i m e l i n e - i t e m   { 
     p o s i t i o n :   r e l a t i v e ; 
     m a r g i n :   3 r e m   0 ; 
     o p a c i t y :   0 ; 
     t r a n s f o r m :   t r a n s l a t e Y ( 3 0 p x ) ; 
     a n i m a t i o n :   f a d e I n U p   0 . 8 s   e a s e   f o r w a r d s ; 
 } 
 
 . t i m e l i n e - i t e m : n t h - c h i l d ( 1 )   {   a n i m a t i o n - d e l a y :   0 . 2 s ;   } 
 . t i m e l i n e - i t e m : n t h - c h i l d ( 2 )   {   a n i m a t i o n - d e l a y :   0 . 4 s ;   } 
 . t i m e l i n e - i t e m : n t h - c h i l d ( 3 )   {   a n i m a t i o n - d e l a y :   0 . 6 s ;   } 
 
 . t i m e l i n e - i t e m : n t h - c h i l d ( o d d )   . t i m e l i n e - c o n t e n t   { 
     m a r g i n - r i g h t :   5 5 % ; 
     t e x t - a l i g n :   r i g h t ; 
 } 
 
 . t i m e l i n e - i t e m : n t h - c h i l d ( e v e n )   . t i m e l i n e - c o n t e n t   { 
     m a r g i n - l e f t :   5 5 % ; 
     t e x t - a l i g n :   l e f t ; 
 } 
 
 . t i m e l i n e - m a r k e r   { 
     p o s i t i o n :   a b s o l u t e ; 
     l e f t :   5 0 % ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % ) ; 
     w i d t h :   6 0 p x ; 
     h e i g h t :   6 0 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
     z - i n d e x :   2 ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . t i m e l i n e - m a r k e r : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e X ( - 5 0 % )   s c a l e ( 1 . 1 ) ; 
     b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . y e a r - n u m b e r   { 
     c o l o r :   w h i t e ; 
     f o n t - s i z e :   1 . 5 r e m ; 
     f o n t - w e i g h t :   b o l d ; 
 } 
 
 . t i m e l i n e - c o n t e n t   { 
     b a c k g r o u n d :   w h i t e ; 
     p a d d i n g :   2 r e m ; 
     b o r d e r - r a d i u s :   1 5 p x ; 
     b o x - s h a d o w :   0   5 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 ) ; 
     b o r d e r :   1 p x   s o l i d   # e 9 e c e f ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . t i m e l i n e - c o n t e n t : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
     b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 1 5 ) ; 
 } 
 
 . t i m e l i n e - c o n t e n t   h 3   { 
     c o l o r :   # 2 c 3 e 5 0 ; 
     f o n t - s i z e :   1 . 4 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     m a r g i n - b o t t o m :   1 . 5 r e m ; 
     p o s i t i o n :   r e l a t i v e ; 
 } 
 
 . t i m e l i n e - c o n t e n t   h 3 : : a f t e r   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     b o t t o m :   - 8 p x ; 
     l e f t :   0 ; 
     w i d t h :   5 0 p x ; 
     h e i g h t :   3 p x ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 9 0 d e g ,   # 0 0 7 b f f ,   # 2 8 a 7 4 5 ) ; 
     b o r d e r - r a d i u s :   2 p x ; 
 } 
 
 . t i m e l i n e - i t e m : n t h - c h i l d ( o d d )   . t i m e l i n e - c o n t e n t   h 3 : : a f t e r   { 
     r i g h t :   0 ; 
     l e f t :   a u t o ; 
 } 
 
 . t i m e l i n e - l i s t   { 
     l i s t - s t y l e :   n o n e ; 
     p a d d i n g :   0 ; 
     m a r g i n :   0 ; 
 } 
 
 . t i m e l i n e - l i s t   l i   { 
     p o s i t i o n :   r e l a t i v e ; 
     p a d d i n g :   0 . 5 r e m   0   0 . 5 r e m   2 r e m ; 
     c o l o r :   # 4 9 5 0 5 7 ; 
     l i n e - h e i g h t :   1 . 6 ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
     o p a c i t y :   0 ; 
     t r a n s f o r m :   t r a n s l a t e X ( - 2 0 p x ) ; 
     a n i m a t i o n :   s l i d e I n L e f t   0 . 6 s   e a s e   f o r w a r d s ; 
 } 
 
 . t i m e l i n e - i t e m : n t h - c h i l d ( e v e n )   . t i m e l i n e - l i s t   l i   { 
     p a d d i n g :   0 . 5 r e m   2 r e m   0 . 5 r e m   0 ; 
     t r a n s f o r m :   t r a n s l a t e X ( 2 0 p x ) ; 
     a n i m a t i o n :   s l i d e I n R i g h t   0 . 6 s   e a s e   f o r w a r d s ; 
 } 
 
 . t i m e l i n e - l i s t   l i : n t h - c h i l d ( 1 )   {   a n i m a t i o n - d e l a y :   0 . 8 s ;   } 
 . t i m e l i n e - l i s t   l i : n t h - c h i l d ( 2 )   {   a n i m a t i o n - d e l a y :   1 . 0 s ;   } 
 . t i m e l i n e - l i s t   l i : n t h - c h i l d ( 3 )   {   a n i m a t i o n - d e l a y :   1 . 2 s ;   } 
 . t i m e l i n e - l i s t   l i : n t h - c h i l d ( 4 )   {   a n i m a t i o n - d e l a y :   1 . 4 s ;   } 
 . t i m e l i n e - l i s t   l i : n t h - c h i l d ( 5 )   {   a n i m a t i o n - d e l a y :   1 . 6 s ;   } 
 . t i m e l i n e - l i s t   l i : n t h - c h i l d ( 6 )   {   a n i m a t i o n - d e l a y :   1 . 8 s ;   } 
 
 . t i m e l i n e - l i s t   l i : : b e f o r e   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     l e f t :   0 ; 
     c o l o r :   # 0 0 7 b f f ; 
     f o n t - w e i g h t :   b o l d ; 
 } 
 
 . t i m e l i n e - i t e m : n t h - c h i l d ( e v e n )   . t i m e l i n e - l i s t   l i : : b e f o r e   { 
     r i g h t :   0 ; 
     l e f t :   a u t o ; 
     c o n t e n t :   " " ; 
 } 
 
 . t i m e l i n e - l i s t   l i : h o v e r   { 
     c o l o r :   # 0 0 7 b f f ; 
     c u r s o r :   d e f a u l t ; 
 } 
 
 / *   A n i m a t i o n s   * / 
 @ k e y f r a m e s   f a d e I n U p   { 
     t o   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   t r a n s l a t e Y ( 0 ) ; 
     } 
 } 
 
 @ k e y f r a m e s   s l i d e I n L e f t   { 
     t o   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
     } 
 } 
 
 @ k e y f r a m e s   s l i d e I n R i g h t   { 
     t o   { 
         o p a c i t y :   1 ; 
         t r a n s f o r m :   t r a n s l a t e X ( 0 ) ; 
     } 
 } 
 
 / *   R e s p o n s i v e   D e s i g n   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . t i m e l i n e : : b e f o r e   { 
         l e f t :   3 0 p x ; 
     } 
     
     . t i m e l i n e - m a r k e r   { 
         l e f t :   3 0 p x ; 
         w i d t h :   5 0 p x ; 
         h e i g h t :   5 0 p x ; 
     } 
     
     . y e a r - n u m b e r   { 
         f o n t - s i z e :   1 . 2 r e m ; 
     } 
     
     . t i m e l i n e - i t e m : n t h - c h i l d ( o d d )   . t i m e l i n e - c o n t e n t , 
     . t i m e l i n e - i t e m : n t h - c h i l d ( e v e n )   . t i m e l i n e - c o n t e n t   { 
         m a r g i n - l e f t :   8 0 p x ; 
         m a r g i n - r i g h t :   0 ; 
         t e x t - a l i g n :   l e f t ; 
     } 
     
     . t i m e l i n e - c o n t e n t   h 3 : : a f t e r   { 
         l e f t :   0   ! i m p o r t a n t ; 
         r i g h t :   a u t o   ! i m p o r t a n t ; 
     } 
     
     . t i m e l i n e - l i s t   l i   { 
         p a d d i n g :   0 . 5 r e m   0   0 . 5 r e m   2 r e m   ! i m p o r t a n t ; 
         t r a n s f o r m :   t r a n s l a t e X ( - 2 0 p x )   ! i m p o r t a n t ; 
         a n i m a t i o n :   s l i d e I n L e f t   0 . 6 s   e a s e   f o r w a r d s   ! i m p o r t a n t ; 
     } 
     
     . t i m e l i n e - l i s t   l i : : b e f o r e   { 
         l e f t :   0   ! i m p o r t a n t ; 
         r i g h t :   a u t o   ! i m p o r t a n t ; 
         c o n t e n t :   " "   ! i m p o r t a n t ; 
     } 
     
     . p r o p o s e d - p l a n   h 2   { 
         f o n t - s i z e :   2 r e m ; 
     } 
     
     . p r o p o s e d - p l a n   . c o n t a i n e r   >   . t e x t - c e n t e r   p   { 
         f o n t - s i z e :   1 r e m ; 
     } 
 } 
 
 
 / *   P r o p o s e d   P l a n   S e c t i o n   * / 
 . p r o p o s e d - p l a n   { 
     p a d d i n g :   4 r e m   0 ; 
     b a c k g r o u n d :   # f 8 f 9 f a ; 
 } 
 
 . p r o p o s e d - p l a n   h 2   { 
     c o l o r :   # 2 c 3 e 5 0 ; 
     f o n t - s i z e :   2 . 5 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . p r o p o s e d - p l a n   . c o n t a i n e r   >   . t e x t - c e n t e r   p   { 
     c o l o r :   # 6 c 7 5 7 d ; 
     f o n t - s i z e :   1 . 1 r e m ; 
     m a x - w i d t h :   8 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
     l i n e - h e i g h t :   1 . 6 ; 
 } 
 
 . p l a n - y e a r   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
     c o l o r :   w h i t e ; 
     f o n t - s i z e :   1 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     p a d d i n g :   0 . 5 r e m   1 r e m ; 
     b o r d e r - r a d i u s :   2 0 p x ; 
     d i s p l a y :   i n l i n e - b l o c k ; 
     m a r g i n - b o t t o m :   1 r e m ; 
     b o x - s h a d o w :   0   2 p x   1 0 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . p l a n - l i s t   { 
     l i s t - s t y l e :   n o n e ; 
     p a d d i n g :   0 ; 
     m a r g i n :   0 ; 
 } 
 
 . p l a n - l i s t   l i   { 
     p o s i t i o n :   r e l a t i v e ; 
     p a d d i n g :   0 . 5 r e m   0   0 . 5 r e m   1 . 5 r e m ; 
     c o l o r :   # 4 9 5 0 5 7 ; 
     l i n e - h e i g h t :   1 . 6 ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
 } 
 
 . p l a n - l i s t   l i : : b e f o r e   { 
     c o n t e n t :   " " ; 
     p o s i t i o n :   a b s o l u t e ; 
     l e f t :   0 ; 
     c o l o r :   # 0 0 7 b f f ; 
     f o n t - w e i g h t :   b o l d ; 
 } 
 
 . p l a n - l i s t   l i : h o v e r   { 
     c o l o r :   # 0 0 7 b f f ; 
 } 
 
 
 / *   P r o m o t i o n   M o d a l   S t y l e s   * / 
 . m o d a l - o v e r l a y   { 
     p o s i t i o n :   f i x e d ; 
     t o p :   0 ; 
     l e f t :   0 ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 8 ) ; 
     b a c k d r o p - f i l t e r :   b l u r ( 8 p x ) ; 
     z - i n d e x :   1 0 0 0 0 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     o p a c i t y :   0 ; 
     v i s i b i l i t y :   h i d d e n ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . m o d a l - o v e r l a y . a c t i v e   { 
     o p a c i t y :   1 ; 
     v i s i b i l i t y :   v i s i b l e ; 
 } 
 
 . m o d a l - c o n t a i n e r   { 
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r - r a d i u s :   2 0 p x ; 
     b o x - s h a d o w :   0   2 0 p x   6 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
     m a x - w i d t h :   6 0 0 p x ; 
     w i d t h :   9 0 % ; 
     m a x - h e i g h t :   9 0 v h ; 
     o v e r f l o w :   h i d d e n ; 
     p o s i t i o n :   r e l a t i v e ; 
     t r a n s f o r m :   s c a l e ( 0 . 8 )   t r a n s l a t e Y ( 5 0 p x ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . m o d a l - o v e r l a y . a c t i v e   . m o d a l - c o n t a i n e r   { 
     t r a n s f o r m :   s c a l e ( 1 )   t r a n s l a t e Y ( 0 ) ; 
 } 
 
 . m o d a l - h e a d e r   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
     c o l o r :   w h i t e ; 
     p a d d i n g :   1 . 5 r e m ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . m o d a l - l o g o   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   1 r e m ; 
 } 
 
 . l o g o - i m g   { 
     w i d t h :   5 0 p x ; 
     h e i g h t :   5 0 p x ; 
     b o r d e r - r a d i u s :   1 0 p x ; 
     b a c k g r o u n d :   w h i t e ; 
     p a d d i n g :   5 p x ; 
 } 
 
 . m o d a l - t i t l e   h 3   { 
     m a r g i n :   0 ; 
     f o n t - s i z e :   1 . 3 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c o l o r :   w h i t e ; 
 } 
 
 . m o d a l - t i t l e   p   { 
     m a r g i n :   0 ; 
     f o n t - s i z e :   0 . 9 r e m ; 
     o p a c i t y :   0 . 9 ; 
     c o l o r :   w h i t e ; 
 } 
 
 . m o d a l - a c t i o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   0 . 5 r e m ; 
 } 
 
 . a c t i o n - b t n   { 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
     b o r d e r :   n o n e ; 
     c o l o r :   w h i t e ; 
     w i d t h :   4 0 p x ; 
     h e i g h t :   4 0 p x ; 
     b o r d e r - r a d i u s :   1 0 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c u r s o r :   p o i n t e r ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . a c t i o n - b t n : h o v e r   { 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ; 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 . c l o s e - b t n : h o v e r   { 
     b a c k g r o u n d :   # d c 3 5 4 5   ! i m p o r t a n t ; 
 } 
 
 . m o d a l - c o n t e n t   { 
     p a d d i n g :   0 ; 
 } 
 
 . e v e n t - i m a g e   { 
     w i d t h :   1 0 0 % ; 
     p o s i t i o n :   r e l a t i v e ; 
     o v e r f l o w :   h i d d e n ; 
 } 
 
 . e v e n t - i m a g e   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   a u t o ; 
     d i s p l a y :   b l o c k ; 
     o b j e c t - f i t :   c o v e r ; 
     m a x - h e i g h t :   3 5 0 p x ; 
 } 
 
 . e v e n t - d e t a i l s   { 
     p a d d i n g :   2 r e m ; 
     t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . e v e n t - d e t a i l s   h 4   { 
     c o l o r :   # 2 c 3 e 5 0 ; 
     f o n t - s i z e :   1 . 5 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
     m a r g i n - b o t t o m :   1 r e m ; 
 } 
 
 . e v e n t - d e t a i l s   p   { 
     c o l o r :   # 6 c 7 5 7 d ; 
     l i n e - h e i g h t :   1 . 6 ; 
     m a r g i n - b o t t o m :   2 r e m ; 
     f o n t - s i z e :   1 r e m ; 
 } 
 
 . c t a - b u t t o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   1 r e m ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     f l e x - w r a p :   w r a p ; 
 } 
 
 . b t n - p r i m a r y ,   . b t n - s e c o n d a r y   { 
     p a d d i n g :   0 . 8 r e m   2 r e m ; 
     b o r d e r :   n o n e ; 
     b o r d e r - r a d i u s :   2 5 p x ; 
     f o n t - w e i g h t :   6 0 0 ; 
     c u r s o r :   p o i n t e r ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     f o n t - s i z e :   0 . 9 5 r e m ; 
 } 
 
 . b t n - p r i m a r y   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
     c o l o r :   w h i t e ; 
     b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
     t r a n s f o r m :   t r a n s l a t e Y ( - 2 p x ) ; 
     b o x - s h a d o w :   0   6 p x   2 0 p x   r g b a ( 0 ,   1 2 3 ,   2 5 5 ,   0 . 4 ) ; 
 } 
 
 . b t n - s e c o n d a r y   { 
     b a c k g r o u n d :   # f 8 f 9 f a ; 
     c o l o r :   # 6 c 7 5 7 d ; 
     b o r d e r :   2 p x   s o l i d   # e 9 e c e f ; 
 } 
 
 . b t n - s e c o n d a r y : h o v e r   { 
     b a c k g r o u n d :   # e 9 e c e f ; 
     c o l o r :   # 4 9 5 0 5 7 ; 
 } 
 
 / *   M a x i m i z e d   s t a t e   * / 
 . m o d a l - c o n t a i n e r . m a x i m i z e d   { 
     m a x - w i d t h :   9 5 % ; 
     m a x - h e i g h t :   9 5 % ; 
     w i d t h :   9 5 % ; 
     h e i g h t :   9 5 % ; 
 } 
 
 . m o d a l - c o n t a i n e r . m a x i m i z e d   . e v e n t - i m a g e   i m g   { 
     m a x - h e i g h t :   5 0 0 p x ; 
 } 
 
 / *   R e s p o n s i v e   D e s i g n   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . m o d a l - c o n t a i n e r   { 
         w i d t h :   9 5 % ; 
         m a r g i n :   1 r e m ; 
     } 
     
     . m o d a l - h e a d e r   { 
         p a d d i n g :   1 r e m ; 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   1 r e m ; 
         t e x t - a l i g n :   c e n t e r ; 
     } 
     
     . m o d a l - l o g o   { 
         j u s t i f y - c o n t e n t :   c e n t e r ; 
     } 
     
     . e v e n t - d e t a i l s   { 
         p a d d i n g :   1 . 5 r e m ; 
     } 
     
     . e v e n t - d e t a i l s   h 4   { 
         f o n t - s i z e :   1 . 3 r e m ; 
     } 
     
     . c t a - b u t t o n s   { 
         f l e x - d i r e c t i o n :   c o l u m n ; 
         g a p :   0 . 8 r e m ; 
     } 
     
     . b t n - p r i m a r y ,   . b t n - s e c o n d a r y   { 
         w i d t h :   1 0 0 % ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   4 8 0 p x )   { 
     . m o d a l - h e a d e r   { 
         p a d d i n g :   0 . 8 r e m ; 
     } 
     
     . l o g o - i m g   { 
         w i d t h :   4 0 p x ; 
         h e i g h t :   4 0 p x ; 
     } 
     
     . m o d a l - t i t l e   h 3   { 
         f o n t - s i z e :   1 . 1 r e m ; 
     } 
     
     . m o d a l - t i t l e   p   { 
         f o n t - s i z e :   0 . 8 r e m ; 
     } 
     
     . a c t i o n - b t n   { 
         w i d t h :   3 5 p x ; 
         h e i g h t :   3 5 p x ; 
     } 
     
     . e v e n t - d e t a i l s   { 
         p a d d i n g :   1 r e m ; 
     } 
 } 
 
 
 
 / *   P r o m o t i o n   M o d a l   -   C l e a n   a n d   S i m p l e   * / 
 . m o d a l - o v e r l a y   { 
     p o s i t i o n :   f i x e d ; 
     t o p :   0 ; 
     l e f t :   0 ; 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   1 0 0 % ; 
     b a c k g r o u n d :   r g b a ( 0 ,   0 ,   0 ,   0 . 7 ) ; 
     z - i n d e x :   1 0 0 0 0 ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     o p a c i t y :   0 ; 
     v i s i b i l i t y :   h i d d e n ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . m o d a l - o v e r l a y . a c t i v e   { 
     o p a c i t y :   1 ; 
     v i s i b i l i t y :   v i s i b l e ; 
 } 
 
 . m o d a l - c o n t a i n e r   { 
     b a c k g r o u n d :   w h i t e ; 
     b o r d e r - r a d i u s :   1 2 p x ; 
     b o x - s h a d o w :   0   1 0 p x   3 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ; 
     m a x - w i d t h :   5 0 0 p x ; 
     w i d t h :   9 0 % ; 
     m a x - h e i g h t :   8 0 v h ; 
     o v e r f l o w :   h i d d e n ; 
     t r a n s f o r m :   s c a l e ( 0 . 9 ) ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
 } 
 
 . m o d a l - o v e r l a y . a c t i v e   . m o d a l - c o n t a i n e r   { 
     t r a n s f o r m :   s c a l e ( 1 ) ; 
 } 
 
 . m o d a l - h e a d e r   { 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 0 0 7 b f f ,   # 0 0 5 6 b 3 ) ; 
     c o l o r :   w h i t e ; 
     p a d d i n g :   1 r e m ; 
     d i s p l a y :   f l e x ; 
     j u s t i f y - c o n t e n t :   s p a c e - b e t w e e n ; 
     a l i g n - i t e m s :   c e n t e r ; 
 } 
 
 . m o d a l - l o g o   { 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     g a p :   0 . 8 r e m ; 
 } 
 
 . l o g o - i m g   { 
     w i d t h :   4 0 p x ; 
     h e i g h t :   4 0 p x ; 
     b o r d e r - r a d i u s :   8 p x ; 
     b a c k g r o u n d :   w h i t e ; 
     p a d d i n g :   4 p x ; 
 } 
 
 . m o d a l - t i t l e   h 3   { 
     m a r g i n :   0 ; 
     f o n t - s i z e :   1 . 1 r e m ; 
     f o n t - w e i g h t :   6 0 0 ; 
 } 
 
 . m o d a l - t i t l e   p   { 
     m a r g i n :   0 ; 
     f o n t - s i z e :   0 . 8 r e m ; 
     o p a c i t y :   0 . 9 ; 
 } 
 
 . m o d a l - a c t i o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   0 . 3 r e m ; 
 } 
 
 . a c t i o n - b t n   { 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 2 ) ; 
     b o r d e r :   n o n e ; 
     c o l o r :   w h i t e ; 
     w i d t h :   3 2 p x ; 
     h e i g h t :   3 2 p x ; 
     b o r d e r - r a d i u s :   6 p x ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     c u r s o r :   p o i n t e r ; 
     t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
 } 
 
 . a c t i o n - b t n : h o v e r   { 
     b a c k g r o u n d :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 3 ) ; 
 } 
 
 . c l o s e - b t n : h o v e r   { 
     b a c k g r o u n d :   # d c 3 5 4 5 ; 
 } 
 
 . m o d a l - c o n t e n t   { 
     p a d d i n g :   0 ; 
 } 
 
 . e v e n t - i m a g e   i m g   { 
     w i d t h :   1 0 0 % ; 
     h e i g h t :   a u t o ; 
     d i s p l a y :   b l o c k ; 
     m a x - h e i g h t :   2 5 0 p x ; 
     o b j e c t - f i t :   c o v e r ; 
 } 
 
 . e v e n t - d e t a i l s   { 
     p a d d i n g :   1 . 5 r e m ; 
     t e x t - a l i g n :   c e n t e r ; 
 } 
 
 . e v e n t - d e t a i l s   h 4   { 
     c o l o r :   # 2 c 3 e 5 0 ; 
     f o n t - s i z e :   1 . 3 r e m ; 
     m a r g i n - b o t t o m :   0 . 8 r e m ; 
 } 
 
 . e v e n t - d e t a i l s   p   { 
     c o l o r :   # 6 c 7 5 7 d ; 
     l i n e - h e i g h t :   1 . 5 ; 
     m a r g i n - b o t t o m :   1 . 5 r e m ; 
     f o n t - s i z e :   0 . 9 r e m ; 
 } 
 
 . c t a - b u t t o n s   { 
     d i s p l a y :   f l e x ; 
     g a p :   0 . 8 r e m ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
 } 
 
 . b t n - p r i m a r y ,   . b t n - s e c o n d a r y   { 
     p a d d i n g :   0 . 6 r e m   1 . 5 r e m ; 
     b o r d e r :   n o n e ; 
     b o r d e r - r a d i u s :   2 0 p x ; 
     f o n t - w e i g h t :   5 0 0 ; 
     c u r s o r :   p o i n t e r ; 
     t r a n s i t i o n :   a l l   0 . 2 s   e a s e ; 
     f o n t - s i z e :   0 . 8 5 r e m ; 
 } 
 
 . b t n - p r i m a r y   { 
     b a c k g r o u n d :   # 0 0 7 b f f ; 
     c o l o r :   w h i t e ; 
 } 
 
 . b t n - p r i m a r y : h o v e r   { 
     b a c k g r o u n d :   # 0 0 5 6 b 3 ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 1 p x ) ; 
 } 
 
 . b t n - s e c o n d a r y   { 
     b a c k g r o u n d :   # f 8 f 9 f a ; 
     c o l o r :   # 6 c 7 5 7 d ; 
     b o r d e r :   1 p x   s o l i d   # d e e 2 e 6 ; 
 } 
 
 . b t n - s e c o n d a r y : h o v e r   { 
     b a c k g r o u n d :   # e 9 e c e f ; 
 } 
 
 . m o d a l - c o n t a i n e r . m a x i m i z e d   { 
     m a x - w i d t h :   8 0 % ; 
     m a x - h e i g h t :   8 5 % ; 
 } 
 
 . m o d a l - c o n t a i n e r . m a x i m i z e d   . e v e n t - i m a g e   i m g   { 
     m a x - h e i g h t :   4 0 0 p x ; 
 } 
 
 / *   M o b i l e   R e s p o n s i v e   * / 
 @ m e d i a   ( m a x - w i d t h :   7 6 8 p x )   { 
     . m o d a l - c o n t a i n e r   { 
         w i d t h :   9 5 % ; 
         m a x - h e i g h t :   8 5 v h ; 
     } 
     
     . m o d a l - h e a d e r   { 
         p a d d i n g :   0 . 8 r e m ; 
     } 
     
     . l o g o - i m g   { 
         w i d t h :   3 5 p x ; 
         h e i g h t :   3 5 p x ; 
     } 
     
     . m o d a l - t i t l e   h 3   { 
         f o n t - s i z e :   1 r e m ; 
     } 
     
     . m o d a l - t i t l e   p   { 
         f o n t - s i z e :   0 . 7 5 r e m ; 
     } 
     
     . e v e n t - d e t a i l s   { 
         p a d d i n g :   1 r e m ; 
     } 
     
     . e v e n t - d e t a i l s   h 4   { 
         f o n t - s i z e :   1 . 1 r e m ; 
     } 
     
     . c t a - b u t t o n s   { 
         f l e x - d i r e c t i o n :   c o l u m n ; 
     } 
     
     . b t n - p r i m a r y ,   . b t n - s e c o n d a r y   { 
         w i d t h :   1 0 0 % ; 
     } 
 } 
 
 