body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f6f9;
    color: #212529;
    scroll-behavior: smooth;
}

.navbar {
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff, #f1f3f8);
}

.team-section h2 {
    font-weight: 700;
    font-size: 2.8rem;
    color: #0d6efd;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.team-card {
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #0d6efd;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.role {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.2rem;
}

.description {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons a {
    font-size: 1.5rem;
    color: #0d6efd;
    margin: 0 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #0a58ca;
    transform: scale(1.2);
}

.internship-cta {
    background: linear-gradient(180deg, #e9f1ff, #f4f9ff);
    border-top: 1px solid #d0e3ff;
}

.internship-cta h3 {
    font-size: 2rem;
    color: #0d6efd;
}

.internship-cta p {
    font-size: 1.1rem;
    color: #555;
}

.internship-cta .btn {
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.internship-cta .btn:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
}
