body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.gallery-heading {
    text-align: center;
    margin: 20px 0;
    font-size: 2rem;
}

.media-container {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 10px;
}

.media-section {
    flex: 1;
    padding: 15px;
    border: 2px dashed #aaa;
    border-radius: 8px;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.photo-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
}

.photo-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
    box-sizing: border-box;
}

.photo-preview img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-preview {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px;
    background: #ff5c5c;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
}

.video-card {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #f9f9f9;
    width: 200px;
    margin: 0 auto;
}

.video-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
}

.caption {
    text-align: center;
    margin-top: 10px;
}

/* Video Gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
    justify-content: center;
}

.video-gallery a {
    display: block;
    width: 100%;
}

.video-gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
}

/* Styling for dynamic section headings */
.section-heading {
text-align: center;
font-size: 2rem;
margin-bottom: 15px;
color: #333;
font-weight: bold;
}

/* Navbar Styles */
.navbar {
margin-left: 10px;
margin-right: 10px;
width: -webkit-fill-available;
padding-top: 0%;
font-family: Arial, sans-serif;
border-radius: 5px;
background-color: #232f3e;
color: rgb(18, 18, 18);
padding: 10px 20px;
display: flex;
align-items: center;
justify-content: space-between;
position: sticky;
top: 0;
z-index: 1000;
}

.navbar .brand-logo {
height: 40px; /* Adjust logo height */
width: auto; /* Maintain aspect ratio */
margin-right: 10px; /* Space between logo and text */
}


.navbar .brand {
text-decoration: none;
font-size: 1.5rem;
color: rgb(5, 5, 5);
font-weight: bold;
}



.navbar .nav-links {

display: flex;
gap: 15px;
list-style: none;
margin: 0;
}

.navbar .nav-links a {
text-decoration: none;
/* color: rgb(11, 10, 10); */
color: #fff;
font-size: 1.05rem;
transition: color 0.3s ease;
font-weight: bolder;
}

.navbar .nav-links a:hover {
color: rgb(6, 221, 34); /* Ensure text remains visible */
font-size: 1.15rem;
}

/* .navbar-nav .nav-link a:hover {
color: #28a745;
font-size: 1.07rem;
} */
.navbar-toggler {
display: none;
background-color: #28a745;
color: white;
border: none;
padding: 5px 10px;
font-size: 1rem;
cursor: pointer;
}

/* Slider Menu */
.slider {
display: none;
position: fixed;
top: 0;
right: -300px;
width: 300px;
height: 100%;
background-color: #343a40;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
flex-direction: column;
gap: 10px;
padding: 20px;
z-index: 1000;
transition: all 0.3s ease-in-out;
}

.slider.open {
display: flex;
right: 0;
}

.slider .close-btn {
align-self: flex-end;
font-size: 1.5rem;
color: white;
background: none;
border: none;
cursor: pointer;
}

.slider .nav-links {
flex-direction: column;
gap: 50px; /* Large gap to highlight the hover effect */
list-style: none;
animation: fadeIn 0.5s ease-in-out;
}

.slider .nav-links a {
display: block;
color: white;
text-decoration: none;
font-size: 1.5rem; /* Increase font size for better visibility */
padding: 10px 15px;
transition: all 0.4s ease; /* Smooth hover animation */
opacity: 0;
animation: slideIn 0.5s ease forwards;
}

.slider .nav-links a:hover {
/* background-color: #28a745; */
font-size: 1.07rem;
color: rgb(6, 221, 34); /* Ensure text remains visible */
border-radius: 10px; /* Smooth rounded corners */
}

/* Keyframes for animation */
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@keyframes slideIn {
from {
transform: translateX(30px); /* More dramatic slide-in effect */
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}

/* Staggered animation delays */
.slider .nav-links a:nth-child(1) {
animation-delay: 0.2s;
}
.slider .nav-links a:nth-child(2) {
animation-delay: 0.4s;
}
.slider .nav-links a:nth-child(3) {
animation-delay: 0.6s;
}
.slider .nav-links a:nth-child(4) {
animation-delay: 0.8s;
}

/* Responsive Design */
@media (max-width: 768px) {
.navbar .nav-links {
display: none;
}

.navbar-toggler {
display: block;
}
}




/* Marquee */

marquee {
color: #4CAF50;
font-weight: bolder;
font-size: 1.5rem;

}

.section{
margin-top: 30px;
width: 500px;
}



.heading {
display: flex;
align-items: center;
justify-content: center;
margin: 20px 0;
text-align: center;
}

.heading-logo {
height: 50px;
/* Adjust logo height */
width: auto;
/* Maintain aspect ratio */
margin: 0 10px;
/* Space between the logos and text */
}

.hero {
font-family: 'Arial', sans-serif;
font-size: 1.5rem;
font-weight: bold;
color: rgb(11, 10, 10);
margin: 0;
}
@media (max-width: 768px) {
    .media-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .media-section {
        flex: 0 0 48%;
    }
}

@media (max-width: 576px) {
    .media-section {
        flex: 1;
    }
}


.heading {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    text-align: center;
}

.heading-logo {
    height: 50px;
    /* Adjust logo height */
    width: auto;
    /* Maintain aspect ratio */
    margin: 0 10px;
    /* Space between the logos and text */
}

.hero {
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(11, 10, 10);
    margin: 0;
}