/* Custom Styles & Utilities for Safargo */

/* Hide standard scrollbar for a cleaner look */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #10B981; 
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #059669; 
}

/* Glassmorphism */
.glassmorphism {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.glassmorphism-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

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

.animate-blob {
    animation: blob 7s infinite alternate;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.floating-phone {
    animation: float 6s ease-in-out infinite;
}

.floating-element-slow {
    animation: float 8s ease-in-out infinite alternate;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-320px * 4 - 1.5rem * 4)); }
}

.animate-scroll {
    animation: scroll 20s linear infinite;
    width: max-content;
}

.hover\:animation-pause:hover {
    animation-play-state: paused;
}

/* Step timeline styling */
.step-card.active .step-icon {
    background-color: #10B981;
    color: white;
    border-color: #10B981;
    box-shadow: 0 0 20px rgba(16,185,129,0.4);
}

/* Hero Gradient */
.hero-gradient {
    background: radial-gradient(circle at 50% -20%, #e0f2fe 0%, #ffffff 50%);
}
