/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}
a .logo {
    width: 8px;
    height: auto;
    display: block;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease;
}

/* Hover effect for the logo */
a:hover .logo {
    transform: scale(1.06);
    opacity: 0.9; /* Adds opacity effect on hover */
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1);
}

/* Header */
.header {
    text-align: center;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    padding: 2rem 1rem;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.header p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    padding: 3rem 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
    border: 3px solid #2575fc;
}

.team-member h2 {
    font-size: 1.5rem;
    color: #6a11cb;
    margin-bottom: 0.5rem;
}

.team-member p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.team-member p:last-of-type {
    font-size: 0.8rem;
    color: #333;
}

/* Footer */
.footer {
    text-align: center;
    padding: 1rem 0;
    background: #333;
    color: white;
    font-size: 0.9rem;
}
