/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Container */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4; /* Light gray background */
}

.container {
    display: flex;
    padding: 20px;
}

/* Navigation Bar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: teal;
    padding: 10px;
    color: white;
}

.navbar .logo img {
    height: auto;
    max-height: 80px;
    width: auto;
    display: block;
    margin-left: auto;
    margin-right: 15px;
}

.navbar .nav-links {
    display: flex;
    align-items: center;
}

.navbar .nav-links a {
    color: white;
    margin-left: 15px;
    text-decoration: none;
    transition: color 0.3s; /* Add transition effect for smooth color change */
}

/* Highlight and hover effect */
.navbar .nav-links a:hover {
    color: #ffd700; /* Change color on hover */
}

.navbar .nav-links a.active {
    font-weight: bold; /* Style for active menu item */
}

/* About Section */
.about {
    padding: 50px 20px;
    text-align: center;
}

.about h1 {
    color: teal;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.about h2 {
    color: teal;
    font-size: 2rem;
    margin-top: 30px;
}

.team-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 280px;
    max-width: 100%;
    transition: transform 0.2s, box-shadow 0.2

    .card-img{
        height: 15rem;
    }

    .card-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
