/* System Font Fallback for Better Performance - CLS Prevention */
.font-proxima {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-display: block; /* Prevent font swap layout shifts */
}

/* Diagonal cut effect for image */
.diagonal-cut {
  clip-path: polygon(0 0, 80% 0, 100% 100%, 0 100%);
  background: none;
}

/* CRITICAL CLS PREVENTION: Reserve space and ensure stable layout */
.hero-bg {
  min-height: 100vh; /* Reserve full viewport height */
  contain: layout; /* Prevent layout shifting outside container */
}

.hero-bg .lg\:max-w-2xl,
.hero-bg .lg\:max-w-xl {
  min-height: 200px; /* Reserve minimum space for content */
}

/* Hero paragraph specific CLS prevention */
.hero-bg p {
  min-height: 120px; /* Reserve space for the LCP paragraph */
  line-height: 1.6; /* Stable line height */
}

/* Progressive loading stages - STABLE LAYOUT for CLS prevention */
.load-stage-1, 
.load-stage-2, 
.load-stage-3, 
.load-stage-4 { 
  opacity: 1; /* Immediate visibility without conflicts */
  transform: translateY(0); 
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1); 
}

/* Animation states for when specifically triggered (optional enhancement) */
.load-stage-1.animate-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards; }
.load-stage-2.animate-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards; }
.load-stage-3.animate-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; }
.load-stage-4.animate-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }

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

/* Remove old loaded state as it's no longer needed */

/* Fancy glassmorphism effects */
.glass-card {
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Advanced button effects */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-glow:hover::before {
  left: 100%;
}

/* Animated background gradient */
.hero-bg {
  background: linear-gradient(-45deg, #0f172a, #1e1b4b, #0f172a, #1e3a8a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Floating animation */
.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Text shimmer effect */
.text-shimmer {
  background: linear-gradient(90deg, #ffffff 0%, #60a5fa 50%, #ffffff 100%);
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Image overlay effects */
.image-overlay {
  position: relative;
  overflow: hidden;
}

.image-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(147, 51, 234, 0.1) 100%);
  z-index: 1;
}

/* Advanced shadow effects */
.shadow-luxury {
  box-shadow: 
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Skeleton loading styles */
.skeleton {
  background: linear-gradient(90deg, #374151 25%, #4b5563 50%, #374151 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Critical path optimization */
.critical-content {
  contain: layout style paint;
}

/* Course cards layout fixes */
.course-grid {
  display: grid;
  gap: 4rem;
  margin-bottom: 2rem;
  padding: 1rem; /* Add padding to accommodate badges */
}

.course-card {
  position: relative;
  margin-bottom: 0;
}

/* Badge positioning */
.course-card .absolute.-top-3.-right-3 {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  z-index: 30;
}

/* Lazy load placeholder */
.lazy-section {
  min-height: 400px;
  background: rgba(15, 23, 42, 0.5);
  border-radius: 16px;
}

/* Multi-step form styles */
.form-step {
  display: none;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.form-step.prev {
  transform: translateX(-30px);
}

/* Option selection styles */
.support-option input[type="radio"]:checked + div,
.experience-option input[type="radio"]:checked + div,
.timeline-option input[type="radio"]:checked + div,
.participant-option input[type="radio"]:checked + div,
.scheduling-option input[type="radio"]:checked + div,
.language-option input[type="radio"]:checked + div {
  border-color: #3b82f6;
  background: rgba(59, 130, 246, 0.1);
  transform: scale(1.02);
}

.support-option input[type="radio"]:checked + div .w-12,
.experience-option input[type="radio"]:checked + div .w-3,
.timeline-option input[type="radio"]:checked + div .w-12,
.participant-option input[type="radio"]:checked + div .w-16,
.scheduling-option input[type="radio"]:checked + div .w-14,
.language-option input[type="radio"]:checked + div .w-16 {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
}

/* Enhanced project support form styles */
.support-type-option input[type="radio"]:checked + div {
  transform: scale(1.02);
}

.iso-part-option input[type="checkbox"]:checked + div {
  transform: scale(1.01);
}

.selection-feedback {
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Step indicators */
.step-indicator.active {
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

/* Form animations */
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide-in-right {
  animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left {
  animation: slideInLeft 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* CRITICAL: Exact Tailwind Template Structure */
@media (min-width: 1024px) {
  /* Text section - exact Tailwind structure */
  .hero-bg .lg\:max-w-2xl {
    max-width: 42rem; /* Exactly matches Tailwind's lg:max-w-2xl */
  }
  
  .hero-bg .lg\:max-w-xl {
    max-width: 36rem; /* Inner content container */
  }
  
  /* Image section - exact positioning with diagonal cut */
  .hero-bg .lg\:absolute {
    position: absolute;
  }
  
  .hero-bg .lg\:inset-y-0 {
    top: 0;
    bottom: 0;
  }
  
  .hero-bg .lg\:right-0 {
    right: 0;
  }
  
  .hero-bg .lg\:w-1\/2 {
    width: 50%;
  }
  
  /* Perfect image sizing */
  .hero-bg .lg\:aspect-auto {
    aspect-ratio: auto;
  }
  
  .hero-bg .lg\:size-full {
    width: 100%;
    height: 100%;
  }
  
  /* Diagonal cut effect for desktop */
  .hero-bg .diagonal-cut {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* Mobile layout */
@media (max-width: 1023px) {
  .hero-bg .lg\:absolute {
    position: static;
    width: 100%;
  }
  
  .hero-bg .aspect-3\/2 {
    aspect-ratio: 3 / 2;
  }
  
  /* No diagonal cut on mobile for better compatibility */
  .hero-bg .diagonal-cut {
    clip-path: none;
  }
}

/* Image overlay effects */
.hero-bg .image-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(147, 51, 234, 0.08) 100%);
  z-index: 1;
}

/* Ensure button stays above overlay */
.hero-bg .absolute.bottom-8 {
  z-index: 20;
}

/* Text content positioning */
.hero-bg .relative.z-10 {
  z-index: 10;
}

/* Enhanced Our Services Section */
.services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 27, 75, 0.95) 50%, rgba(15, 23, 42, 0.95) 100%);
  width: 100%;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.services-container {
  width: 80%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 10;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
  width: 100%;
  max-width: none;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
  }
}

.service-card {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.service-card-inner {
  position: relative;
  height: 100%;
  background: linear-gradient(145deg, rgba(30, 41, 59, 0.9) 0%, rgba(51, 65, 85, 0.8) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  display: flex;
  flex-direction: column;
  z-index: 1;
}

.service-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(145deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
}

.service-card:hover .service-card-inner {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(148, 163, 184, 0.4);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(59, 130, 246, 0.1);
}

.service-card:hover .service-card-inner::before {
  opacity: 1;
}

.service-icon-container {
  position: relative;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 2rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon-container {
  transform: scale(1.1) rotate(5deg);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: white;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  line-height: 1.3;
}

.service-card:hover .service-title {
  background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-description {
  color: rgb(148, 163, 184);
  font-size: 1.1rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.25rem;
  transition: color 0.4s ease;
  flex-grow: 1;
}

.service-card:hover .service-description {
  color: rgb(203, 213, 225);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.service-feature {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: rgb(96, 165, 250);
  padding: 0.75rem 1.25rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s ease;
}

.service-card:hover .service-feature {
  background: rgba(59, 130, 246, 0.2);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

.service-button {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  transition: all 0.4s ease;
  margin-top: auto;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  cursor: pointer;
  position: relative;
  z-index: 10;
  pointer-events: auto;
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  text-decoration: none;
  color: white;
}

.service-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3), 0 8px 25px rgba(59, 130, 246, 0.4);
}

.service-button svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.4s ease;
}

.service-button:hover svg {
  transform: translateX(4px);
}

/* Service specific colors */
.service-card.online-courses .service-icon-container {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3);
}

.service-card.online-courses:hover .service-icon-container {
  box-shadow: 0 12px 40px rgba(59, 130, 246, 0.5);
}

.service-card.classroom-training .service-icon-container {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

.service-card.classroom-training:hover .service-icon-container {
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.service-card.consultancy .service-icon-container {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.service-card.consultancy:hover .service-icon-container {
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

/* Decorative floating elements */
.services-section .floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.services-section .floating-shape:nth-child(1) {
  top: 10%;
  left: 15%;
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  animation-delay: 0s;
}

.services-section .floating-shape:nth-child(2) {
  top: 70%;
  right: 20%;
  width: 6rem;
  height: 6rem;
  background: linear-gradient(135deg, #10b981, #3b82f6);
  animation-delay: 2s;
}

.services-section .floating-shape:nth-child(3) {
  bottom: 20%;
  left: 70%;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #8b5cf6, #10b981);
  animation-delay: 4s;
}

/* Enhanced fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation for service cards */
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* Service specific button colors */
.service-card.online-courses .service-button {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-card.online-courses .service-button:hover {
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.service-card.classroom-training .service-button {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.service-card.classroom-training .service-button:hover {
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.service-card.consultancy .service-button {
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.service-card.consultancy .service-button:hover {
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Mobile-specific adjustments */
@media (max-width: 767px) {
  .service-card {
    min-height: 350px;
  }
  
  .service-card-inner {
    padding: 2rem;
  }
  
  .service-card:hover .service-card-inner {
    transform: translateY(-6px) scale(1.01);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 
      0 15px 30px -8px rgba(0, 0, 0, 0.4),
      0 0 20px rgba(59, 130, 246, 0.1);
  }
}

/* Enhanced Mobile Optimization (max-width: 768px) */
@media (max-width: 768px) {
  .text-6xl, .text-7xl {
    font-size: 2.5rem !important;
    line-height: 1.1 !important;
  }
  
  .text-5xl {
    font-size: 2rem !important;
    line-height: 1.1 !important;
  }
  
  .text-4xl {
    font-size: 1.75rem !important;
    line-height: 1.2 !important;
  }
  
  .text-3xl {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }
  
  .text-2xl {
    font-size: 1.25rem !important;
    line-height: 1.3 !important;
  }
  
  .text-xl {
    font-size: 1.125rem !important;
    line-height: 1.4 !important;
  }
  
  .text-lg {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }

  /* Mobile-specific contact button improvements */
  .hero-bg button[onclick="scrollToSupportForm()"] {
    padding: 0.75rem 1.5rem !important; /* Smaller padding */
    font-size: 1rem !important; /* Smaller font size */
  }
  
  .hero-bg button[onclick="scrollToSupportForm()"] .w-8.h-8 {
    width: 1.5rem !important;
    height: 1.5rem !important;
  }
  
  .hero-bg button[onclick="scrollToSupportForm()"] .w-5.h-5 {
    width: 1rem !important;
    height: 1rem !important;
  }
  
  .hero-bg button[onclick="scrollToSupportForm()"] .w-6.h-6 {
    width: 1.25rem !important;
    height: 1.25rem !important;
  }
  
  /* Reduce spacing between contact button and courses section */
  #udemy-courses {
    padding-top: 3rem !important; /* Reduced from 6rem */
  }
  
  /* Course card mobile layout improvements */
  .course-card .flex.items-center.gap-4.text-sm.mb-3 {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
  }
  
  /* Reviews on one row */
  .course-card .course-rating {
    display: flex;
    align-items: center;
    width: 100%;
  }
  
  /* Published date on separate row with matching colors */
  .course-card .course-date {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
  }
  
  /* Hide separator dot on mobile */
  .course-card .flex.items-center.gap-4.text-sm.mb-3 > .text-slate-400 {
    display: none !important;
  }
  
  /* Color matching for published dates */
  .course-color-blue .course-date { color: rgb(147, 197, 253) !important; }
  .course-color-purple .course-date { color: rgb(196, 144, 253) !important; }
  .course-color-green .course-date { color: rgb(74, 222, 128) !important; }
  .course-color-red .course-date { color: rgb(248, 113, 113) !important; }
  .course-color-yellow .course-date { color: rgb(251, 191, 36) !important; }
  .course-color-teal .course-date { color: rgb(45, 212, 191) !important; }
  .course-color-indigo .course-date { color: rgb(165, 180, 252) !important; }
  .course-color-pink .course-date { color: rgb(244, 114, 182) !important; }
  .course-color-orange .course-date { color: rgb(251, 146, 60) !important; }
  .course-color-gray .course-date { color: rgb(229, 231, 235) !important; }

  /* Existing mobile styles */
  .nav-btn, 
  .nav-btn:focus,
  .nav-btn:hover {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
  }
  
  .nav-btn:hover {
    background: rgba(59, 130, 246, 0.8);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 130, 246, 0.3);
  }
  
  .mobile-menu-button,
  .mobile-menu-button:focus,
  .mobile-menu-button:hover {
    padding: 0.5rem;
    border-radius: 0.5rem;
  }
}

/* Tablet optimizations (769px to 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .text-6xl, .text-7xl {
    font-size: 3.5rem !important;
  }
  
  .text-5xl {
    font-size: 2.5rem !important;
  }
  
  .course-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2.5rem !important;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }
  
  /* Maintain some animations on tablets */
  .floating-element {
    animation: float 6s ease-in-out infinite !important;
  }
}

/* Touch device optimizations */
@media (pointer: coarse) {
  /* Optimize for touch interactions */
  .hover\:scale-105:hover {
    transform: scale(1.02) !important; /* Reduce scale for touch devices */
  }
  
  .hover\:shadow-xl:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important; /* Simplify shadows */
  }
  
  /* Disable hover effects that don't work well on touch */
  .service-card:hover .service-card-inner,
  .course-card:hover .glass-card {
    transform: none !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .glass-card {
    background: rgba(15, 23, 42, 1) !important;
    border: 2px solid #ffffff !important;
  }
  
  .text-slate-300,
  .text-slate-400,
  .text-slate-500 {
    color: #ffffff !important;
  }
}

/* Reduced motion preference support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .floating-element,
  .animate-pulse,
  .text-shimmer,
  .hero-bg {
    animation: none !important;
  }
}
``` 