.section-m {
  margin: 1vw 2vw;         /* Responsive margin based on screen width */
  border-radius: 32px;     /* Slightly smaller by default for all screens */
}

/* Optional: Enhance radius on larger screens */
@media (min-width: 768px) {
  .section-m {
    border-radius: 50px;
  }
}

/**********************************
/***     01. Header Css    ***/
/************************************/

.auth-btns {
    margin-left: 50px;
    display: flex;
    gap: 15px;
}

.auth-btns .btn {
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.auth-btns .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.4);
    background: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--dark-color) 97.92%
    );
    color: var(--white-color);
}

/************************************/
/***     02. PDF Css    ***/
/************************************/

.pdf-container {
    padding: 30px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    margin-top: 75px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pdf-container::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--accent-color),
        transparent
    );
}

.text-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex: 1 1 60%;
    color: var(--white-color);
    gap: 15px;
}

.text-section h2 {
    margin: 0;
    font-weight: 700;
    font-size: 2rem;
    background-image: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--white-color) 97.92%
    );
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.text-section h3 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.pdf-btn {
    margin-top: 20px;
    /* padding: 12px 25px; */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--dark-color) 97.92%
    );
    border: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(var(--accent-color-rgb), 0.3);
}

.pdf-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(var(--accent-color-rgb), 0.4);
}

.img-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.img-wrapper:hover {
    transform: translateY(-5px);
}

.img-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(
        267.43deg,
        rgba(var(--accent-color-rgb), 0.3) 4.95%,
        rgba(var(--dark-color-rgb), 0.3) 97.92%
    );
    z-index: 1;
    transform: scale(1.03);
    pointer-events: none;
}

.img-wrapper img {
    position: relative;
    z-index: 2;
    display: block;
    border-radius: 12px;
    height: 200px;
    width: 140px;
    object-fit: cover;
}

.corner-ribbon {
    position: absolute;
    top: 10px;
    right: -10px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    transform: rotate(5deg);
}

.corner-ribbon-2 {
    position: absolute;
    top: 10px;
    left: -10px;
    background: var(--accent-color);
    color: white;
    padding: 10px 30px;
    font-size: 1.6rem;
    font-weight: bold;
    border-radius: 8px;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    transform: rotate(5deg);
}

/* Animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

.rotate-animate {
    animation: float 4s infinite ease-in-out;
    transform-origin: center;
}

/************************************/
/***     03. About Coach Css    ***/
/************************************/

.about-coach {
    padding: 100px 0;
}

.coach-profile-content {
    height: 100%;
    padding-right: 30px;
}

.coach-stats {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.stats-item {
    width: calc(50% - 15px);
    display: flex;
    align-items: center;
}

.stats-item .stats-circle {
    border: 2px solid transparent;
    background: linear-gradient(
            263deg,
            var(--accent-color) 0.16%,
            var(--dark-color) 99.84%
        )
        border-box;
    border-radius: 50%;
    margin-right: 30px;
    position: relative;
    overflow: hidden;
}

.stats-item .stats-circle h2 {
    font-size: 28px;
    background-color: var(--white-color);
    border: 10px solid var(--secondary-color);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
}

.stats-content {
    width: calc(100% - 140px);
}

.stats-content h3 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-color);
}

.bio-content {
    margin-bottom: 30px;
}

.bio-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 15px;
}

.bio-content h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--dark-color) 97.92%
    );
}

.coaching-approach ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.coaching-approach ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--dark-color);
}

.coaching-approach ul li:last-child {
    margin-bottom: 0;
}

.coaching-approach ul li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: var(--accent-color);
}

.coach-portrait {
    border-radius: 20px;
    height: 100%;
    position: relative;
}

.coach-portrait figure {
    display: block;
    height: 100%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.coach-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1.2;
    transition: transform 0.5s ease;
}

.coach-portrait figure:hover img {
    transform: scale(1.03);
}

.coach-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/************************************/
/***     04. Video Teaser Css    ***/
/************************************/

/* .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

/************************************/
/***     06. Program Sections    ***/
/************************************/

.section-padding {
    padding: 100px 0;
}

/************************************/
/***  07. Transform Section Css   ***/
/************************************/

.transform-section {
    background-color: var(--white-color);
}

.transform-content .section-title h3 {
    color: var(--accent-color);
}

.transform-content .section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.transform-content .section-title p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.transform-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.transform-image img {
    width: 100%;
    height: auto;
    display: block;
}

/************************************/
/***  08. Photos Section Css      ***/
/************************************/

.photos-section {
    background-color: var(--primary-color);
}

.photos-section .section-title h3 {
    color: var(--accent-color);
}

.photos-section .section-title h2 {
    color: var(--white-color);
}

.photos-section .section-title h2 span {
    background-image: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--white-color) 97.92%
    );
}

.photos-content p {
    color: var(--white-color);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

.photo-item {
    margin-bottom: 30px;
}

.photo-item figure {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.photo-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/************************************/
/***  09. Philosophy Section Css  ***/
/************************************/

.philosophy-section {
    background-color: var(--white-color);
}

.philosophy-section .section-title h3 {
    color: var(--accent-color);
}

.philosophy-section .section-title h2 span {
    background-image: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--dark-color) 97.92%
    );
}

.philosophy-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.philosophy-icon i {
    font-size: 22px;
    color: var(--dark-color);
}

.philosophy-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 0;
}

.philosophy-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.philosophy-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.philosophy-content p:last-child {
    margin-bottom: 0;
}

/************************************/
/***  10. Program Section Css     ***/
/************************************/

.program-section {
    background-color: #f8f9fa;
}

.program-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.program-image img {
    width: 100%;
    height: auto;
    display: block;
}

.program-content .section-title h3 {
    color: var(--accent-color);
}

.program-content .section-title h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.program-content .section-title p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
}

.program-included {
    margin-bottom: 30px;
}

.program-included h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-included ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-included ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-color);
    font-size: 16px;
}

.program-included ul li:last-child {
    margin-bottom: 0;
}

.program-included ul li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

/************************************/
/***  11. Philosophy Section      ***/
/************************************/

.philosophy-section {
    background-color: var(--white-color);
}

.philosophy-content {
    background-color: var(--white-color);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.philosophy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.philosophy-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--text-color);
}

.philosophy-list li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

.philosophy-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/************************************/
/***  12. Program Details Section ***/
/************************************/

.program-details-section {
    background-color: var(--primary-color);
}

.program-details-section .section-title h3 {
    color: var(--accent-color);
}

.program-details-section .section-title h2 {
    color: var(--white-color);
}

.program-details-section .section-title h2 span {
    background-image: linear-gradient(
        267.43deg,
        var(--accent-color) 4.95%,
        var(--white-color) 97.92%
    );
}

.program-feature {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.program-feature:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: rgba(var(--accent-color-rgb), 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 20px;
    color: var(--secondary-color);
}

.program-feature h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.program-feature p {
    color: var(--text-color);
}

.program-outcomes {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.program-outcomes h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-outcomes ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.program-outcomes ul li {
    width: calc(50% - 8px);
    position: relative;
    padding-left: 30px;
    color: var(--text-color);
}

.program-outcomes ul li:before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
}

/************************************/
/***      13. CTA Section         ***/
/************************************/

.cta-section {
    padding: 80px 0;
    background-color: transparent;
}

.cta-box {
    background-color: transparent;
    padding: 40px;
    border-radius: 20px;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 0;
}

/************************************/
/***      Video Section          ***/
/************************************/

.video-section {
    background-color: var(--white-color);
}

.video-section .section-title h3 {
    color: var(--accent-color);
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    background: linear-gradient(
        263deg,
        var(--accent-color) 0.16%,
        var(--dark-color) 99.84%
    );
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-wrapper-program {
    width: 100%;
    aspect-ratio: 9 / 16;                /* Portrait display */
    max-width: 424px;
    overflow: hidden;
    border-radius: 16px;
    background-color: #fff;
    margin: 0 auto;
    position: relative;
}

.video-wrapper-program video {
    width: 100%;
    height: 100%;
    object-position: center center;
    filter: contrast(1.05) brightness(1.05);
    border-radius: 16px;
    display: block;
}




.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button svg {
    width: 48px;
    height: 48px;
    fill: white;
}

/* Remove the duplicate play button styles */
.play-button:before {
    display: none;
}

.footer-section {
    background-color: var(--primary-color); /* Black background */
    color: #fff; /* White text */
    padding: 20px 0;
    font-size: 14px;
}

.footer-text {
    margin: 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/************************************/
/***     Responsive Css    ***/
/************************************/

@media screen and (max-width: 991px) {
    .auth-btns {
        margin-left: 20px;
        order: 1; /* Ensure buttons appear in the right order */
    }

    .auth-btns .btn {
        font-size: 16px;
        padding: 6px 15px;
    }

    .about-coach {
        padding: 70px 0;
    }

    .coach-profile-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .coach-portrait {
        height: 500px;
        margin-left: 0;
    }

    .stats-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .stats-item:last-child {
        margin-bottom: 0;
    }

    .stats-item .stats-circle h2 {
        width: 90px;
        height: 90px;
        font-size: 24px;
    }

    .bio-content h3 {
        font-size: 20px;
    }

    .coaching-approach ul li {
        font-size: 16px;
    }

    .transform-content,
    .program-content {
        margin-bottom: 40px;
    }

    .philosophy-item {
        margin-bottom: 20px;
    }

    .philosophy-image {
        margin-top: 30px;
    }

    .program-outcomes ul li {
        width: 100%;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
    .play-button svg {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 769px) {
    .pdf-container {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 30px;
    }

    .text-section {
        align-items: center;
        text-align: center;
    }

    .img-wrapper img {
        height: 180px;
        width: 120px;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }
}
@media screen and (max-width: 767px) {
    .auth-btns {
        margin-left: 15px;
        gap: 10px;
    }

    .auth-btns .btn {
        font-size: 14px;
        padding: 5px 12px;
    }

    .about-coach {
        padding: 50px 0;
    }

    .coach-portrait {
        height: 400px;
    }

    .stats-item .stats-circle h2 {
        width: 80px;
        height: 80px;
        font-size: 20px;
        border-width: 8px;
    }

    .stats-content h3 {
        font-size: 16px;
    }

    .bio-content h3 {
        font-size: 18px;
    }

    .coaching-approach ul li {
        font-size: 15px;
        padding-left: 30px;
    }

    .coach-badge {
        bottom: 20px;
        left: 20px;
        font-size: 12px;
    }

    .transform-content .section-title h2,
    .program-content .section-title h2 {
        font-size: 36px;
    }

    .philosophy-content {
        padding: 25px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-box {
        padding: 30px;
    }

    .video-wrapper {
        padding-bottom: 75%; /* 4:3 aspect ratio for mobile */
    }
    .play-button {
        width: 60px;
        height: 60px;
    }

    .play-button:before {
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
        border-left: 20px solid var(--white-color);
    }
}
