/* Employees Carousel Styles */
.employees-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 40px auto;
    overflow: hidden;
    padding: 0 20px;
}

.employees-carousel {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease-in-out;
}

.employee-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.employee-card {
    min-width: calc((100% - 40px) / 3);
    flex-shrink: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.employee-image-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #1b458e;
}

.employee-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.employee-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc, #1b458e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.employee-initials {
    font-size: 4rem;
    color: white;
    font-weight: bold;
}

.employee-info {
    margin-top: 20px;
}

.employee-name {
    font-size: 1.5rem;
    color: #222;
    margin: 10px 0;
    font-weight: 600;
}

.employee-role {
    font-size: 1.1rem;
    color: #666;
    margin: 5px 0;
}

/* Carousel Buttons */
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1b458e;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-button:hover {
    background-color: #1b458e;
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

/* Carousel Dots */
.carousel-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot:hover {
    background-color: #999;
}

.dot.active {
    background-color: #0066cc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .employees-carousel-wrapper {
        padding: 0 40px;
    }
    
    .employee-card {
        min-width: 250px;
        padding: 20px;
    }
    
    .employee-image-container {
        width: 150px;
        height: 150px;
    }
    
    .employee-initials {
        font-size: 3rem;
    }
    
    .employee-name {
        font-size: 1.3rem;
    }
    
    .employee-role {
        font-size: 1rem;
    }
    
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .employees-carousel-wrapper {
        padding: 0 30px;
    }
    
    .employee-card {
        min-width: 200px;
        padding: 15px;
    }
    
    .employee-image-container {
        width: 120px;
        height: 120px;
    }
    
    .employee-initials {
        font-size: 2.5rem;
    }
    
    .employee-name {
        font-size: 1.1rem;
    }
    
    .employee-role {
        font-size: 0.9rem;
    }
}
