html {
    scroll-behavior: smooth;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
}

.background-animated-gradient {
    background: linear-gradient(-45deg, #f0f4ff, #e6e6ff, #fdf8ff, #ffffff);
    background-size: 400% 400%;
}

.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.fade-in {
    transform: translateY(20px);
}

.animate-on-scroll.fade-in-up {
    transform: translateY(30px);
}

.animate-on-scroll.zoom-in {
    transform: scale(0.9);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

.animate-delay-100 {
    transition-delay: 100ms;
}

.animate-delay-200 {
    transition-delay: 200ms;
}

.animate-delay-300 {
    transition-delay: 300ms;
}

.animate-delay-400 {
    transition-delay: 400ms;
}

.animate-delay-500 {
    transition-delay: 500ms;
}

.animate-delay-700 {
    transition-delay: 700ms;
}

.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform-style: preserve-3d;
}

@media (max-width: 768px) {
    .parallax-section {
        background-attachment: scroll;
    }
}

.testimonial-parallax {
    background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuAvdVAoTAkXvQD7vc_VdsXrZIcSmxmT9DMI6q9VlCuwZAu42PdVfCK7dN_NT043K2hJuCGSCghLVx7LQ6iOdGxSHRLsJlN5IXL5XYvabf3eesdCFf9sn9sB_BdzqgGBmjSHEgp_YPWFufNZDssdzgSE-0Yfr9nD-jZWG1gnA2I2PepCgJq4KRubdMQRWg__3-lxoJPFRaFrSWnUZwloPA3I2yOtG9PgaZwNN_CXdjXxN5qhLD3-HMQTZ5Nl6evd10IMdaxTiRa0zPsy');
}

.image-tilt {
    transition: transform 0.3s ease;
}

.image-tilt:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) scale(1.05);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.button-hover {
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.button-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.typing-container>span {
    overflow: hidden;
    white-space: nowrap;
    display: inline-block;
    vertical-align: bottom;
}

#cursor {
    color: #c084fc;
    font-weight: bold;
    margin-left: 0.5rem;
    animation: smoothBlink 1.2s ease-in-out infinite;
}

@keyframes smoothBlink {
    0%, 45% { 
        opacity: 1;
        transform: scale(1);
    }
    50%, 95% { 
        opacity: 0;
        transform: scale(0.95);
    }
    100% { 
        opacity: 1;
        transform: scale(1);
    }
}

.cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 60%);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease-out, height 0.3s ease-out;
    width: 80px;
    height: 80px;
    z-index: 9999;
}

/* About Us Card Animations */
.about-card {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.about-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}

.about-video {
    transition: all 0.8s ease-out;
    filter: brightness(0.7) contrast(1.1);
}

.about-card:hover .about-video {
    filter: brightness(0.9) contrast(1.2) saturate(1.1);
    transform: scale(1.05);
}

.about-content {
    transition: all 0.5s ease-out;
}

.about-card:hover .about-content {
    transform: translateY(-4px);
}

.mission-vision-card {
    transition: all 0.4s ease-out;
    transform: translateY(0) scale(1);
}

.mission-vision-card:hover {
    transform: translateY(-6px) scale(1.05);
    background: rgba(139, 92, 246, 0.05);
    border-radius: 16px;
    padding: 1rem;
    margin: -1rem;
}

.about-title {
    transition: all 0.3s ease-out;
}

.about-card:hover .about-title {
    transform: scale(1.02);
}

.about-overlay {
    transition: all 0.6s ease-out;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(168, 85, 247, 0.05));
}

.about-card:hover .about-overlay {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(168, 85, 247, 0.1));
}

/* Floating Animation for About Section */
@keyframes aboutFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(1deg); }
    50% { transform: translateY(-5px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-1deg); }
}

@keyframes aboutPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.about-float {
    animation: aboutFloat 6s ease-in-out infinite;
}

.about-pulse {
    animation: aboutPulse 3s ease-in-out infinite;
}

/* Mobile-First Responsive Design */

/* Base mobile styles */
.max-w-7xl {
    max-width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Typography mobile-first */
.text-5xl {
    font-size: 2rem;
    line-height: 1.1;
}

.text-6xl {
    font-size: 2.25rem;
    line-height: 1.1;
}

.text-7xl {
    font-size: 2.5rem;
    line-height: 1.1;
}

.text-4xl {
    font-size: 1.75rem;
    line-height: 1.2;
}

/* Spacing mobile-first */
.py-16 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-24 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.gap-12 {
    gap: 1.5rem;
}

.gap-16 {
    gap: 2rem;
}

.gap-8 {
    gap: 1rem;
}

.gap-6 {
    gap: 0.75rem;
}

/* Grid mobile-first */
.grid {
    gap: 1rem;
}

.md\:grid-cols-2 {
    grid-template-columns: 1fr;
}

.md\:grid-cols-3 {
    grid-template-columns: 1fr;
}

.sm\:grid-cols-2 {
    grid-template-columns: 1fr;
}

.lg\:grid-cols-3 {
    grid-template-columns: 1fr;
}

.lg\:grid-cols-6 {
    grid-template-columns: repeat(3, 1fr);
}

/* Fixed elements mobile positioning */
.fixed {
    position: fixed;
}

.bottom-6 {
    bottom: 1rem;
}

.right-6 {
    right: 1rem;
}

/* Chat window mobile */
.w-96 {
    width: calc(100vw - 2rem);
    max-width: 350px;
}

.h-\[600px\] {
    height: 500px;
}

/* Parallax fix for mobile */
.parallax-section {
    background-attachment: scroll;
}

/* Tablet and up */
@media (min-width: 640px) {
    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gap-8 {
        gap: 2rem;
    }
    
    .px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Desktop */
@media (min-width: 768px) {
    .max-w-7xl {
        max-width: 80rem;
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .text-5xl {
        font-size: 3rem;
        line-height: 1;
    }
    
    .text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }
    
    .text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }
    
    .text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }
    
    .py-16 {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    
    .py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    
    .gap-12 {
        gap: 3rem;
    }
    
    .gap-16 {
        gap: 4rem;
    }
    
    .bottom-6 {
        bottom: 1.5rem;
    }
    
    .right-6 {
        right: 1.5rem;
    }
    
    .w-96 {
        width: 24rem;
    }
    
    .h-\[600px\] {
        height: 600px;
    }
    
    .px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    
    .parallax-section {
        background-attachment: fixed;
    }
}

/* Large desktop */
@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .text-7xl {
        font-size: 5rem;
        line-height: 1;
    }
}

/* Form input styling - FIXED VERSION */
input[type="text"], 
input[type="email"], 
input[type="tel"], 
select, 
textarea {
    display: block !important;
    width: 100% !important;
    padding: 12px 16px !important;
    min-height: 44px !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: #111827 !important;
    background-color: #ffffff !important;
    background-clip: padding-box !important;
    border: 1px solid #d1d5db !important;
    border-radius: 0.375rem !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out !important;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
select:focus, 
textarea:focus {
    outline: none !important;
    border-color: #8B5CF6 !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1) !important;
    background-color: #ffffff !important;
}

/* Improve placeholder visibility across browsers */
input::placeholder, 
textarea::placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #6b7280 !important;
    opacity: 1 !important;
}

/* Make disabled/readonly inputs still visible */
input[disabled], 
textarea[disabled], 
select[disabled] {
    opacity: 0.6 !important;
    background-color: #f3f4f6 !important;
    cursor: not-allowed !important;
}

/* Select dropdown styling */
select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem !important;
}

/* Textarea specific styling */
textarea {
    resize: vertical !important;
    min-height: 100px !important;
}

/* Mobile padding and spacing overrides */
.p-6 {
    padding: 1rem;
}

.p-8 {
    padding: 1.5rem;
}

.space-y-6 > * + * {
    margin-top: 1rem;
}

.py-4 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.gap-4 {
    gap: 0.75rem;
}

.gap-3 {
    gap: 0.5rem;
}

/* Tablet and up overrides */
@media (min-width: 640px) {
    .p-6 {
        padding: 1.5rem;
    }
    
    .p-8 {
        padding: 2rem;
    }
    
    .space-y-6 > * + * {
        margin-top: 1.5rem;
    }
    
    .py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
    
    .gap-4 {
        gap: 1rem;
    }
    
    .gap-3 {
        gap: 0.75rem;
    }
}

/* Label styling for better visibility */
label {
    display: block !important;
    margin-bottom: 0.5rem !important;
    font-weight: 500 !important;
    color: #374151 !important;
    font-size: 0.875rem !important;
}

/* Form spacing improvements */
form > div {
    margin-bottom: 1.5rem !important;
}

/* Button styling to ensure visibility */
button[type="submit"] {
    cursor: pointer !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

/* COMPREHENSIVE RESPONSIVE DESIGN FIXES */

/* MOBILE FIRST - Small screens (320px - 479px) */
@media (max-width: 479px) {
    .text-5xl, .text-6xl, .text-7xl {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    
    .text-4xl {
        font-size: 1.25rem !important;
    }
    
    .text-2xl {
        font-size: 1.125rem !important;
    }
    
    .max-w-7xl {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .px-4, .px-6, .px-8 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    
    .py-16, .py-24 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
    
    .p-12 {
        padding: 0.75rem !important;
    }
    
    .grid {
        gap: 0.5rem !important;
    }
    
    .md\:grid-cols-2, .sm\:grid-cols-2, .lg\:grid-cols-3, .md\:grid-cols-4, .lg\:grid-cols-6 {
        grid-template-columns: 1fr !important;
    }
    
    .space-y-8 > * + * {
        margin-top: 0.75rem !important;
    }
    
    .rounded-3xl {
        border-radius: 0.75rem !important;
    }
    
    .min-h-\[600px\] {
        min-height: 250px !important;
    }
    
    nav.hidden.md\:flex {
        display: none !important;
    }
}

/* Small mobile (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .text-5xl, .text-6xl, .text-7xl {
        font-size: 2.25rem !important;
    }
    
    .p-12 {
        padding: 1.5rem !important;
    }
}

/* Tablet (640px - 1023px) */
@media (min-width: 640px) and (max-width: 1023px) {
    .text-7xl {
        font-size: 3.5rem !important;
    }
    
    .p-12 {
        padding: 2rem !important;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    button, a {
        min-height: 44px !important;
        min-width: 44px !important;
    }
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    input[type="text"], input[type="email"], input[type="tel"], textarea {
        font-size: 16px !important;
    }
}

/* ENHANCED MOBILE DESIGN */
@media (max-width: 639px) {
    .bg-surface-light\/80 {
        background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,252,0.9)) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(139,92,246,0.1) !important;
    }
    
    #contactForm {
        margin: 0 !important;
        border-radius: 1.5rem !important;
        box-shadow: 0 20px 25px -5px rgba(139,92,246,0.1) !important;
    }
    
    input, select, textarea {
        border-radius: 0.75rem !important;
        border: 2px solid #e5e7eb !important;
        padding: 0.875rem 1rem !important;
        font-size: 1rem !important;
    }
    
    input:focus, select:focus, textarea:focus {
        border-color: #8B5CF6 !important;
        box-shadow: 0 0 0 3px rgba(139,92,246,0.1) !important;
        transform: translateY(-1px) !important;
    }
    
    button[type="submit"] {
        background: linear-gradient(135deg, #8B5CF6, #A855F7) !important;
        border-radius: 0.75rem !important;
        padding: 1rem !important;
        box-shadow: 0 10px 15px -3px rgba(139,92,246,0.3) !important;
    }
    
    .card-hover {
        background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,252,0.8)) !important;
        border: 1px solid rgba(139,92,246,0.1) !important;
        border-radius: 1rem !important;
        box-shadow: 0 4px 6px -1px rgba(139,92,246,0.1) !important;
    }
    
    header {
        background: rgba(255,255,255,0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(139,92,246,0.1) !important;
    }
    
    .space-y-8 > * + * {
        margin-top: 1rem !important;
    }
    
    .grid.sm\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    .grid.grid-cols-2.sm\:grid-cols-3.md\:grid-cols-4.lg\:grid-cols-6 {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
    }
    
    /* Mobile WOW moment for Ready to Build card */
    .aspect-video {
        position: relative !important;
        overflow: hidden !important;
        cursor: pointer !important;
    }
    
    .aspect-video .absolute {
        display: none !important;
    }
    
    .mobile-stats {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.85);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(100%);
        transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        color: white;
        text-align: center;
        padding: 1rem;
        backdrop-filter: blur(4px);
    }
    
    .mobile-stats.active {
        transform: translateY(0);
    }
    
    .stat-item {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        margin: 0.25rem 0;
    }
    
    .mobile-stats.active .stat-item {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-stats.active .stat-item:nth-child(1) { transition-delay: 0.2s; }
    .mobile-stats.active .stat-item:nth-child(2) { transition-delay: 0.4s; }
    .mobile-stats.active .stat-item:nth-child(3) { transition-delay: 0.6s; }
    .mobile-stats.active .stat-item:nth-child(4) { transition-delay: 0.8s; }
    
    /* Realistic robotic hand animation */
    .robotic-hand-wave {
        animation: handWave 3s ease-in-out infinite;
        transform-origin: bottom center;
    }
    
    @keyframes handWave {
        0% { transform: translateX(-50%) rotate(0deg); }
        10% { transform: translateX(-50%) rotate(15deg); }
        20% { transform: translateX(-50%) rotate(-10deg); }
        30% { transform: translateX(-50%) rotate(20deg); }
        40% { transform: translateX(-50%) rotate(-5deg); }
        50% { transform: translateX(-50%) rotate(15deg); }
        60% { transform: translateX(-50%) rotate(0deg); }
        100% { transform: translateX(-50%) rotate(0deg); }
    }
}

/* Overflow and scrolling */
body {
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth !important;
    -webkit-overflow-scrolling: touch !important;
}

/* Video and image responsiveness */
video, img {
    max-width: 100% !important;
    height: auto !important;
}

video {
    object-fit: cover !important;
}
/* Enhanced Animations for Better User Experience */

/* Smooth page transitions */
* {
    scroll-behavior: smooth;
}

/* Enhanced card hover effects */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(139, 92, 246, 0.25);
}

/* Floating animations for mobile */
@keyframes float-mobile {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-8px) rotate(1deg); }
    66% { transform: translateY(4px) rotate(-0.5deg); }
}

/* Pulse glow effect */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
    50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6); }
}

/* Text shimmer effect */
@keyframes text-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.text-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    background-size: 200% 100%;
    animation: text-shimmer 3s infinite;
    background-clip: text;
}

/* Mobile-specific animations */
@media (max-width: 768px) {
    .animate-float-1, .animate-float-2, .animate-float-3 {
        animation: none;
        opacity: 0.1 !important;
    }
    
    .card-hover {
        transition: all 0.2s ease;
    }
    
    .card-hover:hover {
        transform: translateY(-2px) scale(1.005);
        box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15);
    }
    
    .card-hover:active {
        transform: scale(0.98);
        transition: transform 0.1s;
    }
    
    .button-hover:hover {
        transform: scale(1.02);
    }
    
    .button-hover:active {
        transform: scale(0.96);
    }
    
    /* Disable complex animations on mobile */
    .hover\:rotate-6:hover,
    .hover\:rotate-12:hover {
        transform: scale(1.05) !important;
    }
    
    .hover\:scale-105:hover {
        transform: scale(1.02) !important;
    }
    
    .hover\:scale-110:hover {
        transform: scale(1.05) !important;
    }
    
    /* Reduce animation intensity */
    .animate-pulse {
        animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    }
    
    .animate-bounce {
        animation: bounce 2s infinite;
    }
    
    /* Simplify hover effects */
    .group:hover .group-hover\:scale-125 {
        transform: scale(1.1) !important;
    }
}

/* Enhanced button animations */
.button-hover {
    position: relative;
    overflow: hidden;
}

.button-hover::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;
}

.button-hover:hover::before {
    left: 100%;
}

/* Stagger animation delays for service cards */
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }
.animate-delay-900 { animation-delay: 0.9s; }

/* Loading state animations */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: text-shimmer 1.5s infinite;
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s ease-out;
}

.zoom-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Interactive elements */
.interactive-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-hover:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Micro-interactions */
.micro-bounce:hover {
    animation: micro-bounce 0.6s ease-in-out;
}

@keyframes micro-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}