@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: "Poppins", serif;
    font-weight: 300;
}
:root{
    --orange : #ffa500;
}
html{
    scroll-behavior: smooth;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100vh;
}
body{
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}
a{
    text-decoration: none;
    color: black;
}
.btn-a{
    padding: 0.5rem 1rem;
    background-color: white;
    color: black;
    border-radius: 20px;
    font-size: 14px;
    border: none;
    transition: 0.6s;
    cursor: pointer;
}
.btn-a:hover{
    background-color: var(--orange);
    color: white;
}
.orange-btn{
    background-color: var(--orange);
    color: white;
}
.orange-btn:hover{
    background-color: black;
    color: white;
}
.outline-btn{
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.outline-btn:hover{
    background-color: white;
    color: black;
}
.border-btn{
    border-radius: 8px;
    border: 1px solid var(--orange);
    color: var(--orange);
    background-color: rgb(255, 240, 213);
    padding: 0.5rem 1.5rem;
}
h1{
    font-size: 4rem;
    font-weight: 500;
}
h2{
    font-size: 2.5rem;
    font-weight: 700;
}
h3{
    font-weight: 500;
}
h4{
    font-weight: 500;
}



/* WHATSAPP */
.whatsapp{
    z-index: 1000;
    position: fixed;
    bottom: 4%;
    right: 2%;
}
.whatsapp img{
    width: 45px;
}


/* NAVBAR SECTION */
#navbar{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    position: absolute;
    top: 0%;
    left: 0%;
    z-index: 99;
}
.navbar-middle img{
    width: 90px;
}
.navbar-left{
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}
.navbar-left a {
    transition: opacity 0.3s ease;
}

.navbar-left a.hidden {
    opacity: 0;
    pointer-events: none;
}
.navbar-middle{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.navbar-right{
    width: 100%;
    display: flex;
    justify-content: right;
    align-items: center;
}

.navbar-left a{
    color: white;
    font-size: 14px;
}
.navbar-left img{
    width: 20px;
    cursor: pointer;
}
.navbar-left img.close {
    width: 20px;
    cursor: pointer;
}
.nav-items:hover{
    color: var(--orange);
}
#sidebar-menu-icon{
    width: 25px;
    cursor: pointer;
    display: none;
}   
.sidebar{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 80vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.699);
    backdrop-filter: blur(6px);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 100px;
}
.sidebar a {
    color: white;
    font-size: 16px;
}
 
.sidebar img{
    position: absolute;
    left: 6%;
    top: 3%;
    cursor: pointer;
}

/* LANDING SECTION */
.landing-section{
    width: 100%;
    min-height: 100vh;
    background: url("./Images/landing-bg.png");
    background-size: cover;
    background-position: center;
    padding: 3rem 2rem;
    padding-top: 150px;
    display: flex;
    justify-content: space-between;
    color: white;
    position: relative;
    gap: 2rem;
}
.landing-section::before{
    content: "";
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.553);
}
.landing-section-left{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    gap: 2rem;
    position: relative;
}
.landing-section-right{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.landing-section-right img{
    width: 350px;
}
.landing-section-left h1 span{
    font-weight: 500;
    color: var(--orange);
}
.landing-section-content .btn-a{
    display: inline-block;
    margin-top: 1rem;
}
.landing-animation-section{
    width: 150px;
    margin-left: 2rem;
    height: 150px;
    overflow: hidden;
}
.landing-animation-section img{
    width: 240px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    position: absolute;
    /* opacity: 0; */
    transition: opacity 0.5s ease-in-out;
}
.landing-animation-section img:nth-child(1){
    z-index: 10;
}
.landing-animation-section img:nth-child(2){
    transform: translateX(-10px) translateY(10px);
    z-index: 9;
}
.landing-animation-section img:nth-child(3){
    transform: translateX(-20px) translateY(20px);
    z-index: 8;
}

/* SECOND SECTION */
.second-section{
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.second-section-left{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: baseline;
    font-size: 14px;
    transition: 0.5s linear;
    overflow: hidden;
    transition: 0.4s;
}
.second-section-left h2{
    color: var(--orange);
}
.second-section-right{
    display: flex;
    gap: 1.5rem;
    max-width: 600px;
    overflow: hidden;
    transition: 0.5s linear;
}
.second-section-right::-webkit-scrollbar{
    display: none;
}
.yoga-card{
    min-width: 190px;
    height: 320px;
    overflow: hidden;
    background-color: #FEEFDE;
    border-radius: 12px;
}
.yoga-card img{
    width: 100%;
    height: 70%;
    object-fit: cover;
}
.yoga-card p{
    font-size: 8px;
    margin: 0.5rem;
}
.yoga-card h4{
    font-size: 0.8rem;
    margin-left: 0.5rem;
}


.hide-categories{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#hide-categories{
    display: none;
    transition: 0.5s linear;
}

/* APP SECTION */
.app-section{
    padding: 3rem 2rem;
}
.app-section h2{
    text-align: center;
    color: var(--orange);
}
.app-section-bottom{
    margin-top: 3rem;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.app-section-bottom-left img{
    width: 250px;
}
.app-section-bottom-right{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding-left: center;
    gap: 2rem;
}
.app-card{
    padding: 1rem 1.5rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 220px;
    background-color: rgb(237, 237, 237);
    cursor: pointer;
    transition:  all 0.5s linear;
}
.app-card:hover{
    background-color: black;
    color: white;
}
.app-card img{
    width: 30px;
}
.app-card:hover > img{
    filter: invert(100%);
}
.app-card p{
    font-size: 8px;
}
.app-card h4{
    color: var(--orange);
    font-weight: 500;
}




/* COMING SOON SECTION */
.coming-soon-section{
    padding: 5rem 3rem;
    background: url("./Images/landing-bg.png");
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    color: white;
    margin: 3rem 0;
}
.coming-soon-section-content h2 span{
    color: var(--orange);
    font-weight: 500;
}
.coming-soon-section-content h2{
    font-weight: 500;
}
.coming-soon-section-content p{
    max-width: 500px;
    font-size: 14px;
}
.coming-soon-section-button{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}


/* MAP SECTION */
.map-section{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem
}
.map-section-top h2{
    color: var(--orange);
}
.map-section-bottom{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.map-section-bottom img{
    width: 90%;
    max-width: 700px;
}
.map-section-progress{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.progress-card{
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 600px;
}
.progress-card-image img{
    width: 40px;
}
.progress-card-content{
    width: 80%;
}
.progress-bar{
    appearance: none; 
    width: 100%;
    height: 5px;
}

.progress-bar::-webkit-progress-bar {
    background-color: rgb(248, 248, 248);
    border-radius: 5px;
}
.progress-bar::-webkit-progress-value {
    background-color: orange;
    border-radius: 5px;
}

/* HEALTH CALCULATOR */
.health-calculator{
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.section-heading-p{
    background-color: var(--orange);
    color: white;
    letter-spacing: 3px;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-size: 12px;
}
.health-calulator-top{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.health-calulator-top h2{
    color: var(--orange);
}

.health-calulator-bottom{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
.health-calculator-bottom-left , .health-calculator-bottom-right{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.feature-card{
    background-color: rgb(237, 237, 237);
    padding: 0.7rem 1rem;
    border-radius: 6px;
    width: 270px;
}
.feature-card-top{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.feature-card-top img{
    width: 20px;
}
.feature-card-top h4{
    color: var(--orange);
    font-size: 0.8rem;
}
.feature-card-bottom p{
    font-size: 8px;
}
.health-calculator-bottom-center img{
    width: 270px;
}
#featureCard2{
    margin-left: -50px;
}
#featureCard3{
    margin-left: -50px;
}
#featureCard6{
    margin-left: 50px;
}
#featureCard7{
    margin-left: 50px;
}
/* TRAINER SECTION */

.trainer-section {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.trainer-section-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.trainer-section-top-right {
    display: flex;
    gap: 1rem;
}

.trainer-section-top-right img {
    width: 30px;
    cursor: pointer;
}

.trainer-section-top-left h2 {
    color: var(--orange); 
}

.trainer-section-top-left {
    width: 100%;
}

.trainer-section-bottom {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth; 
}

.trainer-section-bottom::-webkit-scrollbar {
    display: none;
}

.trainer-card {
    min-width: 250px;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem 1rem 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}

.trainer-card .trainer-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--orange);
}

.trainer-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.3rem;
    color: #222;
}

.trainer-card h4 {
    color: var(--orange);
    font-size: 0.8rem;
}

.trainer-card .trainer-location {
    font-size: 0.75rem;
    color: #888;
}

.trainer-card .trainer-exp {
    font-size: 0.75rem;
    color: #555;
    background: #fff4e0;
    padding: 2px 10px;
    border-radius: 10px;
}

.trainer-card .trainer-types {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
    margin-top: 0.3rem;
}

.trainer-type-pill {
    font-size: 0.7rem;
    background: rgba(255, 165, 0, 0.1);
    color: var(--orange);
    border: 1px solid rgba(255, 165, 0, 0.25);
    padding: 3px 9px;
    border-radius: 20px;
}

.trainer-book-btn {
    margin-top: 0.8rem;
    background-color: var(--orange) !important;
    color: white !important;
    padding: 8px 22px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.trainer-book-btn:hover {
    background-color: #e69500 !important;
    transform: translateY(-2px);
}

/* Skeleton loader */
.trainer-skeleton {
    min-width: 250px;
    height: 330px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    border-radius: 16px;
}

@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Error state when trainer API fails */
.trainer-error-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 3rem 2rem;
    width: 100%;
    color: #888;
    font-size: 0.9rem;
}

/* View All link next to carousel arrows */
.trainer-view-all {
    font-size: 0.8rem;
    color: var(--orange);
    border: 1px solid var(--orange);
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
    white-space: nowrap;
}

.trainer-view-all:hover {
    background: var(--orange);
    color: white;
}


/* PRICING SECTION */
.pricing-section{
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.pricing-section-top{
    text-align: center;
}
.pricing-section-top h2{
    color: var(--orange);
}
.pricing-section-middle{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pricing-toggle{
    width: 300px;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    background-color: rgb(255, 229, 181);
    position: relative;
}
.toggle{
    width: 150px;
    height: 85%;
    background-color: orange;
    border-radius: 20px;
    position: absolute;
    top: 7%;
    left: 1%;
    transition: all 0.5s linear;
}
.pricing-toggle h4{
    font-weight: 300;
    z-index: 10;
    cursor: pointer;
    transition: all 0.5s linear;
}
.pricing-toggle h4:nth-child(1){
    color: white;
}

.package-section{
    padding: 3rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.package-card{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 2rem;
    color: white;
    border-radius: 8px;
    width: 280px;
    position: relative;
    padding-bottom: 0;
    height: 450px;
}
.package-card:nth-child(1){
    background: linear-gradient(to bottom , #84C0A4 , #53876F);
}
.package-card:nth-child(2){
    background: linear-gradient(to bottom , #FF8846 , #B25929);
    transform: scale(1.1);
    z-index: 10;
    width: 280px;
}
.package-card:nth-child(3){
    background: linear-gradient(to bottom , #CBB085 , #BEA376);
}
.package-card p{
    font-size: 12px;
}
.package-card-bottom{
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    padding-bottom: 3rem;
}
.package-card-bottom-left{
    display: flex;
    flex-direction: column;
    gap:0.51rem;
}
.package-card-bottom-left .btn-a{
    color: #53876F;
    font-size: 12px;
}
.package-card img{
    width: 160px;
    position: absolute;
    bottom: 0%;
    right: 0%;
}

@media screen and (max-width:800px) {
    .package-card img{
        width: 140px;
    }
    .package-card{
        height: 370px;
    }
    .package-section{
        flex-direction: column;
        gap: 1rem;
    }  
    .package-card{
        width: 100%;
    }
    .package-card:nth-child(2){
        transform: scale(1);
        width: 100%;
    }
    .package-card img{
        width: 200px;
    }
}

@media screen and (max-width:550px) {

    .package-card img{
        width: 200px;
    }
    .package-card p{
        font-size: 12px;
    }
    .package-card .btn-a{
        font-size: 14px;
    }
    .package-card h3{
        font-size: 18px;
    }
    .package-card{
        height: 350px;
    }
}
@media screen and (max-width:360px) {
    .package-card img{
        width: 160px;
    }

}





/* FAQ SECTION */
.faq-section{
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
}
.faq-section-left{
    max-width: 550px;
}
.faq-section-left h2{
    margin-top: 1rem;
    color: var(--orange);
}
.faq-container {
    max-width: 550px;
    width: 100%;
    background: white;
    padding: 20px;
    border-radius: 8px;
}

.faq {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f9f9f9;
}

.arrow {
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 15px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq.active .faq-answer {
    max-height: 100px;
    padding: 10px 15px;
    font-size: 12px;
}

.faq.active .arrow {
    transform: rotate(180deg);
}

/* Responsive Design */
@media (max-width: 600px) {
    .faq-container {
        padding: 15px;
    }

    .faq-question {
        padding: 12px;
    }

    .faq-answer {
        padding: 0 12px;
    }
}





/* TESTIMONIAL SECTION */
.testimonial-section{
    padding: 3rem 2rem;
    margin: 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1rem;
    position: relative;
}
.testimonial-section h2{
    color: var(--orange);
}
.testimonial-section p{
    max-width: 500px;
    font-size: 12px;
}
.testimonial-line{
     position: absolute;
     width: 100%;
     z-index: -1;
}
.testimonial-container {
    position: absolute;
    width: 100%;
    height: 100%;
    margin-top: 20px;
}

.testimonial-card {
    position: absolute;
    text-align: center;
}

.testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.testimonial-card img:hover {
    transform: scale(1.1);
}

.testimonial-box {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    padding: 10px;
    background: white;
    color: black;
    font-size: 10px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
}
.testimonial-box p{
    font-size: 9px;
}

.testimonial-card:hover .testimonial-box {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial-container {
        height: 250px;
    }

    .testimonial-box {
        width: 120px;
        font-size: 12px;
    }
}



/* FOOTER SECTION */
footer {
    background: #222;
    color: white;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

/* Upper Section */
.footer-upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1100px;
    margin: 0 auto;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
}

/* Columns */
.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.footer-logo {
    width: 100px;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.1);
}

/* Links */
.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

/* Newsletter */
.newsletter{
    display: flex;
    flex-direction: column;
    align-items: baseline;
}
.newsletter input {
    width: 100%;
    min-width: 200px;
    padding: 8px;
    border: none;
    border-radius: 4px;
    margin-top: 5px;
}
.newsletter .subscribe{
    display: flex;
    background-color: white;
    align-items: center;
    padding: 0rem 0.6rem;
}
.subscribe .btn-a{
    border-radius: 0px;
    border: none;
}
/* Connect With Us (replaces newsletter) */
.footer-connect-tagline {
    font-size: 11px;
    color: rgba(220, 220, 220, 0.7);
    margin-bottom: 1rem;
    line-height: 1.5;
}
.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #25D366;
    color: white !important;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-bottom: 0.5rem;
}
.footer-whatsapp-btn:hover {
    background-color: #1ebe5a;
    transform: translateY(-2px);
}
.footer-whatsapp-btn img {
    width: 18px;
    height: 18px;
    filter: brightness(10);
}
/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 20px auto 0;
    padding-top: 10px;
    font-size: 14px;
    color: #bbb;
}

.footer-bottom a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}
.input-box{
    margin-top: 1rem;
    text-align: left;
}
.input-box p{
    font-size: 10px;
    color: rgba(220, 220, 220, 0.585);
}
.input-box a{
    color: white;
    font-size: 12px;
}


.popup-screen{
    position: fixed;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    z-index: 999;
    padding: 2rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
}
.popup-box{
    padding: 2rem 2rem;
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 6px;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    position: relative;
}
.popup-box::-webkit-scrollbar{
    display: none;
}
.popup-box > img{
    filter: invert(100%);
    position: absolute;
    top: 5%;
    right: 5%;
    cursor: pointer;
}
.popup-box-header{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    width: 100%;
}
.popup-box-header-content{
    max-width: 600px;
}
.popup-box-header h2{
    font-weight: 400;
}
.popup-box-header h2 span{
    color: var(--orange);
    font-weight: 500;
}
.popup-box-header img{
    width: 300px;
}

.popup-box-second-section{
    margin-top: 2rem;
    text-align: center;
    font-size: 14px;
}
.popup-box-third-section{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    place-items: center;
    gap: 1rem;
    margin-top: 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .footer-upper {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .popup-box-header{
       flex-wrap: wrap;
    }
    .popup-box-header-content{
        text-align: center;
    }
   
}


@media screen and (max-width:1100px) {
    .footer-upper{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        place-items: center;
    }
}

@media screen and (max-width:1050px) {
    .feature-card{
        width: 220px;
    }
    .health-calculator-bottom-center img{
        width: 200px;
    }
}
@media screen and (max-width:1000px) {
    .faq-section{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .landing-section-right img{
        width: 250px;
    }
    h1{
        font-size: 3rem;
    }
}
@media screen and (max-width:900px) {
    .landing-section{
        gap: 2rem;
        padding: 3rem 1;
        align-items: center;
    }
    .landing-section-right{
        width: auto;
    }
    .health-calulator-bottom{
        gap: 1rem;
    }
    .feature-card{
        width: 180px;
    }
}
@media screen and (max-width:850px) {
    .pricing-section-bottom{
        flex-wrap: wrap;
        align-items: stretch;
    }
    .second-section-left p{
        font-size: 10px;
    }
}
@media screen and (max-width:800px) {
    .health-calculator{
        padding: 3rem 1rem;
    }
    #featureCard2 , #featureCard3 , #featureCard6 , #featureCard7{
        margin-left: 0;
    }
    #featureCard3{
        margin-left: 0;
    }
    #featureCard1 , #featureCard4{
        transform: translateX(50px);
    }
    #featureCard5 , #featureCard8{
        transform: translateX(-50px);
    }
    .app-card{
        width: 190px;
    }
    .pricing-section-bottom{
        display: grid;
        grid-template-columns: repeat(3,1fr);
        /* place-items: center; */
    }
    .pricing-card{
        width: auto;
    }
    .second-section{
        flex-direction: column;
    }
}
@media screen and (max-width:750px) {
    .landing-section{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 3rem 2rem;
        padding-top: 140px;
    }
    .landing-section-left{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }
    .landing-section-right img{
        width: 300px;
    }
    .landing-animation-section{
        display: none;
    }
    .app-section-bottom{
        flex-direction: column-reverse;
        gap: 3rem;
    }
    .app-card{
        width: 100%;
    }
    html{
        font-size: 80%;
    }
}

@media screen and (max-width:700px) {
    .pricing-card{
        font-size: 10px;
    }
    .pricing-card .btn-a{
        font-size: 8px;
    }
}
@media screen and (max-width:650px) {
    .pricing-section-bottom{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        place-content: center;
    }
}

@media screen and (max-width:600px) {
    .health-calculator{
        padding: 3rem 2rem;
    }
 .health-calulator-bottom{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
 }   
 .health-calculator-bottom-left , .health-calculator-bottom-right{
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
 }
 #featureCard1 , #featureCard4{
    transform: translateX(0px);
}
#featureCard5 , #featureCard8{
    transform: translateX(0px);
}
.feature-card{
    width: 200px;
}
.second-section{
    flex-direction: column;
}
#expand-button{
    display: none;
}
.second-section-right{
    overflow-x: scroll;
}
#testimonialCard5{
    left: 75% !important;
}
.navbar-left{
    display: none;
}
#sidebar-menu-icon{
    display: block;
    width: 100%;
}
.popup-box p{
    font-size: 12px;
}
.popup-box-third-section{
    grid-template-columns: repeat(2,1fr);
}

}


@media screen and (max-width:500px) {
    .feature-card{
        width: 150px;
    }
    .footer-upper{
        grid-template-columns: repeat(1,1fr);
    }
    .newsletter{
        align-items: center;
        text-align: center;
    }
    .newsletter .input-box{
        text-align: center;
    }
    .testimonial-section{
        height: 300px;
    }
    .testimonial-card img{
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width:450px) {
    .landing-section{
        padding-top: 90px;
    }
    .landing-animation-section img{
        width: 250px;
        height: 140px;
    }
    .landing-section-right img{
        width: 250px;
    }
    html{
        font-size: 60%;
    }
    .yoga-card{
        min-width: 170px;
        height: 280px;
    }
    .trainer-card{
        min-width: 220px;
    }
    .trainer-card img{
        height: 260px;
    }
    #testimonialCard4{
        left: 70% !important;
    }
    .navbar-right .btn-a{
        font-size: 10px;
    }
    .navbar-middle img{
        width: 60px;
    }
    .health-calculator-bottom-left{
        gap: 1rem;
    }
    .health-calculator-bottom-right{
        gap: 1rem;
    }
    .yoga-card{
        min-width: 150px;
        height: 230px;
    }
    .yoga-card img{
        height: 150px;
    }
    .app-section-bottom-right{
        display: flex;
        flex-direction: column;
    }
    .app-section-bottom-left img{
        width: 160px;
    }
    .pricing-card  p{
        font-size: 7px;
    }
    .pricing-card{
        max-width: 350px;
        min-width: 300px;
    }
    .pricing-section-bottom{
        display: grid;
        grid-template-columns: repeat(1,1fr);
        place-items: center;
    }
    .popup-box p{
        font-size: 10px;
    }
    .popup-box-header img{
        width: 260px;
    }
    .popup-box > img{
        width: 16px;
    }
}
@media screen and (max-width:350px) {
    .feature-card{
        width: 130px;
    }
}

/* ════════════════════════════════════════
   GROUP PROGRAMS SECTION — marketing redesign
   ════════════════════════════════════════ */
.group-programs-section {
    background: #0f0f0f;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}
.group-programs-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url('./Images/landing-bg.png') center/cover no-repeat;
    opacity: 0.08;
    pointer-events: none;
}
.gp-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

/* ── Header two-column ── */
.gp-header {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3.5rem;
}
.gp-header-left { flex: 1.1; }
.gp-header-right { flex: 1; }

.gp-label {
    display: inline-block;
    background: rgba(255,165,0,.15);
    border: 1px solid rgba(255,165,0,.35);
    color: var(--orange);
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .6px;
    border-radius: 30px;
    padding: 5px 16px;
    margin-bottom: 16px;
}
.gp-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
}
.gp-title span { color: var(--orange); }
.gp-subtitle {
    font-size: .93rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
    max-width: 460px;
    margin-bottom: 28px;
    font-weight: 300;
}
.gp-main-cta {
    display: inline-block;
    padding: .65rem 1.8rem;
    background: var(--orange);
    color: white;
    border-radius: 25px;
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, transform .2s;
}
.gp-main-cta:hover { background: #e09000; transform: translateY(-2px); color: white; }

/* Trust card */
.gp-trust-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}
.gp-trust-stat { text-align: center; }
.gp-trust-num { display: block; font-size: 1.6rem; font-weight: 700; color: var(--orange); }
.gp-trust-lbl { font-size: .73rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .6px; }
.gp-trust-divider { width: 1px; height: 40px; background: rgba(255,255,255,.12); }

/* Feature list */
.gp-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.gp-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: .84rem;
    color: rgba(255,255,255,.75);
    font-weight: 400;
}
.gp-feat-icon { font-size: 1.1rem; }

/* ── Live program cards ── */
.gp-upcoming-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255,255,255,.8);
    margin-bottom: 16px;
}
.gp-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}
.gp-card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    display: flex; flex-direction: column;
}
.gp-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.gp-card .gp-banner { width:100%; height:160px; object-fit:cover; display:block; }
.gp-card .gp-banner-placeholder {
    width:100%; height:160px;
    background: linear-gradient(135deg,#2a1800,#3d2500);
    display:flex; align-items:center; justify-content:center; font-size:2.5rem;
}
.gp-card .gp-body { padding:16px 18px 18px; flex:1; display:flex; flex-direction:column; }
.gp-card .gp-type {
    display:inline-block; background:rgba(255,165,0,.15); color:var(--orange);
    font-size:.7rem; font-weight:600; border-radius:20px; padding:2px 10px; margin-bottom:8px;
}
.gp-card h3 { font-size:.95rem; font-weight:700; color:#f0f0f0; margin-bottom:6px; line-height:1.3; }
.gp-card .gp-desc { font-size:.8rem; color:#888; line-height:1.5; margin-bottom:12px; flex:1; }
.gp-card .gp-meta { display:flex; gap:10px; flex-wrap:wrap; font-size:.76rem; color:#777; margin-bottom:14px; }
.gp-card .gp-meta span { display:flex; align-items:center; gap:4px; }
.gp-card .gp-meta i { color:var(--orange); }
.gp-card .gp-footer { display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(255,255,255,.07); padding-top:12px; }
.gp-card .gp-price { font-size:1.1rem; font-weight:700; color:var(--orange); }
.gp-card .gp-price-free { color:#4caf50; font-weight:700; font-size:1rem; }
.gp-card .gp-enroll {
    padding:6px 16px; background:var(--orange); color:white;
    border-radius:20px; font-size:.8rem; font-weight:600;
    text-decoration:none; transition:background .2s; border:none; cursor:pointer;
}
.gp-card .gp-enroll:hover { background:#e09000; color:white; }
.gp-card .gp-enroll.full { background:#444; color:#888; cursor:not-allowed; }

/* ── Program type tiles ── */
.gp-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.gp-type-tile {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 12px;
    padding: 18px 20px;
    text-decoration: none;
    transition: background .2s, border-color .2s, transform .2s;
    cursor: pointer;
}
.gp-type-tile:hover {
    background: rgba(255,165,0,.1);
    border-color: rgba(255,165,0,.35);
    transform: translateY(-2px);
}
.gp-tile-icon { font-size: 1.6rem; flex-shrink: 0; }
.gp-tile-name { font-size: .88rem; font-weight: 600; color: rgba(255,255,255,.82); flex: 1; }
.gp-tile-arrow { font-size: 1rem; color: var(--orange); opacity: 0; transition: opacity .2s; }
.gp-type-tile:hover .gp-tile-arrow { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 900px) {
    .gp-header { flex-direction: column; gap: 2rem; }
    .gp-header-right { width: 100%; }
    .gp-cards-row { grid-template-columns: repeat(2, 1fr); }
    .gp-types-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .group-programs-section { padding: 3.5rem 0; }
    .gp-features { grid-template-columns: 1fr 1fr; }
    .gp-cards-row { grid-template-columns: 1fr; }
    .gp-types-grid { grid-template-columns: 1fr; }
    .gp-trust-card { padding: 18px; }
    .gp-trust-num { font-size: 1.3rem; }
}
