/* Custom Styles for PVdlTFA */

body {
    font-family: 'Roboto', sans-serif;
}

.navbar-brand {
    letter-spacing: 1px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1599406692984-7833053898fd?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    margin-bottom: 2rem;
    border-radius: 0 0 1rem 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card {
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-title {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background-color: #dc3545;
    /* Bootstrap danger color */
}

/* Replaced explicit table color, Bootstrap handles dark themes */
/* Infinite Logo Slider */
.logo-slider-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 30px 0;
    /* Added padding to prevent hover cutoff */
}

.logo-slider-container::before,
.logo-slider-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.logo-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

[data-bs-theme="dark"] .logo-slider-container::before {
    background: linear-gradient(to right, #2b3035 0%, rgba(43, 48, 53, 0) 100%);
}

[data-bs-theme="dark"] .logo-slider-container::after {
    background: linear-gradient(to left, #2b3035 0%, rgba(43, 48, 53, 0) 100%);
}

.logo-slider-track {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.logo-slider-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    display: inline-block;
    padding: 0 40px;
    vertical-align: middle;
}

.logo-slide img {
    height: 140px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.logo-slide img:hover {
    transform: scale(1.1);
    z-index: 10;
}

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

    100% {
        transform: translateX(-50%);
    }
}