/* ======================
   CSS Variables & Base Styles
   ====================== */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  /* Brand Colors - HSL */
  --background: 0 0% 100%;
  --foreground: 0 0% 10%;
  
  --card: 0 0% 100%;
  --card-foreground: 0 0% 10%;
  
  --popover: 0 0% 100%;
  --popover-foreground: 0 0% 10%;
  
  /* BSE Red - Primary Brand Color */
  --primary: 0 80% 40%;
  --primary-foreground: 0 0% 100%;
  --primary-light: 0 80% 50%;
  --primary-dark: 0 80% 28%;
  
  /* Dark/Black */
  --secondary: 0 0% 10%;
  --secondary-foreground: 0 0% 100%;
  
  --muted: 0 0% 96%;
  --muted-foreground: 0 0% 45%;
  
  --accent: 0 60% 95%;
  --accent-foreground: 0 80% 35%;
  
  --destructive: 0 84.2% 60.2%;
  --destructive-foreground: 0 0% 98%;
  
  --border: 0 0% 88%;
  --input: 0 0% 88%;
  --ring: 0 80% 40%;
  
  --radius: 0.5rem;
  
  /* Custom Design Tokens */
  --hero-gradient: linear-gradient(135deg, hsl(0 0% 8%) 0%, hsl(0 80% 18%) 100%);
  --card-shadow: 0 4px 24px hsl(0 80% 40% / 0.12);
  --card-hover-shadow: 0 8px 40px hsl(0 80% 40% / 0.22);
  --red-glow: 0 0 40px hsl(0 80% 40% / 0.3);
  
  /* Enhanced Timeline Colors */
  --timeline-blue: 217 91% 60%;
  --timeline-purple: 271 91% 65%;
  --timeline-green: 142 76% 36%;
  --timeline-cyan: 188 84% 41%;
  --timeline-pink: 330 81% 60%;
  --timeline-orange: 25 84% 53%;
  --timeline-red: 0 84% 60%;
  --timeline-yellow: 43 96% 56%;
  --timeline-indigo: 238 84% 67%;
  --timeline-teal: 174 60% 51%;
  
  /* Enhanced Animation Variables */
  --glow-intensity: 0 0 60px;
  --pulse-duration: 2s;
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Sidebar variables */
  --sidebar-background: 0 0% 98%;
  --sidebar-foreground: 240 5.3% 26.1%;
  --sidebar-primary: 240 5.9% 10%;
  --sidebar-primary-foreground: 0 0% 98%;
  --sidebar-accent: 240 4.8% 95.9%;
  --sidebar-accent-foreground: 240 5.9% 10%;
  --sidebar-border: 220 13% 91%;
  --sidebar-ring: 217.2 91.2% 59.8%;
}

/* Base Styles */
* {
  border-color: hsl(var(--border));
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'Inter', 'Tajawal', sans-serif;
  line-height: 1.6;
  direction: rtl;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* Arabic text must never have letter-spacing - it breaks glyph joining */
[lang="ar"], [dir="rtl"],
h1[dir="rtl"], h2[dir="rtl"], h3[dir="rtl"],
p[dir="rtl"], span[dir="rtl"],
button[dir="rtl"] {
  letter-spacing: 0 !important;
  word-spacing: normal;
  font-family: 'Tajawal', 'Inter', sans-serif;
}

/* Tailwind applies negative tracking to large text which breaks Arabic */
.text-4xl, .text-5xl, .text-6xl, .text-7xl {
  letter-spacing: normal;
}

/* Override tracking for elements using Arabic font inline */
h1, h2, h3, h4, h5, h6, p, span, a, button, label, option, select, textarea, input {
  font-variant-ligatures: common-ligatures;
}

/* ======================
   Utility Classes
   ====================== */

/* Hero Gradient */
.hero-gradient {
  background: var(--hero-gradient);
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Content Container */
.hero-gradient .container {
  position: relative;
  z-index: 10;
}

/* Hero Grid Layout */
.hero-gradient .grid {
  align-items: center;
  min-height: calc(100vh - 8rem);
  gap: 4rem;
}

/* Hero Content Spacing */
.hero-gradient .text-center {
  padding: 2rem 0;
}

.hero-gradient .lg\:text-right {
  text-align: right;
}

/* Hero Logo */
.hero-logo {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.hero-logo img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  transition: transform 0.3s ease;
  animation: float 6s ease-in-out infinite;
}

.hero-logo:hover img {
  transform: scale(1.05);
}

/* Enhanced Hero Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-pulse {
  animation: pulse 4s ease-in-out infinite;
}

.animate-spin-slow {
  animation: spin-slow 20s linear infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.hero-description-container {
  position: relative;
}

.hero-highlights {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: hsla(0, 0%, 100%, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: slideInUp 0.6s ease-out;
}

.highlight-item:hover {
  background: hsla(0, 0%, 100%, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px hsla(0, 0%, 0%, 0.2);
}

.highlight-item i {
  color: hsl(0, 80%, 40%);
  filter: drop-shadow(0 0 10px hsla(0, 80%, 40%, 0.5));
}

.highlight-item span {
  color: hsl(0, 0%, 100%);
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  text-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.3);
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.enhanced-cta {
  position: relative;
  overflow: hidden;
}

.enhanced-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsla(0, 0%, 100%, 0.2), transparent);
  transition: left 0.5s ease;
}

.enhanced-cta:hover::before {
  left: 100%;
}

.cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.cta-content small {
  font-size: 0.75rem;
  opacity: 0.8;
  font-weight: 400;
  font-family: 'Tajawal', sans-serif;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: hsl(0, 0%, 100%);
  transition: all 0.3s ease;
}

.scroll-link:hover {
  color: hsl(0, 80%, 40%);
  transform: translateY(-3px);
}

.scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  border: 2px solid hsla(0, 0%, 100%, 0.4);
  transition: all 0.3s ease;
}

.scroll-text {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: 'Tajawal', sans-serif;
  text-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

@media (max-width: 768px) {
  .hero-highlights {
    flex-direction: column;
    gap: 1rem;
  }
  
  .highlight-item {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
  }
  
  .cta-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.25rem;
  }
  
  .scroll-indicator {
    bottom: 1rem;
  }
}

/* Hero Titles */
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Hero Cards */
.hero-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.hero-card {
  background: hsla(0, 80%, 40%, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(0, 80%, 40%, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hero-card:hover {
  transform: translateY(-0.5rem) scale(1.02);
  box-shadow: 0 20px 40px hsla(0, 80%, 40%, 0.25);
  border-color: hsla(0, 80%, 40%, 0.4);
}

.hero-card-top {
  height: 0.5rem;
  background: linear-gradient(90deg, hsl(0, 80%, 40%), hsl(0, 80%, 50%));
  margin: -2rem -2rem 1.5rem -2rem;
  border-radius: 0.5rem 0.5rem 0 0;
}

.hero-card-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, hsla(0, 80%, 40%, 0.2), hsla(0, 80%, 40%, 0.1));
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px hsla(0, 80%, 40%, 0.15);
}

.hero-card-icon i {
  transition: transform 0.3s ease;
}

.hero-card:hover .hero-card-icon i {
  transform: scale(1.1);
}

.hero-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-card p {
  font-size: 0.875rem;
  opacity: 0.9;
  line-height: 1.5;
}

/* Hero CTA Buttons */
.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Cards Row - Compact Design */
.hero-cards-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-cards-compact {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .hero-header {
    flex-direction: column;
    gap: 1rem;
  }
}

/* ========================
   Language Toggle Button
   ======================== */

#language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.45rem 0.65rem;
  margin: 0 0.3rem;
  background-color: #f75959;
  border: 2px solid transparent;
  border-radius: 20px;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: fit-content;
  position: relative;
  letter-spacing: 0.5px;
}

#language-toggle::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  margin-right: 0.3rem;
}

#language-toggle:hover {
  background-color: #d04749;
  border-color: #f75959;
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(247, 89, 89, 0.3);
}

#language-toggle:active {
  transform: scale(0.98);
}

@media (max-width: 768px) {
  #language-toggle {
    padding: 0.4rem 0.55rem;
    font-size: 0.7rem;
    gap: 0.25rem;
    margin: 0 0.2rem;
  }
  
  #language-toggle::before {
    width: 10px;
    height: 10px;
    margin-right: 0.2rem;
  }
}

/* Body direction changes for language support */
body.lang-en {
  direction: ltr;
  text-align: left;
}

body.lang-en [dir="rtl"],
body.lang-en [lang="ar"] {
  direction: rtl;
  text-align: right;
}

body.lang-ar {
  direction: rtl;
  text-align: right;
}

body.lang-ar [dir="ltr"],
body.lang-ar [lang="en"] {
  direction: ltr;
  text-align: left;
}

/* Adjust font for different languages */
body.lang-en,
body.lang-en h1,
body.lang-en h2,
body.lang-en h3,
body.lang-en h4,
body.lang-en h5,
body.lang-en h6,
body.lang-en p,
body.lang-en span,
body.lang-en a,
body.lang-en button {
  font-family: 'Inter', 'Tajawal', sans-serif;
  letter-spacing: 0.3px;
}

body.lang-ar,
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4,
body.lang-ar h5,
body.lang-ar h6,
body.lang-ar p,
body.lang-ar span,
body.lang-ar a,
body.lang-ar button {
  font-family: 'Tajawal', 'Inter', sans-serif;
  letter-spacing: 0 !important;
}

/* Compact Hero Cards */
.hero-card-compact {
  background: linear-gradient(135deg, 
    hsla(0, 80%, 40%, 0.9) 0%, 
    hsla(0, 80%, 35%, 0.85) 100%);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid hsla(0, 80%, 40%, 0.25);
  border-radius: 0.75rem;
  padding: 1.25rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px hsla(0, 80%, 40%, 0.12);
}

.hero-card-compact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    hsla(0, 0%, 100%, 0.4) 50%, 
    transparent 100%);
}

.hero-card-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px hsla(0, 80%, 40%, 0.18);
  border-color: hsla(0, 80%, 40%, 0.35);
  background: linear-gradient(135deg, 
    hsla(0, 80%, 45%, 0.95) 0%, 
    hsla(0, 80%, 40%, 0.9) 100%);
}

.hero-card-compact i {
  color: hsl(0, 0%, 100%);
  transition: transform 0.3s ease;
}

.hero-card-compact:hover i {
  transform: scale(1.1);
}

.hero-card-compact h3 {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0;
  color: hsl(0, 0%, 100%);
  text-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.15);
  font-family: 'Tajawal', sans-serif;
}

/* Journey Section - Enhanced Design */
.journey-card {
  background: linear-gradient(135deg, 
    hsl(0, 0%, 100%) 0%, 
    hsl(0, 0%, 98%) 100%);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.1);
  border: 1px solid hsla(0, 0%, 0%, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.journey-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px hsla(0, 80%, 40%, 0.15);
  border-color: hsla(0, 80%, 40%, 0.2);
}

.journey-card-header {
  background: linear-gradient(135deg, 
    hsl(0, 80%, 40%) 0%, 
    hsl(0, 80%, 35%) 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.journey-card-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.2) 0%, 
    hsla(0, 0%, 100%, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px hsla(0, 80%, 40%, 0.2);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  flex-shrink: 0;
}

.journey-card-content {
  flex: 1;
  text-align: right;
}

.journey-card-label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.journey-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  text-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.2);
  margin: 0;
}

.journey-card-body {
  padding: 2rem;
  background: hsla(0, 0%, 100%, 0.5);
}

.journey-card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: hsl(0, 0%, 20%);
  margin-bottom: 2rem;
  font-weight: 400;
}

.journey-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.journey-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: hsla(0, 80%, 40%, 0.1);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 80%, 40%, 0.2);
  transition: all 0.3s ease;
}

.journey-feature:hover {
  background: hsla(0, 80%, 40%, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(0, 80%, 40%, 0.1);
}

.journey-feature i {
  flex-shrink: 0;
}

.journey-feature span {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 80%, 40%);
  font-family: 'Tajawal', sans-serif;
}

/* Interactive Timeline - Simple & Engaging */
.timeline-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  padding: 2rem;
  background: hsl(0, 0%, 99%);
  border-radius: 1rem;
  border: 2px solid hsl(0, 0%, 90%);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 120px;
}

.timeline-item:hover {
  transform: translateX(1rem);
  box-shadow: 0 10px 30px hsla(0, 80%, 40%, 0.1);
  border-color: hsl(0, 80%, 40%, 0.3);
  background: hsl(0, 0%, 100%);
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  min-width: 80px;
}

.timeline-icon {
  width: 4rem;
  height: 4rem;
  background: hsl(0, 80%, 40%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px hsla(0, 80%, 40%, 0.4);
  transition: all 0.3s ease;
  border: 2px solid hsla(0, 0%, 100%, 0.2);
}

.timeline-item:hover .timeline-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px hsla(0, 80%, 40%, 0.5);
}

.timeline-year {
  font-size: 1rem;
  font-weight: 700;
  color: hsl(0, 80%, 40%);
  font-family: 'Tajawal', sans-serif;
  background: hsla(0, 80%, 40%, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  border: 2px solid hsla(0, 80%, 40%, 0.3);
  text-align: center;
  min-width: 60px;
}

.timeline-content {
  flex: 1;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.75rem;
  font-family: 'Tajawal', sans-serif;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.timeline-item:hover .timeline-title {
  color: hsl(0, 80%, 40%);
}

.timeline-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: hsl(0, 0%, 40%);
  margin-bottom: 1rem;
  font-family: 'Tajawal', sans-serif;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.timeline-tag {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 80%, 40%);
  font-family: 'Tajawal', sans-serif;
  background: hsla(0, 80%, 40%, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 80%, 40%, 0.2);
  transition: all 0.3s ease;
}

.timeline-tag:hover {
  background: hsla(0, 80%, 40%, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(0, 80%, 40%, 0.15);
}

/* Accreditations Bar - Red Background Design */
.accreditations-bar {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  padding: 2rem;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: hsla(0, 0%, 100%, 0.3) transparent;
}

.accreditations-bar::-webkit-scrollbar {
  height: 8px;
}

.accreditations-bar::-webkit-scrollbar-track {
  background: hsla(0, 0%, 100%, 0.1);
  border-radius: 4px;
}

.accreditations-bar::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 100%, 0.3);
  border-radius: 4px;
}

.accreditations-bar::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 100%, 0.5);
}

.accreditation-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.15) 0%, 
    hsla(0, 0%, 100%, 0.05) 100%);
  border-radius: 1.25rem;
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  min-width: 250px;
  flex: 1;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.accreditation-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    hsla(0, 0%, 100%, 0.6) 50%, 
    transparent 100%);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

.accreditation-item:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.25) 0%, 
    hsla(0, 0%, 100%, 0.15) 100%);
  border-color: hsla(0, 0%, 100%, 0.4);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.3);
}

.accreditation-item:hover::before {
  transform: translateY(0);
}

.accreditation-icon {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.2) 0%, 
    hsla(0, 0%, 100%, 0.1) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  transition: all 0.4s ease;
}

.accreditation-item:hover .accreditation-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px hsla(0, 0%, 0%, 0.3);
  border-color: hsla(0, 0%, 100%, 0.5);
}

.accreditation-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accreditation-type {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsla(0, 0%, 100%, 0.8);
  font-family: 'Tajawal', sans-serif;
  background: hsla(0, 0%, 100%, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  align-self: center;
  transition: all 0.3s ease;
}

.accreditation-item:hover .accreditation-type {
  background: hsla(0, 0%, 100%, 0.25);
  color: hsl(0, 0%, 100%);
  transform: translateY(-2px);
}

.accreditation-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  text-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.3);
  transition: all 0.3s ease;
}

.accreditation-item:hover .accreditation-title {
  transform: scale(1.05);
  text-shadow: 0 3px 12px hsla(0, 0%, 0%, 0.4);
}

.accreditation-description {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.8);
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.accreditation-item:hover .accreditation-description {
  color: hsla(0, 0%, 100%, 0.95);
}

/* Values Section - Modern Design */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, 
    hsl(0, 0%, 100%) 0%, 
    hsl(0, 0%, 98%) 100%);
  border-radius: 1.5rem;
  border: 2px solid hsl(0, 0%, 95%);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    hsl(0, 80%, 40%, 0.6) 50%, 
    transparent 100%);
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.value-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 60px hsla(0, 80%, 40%, 0.15);
  border-color: hsl(0, 80%, 40%, 0.3);
}

.value-card:hover::before {
  transform: translateY(0);
}

.value-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, 
    hsl(0, 80%, 40%) 0%, 
    hsl(0, 80%, 35%) 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px hsla(0, 80%, 40%, 0.3);
  border: 2px solid hsla(0, 0%, 100%, 0.2);
  transition: all 0.5s ease;
  margin-bottom: 2rem;
  position: relative;
}

.value-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, 
    hsla(0, 80%, 40%, 0.3) 0%, 
    transparent 50%, 
    hsla(0, 80%, 40%, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 16px 40px hsla(0, 80%, 40%, 0.4);
  border-color: hsla(0, 0%, 100%, 0.4);
}

.value-card:hover .value-icon::after {
  opacity: 1;
}

.value-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.value-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(0, 80%, 40%);
  font-family: 'Tajawal', sans-serif;
  background: hsla(0, 80%, 40%, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid hsla(0, 80%, 40%, 0.2);
  align-self: center;
  transition: all 0.4s ease;
}

.value-card:hover .value-badge {
  background: hsla(0, 80%, 40%, 0.2);
  color: hsl(0, 80%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(0, 80%, 40%, 0.15);
}

.value-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(0, 0%, 10%);
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  text-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.1);
  transition: all 0.4s ease;
  line-height: 1.3;
}

.value-card:hover .value-title {
  color: hsl(0, 80%, 40%);
  transform: scale(1.05);
  text-shadow: 0 3px 12px hsla(0, 80%, 40%, 0.2);
}

.value-description {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(0, 0%, 40%);
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.4s ease;
}

.value-card:hover .value-description {
  color: hsl(0, 0%, 30%);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .value-card {
    padding: 2rem 1.5rem;
  }
  
  .value-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }
  
  .value-title {
    font-size: 1.25rem;
  }
  
  .value-description {
    font-size: 0.875rem;
  }
  
  .value-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

/* Methodology Section - Modern Design */
.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.methodology-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, 
    hsl(0, 0%, 100%) 0%, 
    hsl(0, 0%, 98%) 100%);
  border-radius: 1.5rem;
  border: 2px solid hsl(0, 0%, 95%);
  box-shadow: 0 20px 40px hsla(0, 0%, 0%, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.methodology-card-wide {
  grid-column: span 2;
}

.methodology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    hsl(0, 80%, 40%, 0.6) 50%, 
    transparent 100%);
  transform: translateY(-100%);
  transition: transform 0.5s ease;
}

.methodology-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 60px hsla(0, 80%, 40%, 0.15);
  border-color: hsl(0, 80%, 40%, 0.3);
}

.methodology-card:hover::before {
  transform: translateY(0);
}

.methodology-icon {
  width: 5rem;
  height: 5rem;
  background: linear-gradient(135deg, 
    hsl(0, 80%, 40%) 0%, 
    hsl(0, 80%, 35%) 100%);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px hsla(0, 80%, 40%, 0.3);
  border: 2px solid hsla(0, 0%, 100%, 0.2);
  transition: all 0.5s ease;
  margin-bottom: 2rem;
  position: relative;
}

.methodology-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, 
    hsla(0, 80%, 40%, 0.3) 0%, 
    transparent 50%, 
    hsla(0, 80%, 40%, 0.3) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.methodology-card:hover .methodology-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 16px 40px hsla(0, 80%, 40%, 0.4);
  border-color: hsla(0, 0%, 100%, 0.4);
}

.methodology-card:hover .methodology-icon::after {
  opacity: 1;
}

.methodology-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}

.methodology-badge {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(0, 80%, 40%);
  font-family: 'Tajawal', sans-serif;
  background: hsla(0, 80%, 40%, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  border: 1px solid hsla(0, 80%, 40%, 0.2);
  align-self: center;
  transition: all 0.4s ease;
}

.methodology-card:hover .methodology-badge {
  background: hsla(0, 80%, 40%, 0.2);
  color: hsl(0, 80%, 40%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(0, 80%, 40%, 0.15);
}

.methodology-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: hsl(0, 0%, 10%);
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  text-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.1);
  transition: all 0.4s ease;
  line-height: 1.3;
}

.methodology-card:hover .methodology-title {
  color: hsl(0, 80%, 40%);
  transform: scale(1.05);
  text-shadow: 0 3px 12px hsla(0, 80%, 40%, 0.2);
}

.methodology-description {
  font-size: 1rem;
  line-height: 1.6;
  color: hsl(0, 0%, 40%);
  margin: 0;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.4s ease;
}

.methodology-card:hover .methodology-description {
  color: hsl(0, 0%, 30%);
}

.methodology-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}

.methodology-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsla(0, 80%, 40%, 0.08);
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 80%, 40%, 0.15);
  transition: all 0.3s ease;
}

.methodology-feature:hover {
  background: hsla(0, 80%, 40%, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(0, 80%, 40%, 0.15);
  border-color: hsla(0, 80%, 40%, 0.25);
}

.methodology-feature i {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.methodology-feature:hover i {
  transform: scale(1.1);
}

.methodology-feature span {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(0, 80%, 40%);
  font-family: 'Tajawal', sans-serif;
  text-shadow: 0 1px 3px hsla(0, 80%, 40%, 0.2);
}

@media (max-width: 768px) {
  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .methodology-card {
    padding: 2rem 1.5rem;
  }
  
  .methodology-card-wide {
    grid-column: span 1;
  }
  
  .methodology-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.5rem;
  }
  
  .methodology-title {
    font-size: 1.25rem;
  }
  
  .methodology-description {
    font-size: 0.875rem;
  }
  
  .methodology-features {
    justify-content: center;
  }
  
  .methodology-card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

@media (max-width: 1024px) {
  .methodology-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .accreditations-bar {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .accreditation-item {
    flex-direction: row;
    text-align: right;
    padding: 1.5rem;
    min-width: auto;
  }
  
  .accreditation-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0;
    margin-left: 1rem;
  }
  
  .accreditation-content {
    flex: 1;
  }
  
  .accreditation-type {
    align-self: flex-start;
  }
  
  .accreditation-item:hover {
    transform: translateY(-4px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .timeline-item:hover {
    transform: translateY(-0.5rem);
  }
  
  .timeline-marker {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
  
  .timeline-content {
    text-align: center;
  }
  
  .timeline-title {
    font-size: 1.25rem;
  }
  
  .timeline-tags {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .journey-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .journey-card-content {
    text-align: center;
  }
  
  .journey-card-title {
    font-size: 1.25rem;
  }
  
  .journey-card-features {
    justify-content: center;
  }
  
  .vision-card-header {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .vision-card-content {
    text-align: center;
  }
  
  .vision-card-title {
    font-size: 1.5rem;
  }
  
  .vision-card-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .vision-feature {
    padding: 0.75rem 1rem;
  }
}

.stat-card-glass {
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.1) 0%, 
    hsla(0, 0%, 100%, 0.05) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px hsla(0, 0%, 0%, 0.1);
}

.stat-card-glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    hsla(0, 0%, 100%, 0.4) 50%, 
    transparent 100%);
}

.stat-card-glass:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px hsla(0, 0%, 0%, 0.15);
  border-color: hsla(0, 0%, 100%, 0.3);
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.15) 0%, 
    hsla(0, 0%, 100%, 0.08) 100%);
}

.stat-icon {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, 
    hsla(0, 80%, 40%, 0.3) 0%, 
    hsla(0, 80%, 40%, 0.1) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 16px hsla(0, 80%, 40%, 0.2);
  border: 1px solid hsla(0, 80%, 40%, 0.2);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px hsla(0, 0%, 0%, 0.2);
  font-family: 'Inter', sans-serif;
}

.stat-label {
  font-size: 0.875rem;
  color: hsla(0, 0%, 100%, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
}

/* Compact Statistics Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, 
    hsla(0, 0%, 100%, 0.15) 0%, 
    hsla(0, 0%, 100%, 0.08) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid hsla(0, 0%, 100%, 0.25);
  border-radius: 0.75rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.12);
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .stats-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
  }
  
  .stat-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: calc(50% - 0.5rem);
  }
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    hsla(0, 0%, 100%, 0.4) 50%, 
    transparent 100%);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: hsla(0, 80%, 40%, 0.25);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  border: 1px solid hsla(0, 80%, 40%, 0.35);
  flex: 1;
  min-width: 0;
}

.stat-item:hover {
  background: hsla(0, 80%, 40%, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px hsla(0, 80%, 40%, 0.2);
}

.stat-number-small {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(0, 0%, 100%);
  text-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.2);
  font-family: 'Inter', sans-serif;
  min-width: 2rem;
  text-align: center;
}

.stat-label-small {
  font-size: 0.75rem;
  color: hsla(0, 0%, 100%, 0.9);
  font-weight: 500;
  text-shadow: 0 1px 2px hsla(0, 0%, 0%, 0.1);
  font-family: 'Tajawal', sans-serif;
  white-space: nowrap;
}

.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.hero-cta-primary {
  background: hsl(0, 80%, 40%);
  color: hsl(0, 0%, 100%);
  box-shadow: 0 8px 16px hsla(0, 80%, 40%, 0.2);
}

.hero-cta-primary:hover {
  background: hsl(0, 80%, 35%);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px hsla(0, 80%, 40%, 0.3);
}

.hero-cta-secondary {
  background: transparent;
  color: hsl(0, 80%, 40%);
  border: 2px solid hsl(0, 80%, 40%);
}

.hero-cta-secondary:hover {
  background: hsla(0, 80%, 40%, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px hsla(0, 80%, 40%, 0.15);
}

/* Card Shadows */
.card-shadow {
  box-shadow: var(--card-shadow);
}

.card-hover-shadow {
  box-shadow: var(--card-hover-shadow);
}

/* Red Glow */
.red-glow {
  box-shadow: var(--red-glow);
}

/* Text Gradient */
.text-gradient {
  background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, hsl(var(--primary)), transparent);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 768px) {
  .timeline-card {
    margin-left: 0;
    padding-left: 2rem;
  }
  
  .timeline-connector {
    left: 1rem;
  }
  
  .timeline-dot {
    left: 0.5rem;
  }
  
  section {
    padding: 1rem;
  }
  
  .text-4xl {
    font-size: 2rem;
  }
  
  .text-3xl {
    font-size: 1.5rem;
  }
  
  .text-xl {
    font-size: 1.125rem;
  }
  
  .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  .grid-cols-2.md\:grid-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .timeline-card {
    padding-left: 1.5rem;
  }
  
  .timeline-connector {
    left: 0.75rem;
  }
  
  .timeline-dot {
    left: 0.25rem;
    width: 0.5rem;
    height: 0.5rem;
  }
  
  .w-24.h-24 {
    width: 3rem;
    height: 3rem;
  }
  
  .p-12 {
    padding: 1.5rem;
  }
  
  .gap-8 {
    gap: 1rem;
  }
  
  .gap-6 {
    gap: 0.75rem;
  }
}

/* Enhanced Animations */
@keyframes slideInFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
  }
  50% {
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.8);
  }
}

@keyframes textGlow {
  0%, 100% {
    text-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
  }
}

/* Performance Optimizations */
.timeline-card,
.timeline-dot,
.timeline-connector {
  will-change: transform, opacity;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Enhanced Hover States */
.timeline-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.timeline-card:hover .timeline-dot {
  animation: glowPulse 1s ease-in-out infinite;
}

/* Focus States */
.timeline-card:focus,
section:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .timeline-connector,
  .timeline-dot,
  .dynamic-glow {
    display: none;
  }
  
  .timeline-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* Additional spacing classes */
.min-w-0 { min-width: 0px; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex-shrink-0 { flex-shrink: 0; }
.object-contain { object-fit: contain; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }
.rounded-full { border-radius: 50%; }
.rounded-md { border-radius: 0.375rem; }
.rounded-xl { border-radius: 0.75rem; }
.border { border-width: 1px; border-style: solid; border-color: hsl(var(--border)); }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: hsl(var(--border)); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-border { border-color: hsl(var(--border)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-foreground { color: hsl(var(--foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.tracking-normal { letter-spacing: 0; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }
.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:bg-primary\/10:hover { background-color: hsl(var(--primary) / 0.1); }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:border-primary:hover { border-color: hsl(var(--primary)); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.group:hover .group-hover\:bg-primary { background-color: hsl(var(--primary)); }
.group:hover .group-hover\:text-primary-foreground { color: hsl(var(--primary-foreground)); }
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-1\/2 { transform: translateY(50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.overflow-hidden { overflow: hidden; }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.blur-3xl { filter: blur(64px); }
.blur-xl { filter: blur(24px); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }
.animate-bounce {
  animation: bounce 1s infinite;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Spacing */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.p-14 { padding: 3.5rem; }
.p-16 { padding: 4rem; }
.p-24 { padding: 6rem; }

.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }

.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-24 { margin-bottom: 6rem; }

.mt-2 { margin-top: 0.5rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }

.mr-1 { margin-right: 0.25rem; }
.mr-2 { margin-right: 0.5rem; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }

.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-50 { z-index: 50; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-32 { width: 8rem; }
.w-36 { width: 9rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-\[400px\] { width: 400px; }
.w-\[500px\] { width: 500px; }
.w-\[700px\] { width: 700px; }
.w-1\.5 { width: 0.375rem; }

.h-full { height: 100%; }
.h-auto { height: auto; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-32 { height: 8rem; }
.h-36 { height: 9rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-\[400px\] { height: 400px; }
.h-\[500px\] { height: 500px; }
.h-\[700px\] { height: 700px; }
.h-1\.5 { height: 0.375rem; }
.min-h-screen { min-height: 100vh; }

/* Colors */
.bg-background { background-color: hsl(var(--background)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-muted { background-color: hsl(var(--muted)); }
.bg-primary\/10 { background-color: hsl(var(--primary) / 0.1); }
.bg-primary\/8 { background-color: hsl(var(--primary) / 0.08); }
.bg-primary\/5 { background-color: hsl(var(--primary) / 0.05); }
.bg-secondary\/5 { background-color: hsl(var(--secondary) / 0.05); }
.bg-secondary\/95 { background-color: hsl(var(--secondary) / 0.95); }
.bg-muted\/40 { background-color: hsl(var(--muted) / 0.4); }

.text-foreground { color: hsl(var(--foreground)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-secondary-foreground { color: hsl(var(--secondary-foreground)); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-primary\/60 { color: hsl(var(--primary) / 0.6); }
.text-primary\/75 { color: hsl(var(--primary) / 0.75); }
.text-primary\/80 { color: hsl(var(--primary) / 0.8); }
.text-primary\/90 { color: hsl(var(--primary) / 0.9); }
.text-primary-foreground\/60 { color: hsl(var(--primary-foreground) / 0.6); }
.text-primary-foreground\/75 { color: hsl(var(--primary-foreground) / 0.75); }
.text-secondary-foreground\/60 { color: hsl(var(--secondary-foreground) / 0.6); }
.text-secondary-foreground\/40 { color: hsl(var(--secondary-foreground) / 0.4); }

/* Border */
.border { border-width: 1px; border-style: solid; border-color: hsl(var(--border)); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: hsl(var(--border)); }
.border-t { border-top-width: 1px; border-top-style: solid; border-top-color: hsl(var(--border)); }
.border-primary { border-color: hsl(var(--primary)); }
.border-primary\/20 { border-color: hsl(var(--primary) / 0.2); }
.border-primary\/30 { border-color: hsl(var(--primary) / 0.3); }
.border-primary\/40 { border-color: hsl(var(--primary) / 0.4); }
.border-border { border-color: hsl(var(--border)); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-full { border-radius: 50%; }

/* Typography */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.tracking-normal { letter-spacing: 0; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.whitespace-nowrap { white-space: nowrap; }

/* Background Effects */
.backdrop-blur-md { backdrop-filter: blur(12px); }
.blur-3xl { filter: blur(64px); }
.blur-xl { filter: blur(24px); }
.drop-shadow-2xl { filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15)); }

/* Transitions & Animations */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-200 { transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

/* Hover States */
.hover\:bg-primary:hover { background-color: hsl(var(--primary)); }
.hover\:bg-primary-light:hover { background-color: hsl(var(--primary-light)); }
.hover\:bg-primary\/10:hover { background-color: hsl(var(--primary) / 0.1); }
.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-primary-foreground:hover { color: hsl(var(--primary-foreground)); }
.hover\:text-primary\/80:hover { color: hsl(var(--primary) / 0.8); }
.hover\:border-primary:hover { border-color: hsl(var(--primary)); }
.hover\:border-primary\/30:hover { border-color: hsl(var(--primary) / 0.3); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.group:hover .group-hover\:bg-primary { background-color: hsl(var(--primary)); }
.group:hover .group-hover\:text-primary-foreground { color: hsl(var(--primary-foreground)); }

/* Transform */
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-1\/2 { transform: translateY(50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }

/* Overflow */
.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* Object Fit */
.object-contain { object-fit: contain; }
.object-cover { object-fit: cover; }

/* Opacity */
.opacity-30 { opacity: 0.3; }
.opacity-40 { opacity: 0.4; }

/* Cursor */
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }

/* Animation */
.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

/* Responsive */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:w-auto { width: auto; }
}

@media (min-width: 768px) {
  .md\:flex-row { flex-direction: row; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:h-36 { height: 9rem; }
  .md\:w-36 { width: 9rem; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:p-8 { padding: 2rem; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:text-right { text-align: right; }
  .md\:items-start { align-items: flex-start; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1280px) {
  .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* RTL Support */
[dir="rtl"] .ml-2 { margin-left: 0; margin-right: 0.5rem; }
[dir="rtl"] .mr-2 { margin-right: 0; margin-left: 0.5rem; }
[dir="rtl"] .ml-1 { margin-left: 0; margin-right: 0.25rem; }
[dir="rtl"] .mr-1 { margin-right: 0; margin-left: 0.25rem; }

/* Form Elements */
input, textarea, select {
  background-color: hsl(var(--background));
  color: hsl(var(--foreground));
  border: 1px solid hsl(var(--border));
}

input:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2);
}

/* Buttons */
button {
  cursor: pointer;
  font-family: inherit;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove download appearance from links */
a:not([href^="tel"]):not([href^="mailto"]) {
  text-decoration: none;
}

.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px hsl(var(--ring) / 0.2); }
.focus\:ring-primary\/30:focus { box-shadow: 0 0 0 2px hsl(var(--primary) / 0.3); }
.focus\:border-primary:focus { border-color: hsl(var(--primary)); }

/* Resize */
.resize-none { resize: none; }

/* Min/Max Width */
.min-w-0 { min-width: 0px; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-\[1200px\] { max-width: 1200px; }

/* Shadow */
.shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05); }

/* Special Classes */
.ring-2 { box-shadow: 0 0 0 2px; }
.ring-primary\/30 { box-shadow: 0 0 0 2px hsl(var(--primary) / 0.3); }
