/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background-color: var(--bg);
}

.team-section .section-title {
    margin-bottom: 60px;
}

.team-section .section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--header);
    margin-bottom: 15px;
}

.team-section .section-title p {
    font-size: 18px;
    color: var(--text);
}

.team-category {
    margin-bottom: 60px;
}

.team-category .category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    margin-bottom: 40px;
    text-align: center;
}

.team-slider {
    padding: 0 20px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--theme-color);
}

.team-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--header);
    margin-bottom: 10px;
    line-height: 1.3;
}

.team-info .role {
    font-size: 16px;
    color: var(--text);
    margin: 0;
    line-height: 1.4;
}

/* Swiper Pagination */
.team-slider .swiper-pagination {
    margin-top: 30px;
    position: relative;
}

.team-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--border);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.team-slider .swiper-pagination-bullet-active {
    background-color: var(--theme-color);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .team-section {
        padding: 80px 0;
    }
    
    .team-section .section-title h2 {
        font-size: 36px;
    }
    
    .team-category .category-title {
        font-size: 24px;
    }
    
    .team-card {
        padding: 25px 20px;
        min-height: 160px;
    }
    
    .team-info h4 {
        font-size: 18px;
    }
    
    .team-info .role {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }
    
    .team-section .section-title h2 {
        font-size: 32px;
    }
    
    .team-category .category-title {
        font-size: 22px;
    }
    
    .team-card {
        padding: 20px 15px;
        min-height: 140px;
    }
    
    .team-info h4 {
        font-size: 16px;
    }
    
    .team-info .role {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .team-slider {
        padding: 0 15px;
    }
    
    .team-card {
        padding: 15px 12px;
        min-height: 120px;
    }
    
    .team-info h4 {
        font-size: 15px;
    }
    
    .team-info .role {
        font-size: 12px;
    }
}
