.trainers-section {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.trainers-section .swiper {
    width: 100%;
    padding: 20px 0 80px 0;
}

.trainers-section .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
}

.trainer-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.trainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trainer-card:hover::before {
    opacity: 1;
}

.trainer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.trainer-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    margin: 0 auto 20px auto;
    display: block;
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-image {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.trainer-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.trainer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.4;
    min-height: 60px;
}

.trainer-description {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 20px;
    min-height: 160px;
}

.trainer-experience {
    background: linear-gradient(45deg, #f8f9fa, #e9ecef);
    padding: 15px;
    border-radius: 12px;
    border-right: 4px solid #ff6b6b;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.trainers-section .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.trainers-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

.trainers-section .swiper-pagination-bullet-active {
    background: #ff6b6b;
    transform: scale(1.2);
}

.trainers-section .swiper-button-next,
.trainers-section .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    transition: all 0.3s ease;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 70%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 20%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@media (max-width: 768px) {
    .trainer-card {
        margin: 10px;
        padding: 30px 20px;
    }
    
    .trainer-name {
        font-size: 1.5rem;
    }
    
    .trainer-title {
        font-size: 1rem;
    }
    
    .trainer-description {
        font-size: 0.9rem;
    }
    
    .trainers-section .swiper-button-next,
    .trainers-section .swiper-button-prev {
        display: none;
    }
}

.highlight {
    color: #ff6b6b;
    font-weight: 700;
}

.academic-badge {
    display: inline-block;
    background: linear-gradient(45deg, #4ecdc4, #45b7d1);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 2px;
}
.navigation-buttons i.fa-chevron-right::before{
    content: "\f054" !important;
}
.navigation-buttons i.fa-chevron-left::before{
    content: "\f053" !important;
}
