* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
        --primary: #6366f1;
        --secondary: #ec4899;
        --dark: #ffffff;              /* White background */
        --dark-lighter: #f8fafc;      /* Light gray background */
        --text: #0f172a;              /* Dark text */
        --text-soft: #64748b;         /* Medium gray text */
        --gradient: linear-gradient(135deg, #6366f1 0%, #ec4899 100%);
    }

        body {
        font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        background: #f1f5f9;          /* Light background */
        color: var(--text);
        overflow-x: hidden;
    }

        h1, h2, h3 {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 20px;
        }

        /* NAVBAR */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 30px 20px;
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.95);  
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(99, 102, 241, 0.15);
            animation: slideDown 0.5s ease;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .logo {
            font-size: 35px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-links {
            display: flex;
            gap: 35px;
            list-style: none;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
        }

        /* HERO SECTION */
        .about-hero {
            text-align: center;
            padding: 120px 20px 80px;
            position: relative;
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
            pointer-events: none;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.5; }
            50% { transform: translateX(-50%) scale(1.1); opacity: 0.8; }
        }

        .about-hero h1 {
            font-size: 56px;
            font-weight: 800;
            margin-bottom: 20px;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease;
            position: relative;
            z-index: 1;
        }

        .about-hero p {
            font-size: 20px;
            color: var(--text-soft);
            max-width: 600px;
            margin: 0 auto;
            animation: fadeInUp 0.8s ease 0.2s backwards;
            position: relative;
            z-index: 1;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* TRAINERS SECTION */
        .trainers-section {
            padding: 60px 20px 100px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .trainer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
        }

        .trainer-card {
            background: var(--dark-lighter);
            border-radius: 25px;
            padding: 40px;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(99, 102, 241, 0.2);
            animation: fadeInUp 0.6s ease backwards;
        }

        .trainer-card:nth-child(1) { animation-delay: 0.1s; }
        .trainer-card:nth-child(2) { animation-delay: 0.2s; }
        .trainer-card:nth-child(3) { animation-delay: 0.3s; }

        .trainer-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: var(--gradient);
            border-radius: 25px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .trainer-card:hover::before {
            opacity: 1;
        }

        .trainer-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
        }

        .trainer-photo {
            width: 180px;
            height: 180px;
            margin: 0 auto 25px;
            position: relative;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid transparent;
            background: var(--gradient);
            padding: 4px;
            transition: all 0.4s ease;
        }

        .trainer-card:hover .trainer-photo {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
        }

        .trainer-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
            display: block;
        }

        .trainer-card h3 {
            font-size: 26px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--text);
            transition: all 0.3s ease;
        }

        .trainer-card:hover h3 {
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .trainer-card > p {
            color: var(--text-soft);
            font-size: 16px;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .social-icons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .social-icons a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.08);
            border-radius: 50%;
            color: var(--text);
            font-size: 18px;
            transition: all 0.3s ease;
            border: 1px solid rgba(99, 102, 241, 0.2);
            text-decoration: none;

        }

        .social-icons a:hover {
            background: white;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.4);
        }

        .btn {
            display: inline-block;
            background: var(--gradient);
            color: white;
            text-decoration: none;
            padding: 14px 35px;
            font-size: 15px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.5s ease;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
        }

        /* STATS BAR */
        .stats-bar {
            background: var(--dark-lighter);
            padding: 60px 20px;
            margin: 60px 0;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        }

        .stats-bar .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-10px);
        }

        .stat-item h3 {
            font-size: 42px;
            font-weight: 800;
            background: var(--gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .stat-item p {
            color: var(--text-soft);
            font-size: 15px;
        }

        /* FOOTER */
        footer {
            background: var(--dark-lighter);
            padding: 40px 20px;
            text-align: center;
            border-top: 1px solid rgba(99, 102, 241, 0.08);
        }

        footer p {
            color: var(--text-soft);
            font-size: 14px;
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 36px;
            }

            .about-hero p {
                font-size: 16px;
            }

            .nav-links {
                gap: 15px;
                font-size: 14px;
            }

            .trainer-grid {
                grid-template-columns: 1fr;
            }

            .stats-bar .container {
                grid-template-columns: repeat(2, 1fr);
            }
        }