/* RLS EXPRESS INC. - Final Uniform Light Theme */
html, body {
    overflow-x: hidden;
}

body {
    background-image: url('../images/Background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
    color: #111827;
}

/* White Header */
header {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 58px;
}

/* Navigation */
.nav-button {
    background: linear-gradient(to right, #1f2937, #374151);
    color: white;
    padding: 0.65rem 1.15rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav-button:hover {
    background: linear-gradient(to right, #374151, #1f2937);
    transform: translateY(-2px);
}

/* Content Boxes - Off White */
.content-box {
    background-color: #f8f9fa;
    color: black;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Popping Dark Blue Buttons */
.btn-primary {
    background-color: #1e40af;     /* Rich Dark Blue */
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(30, 64, 175, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1e3a8a;
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(30, 64, 175, 0.4);
}

/* Partners Carousel - UNTOUCHED */
.carousel-alt {
    background-color: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.carousel-inner-alt {
    display: flex;
    gap: 2.5rem;
    animation: scroll 40s linear infinite;
}

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

.carousel-inner-alt img {
    height: 85px;
    width: 85px;
    object-fit: contain;
}

.carousel-inner-alt img:hover {
    transform: scale(1.12);
}