/* Import Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -10;
    background: linear-gradient(135deg, #1e3a8a 0%, #166534 25%, #292524 50%, #1e3a8a 75%, #166534 100%);
    background-size: 400% 400%;
    animation: gradientShift 30s ease infinite;
    opacity: 0.7;
}

.animated-bg::before,
.animated-bg::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -25%;
    left: -25%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 40% 90%, rgba(30, 58, 138, 0.1) 3px, transparent 3px),
        radial-gradient(circle at 60% 10%, rgba(22, 101, 52, 0.1) 1px, transparent 1px);
    background-size: 300px 300px, 400px 400px, 500px 500px, 600px 600px;
    animation: float-slow 60s linear infinite, float-slower 80s linear infinite reverse;
    z-index: -9;
}

.animated-bg::after {
    background-image: 
        radial-gradient(circle at 90% 20%, rgba(249, 115, 22, 0.05) 3px, transparent 3px),
        radial-gradient(circle at 10% 80%, rgba(236, 72, 153, 0.05) 4px, transparent 4px);
    background-size: 350px 350px, 450px 450px;
    animation: float-slower 70s linear infinite, float-slow 90s linear infinite reverse;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float-slow {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(100px, 50px) rotate(360deg); }
}

@keyframes float-slower {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-80px, -30px) rotate(-360deg); }
}

/* Animation Delays */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.animation-delay-200 {
    animation-delay: 0.2s;
}

.animation-delay-300 {
    animation-delay: 0.3s;
}

.animation-delay-400 {
    animation-delay: 0.4s;
}

.animation-delay-500 {
    animation-delay: 0.5s;
}

/* Service Cards */
.card-service {
    background: rgba(41, 37, 36, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(68, 64, 60, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.card-service:hover {
    transform: translateY(-10px);
    border-color: #f97316;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    width: 32px;
    height: 32px;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(41, 37, 36, 0.5);
    border-radius: 1.5rem;
    border: 1px solid rgba(68, 64, 60, 0.5);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: #f97316;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #f97316;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Client Cards */
.client-card {
    background: rgba(41, 37, 36, 0.5);
    border: 1px solid rgba(68, 64, 60, 0.5);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    border-color: #ec4899;
    background: rgba(41, 37, 36, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
    .process-step {
        margin-bottom: 2rem;
    }
    
    .client-card {
        margin-bottom: 1rem;
    }
}