/* Team Section Styles */
.wb-team-section {
    background: linear-gradient(135deg, #f5f9f7 0%, #ffffff 100%);
}

.tf-section2 {
    position: relative;
}

/* Team Box Container */
.wb-box-team {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.wb-box-team:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Team Images */
.wb-images {
    height: 100%;
}

.wb-images img {
    width: 100%;
    transition: transform 0.4s ease;
}

.wb-box-team:hover .wb-images img {
    transform: scale(1.08);
}

/* Team Content */
.wb-content {
    padding: 20px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wb-content h5 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #7cb342;
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.wb-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.wb-box-team:hover .wb-content h3 {
    color: #7cb342;
}

/* Responsive Design */
@media (max-width: 768px) {
    .wb-team-section {
        padding: 40px 0;
    }
    
    .wb-content {
        padding: 20px 15px;
    }
    
    .wb-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .wb-team-section {
        padding: 30px 0;
    }
    
    .wb-content {
        padding: 18px 12px;
    }
    
    .wb-content h5 {
        font-size: 11px;
    }
    
    .wb-content h3 {
        font-size: 16px;
    }
}

/* Animation for page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}