 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        
        body {
            font-family: 'Poppins', sans-serif;
        }
        
        .hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: 115%; /* increased from cover */
    background-position: center;
    background-attachment: fixed;
}

        
        .step-card {
            transition: transform 0.5s ease, box-shadow 0.5s ease;
            position: relative;
            overflow: hidden;
        }
        
        .step-card::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.7s ease;
        }
        
        .step-card:hover::before {
            left: 100%;
        }
        
        .step-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            font-weight: bold;
            margin: 0 auto 15px;
            background: linear-gradient(135deg, #FF6B35, #FF8E53);
            color: white;
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        
        .step-card:hover .step-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 25px rgba(255, 107, 53, 0.6);
        }
        
        .warehouse-section {
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), 
                        url('https://images.unsplash.com/photo-1553413077-190dd305871c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
        }
        
        .arrow-connector {
            position: relative;
        }
        
        .arrow-connector::after {
            content: "→";
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 24px;
            color: #FF6B35;
            opacity: 0.7;
            transition: all 0.5s ease;
        }
        
        .arrow-connector:hover::after {
            transform: translateY(-50%) translateX(5px);
            opacity: 1;
        }
        
        @media (max-width: 768px) {
            .arrow-connector::after {
                display: none;
            }
        }
        
        /* Floating animation */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }
        
        .animate-float {
            animation: float 5s ease-in-out infinite;
        }
        
        /* Pulse animation */
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .animate-pulse-slow {
            animation: pulse 3s ease-in-out infinite;
        }
        
        /* Bounce animation */
        @keyframes bounce-slow {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .animate-bounce-slow {
            animation: bounce-slow 2s ease-in-out infinite;
        }
        
        /* Fade in up animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fadeInUp {
            animation: fadeInUp 1s ease forwards;
        }
        
        /* Button hover effects */
        .btn-primary {
            background: linear-gradient(135deg, #FF6B35, #FF8E53);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary::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.7s ease;
        }
        
        .btn-primary:hover::before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
        }
        
        /* Form input animations */
        .form-input {
            transition: all 0.3s ease;
        }
        
        .form-input:focus {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
        }
        
        /* Icon animations */
        .icon-animate {
            transition: transform 0.5s ease;
        }
        
        .step-card:hover .icon-animate {
            transform: scale(1.2) rotate(10deg);
        }
        
        /* Background shapes animation */
        .bg-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            z-index: 0;
        }
        
        .shape-1 {
            width: 300px;
            height: 300px;
            background: #FF6B35;
            top: 10%;
            left: 5%;
            animation: float 8s ease-in-out infinite;
        }
        
        .shape-2 {
            width: 200px;
            height: 200px;
            background: #4F46E5;
            bottom: 20%;
            right: 10%;
            animation: float 7s ease-in-out infinite reverse;
        }
        
        /* Progress bar animation */
        .progress-bar {
            height: 4px;
            background: #e5e7eb;
            border-radius: 2px;
            overflow: hidden;
            position: relative;
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #FF6B35, #FF8E53);
            width: 0%;
            transition: width 1.5s ease;
        }
        
        /* Counter animation */
        .counter {
            font-size: 2.5rem;
            font-weight: bold;
            color: #FF6B35;
        }
        
        /* Glow effect */
        .glow {
            box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
            transition: box-shadow 0.5s ease;
        }
        
        .glow:hover {
            box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
        }
        
        /* Text gradient animation */
        .text-gradient {
            background: linear-gradient(135deg, #FF6B35, #FF8E53, #4F46E5);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 3s ease infinite;
        }
        
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Staggered animation delays */
        .delay-100 { animation-delay: 0.1s; }
        .delay-200 { animation-delay: 0.2s; }
        .delay-300 { animation-delay: 0.3s; }
        .delay-400 { animation-delay: 0.4s; }
        .delay-500 { animation-delay: 0.5s; }
        .progress-fill {
  width: 0%;
  transition: width 2s ease-in-out;
}
