/* Employee Card Styles */
.employee-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    padding: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.employee-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
}

.employee-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    padding: 0;
    display: block;
}

.employee-card:hover .employee-image img {
    transform: scale(1.05);
}

.employee-info h3 {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    margin-top: 0;
}

.employee-info .position {
    color: #f39c12;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.employee-info .description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f39c12;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-links a:hover {
    background: #e67e22;
    transform: translateY(-2px);
}

.section-title h2 {
    color: #333;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .employee-card {
        padding: 20px;
    }
    
    .employee-image {
        margin-bottom: 15px;
        height: 320px;
        margin: 0;
        padding: 0;
    }
    
    .employee-image img {
        height: 100%;
    }
    
    .employee-info h3 {
        font-size: 20px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .employee-image {
        height: 280px;
    }
    
    .employee-image img {
        height: 100%;
    }
    
    .employee-info h3 {
        font-size: 18px;
    }
    
    .employee-info .position {
        font-size: 14px;
    }
    
    .employee-info .description {
        font-size: 13px;
    }
}
