* {
            font-family: 'Inter', sans-serif;
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #2B579A 0%, #2B579A 50%, #f97316 100%);
        }
        
        .gradient-text {
            background: linear-gradient(135deg, #2B579A 0%, #f97316 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(43, 87, 154, 0.15);
        }
        
        .testimonial-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(240, 247, 255, 0.95) 100%);
            backdrop-filter: blur(10px);
        }
        
        .nav-shadow {
            box-shadow: 0 4px 20px rgba(43, 87, 154, 0.1);
        }
        
        .section-divider {
            height: 3px;
            background: linear-gradient(90deg, #2B579A 0%, #f97316 50%, #fb923c 100%);
            width: 80px;
            margin: 0 auto;
        }
        
        .hero-image {
            background-image: url('./home page.jpg?v=2');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            margin: 0 auto;
            background: linear-gradient(135deg, #dbeafe 0%, #fed7aa 100%);
            color: #2B579A;
            font-size: 28px;
        }
        
        .stats-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(219, 234, 254, 0.9) 100%);
            border-left: 5px solid #2B579A;
        }
        
        @media (max-width: 768px) {
            .hero-image {
                background-position: 70% center;
            }
        }

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    background: #f3f4f6;
    border-radius: 1rem;
    padding: 2rem;
}

.client-slide {
    display: none;
    text-align: center;
}

.client-slide.active {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    background-color: rgba(43, 87, 154, 0.8);
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s ease;
    border-radius: 0 8px 8px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.prev:hover, .next:hover {
    background-color: rgba(249, 115, 22, 0.9);
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #f97316;
}

.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {opacity: 0.4}
    to {opacity: 1}
}
