        .about-hero {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.92) 100%), 
                        url('/images/about-us-banner.jpg') center/cover;
            backdrop-filter: blur(2px);
        }
        
        .text-gradient {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .glow {
            box-shadow: 0 0 20px rgba(249, 115, 22, 0.1);
        }
        
        .animate-float {
            animation: float 6s ease-in-out infinite;
        }
        
        .animate-float-delayed {
            animation: float 6s ease-in-out infinite 2s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .icon-animate:hover {
            transform: scale(1.1) rotate(5deg);
            transition: all 0.3s ease;
        }

        .stats-counter {
            font-variant-numeric: tabular-nums;
        }

        .timeline-item {
            position: relative;
            padding-left: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.5rem;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f97316, #ea580c);
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            left: 5px;
            top: 1.5rem;
            bottom: -2rem;
            width: 2px;
            background: linear-gradient(to bottom, #f97316, transparent);
        }

        .timeline-item:last-child::after {
            display: none;
        }

        /* Your Banner Styles */
        @keyframes slide-in-left {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slide-in-right {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes pulse-glow {
            0%, 100% {
                box-shadow: 0 0 25px rgba(249, 115, 22, 0.4);
            }
            50% {
                box-shadow: 0 0 45px rgba(249, 115, 22, 0.7);
            }
        }

        .animate-slide-in-left {
            animation: slide-in-left 0.8s ease-out forwards;
        }

        .animate-slide-in-right {
            animation: slide-in-right 0.8s ease-out forwards;
        }

        .animate-fade-in-up {
            animation: fade-in-up 0.6s ease-out forwards;
        }

        .animate-pulse-glow {
            animation: pulse-glow 3s ease-in-out infinite;
        }

        .hidden-element {
            opacity: 0;
        }

        .gradient-text {
            background: linear-gradient(135deg, #f97316 0%, #ea580c 50%, #dc2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(249, 115, 22, 0.15);
        }
        /* Updated Timeline Styles for Mobile */
.timeline-item {
    position: relative;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #ea580c);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1.5rem;
    bottom: -1rem;
    width: 2px;
    background: linear-gradient(to bottom, #f97316, transparent);
}

.timeline-item:last-child::after {
    display: none;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
    .timeline-item {
        padding-left: 1.25rem;
    }
    
    .timeline-item::before {
        top: 0.5rem;
        width: 8px;
        height: 8px;
    }
    
    .timeline-item::after {
        left: 3px;
        top: 1.25rem;
        bottom: -0.5rem;
    }
}