.hero-section {
    position: relative;
    background: radial-gradient(circle at top left, rgba(255, 92, 0, 0.18), transparent 35%),
                linear-gradient(135deg, #050505, #111111);
    overflow: hidden;
}

.hero-bg-shape {
    position: absolute;
    width: 480px;
    height: 480px;
    background: rgba(255, 92, 0, 0.18);
    border-radius: 50%;
    right: -160px;
    top: 120px;
    filter: blur(20px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 92, 0, 0.12);
    color: #ff5c00;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 92, 0, 0.35);
}

.hero-title {
    font-size: 68px;
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
}

.hero-title span {
    color: #ff5c00;
}

.hero-text {
    color: #b8b8b8;
    font-size: 18px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.btn-main {
    display: inline-block;
    background: #ff5c00;
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(255, 92, 0, 0.35);
    transition: 0.3s;
}

.btn-main:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

.btn-outline-custom {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.btn-outline-custom:hover {
    background: #fff;
    color: #000;
    transform: translateY(-4px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 45px;
    flex-wrap: wrap;
}

.hero-stats h3 {
    color: #fff;
    font-size: 34px;
    font-weight: 700;
}

.hero-stats p {
    color: #b8b8b8;
    margin: 0;
}

.hero-image-box {
    position: relative;
    z-index: 2;
    padding: 25px;
}

.hero-image-box img {
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    padding: 14px 20px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    animation: floatCard 3s infinite ease-in-out;
}

.floating-card i {
    color: #ff5c00;
}

.card-one {
    top: 90px;
    left: 0;
}

.card-two {
    bottom: 90px;
    right: 0;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.section-padding {
    padding: 100px 0;
    background: #070707;
}

.section-title {
    margin-bottom: 55px;
}

.section-title span,
.small-heading {
    margin-top: 12px;
    color: #ff5c00;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2,
.about-content h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin-top: 12px;
}

.section-title p,
.about-content p {
    color: #b8b8b8;
    max-width: 680px;
    margin: 15px auto 0;
    line-height: 1.8;
}

.program-card,
.feature-card {
    background: linear-gradient(180deg, #151515, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 28px;
    height: 100%;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.program-card::before,
.feature-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,92,0,0.18);
    border-radius: 50%;
    right: -40px;
    top: -40px;
    transition: 0.35s;
}

.program-card:hover,
.feature-card:hover,
.program-card.active {
    transform: translateY(-12px);
    border-color: rgba(255,92,0,0.55);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.program-card:hover::before,
.feature-card:hover::before {
    transform: scale(1.5);
}

.program-icon,
.feature-card i {
    width: 70px;
    height: 70px;
    background: rgba(255,92,0,0.14);
    color: #ff5c00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 28px;
    margin-bottom: 25px;
}

.program-card h4,
.feature-card h5 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 15px;
}

.program-card p,
.feature-card p {
    color: #b8b8b8;
    line-height: 1.8;
}

.program-card a {
    color: #ff5c00;
    text-decoration: none;
    font-weight: 800;
}

.about-preview {
    background: linear-gradient(135deg, #0d0d0d, #121212);
}

.about-img-box {
    position: relative;
}

.about-img-box img {
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.experience-box {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: #ff5c00;
    color: #fff;
    padding: 25px;
    border-radius: 24px;
    max-width: 210px;
}

.experience-box h3 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
}

.experience-box p {
    margin: 0;
    color: #fff;
}

.fitness-list {
    padding: 0;
    margin: 25px 0;
    list-style: none;
}

.fitness-list li {
    color: #ddd;
    margin-bottom: 14px;
    font-weight: 600;
}

.fitness-list i {
    color: #ff5c00;
    margin-right: 10px;
}

.cta-section {
    background: #070707;
    padding: 90px 0;
}

.cta-box {
    background: radial-gradient(circle at top, rgba(255,92,0,0.25), transparent 40%),
                linear-gradient(135deg, #171717, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 70px 30px;
    border-radius: 36px;
}

.cta-box h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

.cta-box p {
    color: #b8b8b8;
    max-width: 650px;
    margin: 18px auto 30px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 46px;
    }

    .hero-section {
        padding: 80px 0 40px;
    }

    .section-title h2,
    .about-content h2,
    .cta-box h2 {
        font-size: 34px;
    }

    .floating-card {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 38px;
    }

    .hero-stats {
        gap: 18px;
    }

    .program-card,
    .feature-card {
        padding: 28px;
    }
}

/* about css*/
.about-hero {
    position: relative;
    padding: 150px 0 100px;
    background: radial-gradient(circle at top left, rgba(255,92,0,0.22), transparent 35%),
                linear-gradient(135deg, #050505, #111);
    overflow: hidden;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,92,0,0.12);
    color: #ff5c00;
    padding: 10px 18px;
    border-radius: 40px;
    font-weight: 800;
    border: 1px solid rgba(255,92,0,0.35);
    margin-bottom: 25px;
}

.about-hero h1 {
    color: #fff;
    font-size: 62px;
    line-height: 1.08;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-hero p {
    color: #b8b8b8;
    font-size: 18px;
    line-height: 1.8;
    max-width: 620px;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.about-hero-img {
    position: relative;
    padding: 20px;
}

.about-hero-img img {
    border-radius: 38px;
    box-shadow: 0 35px 90px rgba(0,0,0,0.6);
    transition: 0.4s;
}

.about-hero-img:hover img {
    transform: scale(1.03) rotate(1deg);
}

.coach-card {
    position: absolute;
    left: 0;
    bottom: 45px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.18);
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    animation: coachFloat 3s infinite ease-in-out;
}

.coach-card h3 {
    font-size: 42px;
    font-weight: 700;
    color: #ff5c00;
    margin: 0;
}

.coach-card span {
    color: #fff;
    font-weight: 700;
}

@keyframes coachFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

.coach-story {
    background: #070707;
}

.story-image {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
}

.story-image img {
    border-radius: 34px;
    transition: 0.5s;
}

.story-image:hover img {
    transform: scale(1.08);
}

.coach-story h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
    margin: 15px 0 20px;
}

.coach-story p {
    color: #b8b8b8;
    line-height: 1.8;
}

.story-points {
    margin-top: 30px;
}

.story-point {
    display: flex;
    gap: 18px;
    background: linear-gradient(180deg, #151515, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 22px;
    border-radius: 22px;
    margin-bottom: 18px;
    transition: 0.35s;
}

.story-point:hover {
    transform: translateX(10px);
    border-color: rgba(255,92,0,0.45);
    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

.story-point i {
    min-width: 42px;
    height: 42px;
    background: rgba(255,92,0,0.14);
    color: #ff5c00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.story-point h5 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 6px;
}

.story-point p {
    margin: 0;
}

.fitness-values {
    background: linear-gradient(135deg, #0d0d0d, #121212);
}

.value-card {
    height: 100%;
    background: linear-gradient(180deg, #151515, #0b0b0b);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 38px;
    border-radius: 30px;
    transition: 0.35s;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255,92,0,0.16);
    border-radius: 50%;
    right: -50px;
    top: -50px;
    transition: 0.35s;
}

.value-card:hover,
.value-card.active {
    transform: translateY(-12px);
    border-color: rgba(255,92,0,0.55);
    box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.value-card:hover::before {
    transform: scale(1.7);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: rgba(255,92,0,0.14);
    color: #ff5c00;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    font-size: 30px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.value-card h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    z-index: 1;
}

.value-card p {
    color: #b8b8b8;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.about-stats {
    background: #070707;
    padding: 70px 0;
}

.stats-wrapper {
    background: radial-gradient(circle at top, rgba(255,92,0,0.22), transparent 40%),
                linear-gradient(135deg, #171717, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 34px;
    padding: 45px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-box {
    text-align: center;
    padding: 25px 15px;
    border-radius: 24px;
    transition: 0.35s;
}

.stat-box:hover {
    background: rgba(255,255,255,0.07);
    transform: translateY(-8px);
}

.stat-box h3 {
    color: #ff5c00;
    font-size: 44px;
    font-weight: 700;
}

.stat-box p {
    color: #b8b8b8;
    margin: 0;
    font-weight: 600;
}

.certification-section {
    background: #070707;
}

.expertise-card {
    background: linear-gradient(180deg, #151515, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 35px 20px;
    border-radius: 26px;
    text-align: center;
    transition: 0.35s;
}

.expertise-card:hover {
    transform: translateY(-12px);
    border-color: rgba(255,92,0,0.55);
}

.expertise-card i {
    font-size: 42px;
    color: #ff5c00;
    margin-bottom: 18px;
}

.expertise-card h5 {
    color: #fff;
    font-weight: 800;
    margin: 0;
}

.about-cta {
    background: #070707;
    padding: 80px 0 110px;
}

.about-cta-box {
    background: radial-gradient(circle at top, rgba(255,92,0,0.25), transparent 40%),
                linear-gradient(135deg, #171717, #0d0d0d);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 75px 30px;
    border-radius: 36px;
}

.about-cta-box h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 700;
}

.about-cta-box p {
    color: #b8b8b8;
    max-width: 680px;
    margin: 18px auto 30px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .about-hero h1 {
        font-size: 44px;
    }

    .coach-story h2,
    .about-cta-box h2 {
        font-size: 34px;
    }

    .stats-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .about-hero {
        padding: 120px 0 70px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        padding: 25px;
    }

    .story-point {
        flex-direction: column;
    }
}
