/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Navbar */
.navbar, .footer {
    background-color: #001f3f ;
    color: #fff;
}

.nav-link {
    color: white;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff7043;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Parallax Background */
.livestreams-section {
    color: white;
    position: relative;
    padding: 80px 0;
}

/* Video Container and Overlay */
.video-wrapper {
    margin-bottom: 20px;
    max-width: 100%;
}

.video-container {
    position: relative;
    background-color: #f0f0f0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.video-container:hover {
    transform: scale(1.05);
}

video {
    display: block;
    width: 100%;
    height: auto;
}

.video-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 87, 34, 0.9);
    padding: 5px 15px;
    border-radius: 20px;
    color: white;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Grid Layout for Videos */
#videoGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* 3 columns */
    gap: 20px; /* space between videos */
}

/* Section Headers */
h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background-color: #ffff;
    border-color: #0000;
}

.pagination .page-link {
    color: #ff5722;
}

.pagination .page-link:hover {
    background-color: #ff7043;
    border-color: #ff7043;
}

/* Services Section */
.service-card {
    background-color: #ffffff;
    border: none;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card .card-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    background-color: #f7f7f7;
    padding: 60px 0;
}

.partners-section h2 {
    color: #ff5722;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.partners-marquee {
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: marquee 30s linear infinite;
}

.partner-logo {
    max-height: 50px;
    margin: 0 50px;
    transition: transform 0.3s ease;
    filter: brightness(0.9);
}

.partner-logo:hover {
    transform: scale(1.1);
    filter: brightness(1);
}

/* Footer */
.footer .social-links a {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 15px;
}

.footer .social-links a:hover {
    color: #ff7043;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .livestreams-section .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .livestreams-section .row {
        grid-template-columns: 1fr;
    }

    .navbar-brand {
        font-size: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .footer {
        padding: 20px 0;
    }
}
