/* Extracted WOSA layout/component CSS (non-Tailwind) */


  /* Font loading optimization - prevent FOUC */
  * { 
    box-sizing: border-box; 
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }
  body { 
    margin: 0; 
    background:#000; 
    color:#e5e7eb;
    text-rendering: optimizeLegibility;
  }
  
  /* Prevent layout shift for images */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Optimize font loading to prevent FOUC */
  @font-face {
    font-family: 'Satoshi';
    font-display: swap;
  }
  
  /* Crisp text rendering for larger screens */
  @media (min-width: 1024px) {
    body {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }
  }
  /* Brand CTA button baseline styling */
  .premium-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    color: #fff;
    background-image: linear-gradient(135deg, #c1983d 0%, #b8893a 100%);
    background-size: 180% 180%;
    background-position: 0% 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 28px rgba(193, 152, 61, 0.35);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.4s ease, filter 0.25s ease;
    isolation: isolate;
    overflow: hidden;
  }

  .premium-button::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.25), transparent 55%);
    opacity: 0.45;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: -1;
  }

  .premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(193, 152, 61, 0.45);
    background-position: 80% 50%;
    filter: brightness(1.05);
  }

  .premium-button:hover::after {
    opacity: 0.65;
    transform: scale(1.08);
  }

  .premium-button:active {
    transform: translateY(0);
    box-shadow: 0 10px 24px rgba(193, 152, 61, 0.4);
    filter: brightness(0.97);
  }

  .premium-button:focus-visible {
    outline: 2px solid rgba(255, 240, 207, 0.85);
    outline-offset: 3px;
  }

  .premium-button:disabled,
  .premium-button[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    filter: grayscale(0.3);
  }

  /* simple marquee utility */
  .marquee { overflow:hidden; white-space:nowrap; }
  .marquee__track { display:inline-flex; gap:2.5rem; animation: marquee var(--marquee-duration, 24s) linear infinite; will-change: transform; }
  .marquee:hover .marquee__track { animation-play-state: paused; }
  @keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  
  /* Horizontal infinite scroll gallery */
  .hscroll-wrapper { 
    position: relative; 
    overflow: hidden; 
    width: 100%;
  }
  
  .hscroll-container { 
    overflow: hidden; 
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .hscroll-track { 
    display: flex; 
    gap: 24px; 
    width: max-content;
    will-change: transform;
  }
  
  .hscroll-track .card { 
    flex: 0 0 auto;
    width: 70vw; 
    height: clamp(200px, 50vh, 520px); 
    border-radius: 24px; 
    overflow: hidden; 
    border: 1px solid rgba(255,255,255,0.1); 
    background: #0a0a0a;
    position: relative;
  }
  
  @media (min-width: 768px) { 
    .hscroll-track .card { width: 50vw; } 
  }
  
  @media (min-width: 1024px) { 
    .hscroll-track .card { width: 40vw; } 
  }
  
  @media (min-width: 1280px) { 
    .hscroll-track .card { width: 33vw; } 
  }
  
  .hscroll-track .card img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.9; 
    transition: opacity 0.3s ease, transform 0.3s ease; 
  }
  
  .hscroll-track .card:hover img { 
    opacity: 1; 
    transform: scale(1.05); 
  }
  
  .hscroll-track .card::after { 
    content: ""; 
    position: absolute; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    height: 45%; 
    background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0) 60%); 
    pointer-events: none; 
  }
  
  .hscroll-track .label { 
    position: absolute; 
    left: 16px; 
    bottom: 16px; 
    color: #fff; 
    font-weight: 700; 
    letter-spacing: -0.01em; 
    text-shadow: 0 1px 2px rgba(0,0,0,0.4); 
    background: rgba(0,0,0,0.45); /* solid but transparent */
    border: 1px solid rgba(255,255,255,0.14); 
    padding: 8px 14px; 
    border-radius: 9999px; 
    font-size: clamp(14px, 1.4vw, 18px); 
    transition: all 0.3s ease; 
  }
  
  .hscroll-track .card:hover .label { 
    background: rgba(0,0,0,0.6); 
    border-color: rgba(255,255,255,0.3); 
    transform: translateY(-2px); 
  }
  /* overlay polish */
  .overlay-card { position: relative; overflow: hidden; background: rgba(10,10,10,0.22); }
  .overlay-card::after { content:''; position:absolute; inset:-10% -10%; background: radial-gradient(60% 60% at 80% 20%, rgba(139,92,246,0.18), transparent 60%); filter: blur(10px); pointer-events:none; }
  
  @media (min-width: 1024px) {
    .overlay-card::after { filter: none; opacity: 0.1; }
  }
  .overlay-kicker { letter-spacing: .18em; text-transform: uppercase; font-size: .75rem; color: rgba(255,255,255,.7); }
  .overlay-heading { font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight: 800; letter-spacing: -0.015em; line-height: 1.08; }
  .overlay-body { color: rgba(255,255,255,.9); }
  .badges span { background: rgba(255,255,255,.08); padding: .35rem .6rem; border-radius: 9999px; font-size: .75rem; border: 1px solid rgba(255,255,255,.12); }
  /* alt panel override */
  .alt-panel { background: rgba(10,10,10,0.26) !important; backdrop-filter: blur(14px) saturate(1.05) !important; -webkit-backdrop-filter: blur(14px) saturate(1.05) !important; border: 1px solid rgba(255,255,255,0.10) !important; }
  /* radial-blur glow behind overlay content */
  .scroll-steps-section .stepContent { position: relative; isolation: isolate; }
  .scroll-steps-section .stepContent::before { content: ""; position: absolute; inset: -12vh -12vw -6vh -12vw; background: radial-gradient(60% 60% at 50% 78%, rgba(139,92,246,0.16), transparent 60%); opacity: 0.6; z-index: 0; pointer-events: none; }
  .scroll-steps-section .stepContent > * { position: relative; z-index: 1; }
  /* global typography scale */
  .heading-display { font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight: 900; letter-spacing: -0.02em; line-height: 1.05; }
  .heading-1 { font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight: 800; letter-spacing: -0.015em; line-height: 1.08; }
  .heading-2 { font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; font-weight: 700; letter-spacing: -0.01em; line-height: 1.12; }
  .lead { font-size: clamp(1rem, 1.2vw, 1.25rem); color: rgba(229,231,235,0.92); }
  .muted { color: rgba(255,255,255,0.7); }

  /* Phone number widget styling */
  .phone-widget {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  }
  
  .phone-widget:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    transform: translateY(-1px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6);
  }
  
  .phone-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  header {
    position: fixed;
    top: 0;
    z-index: 99999; /* Make this higher than the banner's z-index */
  }

  /* Scroll to Top Button */
  .scroll-to-top-btn {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    background: rgba(193, 152, 61, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9998;
    box-shadow: 0 8px 24px rgba(193, 152, 61, 0.3);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  .scroll-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .scroll-to-top-btn:hover {
    background: rgba(193, 152, 61, 1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(193, 152, 61, 0.5);
  }

  .scroll-to-top-btn:active {
    transform: translateY(-2px) scale(1);
    box-shadow: 0 6px 20px rgba(193, 152, 61, 0.4);
  }

  .scroll-to-top-btn:focus-visible {
    outline: 2px solid rgba(255, 240, 207, 0.85);
    outline-offset: 3px;
  }

  .scroll-to-top-icon {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
  }

  /* Hide on mobile devices */
  @media (max-width: 768px) {
    .scroll-to-top-btn {
      display: none !important;
    }
  }

  @media (min-width: 1024px) {
    .scroll-to-top-btn {
      left: 32px;
      bottom: 32px;
    }
  }



  /* Hamburger menu animation - transform to X when active */
  .mobile-menu-toggle {
    position: relative;
  }

  .mobile-menu-toggle.active .hamburger-line-1 {
    transform: rotate(45deg) translateY(8px);
  }

  .mobile-menu-toggle.active .hamburger-line-2 {
    opacity: 0;
    transform: scaleX(0);
  }

  .mobile-menu-toggle.active .hamburger-line-3 {
    transform: rotate(-45deg) translateY(-8px);
  }

  /* Mobile dropdown arrow rotation when parent button is active */
  .mobile-dropdown-trigger.active .mobile-dropdown-arrow {
    transform: rotate(180deg);
  }



  /* Footer logo mobile height */
  .footer-logo-height {
    height: var(--height-footer-logo-mobile);
  }

  /* Footer text shadows */
  footer h3, footer h4 {
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.6);
  }

  footer p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7), 0 1px 2px rgba(0, 0, 0, 0.5);
  }

  /* Back to Top button */
  .back-to-top {
    position: fixed;
    right: clamp(12px, 2vw, 24px);
    bottom: clamp(12px, 2vw, 24px);
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: rgba(20, 20, 20, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9999px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.3s ease;
    z-index: 60;
  }

  .back-to-top:hover {
    background: rgba(30, 30, 30, 0.65);
  }

  .back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
  }



  /* Final Polish Animations */
  .fade-in-sequence > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInSequence 0.6s ease-out forwards;
  }

  .fade-in-sequence > *:nth-child(1) { animation-delay: 0.1s; }
  .fade-in-sequence > *:nth-child(2) { animation-delay: 0.2s; }
  .fade-in-sequence > *:nth-child(3) { animation-delay: 0.3s; }
  .fade-in-sequence > *:nth-child(4) { animation-delay: 0.4s; }

  @keyframes fadeInSequence {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Premium Button Styles */
  .premium-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #C1983D;
    color: white;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .premium-button::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 ease-out;
    z-index: 1;
  }

  .premium-button:hover::before {
    left: 100%;
  }

  .premium-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
  }

  /* Enhanced scroll hero button - matching scroll down to continue style */
  .scroll-hero-button {
    font-size: 0.875rem; /* text-sm */
    letter-spacing: 0.1em;
    text-shadow: 
      0 0 10px rgba(255, 255, 255, 0.5),
      0 0 20px rgba(255, 255, 255, 0.3),
      0 2px 8px rgba(0, 0, 0, 0.8),
      0 4px 16px rgba(0, 0, 0, 0.6);
    animation: scrollPulseCentered 2.5s ease-in-out infinite;
    opacity: 0.95;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    display: inline-block;
  }

  @keyframes scrollPulseCentered {
    0%, 100% {
      opacity: 0.85;
      transform: translateY(0) scale(1);
    }
    50% {
      opacity: 1;
      transform: translateY(-8px) scale(1.05);
    }
  }

  @media (min-width: 768px) {
    .scroll-hero-button {
      font-size: 1rem; /* text-base on larger screens */
      padding: 0.875rem 1.75rem;
    }
  }



  .loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 1;
    transition: opacity 0.8s ease-out;
  }

  .loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
  }

  .loading-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
  }

  .loading-text {
    margin-bottom: 2rem;
  }

  .loading-title {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
  }

  .loading-subtitle {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
  }

  .loading-progress {
    margin-bottom: 2rem;
  }

  .progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }

  .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C1983D 0%, #b8893a 100%);
    border-radius: 2px;
    width: 0%;
    transition: width 0.3s ease;
  }

  .progress-text {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
  }

  .loading-spinner {
    display: flex;
    justify-content: center;
  }

  .spinner {
    width: 24px;
    height: 24px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top: 2px solid #C1983D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .loading-content {
      max-width: 300px;
      padding: 1.5rem;
    }
    
    .loading-title {
      font-size: 1.25rem;
    }
    
    .loading-subtitle {
      font-size: 0.85rem;
    }
  }




:root {
  --font-family-sans: 'Satoshi', ui-sans-serif, system-ui;
  --font-family-serif: 'Satoshi', ui-serif, Georgia;
  
  --spacing: 0.25rem; /* 4px - base spacing unit for Tailwind utilities like h-7, p-4, etc. */
  
  /* Custom sizes - footer logo mobile height */
  --height-footer-logo-mobile: 35px;
  
  --color-wosa-gray-50: #f8f9fa;
  --color-wosa-gray-100: #f1f3f4;
  --color-wosa-gray-200: #e8eaed;
  --color-wosa-gray-300: #dadce0;
  --color-wosa-gray-400: #bdc1c6;
  --color-wosa-gray-500: #9aa0a6;
  --color-wosa-gray-600: #80868b;
  --color-wosa-gray-700: #5f6368;
  --color-wosa-gray-800: #3c4043;
  --color-wosa-gray-900: #202124;
  
  --animate-spin-slow: spin 1s linear infinite;
  --animate-fade-in-up: fadeInUp 1s ease forwards;
  
  --backdrop-blur-xs: 2px;
}

/* Video section container for solution pages - optimized for mobile display */
.video-section-container {
  position: relative;
}

.video-section-wrapper {
  width: 100%;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Ensure video fills the container properly */
.video-section-wrapper video {
  width: 100%;
  height: 100%;
  object-position: center;
}

/* Mobile: container height based on video content */
@media (max-width: 767px) {
  .video-section-wrapper {
    /* Let video content determine height */
    height: auto;
  }
  
  .video-section-wrapper video {
    /* Video at natural aspect ratio */
    width: 100%;
    height: auto;
    display: block;
  }
}

/* Desktop: full screen height with cover */
@media (min-width: 768px) {
  .video-section-wrapper {
    height: 100vh;
    min-height: 600px;
  }
  
  .video-section-wrapper video {
    object-fit: cover;
  }
}

/* Mobile-specific optimizations */
@media (max-width: 767px) {
  /* Improve form input sizing on mobile */
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    font-size: 16px !important; /* Prevents zoom on iOS */
    min-height: 44px;
    padding: 0.75rem 1rem;
    width: 100%;
  }

  /* Better spacing for mobile */
  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  /* Prevent horizontal scroll */
  img, video, iframe {
    max-width: 100%;
    height: auto;
  }

  /* Improve text readability */
  p, li, span {
    line-height: 1.6;
  }

  /* Improve heading sizes on mobile */
  h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    line-height: 1.2;
  }

  h2 {
    font-size: clamp(1.25rem, 7vw, 2rem);
    line-height: 1.3;
  }

  h3 {
    font-size: clamp(1.125rem, 6vw, 1.75rem);
    line-height: 1.4;
  }

  /* Better grid spacing on mobile */
  .grid {
    gap: 1rem;
  }

  /* Improve container padding */
  .max-w-6xl,
  .max-w-7xl {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Remove horizontal padding from video step sections (all screen sizes) */
.scroll-steps-section {
  padding-left: 0;
  padding-right: 0;
}

/* Remove horizontal padding from video section containers (all screen sizes) */
.video-section-container {
  padding-left: 0;
  padding-right: 0;
}

/* Tablet optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
  /* Adjust spacing for tablets */
  .max-w-6xl {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* Desktop and large screen text rendering optimizations */
@media (min-width: 1024px) {
  /* Crisp text rendering for larger screens */
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  /* Remove hover effects on touch devices */
  a:hover,
  button:hover {
    transition: opacity 0.2s ease;
  }

  /* Improve tap targets */
  a, button {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  }
}

/* Prevent text size adjustment on mobile */
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Animation classes */
.animate-fade-in {
  animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.6s ease-out forwards;
}

/* Initial hidden state */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helpers */
.animate-delay-100 {
  animation-delay: 0.1s;
  transition-delay: 0.1s;
}

.animate-delay-200 {
  animation-delay: 0.2s;
  transition-delay: 0.2s;
}

.animate-delay-300 {
  animation-delay: 0.3s;
  transition-delay: 0.3s;
}

.animate-delay-400 {
  animation-delay: 0.4s;
  transition-delay: 0.4s;
}

.animate-delay-500 {
  animation-delay: 0.5s;
  transition-delay: 0.5s;
}

.animate-delay-600 {
  animation-delay: 0.6s;
  transition-delay: 0.6s;
}

.animate-delay-700 {
  animation-delay: 0.7s;
  transition-delay: 0.7s;
}

.animate-delay-800 {
  animation-delay: 0.8s;
  transition-delay: 0.8s;
}

/* Keyframes */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}