body {
    background-image: url('imb.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    color: rgb(20, 13, 13);
    font-family: Arial, sans-serif;
}

header {
    background: rgba(16, 146, 163, 0.7);
    padding: 1em;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

#welcome-video {
    position: relative;
}

#welcome-video video {
    width: 100%;
    height: auto;
}

.video-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

footer {
    background: rgba(44, 226, 44, 0.829);
    padding: 1em;
    text-align: center;
}
/* General Section Styling */
#team-carousel {
    margin: 50px auto;
    text-align: center;
    max-width: 900px;
    padding: 30px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.carousel-title {
    font-size: 2em;
    color: #333;
    margin-bottom: 20px;
}

/* Carousel Structure */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
}

.carousel-slide {
    display: flex;
    overflow: hidden;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.team-member {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    text-align: center;
}

.team-member img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.member-info h4 {
    margin: 10px 0 5px;
    font-size: 1.3em;
    color: #444;
}

.member-info p {
    font-size: 1em;
    color: #777;
}

/* Carousel Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    font-size: 1.5em;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: -40px;
}

.next-btn {
    right: -40px;
}
