/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #000000;
    padding-top: 120px;
    text-align: center;
}

header {
    background-color: #0096ff;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Navigation Bar */
nav {
    background-color: #333;
    padding: 10px 0;
    position: fixed;
    top: 100px; /* Avoid overlap with header */
    width: 100%;
    z-index: 1000;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.5);

}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 8px 15px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background-color: #ff5722;
    border-radius: 5px;
}


/* Team Section */
.team-section {
    margin-top: 5px;
    padding: 40px 20px;
}

.team-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    background:linear-gradient(135deg, #7bc8ff, #003b39);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 250px;
    box-shadow: 0 4px 15px rgba(0, 150, 255, 0.5);
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #0096ff;
}

.team-member h3 {
    font-size: 22px;
    margin: 10px 0;
}

.team-member p {
    font-size: 16px;
    color: #220000;
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background-color: #0096ff;
    color: white;
    margin-top: 30px;
    font-size: 14px;
    font-weight: bold;
    border-top: 3px solid #006bb3;
}
