/* ============================================
   MRAI TECHNOLOGY - Custom Styles
   ============================================ */

/* CSS Variables */
:root {
    --brand-primary: #0ea5e9;
    --brand-secondary: #0284c7;
    --brand-light: #38bdf8;
    --dark-900: #0a0a0a;
    --dark-800: #1a1a1a;
    --dark-700: #2a2a2a;
    --dark-600: #3a3a3a;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-color: rgba(255, 255, 255, 0.05);
    --gradient-brand: linear-gradient(135deg, #0ea5e9, #0284c7);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    --shadow-brand: 0 0 40px rgba(14, 165, 233, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--dark-900);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-800);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-600);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Selection */
::selection {
    background: rgba(14, 165, 233, 0.3);
    color: var(--text-primary);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Links */
a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading-screen {
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
#cursor {
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease;
    mix-blend-mode: difference;
}

#cursor.hover {
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.1);
}

#cursor-dot {
    transition: transform 0.05s ease;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-brand);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    left: 10%;
}

/* Mobile Menu */
#mobile-menu {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#mobile-menu.hidden {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-title {
    background: linear-gradient(135deg, #ffffff 0%, #38bdf8 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    color: var(--text-secondary);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--brand-primary);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    bottom: -50px;
    left: -50px;
    animation-delay: -2s;
}

.floating-element:nth-child(3) {
    width: 200px;
    height: 200px;
    background: #06b6d4;
    top: 50%;
    left: 50%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* ============================================
   PARTICLES CANVAS
   ============================================ */
#particles-canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: var(--gradient-brand);
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-brand);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(14, 165, 233, 0.25);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    background: transparent;
    color: white;
    font-weight: 600;
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--brand-primary);
    background: rgba(14, 165, 233, 0.1);
}

/* ============================================
   CARDS
   ============================================ */
.card {
    position: relative;
    background: var(--dark-800);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover::before {
    opacity: 1;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.service-card {
    position: relative;
    padding: 2rem;
    background: var(--dark-800);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: cardFadeIn 0.6s ease both;
}

.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-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(14, 165, 233, 0.1);
    border-radius: 1rem;
    color: var(--brand-primary);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-brand);
    color: white;
    transform: scale(1.1);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-card img {
    transition: transform 0.5s ease;
}

.portfolio-card:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(14, 165, 233, 0.2);
    color: var(--brand-light);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
}

/* ============================================
   STATS COUNTER
   ============================================ */
.stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    position: relative;
    padding: 2rem;
    background: var(--dark-800);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    color: rgba(14, 165, 233, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--dark-800);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.2);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-card-image img {
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark-700);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   SECTION HEADINGS
   ============================================ */
.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(14, 165, 233, 0.1);
    color: var(--brand-primary);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.125rem;
    max-width: 600px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* ============================================
   GRADIENT TEXT
   ============================================ */
.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #38bdf8 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   GLASS EFFECT
   ============================================ */
.glass {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================================
   GRID PATTERN BACKGROUND
   ============================================ */
.grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* ============================================
   DOT PATTERN
   ============================================ */
.dot-pattern {
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.875rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-element {
        display: none;
    }
    
    #cursor,
    #cursor-dot {
        display: none !important;
    }
}

@media (max-width: 640px) {
    .section-title {
        font-size: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    #navbar,
    #cursor,
    #cursor-dot,
    #back-to-top,
    #loading-screen {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}



/* ============================================
   TECH STACK & PROCESS CARDS - CSS Animation
   ============================================ */
@keyframes itemFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Tech stack items */
.flex.flex-wrap.justify-center.gap-4 > div {
    animation: itemFadeIn 0.5s ease both;
}
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(1)  { animation-delay: 0.05s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(2)  { animation-delay: 0.10s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(3)  { animation-delay: 0.15s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(4)  { animation-delay: 0.20s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(5)  { animation-delay: 0.25s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(6)  { animation-delay: 0.30s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(7)  { animation-delay: 0.35s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(8)  { animation-delay: 0.40s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(9)  { animation-delay: 0.45s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(10) { animation-delay: 0.50s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(11) { animation-delay: 0.55s; }
.flex.flex-wrap.justify-center.gap-4 > div:nth-child(12) { animation-delay: 0.60s; }

/* Process steps */
.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-5 > div {
    animation: itemFadeIn 0.5s ease both;
}
.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-5 > div:nth-child(1) { animation-delay: 0.1s; }
.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-5 > div:nth-child(2) { animation-delay: 0.2s; }
.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-5 > div:nth-child(3) { animation-delay: 0.3s; }
.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-5 > div:nth-child(4) { animation-delay: 0.4s; }
.grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-5 > div:nth-child(5) { animation-delay: 0.5s; }

/* Tech stack items extended (13-50) */
.flex.flex-wrap.justify-center.gap-3 > div {
    animation: itemFadeIn 0.4s ease both;
}
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(n)   { animation-delay: 0.02s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(1)   { animation-delay: 0.02s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(2)   { animation-delay: 0.04s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(3)   { animation-delay: 0.06s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(4)   { animation-delay: 0.08s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(5)   { animation-delay: 0.10s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(6)   { animation-delay: 0.12s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(7)   { animation-delay: 0.14s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(8)   { animation-delay: 0.16s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(9)   { animation-delay: 0.18s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(10)  { animation-delay: 0.20s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(11)  { animation-delay: 0.22s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(12)  { animation-delay: 0.24s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(13)  { animation-delay: 0.26s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(14)  { animation-delay: 0.28s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(15)  { animation-delay: 0.30s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(16)  { animation-delay: 0.32s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(17)  { animation-delay: 0.34s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(18)  { animation-delay: 0.36s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(19)  { animation-delay: 0.38s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(20)  { animation-delay: 0.40s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(21)  { animation-delay: 0.42s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(22)  { animation-delay: 0.44s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(23)  { animation-delay: 0.46s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(24)  { animation-delay: 0.48s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(25)  { animation-delay: 0.50s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(26)  { animation-delay: 0.52s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(27)  { animation-delay: 0.54s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(28)  { animation-delay: 0.56s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(29)  { animation-delay: 0.58s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(30)  { animation-delay: 0.60s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(31)  { animation-delay: 0.62s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(32)  { animation-delay: 0.64s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(33)  { animation-delay: 0.66s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(34)  { animation-delay: 0.68s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(35)  { animation-delay: 0.70s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(36)  { animation-delay: 0.72s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(37)  { animation-delay: 0.74s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(38)  { animation-delay: 0.76s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(39)  { animation-delay: 0.78s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(40)  { animation-delay: 0.80s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(41)  { animation-delay: 0.82s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(42)  { animation-delay: 0.84s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(43)  { animation-delay: 0.86s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(44)  { animation-delay: 0.88s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(45)  { animation-delay: 0.90s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(46)  { animation-delay: 0.92s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(47)  { animation-delay: 0.94s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(48)  { animation-delay: 0.96s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(49)  { animation-delay: 0.98s; }
.flex.flex-wrap.justify-center.gap-3 > div:nth-child(50)  { animation-delay: 1.00s; }
