/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color:#29004a;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa; /* Light gray background */
    color: white; /* Dark gray text color */
}

.container-fluid {
    padding: 20px;
}

.navbar {
    background-color: #29004a; /* Dark purple navbar */
}

.navbar-brand {
    color: white; /* White brand color */
}

.text-end {
    text-align: end;
}

.mt-3 {
    margin-top: 1rem;
}

.me-3 {
    margin-right: 1rem;
}

.text-center {
    text-align: center;
}

.mt-5 {
    margin-top: 3rem;
}

h1, h2 {
    color: white; /* Dark purple headers */
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    color: #666; /* Medium gray text color */
}

.video-container {
    width: 100%;
    aspect-ratio:inherit; /* Maintain the aspect ratio */
    overflow: hidden; /* Hide excess overflow */
    position: relative;
    margin: 0 auto;
}

.video-container video {
    width: 100%; /* Ensure video covers the container */
    height:100%; /* Maintain aspect ratio */
    object-fit: cover; /* Cover without distortion */
}

.team-member {
    flex: 1;
    text-align: center;
    margin: 0 1rem;
}

.team-member img {
    max-width: 100px;
    border-radius: 50%; /* Rounded corners for team images */
}

.team-member h3 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
    color: #555; /* Slightly darker text color for role */
}

.team-member img{
    height: 110px;
    width:100px;
}

footer {
    background-color: #29004a; /* Dark purple footer */
    color: white;
    padding: 1rem;
    position: relative;
    bottom: 0;
    width: 100%;
}

/* Expanded team layout */
.d-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.mx-2 {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
}
