/* Team Slider Styles */
.teamSwiper {
    padding: 20px 0 50px;
    width: 100%;
}

.swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-item {
    height: 100%;
    margin: 10px;
}
.team-name{
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    text-align: center;
    color: crimson;
}
.team-skills{
    margin-top: 15px;
    text-align: center;
    color: #5607a5;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
}

/* Navigation Buttons */
.swiper-button-next, 
.swiper-button-prev {
    /* color: #007bff; */
    color :crimson ;
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after, 
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

/* Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    /* background: #007bff; */
    background: crimson;
}