 :root {
            --primary: #1e3a8a;
            --secondary: #dc2626;
            --accent: #2563eb;
            --light: #f8fafc;
            --dark: #0f172a;
            --text: #334155;
            --text-light: #64748b;
        }
        
        /* Hero Section */
        .trainers-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://lh3.googleusercontent.com/gps-cs-s/AC9h4noYZETS0wvTIfhHRtlLeY10r7aEmY3oHbzKA8g9MUlTfrdMFgzMGWtoGFvKDtkrdng39tetBMpbKwOvpyqtDuExACf37iSnwyD2urSlSNCkIXdHucADS1RpU5T8NyAbodGu9RK91Q=s680-w680-h510-rw');
            background-size: cover;
            background-position: center;
            padding: 180px 0 100px;
            text-align: center;
            color: white;
        }
        
        .trainers-hero h1 {
            font-size: 48px;
            margin-bottom: 20px;
        }
        
        .breadcrumb {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }
        
        .breadcrumb a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            position: relative;
        }
        
        .breadcrumb a:not(:last-child)::after {
            content: '/';
            position: absolute;
            right: -15px;
        }
        
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        
        /* Trainers Section */
        .trainers-section {
            padding: 100px 0;
        }
        
        .trainers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .trainer-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .trainer-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .trainer-img {
            height: 350px;
            overflow: hidden;
            position: relative;
        }
        
        .trainer-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .trainer-card:hover .trainer-img img {
            transform: scale(1.1);
        }
        
        .trainer-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--secondary);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 14px;
        }
        
        .trainer-content {
            padding: 25px;
        }
        
        .trainer-content h3 {
            font-size: 24px;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .trainer-content p.specialty {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .trainer-content p.bio {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 15px;
        }
        
        .trainer-social {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .trainer-social a {
            width: 35px;
            height: 35px;
            background-color: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark);
            transition: all 0.3s;
        }
        
        .trainer-social a:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Trainer Details Modal */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 9999;
            overflow-y: auto;
            padding: 50px 0;
        }
        
        .modal-content {
            background-color: white;
            max-width: 900px;
            margin: 0 auto;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background-color: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            border: none;
            font-size: 20px;
        }
        
        .trainer-details {
            display: flex;
            flex-wrap: wrap;
        }
        
        .trainer-details-img {
            flex: 0 0 40%;
            max-width: 40%;
            height: 500px;
            overflow: hidden;
         }
        
        .trainer-details-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .full-width-section {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 40px 20px;
            /* margin-top: 20px; */
            
        }
        .trainer-popup-width{
            display: flex;
            width: 100%;
            justify-content: space-around;
        }
        .half-width-section{
            max-width: 50%;
        }
        /* Adjust stats position */
        .trainer-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            width: 100%;
        }
        
        .trainer-details-content {
            flex: 0 0 60%;
            max-width: 60%;
            padding: 40px;
        }
        
        .trainer-details-content h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .trainer-details-content p.specialty {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 18px;
        }
        
        .trainer-details-content h3 {
            font-size: 22px;
            margin: 30px 0 15px;
            color: var(--dark);
            position: relative;
        }
        
        .trainer-details-content h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        .trainer-details-content p {
            margin-bottom: 15px;
            color: var(--text-light);
            line-height: 1.7;
        }
        
        .trainer-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .stat-item {
            flex: 1;
            min-width: 120px;
            text-align: center;
            padding: 20px;
            background-color: var(--light);
            border-radius: 8px;
        }
        
        .stat-item h4 {
            font-size: 36px;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .stat-item p {
            color: var(--dark);
            font-weight: 600;
        }
        .full-width-section .btn{
                margin-top: 20px;
        }

          /* Responsive adjustments */
        @media (max-width: 768px) {
            .trainer-details-img,
            .trainer-details-content {
                flex: 0 0 100%;
                max-width: 100%;
            }
            
            .trainer-details-img {
                height: 400px;
            }
            
            .full-width-section {
                padding: 45px;
            }
            .half-width-section{
                width: 100%;
                max-width: 100%;
                margin-top: 20px;
            }
            .trainer-popup-width{
                flex-direction: column;
            }
            .trainer-details-content{
                width: 100%;
                max-width: 100%;
            }
            .full-width-section .btn{
                margin-top: 20px;
            }
            
        }
        
        /* CTA Section */
        .cta {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            text-align: center;
        }
        
        .cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        .cta .btn {
            background-color: white;
            color: var(--primary);
            border: transparent;
        }
        
        .cta .btn:hover {
            background-color: var(--light);
            color: var(--dark);
        }
        
        /* Animations */
        .animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .animate.show {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .trainers-hero h1 {
                font-size: 42px;
            }
        }
        
        @media (max-width: 768px) {
            .trainers-hero {
                padding: 150px 0 80px;
            }
            
            .trainers-hero h1 {
                font-size: 36px;
            }
            
            .breadcrumb {
                flex-direction: column;
                align-items: center;
            }
            
            .breadcrumb a {
                margin: 5px 0;
            }
            
            .breadcrumb a:not(:last-child)::after {
                display: none;
            }
            
            .trainer-details {
                flex-direction: column;
            }
            
            .trainer-details-img {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .trainers-hero h1 {
                font-size: 32px;
            }
            
            .trainer-img {
                height: 300px;
            }
            
            .trainer-details-content {
                padding: 25px;
            }
            
            .stat-item {
                min-width: 100px;
                padding: 15px;
            }
            
            .stat-item h4 {
                font-size: 28px;
            }
        }