/* Saathi Drive Design System - All colors in HSL */

:root {
    --background: 0 0% 100%;
    --foreground: 0 0% 15%;
  
    --card: 0 0% 100%;
    --card-foreground: 0 0% 15%;
  
    --popover: 0 0% 100%;
    --popover-foreground: 0 0% 15%;
  
    /* Primary: Medium Blue from Saathi Drive logo */
    --primary: 210 80% 50%;
    --primary-foreground: 0 0% 100%;
  
    /* Secondary: Dark Navy Blue */
    --secondary: 220 60% 20%;
    --secondary-foreground: 0 0% 100%;
  
    /* Muted */
    --muted: 210 20% 96%;
    --muted-foreground: 220 10% 45%;
  
    /* Accent: Lighter Blue */
    --accent: 200 90% 60%;
    --accent-foreground: 0 0% 100%;
  
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
  
    --border: 210 20% 90%;
    --input: 210 20% 90%;
    --ring: 210 80% 50%;
  
    --radius: 0.75rem;
  
    /* Custom Saathi Drive tokens - Blue color palette */
    --saathi-blue: 210 80% 50%;
    --saathi-blue-dark: 220 70% 35%;
    --saathi-navy: 220 60% 20%;
    --saathi-light-blue: 200 90% 60%;
    --saathi-light-blue-dark: 200 85% 50%;
    --saathi-sky: 200 50% 95%;
    --saathi-cyan: 195 100% 55%;
  
    --sidebar-background: 210 20% 98%;
    --sidebar-foreground: 220 30% 24%;
    --sidebar-primary: 210 80% 50%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 200 90% 60%;
    --sidebar-accent-foreground: 0 0% 100%;
    --sidebar-border: 210 20% 90%;
    --sidebar-ring: 210 80% 50%;
  }
  
  .dark {
    --background: 0 0% 8%;
    --foreground: 0 0% 95%;
  
    --card: 0 0% 12%;
    --card-foreground: 0 0% 95%;
  
    --popover: 0 0% 12%;
    --popover-foreground: 0 0% 95%;
  
    --primary: 210 80% 50%;
    --primary-foreground: 0 0% 100%;
  
    --secondary: 0 0% 20%;
    --secondary-foreground: 0 0% 95%;
  
    --muted: 0 0% 18%;
    --muted-foreground: 0 0% 65%;
  
    --accent: 200 90% 60%;
    --accent-foreground: 0 0% 100%;
  
    --destructive: 0 62% 30%;
    --destructive-foreground: 0 0% 95%;
  
    --border: 0 0% 20%;
    --input: 0 0% 20%;
    --ring: 210 80% 50%;
  
    --sidebar-background: 0 0% 10%;
    --sidebar-foreground: 0 0% 95%;
    --sidebar-primary: 210 80% 50%;
    --sidebar-primary-foreground: 0 0% 100%;
    --sidebar-accent: 200 90% 60%;
    --sidebar-accent-foreground: 0 0% 100%;
    --sidebar-border: 0 0% 20%;
    --sidebar-ring: 210 80% 50%;
  }
  
  /* Base Styles */
  * {
    border-color: hsl(var(--border));
  }
  
  body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-feature-settings: "rlig" 1, "calt" 1;
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, sans-serif;
  }
  
  /* Container */
  .container-custom {
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  @media (min-width: 640px) {
    .container-custom {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  
  @media (min-width: 1024px) {
    .container-custom {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  
  /* Gradients */
  .gradient-primary {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--saathi-blue-dark)));
  }
  
  .gradient-accent {
    background: linear-gradient(to right, hsl(var(--accent)), hsl(var(--saathi-light-blue-dark)));
  }
  
  .gradient-hero {
    background: linear-gradient(135deg, hsl(var(--saathi-navy)) 0%, hsl(220 60% 15%) 100%);
  }
  
  .text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
  }
  
  /* Buttons */
  .btn-primary {
    background-color: hsl(var(--primary));
    color: hsl(var(--primary-foreground));
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 2px);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
  }
  
  .btn-primary:hover {
    background-color: hsl(var(--saathi-blue-dark));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
  }
  
  .btn-accent {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(var(--radius) - 2px);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
  }
  
  .btn-accent:hover {
    background-color: hsl(var(--saathi-light-blue-dark));
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
  }
  
  /* Section Padding */
  .section-padding {
    padding: 4rem 1rem;
  }
  
  @media (min-width: 768px) {
    .section-padding {
      padding: 6rem 2rem;
    }
  }
  
  /* Card Hover */
  .card-hover {
    transition: all 0.3s ease;
  }
  
  .card-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-0.25rem);
  }
  
  /* Utility Classes */
  .flex {
    display: flex;
  }
  
  .flex-col {
    flex-direction: column;
  }
  
  .items-center {
    align-items: center;
  }
  
  .justify-center {
    justify-content: center;
  }
  
  .justify-between {
    justify-content: space-between;
  }
  
  .gap-2 {
    gap: 0.5rem;
  }
  
  .gap-3 {
    gap: 0.75rem;
  }
  
  .gap-4 {
    gap: 1rem;
  }
  
  .gap-6 {
    gap: 1.5rem;
  }
  
  .gap-8 {
    gap: 2rem;
  }
  
  .gap-12 {
    gap: 3rem;
  }
  
  .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));
  }
  
  @media (min-width: 640px) {
    .sm\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .sm\:flex-row {
      flex-direction: row;
    }
  }
  
  @media (min-width: 768px) {
    .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\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .md\:text-4xl {
      font-size: 2.25rem;
      line-height: 2.5rem;
    }
    .md\:text-5xl {
      font-size: 3rem;
      line-height: 1;
    }
    .md\:py-24 {
      padding-top: 6rem;
      padding-bottom: 6rem;
    }
  }
  
  @media (min-width: 1024px) {
    .lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .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\:flex {
      display: flex;
    }
    .lg\:hidden {
      display: none;
    }
    .lg\:text-left {
      text-align: left;
    }
    .lg\:px-8 {
      padding-left: 2rem;
      padding-right: 2rem;
    }
  }
  
  @media (min-width: 1280px) {
    .xl\:text-5xl {
      font-size: 3rem;
      line-height: 1;
    }
  }
  
  .hidden {
    display: none;
  }
  
  .text-center {
    text-align: center;
  }
  
  .text-left {
    text-align: left;
  }
  
  .text-white {
    color: white;
  }
  
  .text-primary {
    color: hsl(var(--primary));
  }
  
  .text-accent {
    color: hsl(var(--accent));
  }
  
  .text-foreground {
    color: hsl(var(--foreground));
  }
  
  .text-muted-foreground {
    color: hsl(var(--muted-foreground));
  }
  
  .text-secondary-foreground {
    color: hsl(var(--secondary-foreground));
  }
  
  .bg-background {
    background-color: hsl(var(--background));
  }
  
  .bg-primary {
    background-color: hsl(var(--primary));
  }
  
  .bg-secondary {
    background-color: hsl(var(--secondary));
  }
  
  .bg-muted {
    background-color: hsl(var(--muted));
  }
  
  .bg-card {
    background-color: hsl(var(--card));
  }
  
  .bg-transparent {
    background-color: transparent;
  }
  
  .border {
    border-width: 1px;
    border-color: hsl(var(--border));
  }
  
  .border-t {
    border-top-width: 1px;
    border-top-color: hsl(var(--border));
  }
  
  .border-primary {
    border-color: hsl(var(--primary));
  }
  
  .border-white {
    border-color: white;
  }
  
  .border-accent {
    border-color: hsl(var(--accent));
  }
  
  .rounded-lg {
    border-radius: calc(var(--radius) - 2px);
  }
  
  .rounded-xl {
    border-radius: calc(var(--radius));
  }
  
  .rounded-2xl {
    border-radius: 1rem;
  }
  
  .rounded-3xl {
    border-radius: 1.5rem;
  }
  
  .rounded-full {
    border-radius: 9999px;
  }
  
  .shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .shadow-xl {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }
  
  .p-2 {
    padding: 0.5rem;
  }
  
  .p-4 {
    padding: 1rem;
  }
  
  .p-6 {
    padding: 1.5rem;
  }
  
  .p-8 {
    padding: 2rem;
  }
  
  .px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  
  .px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
  .py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  
  .py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }
  
  .py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  
  .py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
  
  .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  
  .py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  
  .mb-2 {
    margin-bottom: 0.5rem;
  }
  
  .mb-3 {
    margin-bottom: 0.75rem;
  }
  
  .mb-4 {
    margin-bottom: 1rem;
  }
  
  .mb-5 {
    margin-bottom: 1.25rem;
  }
  
  .mb-6 {
    margin-bottom: 1.5rem;
  }
  
  .mb-8 {
    margin-bottom: 2rem;
  }
  
  .mb-12 {
    margin-bottom: 3rem;
  }
  
  .mt-0\.5 {
    margin-top: 0.125rem;
  }
  
  .mt-8 {
    margin-top: 2rem;
  }
  
  .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }
  
  .max-w-xl {
    max-width: 36rem;
  }
  
  .max-w-2xl {
    max-width: 42rem;
  }
  
  .max-w-3xl {
    max-width: 48rem;
  }
  
  .max-w-md {
    max-width: 28rem;
  }
  
  .w-full {
    width: 100%;
  }
  
  .w-auto {
    width: auto;
  }
  
  .w-1\.5 {
    width: 0.375rem;
  }
  
  .w-4 {
    width: 1rem;
  }
  
  .w-5 {
    width: 1.25rem;
  }
  
  .w-6 {
    width: 1.5rem;
  }
  
  .w-7 {
    width: 1.75rem;
  }
  
  .w-8 {
    width: 2rem;
  }
  
  .w-10 {
    width: 2.5rem;
  }
  
  .w-12 {
    width: 3rem;
  }
  
  .w-14 {
    width: 3.5rem;
  }
  
  .w-16 {
    width: 4rem;
  }
  
  .w-20 {
    width: 5rem;
  }
  
  .h-1\.5 {
    height: 0.375rem;
  }
  
  .h-4 {
    height: 1rem;
  }
  
  .h-5 {
    height: 1.25rem;
  }
  
  .h-6 {
    height: 1.5rem;
  }
  
  .h-7 {
    height: 1.75rem;
  }
  
  .h-8 {
    height: 2rem;
  }
  
  .h-10 {
    height: 2.5rem;
  }
  
  .h-12 {
    height: 3rem;
  }
  
  .h-14 {
    height: 3.5rem;
  }
  
  .h-16 {
    height: 4rem;
  }
  
  .h-20 {
    height: 5rem;
  }
  
  .h-auto {
    height: auto;
  }
  
  .text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  
  .text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .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;
  }
  
  .font-medium {
    font-weight: 500;
  }
  
  .font-semibold {
    font-weight: 600;
  }
  
  .font-bold {
    font-weight: 700;
  }
  
  .font-display {
    font-family: 'Poppins', system-ui, sans-serif;
  }
  
  .leading-tight {
    line-height: 1.25;
  }
  
  .leading-relaxed {
    line-height: 1.625;
  }
  
  .italic {
    font-style: italic;
  }
  
  .relative {
    position: relative;
  }
  
  .absolute {
    position: absolute;
  }
  
  .fixed {
    position: fixed;
  }
  
  .top-0 {
    top: 0;
  }
  
  .right-0 {
    right: 0;
  }
  
  .left-0 {
    left: 0;
  }
  
  .bottom-8 {
    bottom: 2rem;
  }
  
  .bottom-20 {
    bottom: 5rem;
  }
  
  .top-10 {
    top: 2.5rem;
  }
  
  .right-10 {
    right: 2.5rem;
  }
  
  .left-1\/2 {
    left: 50%;
  }
  
  .-top-4 {
    top: -1rem;
  }
  
  .-top-1\/2 {
    top: -50%;
  }
  
  .-right-1\/4 {
    right: -25%;
  }
  
  .-bottom-1\/2 {
    bottom: -50%;
  }
  
  .-left-1\/4 {
    left: -25%;
  }
  
  .-translate-x-1\/2 {
    transform: translateX(-50%);
  }
  
  .-translate-y-1 {
    transform: translateY(-0.25rem);
  }
  
  .z-10 {
    z-index: 10;
  }
  
  .z-50 {
    z-index: 50;
  }
  
  .overflow-hidden {
    overflow: hidden;
  }
  
  .min-h-screen {
    min-height: 100vh;
  }
  
  .min-h-\[90vh\] {
    min-height: 90vh;
  }
  
  .flex-grow {
    flex-grow: 1;
  }
  
  .pt-2 {
    padding-top: 0.5rem;
  }
  
  .pt-16 {
    padding-top: 4rem;
  }
  
  .pt-4 {
    padding-top: 1rem;
  }
  
  .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-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  
  .duration-200 {
    transition-duration: 200ms;
  }
  
  .duration-300 {
    transition-duration: 300ms;
  }
  
  .hover\:scale-105:hover {
    transform: scale(1.05);
  }
  
  .hover\:bg-primary:hover {
    background-color: hsl(var(--primary));
  }
  
  .hover\:text-primary:hover {
    color: hsl(var(--primary));
  }
  
  .hover\:bg-accent:hover {
    background-color: hsl(var(--accent));
  }
  
  .hover\:text-accent-foreground:hover {
    color: hsl(var(--accent-foreground));
  }
  
  .hover\:bg-white:hover {
    background-color: white;
  }
  
  .hover\:text-secondary:hover {
    color: hsl(var(--secondary));
  }
  
  .hover\:bg-muted:hover {
    background-color: hsl(var(--muted));
  }
  
  .hover\:border-primary\/30:hover {
    border-color: hsl(var(--primary) / 0.3);
  }
  
  .hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  
  .group:hover .group-hover\:text-primary {
    color: hsl(var(--primary));
  }
  
  .group:hover .group-hover\:bg-primary {
    background-color: hsl(var(--primary));
  }
  
  .group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
  }
  
  .group:hover .group-hover\:text-primary-foreground {
    color: hsl(var(--primary-foreground));
  }
  
  .group:hover .group-hover\:opacity-100 {
    opacity: 1;
  }
  
  .opacity-0 {
    opacity: 0;
  }
  
  .opacity-100 {
    opacity: 1;
  }
  
  .backdrop-blur-md {
    backdrop-filter: blur(12px);
  }
  
  .bg-background\/95 {
    background-color: hsl(var(--background) / 0.95);
  }
  
  .text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
  }
  
  .text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .text-secondary-foreground\/80 {
    color: hsl(var(--secondary-foreground) / 0.8);
  }
  
  .text-secondary-foreground\/60 {
    color: hsl(var(--secondary-foreground) / 0.6);
  }
  
  .border-white\/30 {
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .border-primary\/10 {
    border-color: hsl(var(--primary) / 0.1);
  }
  
  .border-primary\/30 {
    border-color: hsl(var(--primary) / 0.3);
  }
  
  .border-accent\/10 {
    border-color: hsl(var(--accent) / 0.1);
  }
  
  .border-secondary-foreground\/10 {
    border-color: hsl(var(--secondary-foreground) / 0.1);
  }
  
  .bg-primary\/10 {
    background-color: hsl(var(--primary) / 0.1);
  }
  
  .bg-primary\/20 {
    background-color: hsl(var(--primary) / 0.2);
  }
  
  .bg-primary\/5 {
    background-color: hsl(var(--primary) / 0.05);
  }
  
  .bg-accent\/10 {
    background-color: hsl(var(--accent) / 0.1);
  }
  
  .bg-accent\/20 {
    background-color: hsl(var(--accent) / 0.2);
  }
  
  .text-primary\/10 {
    color: hsl(var(--primary) / 0.1);
  }
  
  .bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
  }
  
  .from-primary\/5 {
    --tw-gradient-from: hsl(var(--primary) / 0.05);
    --tw-gradient-to: hsl(var(--primary) / 0);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
  }
  
  .to-accent\/5 {
    --tw-gradient-to: hsl(var(--accent) / 0.05);
  }
  
  .space-y-2 > * + * {
    margin-top: 0.5rem;
  }
  
  .space-y-3 > * + * {
    margin-top: 0.75rem;
  }
  
  .space-y-4 > * + * {
    margin-top: 1rem;
  }
  
  .inline-block {
    display: inline-block;
  }
  
  .inline-flex {
    display: inline-flex;
  }
  
  .block {
    display: block;
  }
  
  .shrink-0 {
    flex-shrink: 0;
  }
  
  /* Animations */
  @keyframes fade-up {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  @keyframes slide-in-left {
    0% {
      opacity: 0;
      transform: translateX(-50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes slide-in-right {
    0% {
      opacity: 0;
      transform: translateX(50px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes scale-in {
    0% {
      opacity: 0;
      transform: scale(0.9);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  @keyframes bounce-subtle {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  @keyframes spin-slow {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes spin-slow-reverse {
    from {
      transform: rotate(360deg);
    }
    to {
      transform: rotate(0deg);
    }
  }
  
  @keyframes shimmer {
    0% {
      background-position: -200% 0;
    }
    100% {
      background-position: 200% 0;
    }
  }
  
  .animate-fade-up {
    animation: fade-up 0.6s ease-out forwards;
  }
  
  .animate-fade-in {
    animation: fade-in 0.6s ease-out forwards;
  }
  
  .animate-slide-left {
    animation: slide-in-left 0.6s ease-out forwards;
  }
  
  .animate-slide-right {
    animation: slide-in-right 0.6s ease-out forwards;
  }
  
  .animate-scale-in {
    animation: scale-in 0.5s ease-out forwards;
  }
  
  .animate-float {
    animation: float 6s ease-in-out infinite;
  }
  
  .animate-bounce-subtle {
    animation: bounce-subtle 2s ease-in-out infinite;
  }
  
  .animate-spin-slow {
    animation: spin-slow 50s linear infinite;
  }
  
  .animate-spin-slow-reverse {
    animation: spin-slow-reverse 60s linear infinite;
  }
  
  /* Additional utility classes */
  .space-x-2 > * + * {
    margin-left: 0.5rem;
  }
  
  .space-x-3 > * + * {
    margin-left: 0.75rem;
  }
  
  .space-x-4 > * + * {
    margin-left: 1rem;
  }
  
  .space-y-6 > * + * {
    margin-top: 1.5rem;
  }
  
  .space-y-8 > * + * {
    margin-top: 2rem;
  }
  
  .space-y-12 > * + * {
    margin-top: 3rem;
  }
  
  /* Responsive utilities */
  @media (min-width: 640px) {
    .sm\:px-6 {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
  
  @media (min-width: 768px) {
    .md\:h-12 {
      height: 3rem;
    }
    .md\:h-20 {
      height: 5rem;
    }
    .md\:text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }
    .md\:py-16 {
      padding-top: 4rem;
      padding-bottom: 4rem;
    }
    .md\:py-32 {
      padding-top: 8rem;
      padding-bottom: 8rem;
    }
    .md\:py-28 {
      padding-top: 7rem;
      padding-bottom: 7rem;
    }
  }
  
  @media (min-width: 1024px) {
    .lg\:col-span-1 {
      grid-column: span 1 / span 1;
    }
    .lg\:gap-12 {
      gap: 3rem;
    }
    .lg\:text-2xl {
      font-size: 1.5rem;
      line-height: 2rem;
    }
    .lg\:justify-start {
      justify-content: flex-start;
    }
    .lg\:mx-0 {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  a{
    text-decoration: none;
  }
  footer li{
    list-style: none;
  }
  .text-light{
    color: #fff;
  }