@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/background.png') no-repeat center center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.stats-item {
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.truck-animation {
    animation: moveTruck 8s linear infinite;
}

.aa{
    /* background: linear-gradient(135deg, #f5f7fa 0%, #e4edf9 100%); */
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    overflow-x: hidden;
}

.header {
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
        }
        
.header h1 {
    color: #001f39;
    font-size: 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header p {
    color: #2c3e50;
    font-size: 1.2rem;
    line-height: 1.6;
}

.divider {
    width: 80px;
    height: 4px;
    background: #3b82f6;
    margin: 20px auto;
    border-radius: 2px;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 180px;
    border-radius: 15px;
    background: linear-gradient(to right, #e0eafc, #cfdef3);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05), 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin: 30px 0;
}

.marquee {
    display: flex;
    position: absolute;
    top: 20px;
    height: 140px;
    animation: marquee 40s linear infinite;
}

.marquee:hover {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-item {
    width: 220px;
    height: 120px;
    margin: 0 15px;
    background: white;
    border: 2px solid #4a90e2;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 10px;
}

.logo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    border-color: #001f39;
    z-index: 10;
}

.logo-img {
    width: 100px;
    height: 50px;
    object-fit: contain;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.logo-item:hover .logo-img {
    transform: scale(1.1);
}

.company-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    line-height: 1.3;
}

.company-location {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 5px;
    font-weight: 500;
}

.instructions {
    text-align: center;
    color: #7f8c8d;
    margin-top: 25px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.instructions i {
    color: #3b82f6;
    font-size: 1.4rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: rgba(0, 31, 57, 0.1);
    font-size: 1.2rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 2.2rem;
    }
    
    .header p {
        font-size: 1rem;
    }
    
    .logo-item {
        width: 180px;
        height: 100px;
        margin: 0 10px;
    }
    
    .logo-img {
        width: 80px;
        height: 40px;
    }
    
    .company-name {
        font-size: 0.8rem;
    }
    
    .company-location {
        font-size: 0.7rem;
    }
    
    .instructions {
        font-size: 1rem;
        padding: 10px 20px;
    }
}


.sbst-logo {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sbst-logo i {
    color: white;
    font-size: 28px;
}


@keyframes moveTruck {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100vw); }
}
        .client-card {
            transition: all 0.3s ease;
            border-left: 4px solid #3b82f6;
        }
        .client-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
        }
        .hidden-client {
            display: none;
        }
        .expand-button {
            transition: all 0.3s ease;
        }
        .expand-button:hover {
            background-color: #2563eb;
        }