/* FSP Team Responsive Framework */
:root {
    /* Enhanced Color System */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    /* Responsive Typography Scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
    --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
    --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 4rem);
    --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 5rem);
    
    /* Responsive Spacing */
    --space-1: clamp(0.25rem, 0.2rem + 0.25vw, 0.375rem);
    --space-2: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --space-3: clamp(0.75rem, 0.6rem + 0.75vw, 1.125rem);
    --space-4: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    --space-5: clamp(1.25rem, 1rem + 1.25vw, 1.875rem);
    --space-6: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
    --space-8: clamp(2rem, 1.6rem + 2vw, 3rem);
    --space-10: clamp(2.5rem, 2rem + 2.5vw, 3.75rem);
    --space-12: clamp(3rem, 2.4rem + 3vw, 4.5rem);
    --space-16: clamp(4rem, 3.2rem + 4vw, 6rem);
    --space-20: clamp(5rem, 4rem + 5vw, 7.5rem);
    --space-24: clamp(6rem, 4.8rem + 6vw, 9rem);
    
    /* Responsive Border Radius */
    --radius-sm: clamp(0.125rem, 0.1rem + 0.125vw, 0.25rem);
    --radius-md: clamp(0.375rem, 0.3rem + 0.375vw, 0.5rem);
    --radius-lg: clamp(0.5rem, 0.4rem + 0.5vw, 0.75rem);
    --radius-xl: clamp(0.75rem, 0.6rem + 0.75vw, 1rem);
    --radius-2xl: clamp(1rem, 0.8rem + 1vw, 1.5rem);
    
    /* Advanced Shadows */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    
    /* Animation Curves */
    --ease-linear: cubic-bezier(0, 0, 1, 1);
    --ease-in: cubic-bezier(0.4, 0, 1, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Reset and Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans Bengali', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Responsive Typography */
.text-xs { font-size: var(--text-xs); }
.text-sm { font-size: var(--text-sm); }
.text-base { font-size: var(--text-base); }
.text-lg { font-size: var(--text-lg); }
.text-xl { font-size: var(--text-xl); }
.text-2xl { font-size: var(--text-2xl); }
.text-3xl { font-size: var(--text-3xl); }
.text-4xl { font-size: var(--text-4xl); }
.text-5xl { font-size: var(--text-5xl); }
.text-6xl { font-size: var(--text-6xl); }

/* Enhanced Responsive Typography */
.text-responsive-xs {
    font-size: clamp(0.75rem, 0.5vw + 0.7rem, 0.875rem);
    line-height: 1.4;
}

.text-responsive-sm {
    font-size: clamp(0.875rem, 0.75vw + 0.8rem, 1rem);
    line-height: 1.5;
}

.text-responsive-base {
    font-size: clamp(1rem, 1vw + 0.9rem, 1.125rem);
    line-height: 1.6;
}

.text-responsive-lg {
    font-size: clamp(1.125rem, 1.25vw + 1rem, 1.375rem);
    line-height: 1.5;
}

.text-responsive-xl {
    font-size: clamp(1.25rem, 1.5vw + 1.1rem, 1.75rem);
    line-height: 1.4;
}

.text-responsive-2xl {
    font-size: clamp(1.5rem, 2vw + 1.2rem, 2.25rem);
    line-height: 1.3;
}

.text-responsive-3xl {
    font-size: clamp(1.875rem, 2.5vw + 1.4rem, 3rem);
    line-height: 1.2;
}

.text-responsive-4xl {
    font-size: clamp(2.25rem, 3vw + 1.6rem, 4rem);
    line-height: 1.1;
}

/* Enhanced Font Weight Utilities */
.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-extrabold { font-weight: 800; }

/* Responsive Font Weights */
@media (max-width: 768px) {
    .font-mobile-light { font-weight: 300; }
    .font-mobile-normal { font-weight: 400; }
    .font-mobile-medium { font-weight: 500; }
    .font-mobile-semibold { font-weight: 600; }
}

/* Responsive Spacing */
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }
.p-8 { padding: var(--space-8); }
.p-10 { padding: var(--space-10); }
.p-12 { padding: var(--space-12); }
.p-16 { padding: var(--space-16); }
.p-20 { padding: var(--space-20); }
.p-24 { padding: var(--space-24); }

.m-1 { margin: var(--space-1); }
.m-2 { margin: var(--space-2); }
.m-3 { margin: var(--space-3); }
.m-4 { margin: var(--space-4); }
.m-5 { margin: var(--space-5); }
.m-6 { margin: var(--space-6); }
.m-8 { margin: var(--space-8); }
.m-10 { margin: var(--space-10); }
.m-12 { margin: var(--space-12); }
.m-16 { margin: var(--space-16); }
.m-20 { margin: var(--space-20); }
.m-24 { margin: var(--space-24); }

/* Advanced Spacing Utilities */
.space-y-responsive > * + * {
    margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.space-x-responsive > * + * {
    margin-left: clamp(0.5rem, 2vw, 1.5rem);
}

.gap-responsive {
    gap: clamp(0.5rem, 2vw, 1.5rem);
}

.gap-responsive-sm {
    gap: clamp(0.25rem, 1vw, 0.75rem);
}

.gap-responsive-lg {
    gap: clamp(1rem, 3vw, 2rem);
}

/* Enhanced Padding Utilities */
.p-responsive {
    padding: clamp(1rem, 4vw, 2rem);
}

.px-responsive {
    padding-left: clamp(1rem, 4vw, 2rem);
    padding-right: clamp(1rem, 4vw, 2rem);
}

.py-responsive {
    padding-top: clamp(1rem, 4vw, 2rem);
    padding-bottom: clamp(1rem, 4vw, 2rem);
}

.pt-responsive {
    padding-top: clamp(1rem, 4vw, 2rem);
}

.pb-responsive {
    padding-bottom: clamp(1rem, 4vw, 2rem);
}

.pl-responsive {
    padding-left: clamp(1rem, 4vw, 2rem);
}

.pr-responsive {
    padding-right: clamp(1rem, 4vw, 2rem);
}

/* Enhanced Margin Utilities */
.m-responsive {
    margin: clamp(1rem, 4vw, 2rem);
}

.mx-responsive {
    margin-left: clamp(1rem, 4vw, 2rem);
    margin-right: clamp(1rem, 4vw, 2rem);
}

.my-responsive {
    margin-top: clamp(1rem, 4vw, 2rem);
    margin-bottom: clamp(1rem, 4vw, 2rem);
}

.mt-responsive {
    margin-top: clamp(1rem, 4vw, 2rem);
}

.mb-responsive {
    margin-bottom: clamp(1rem, 4vw, 2rem);
}

.ml-responsive {
    margin-left: clamp(1rem, 4vw, 2rem);
}

.mr-responsive {
    margin-right: clamp(1rem, 4vw, 2rem);
}

/* Advanced Animation Classes */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.animate-fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.animate-fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

.animate-bounce-in {
    opacity: 0;
    transform: scale(0.3);
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    animation-delay: calc(var(--index, 0) * 0.1s);
}

/* Keyframes for animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Enhanced Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hover-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.3);
}

.hover-scale {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Touch Device Optimizations */
.touch-device .hover-lift:hover,
.touch-device .hover-glow:hover,
.touch-device .hover-scale:hover {
    transform: none;
    box-shadow: none;
}

.touch-device .btn {
    min-height: 44px;
    min-width: 44px;
}

/* Keyboard Navigation Styles */
.keyboard-navigation *:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.keyboard-navigation .btn:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.25);
}

/* Loading States */
.loading-skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}

/* Enhanced Grid System */
.grid-responsive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
}

.grid-responsive-sm {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.grid-responsive-lg {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Flexbox Utilities */
.flex-responsive {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1rem);
}

.flex-responsive-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(0.5rem, 2vw, 1rem);
}

/* Enhanced Container Queries Support */
@container (max-width: 400px) {
    .container-responsive {
        padding: 0.5rem;
    }
    
    .container-responsive .text-responsive-base {
        font-size: 0.875rem;
    }
}

@container (min-width: 401px) and (max-width: 768px) {
    .container-responsive {
        padding: 1rem;
    }
}

@container (min-width: 769px) {
    .container-responsive {
        padding: 2rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break-before {
        page-break-before: always;
    }
    
    .print-break-after {
        page-break-after: always;
    }
    
    * {
        color: black !important;
        background: white !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --secondary-color: #ffffff;
        --text-color: #000000;
        --bg-color: #ffffff;
        --border-color: #000000;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .animate-fade-in-up,
    .animate-fade-in-left,
    .animate-fade-in-right,
    .animate-scale-in,
    .animate-bounce-in {
        opacity: 1;
        transform: none;
        animation: none;
    }
}

/* Performance Optimizations */
.will-change-transform {
    will-change: transform;
}

.will-change-opacity {
    will-change: opacity;
}

.gpu-accelerated {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Utility Classes for Common Patterns */
.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

.aspect-ratio-1-1 {
    aspect-ratio: 1 / 1;
}

.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Enhanced Focus Styles */
.focus-visible:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Scroll Behavior */
.scroll-smooth {
    scroll-behavior: smooth;
}

.scroll-snap-y {
    scroll-snap-type: y mandatory;
}

.scroll-snap-start {
    scroll-snap-align: start;
}

.scroll-snap-center {
    scroll-snap-align: center;
}

/* Text Selection */
::selection {
    background-color: rgba(var(--primary-rgb), 0.2);
    color: var(--text-color);
}

::-moz-selection {
    background-color: rgba(var(--primary-rgb), 0.2);
    color: var(--text-color);
}

/* Responsive Grid System */
.grid {
    display: grid;
    gap: var(--space-4);
}

.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)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* Responsive Breakpoints */
@media (min-width: 640px) {
    .sm\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .sm\:text-sm { font-size: var(--text-sm); }
    .sm\:text-base { font-size: var(--text-base); }
    .sm\:text-lg { font-size: var(--text-lg); }
    .sm\:text-xl { font-size: var(--text-xl); }
    .sm\:text-2xl { font-size: var(--text-2xl); }
}

@media (min-width: 768px) {
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .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-base { font-size: var(--text-base); }
    .md\:text-lg { font-size: var(--text-lg); }
    .md\:text-xl { font-size: var(--text-xl); }
    .md\:text-2xl { font-size: var(--text-2xl); }
    .md\:text-3xl { font-size: var(--text-3xl); }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .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\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .lg\:text-lg { font-size: var(--text-lg); }
    .lg\:text-xl { font-size: var(--text-xl); }
    .lg\:text-2xl { font-size: var(--text-2xl); }
    .lg\:text-3xl { font-size: var(--text-3xl); }
    .lg\:text-4xl { font-size: var(--text-4xl); }
}

@media (min-width: 1280px) {
    .xl\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
    .xl\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .xl\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
    .xl\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }
    .xl\:text-xl { font-size: var(--text-xl); }
    .xl\:text-2xl { font-size: var(--text-2xl); }
    .xl\:text-3xl { font-size: var(--text-3xl); }
    .xl\:text-4xl { font-size: var(--text-4xl); }
    .xl\:text-5xl { font-size: var(--text-5xl); }
}

/* Enhanced Components */
.btn-enhanced {
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease-out);
    transform: translateZ(0);
}

.btn-enhanced::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-enhanced:hover::before {
    left: 100%;
}

.card-enhanced {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s var(--ease-out);
}

.card-enhanced:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

/* Device-Specific Optimizations */
@media (max-width: 480px) {
    :root {
        --space-4: 1rem;
        --space-6: 1.5rem;
        --space-8: 2rem;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .tablet-hidden {
        display: none;
    }
}

@media (min-width: 769px) {
    .desktop-only {
        display: block;
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% {
        transform: translate3d(0, 0, 0);
    }
    40%, 43% {
        transform: translate3d(0, -30px, 0);
    }
    70% {
        transform: translate3d(0, -15px, 0);
    }
    90% {
        transform: translate3d(0, -4px, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s var(--ease-out) both;
}

.animate-fade-in-down {
    animation: fadeInDown 0.8s var(--ease-out) both;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s var(--ease-out) both;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s var(--ease-out) both;
}

.animate-scale-in {
    animation: scaleIn 0.6s var(--ease-bounce) both;
}

.animate-slide-in-up {
    animation: slideInUp 0.8s var(--ease-out) both;
}

.animate-pulse {
    animation: pulse 2s var(--ease-in-out) infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

.animate-float {
    animation: float 3s var(--ease-in-out) infinite;
}