
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 140px;
}

section {
    margin-bottom: 60px;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    color: red;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ff3b30, #8b0000);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Team Categories Section */
.team-categories {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-image {
    height: 200px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 20px;
}

.team-content h3 {
    font-size: 22px;
    color: #ff3b30;
    margin-bottom: 10px;
}

.team-details {
    margin-top: 15px;
}

.team-detail {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.team-detail span {
    font-weight: 600;
    margin-right: 10px;
    color: #555;
}

.team-button {
    display: inline-block;
    background: linear-gradient(to right, #2c1212, #ff3b30);
    color: white;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.team-button:hover {
    background: linear-gradient(90deg, #ff9500, #ff3b30);
    transform: translateY(-3px);
}

/* Accomplishments Section */
.accomplishments {
    background-color: #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.accomplishment-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.accomplishment-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
    transition: all 0.3s ease;
    color: #777;
}

.accomplishment-tab.active {
    color: #ff3b30;
}

.accomplishment-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff3b30, #ff9500);
}

.accomplishment-content {
    display: none;
}

.accomplishment-content.active {
    display: block;
}

.accomplishment-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.accomplishment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.accomplishment-icon {
    background: linear-gradient(to right, #351616, #ff3b30);    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.accomplishment-details h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}
.accomplishment-details p {
    color: #555;
}
.accomplishment-details p.date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}
.accomplishment-content {
    display: none;
}

.accomplishment-content.active {
    display: block;
}
/* Coaches Section */
.coaches {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.coach-card {
    background-color: black;
    border-radius: 10px;
    border: 1px solid red;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(172, 24, 24, 0.1);
    transition: transform 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-10px);
}

.coach-image {
    height: 300px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.coach-card:hover .coach-image img {
    transform: scale(1.1);
}

.coach-info {
    padding: 20px;
    text-align: center;
}

.coach-info h3 {
    font-size: 22px;
    margin-bottom: 5px;
    color: #fff;
}

.coach-info h4 {
    font-size: 16px;
    color: #ff3b30;
    margin-bottom: 15px;
}

.coach-bio {
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.coach-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: #f1f1f1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: linear-gradient(90deg, #ff3b30, #b92d1a);
    color: white;
}

/* Testimonials Section */
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.testimonials-slider {
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 20px;
}

.testimonial-content {
    background-color: #e6e6e6;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimonial-content::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 59, 48, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
}

.author-info p {
    font-size: 14px;
    color: #ff3b30;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 10px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background: linear-gradient(90deg, #ff3b30, #9b2e1f);
    transform: scale(1.2);
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: white;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
    background: linear-gradient(90deg, #ff3b30, #e93c11);
    color: white;
}

.prev-btn {
    left: -1px;
}

.next-btn {
    right: -22px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .team-categories, .coaches {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    .testimonial {
        min-width: 95%;
       
    }
   
    
    .accomplishment-tab {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .testimonial-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 0;
    }
    
    .next-btn {
        right: 0;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 28px;
    }
    .testimonial {
        min-width: 87%;
       
    }
    .team-categories, .coaches {
        grid-template-columns: 1fr;
    }
    
    .accomplishment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .accomplishment-icon {
        margin: 0 0 15px 0;
    }
    
    .testimonial-content {
        padding: 20px;
    }
}
