.trainer-card {
    border: none;
    border-radius: 18px;
    padding-top: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    height: 100%;
}

.trainer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.25);
}

.trainer-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: auto;
    border: 4px solid #8400ff;
}

.trainer-card h5 {
    font-weight: 700;
    margin-top: 15px;
}

.role {
    color: #8400ff;
    font-weight: 600;
}

.skills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.skills span {
    background: rgba(132, 0, 255, 0.1);
    color: #8400ff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}
  .card {
        background: linear-gradient(135deg, #0f172a, #020617);
        color: #fff;
        border-radius: 18px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg,
                transparent,
                rgba(0, 255, 255, 0.3),
                transparent);
        transform: translateX(-100%);
        transition: 0.6s;
    }

    .card:hover::before {
        transform: translateX(100%);
    }

    .card:hover {
        transform: translateY(-12px) scale(1.04);
        box-shadow: 0 25px 60px rgba(0, 255, 255, 0.35);
    }

    .card h1 {
        font-size: 3rem;
        margin-bottom: 10px;
        animation: float 3s ease-in-out infinite;
    }

    .card h3 {
        font-weight: 700;
        letter-spacing: 1px;
        margin-bottom: 10px;
    }

    .card p {
        font-size: 0.95rem;
        opacity: 0.85;
        margin-bottom: 6px;
    }

    @keyframes float {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .card:hover {
        animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }

        50% {
            box-shadow: 0 0 35px rgba(0, 255, 255, 0.6);
        }

        100% {
            box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
        }
    }

    body {
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .navbar-toggler {
        border-color: black;
    }

    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    }

    .hero-section {
        background: linear-gradient(135deg, #6c1e34, #7c3d9f, #425ebb);
        overflow: hidden;
    }

    .gradient-text {
        background: linear-gradient(90deg, #ffffff, #ff00c8);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .hero-image {
        border-radius: 20px;
        box-shadow: 0 20px 40px rgb(255, 249, 249);
        transition: transform 0.4s ease;
    }

    .hero-image:hover {
        transform: scale(1.05);
    }

    .hero-text {
        animation: slideRight 1s ease forwards;
    }

    .hero-img {
        animation: slideLeft 1s ease forwards;
    }

    img {
        border-radius: 10px;
    }

    @keyframes slideRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideLeft {
        from {
            opacity: 0;
            transform: translateX(-50px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }

    }

    .col-4 .card {
        height: 100%;
        border-radius: 18px;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        transition: all 0.4s ease;
    }

    .col-4 .card:hover {
        transform: translateY(-12px) scale(1.02);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    }

    .col-4 .card h1 {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 32px;
        box-shadow: 0 8px 20px rgba(0, 162, 255, 0.5);
    }

    .col-4 .card h3 {
        text-align: center;
        font-weight: bold;
    }

    .col-4 .card h2 {
        text-align: center;
        font-size: 42px;
        font-weight: bold;
        margin: 10px 0;
    }

    .col-4 .card h2 p {
        font-size: 14px;
        margin: 0;
        color: #777;
    }

    .col-4 .card p {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 15px;
        margin: 6px 0;
    }

    .col-4 .card button {
        border-radius: 30px;
        font-weight: bold;
        padding: 10px;
        transition: 0.3s;
    }

    .col-4 .card button:hover {
        background-color: #007bff;
        color: #fff;
    }
    .testimonial-card {
    border: none;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.testimonial-text {
    line-height: 1.7;
    font-size: 15px;
}

.testimonial-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #8400ff;
}

.testimonial-profile h6 {
    font-size: 15px;
}

.testimonial-profile small {
    font-size: 13px;
}

.testimonial-profile .badge {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 12px;
}
.cta-section {
    background: linear-gradient(135deg, #8400ff, #5f2cff);
}
.cta-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.cta-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
}
.cta-card p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
}
.cta-btn {
    background: #fff;
    color: #8400ff;
    border: none;
    padding: 14px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}
.cta-btn:hover {
    background: #8400ff;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
