.gradient-text {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-gradient {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #1e40af 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.live-indicator {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

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

.whatsapp-float {
    animation: float 3s ease-in-out infinite;
}

.smooth-scroll {
    scroll-behavior: smooth;
}

.step-connector {
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #fbbf24);
    transform: translateY(-50%);
    z-index: -1;
}

@media (max-width: 768px) {
    .step-connector::after {
        display: none;
    }
}

.count-animation {
    font-variant-numeric: tabular-nums;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Image styling */
.hero-image {
    object-fit: cover;
    width: 100%;
    height: 500px;
    border-radius: 1.5rem;
}

.about-image {
    object-fit: cover;
    width: 100%;
    height: 400px;
    border-radius: 1.5rem;
}
