@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;
}

.trainer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.trainer-card h4 {
    color: var(--orange); 
}


/* 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;
}
/* 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;
    }
}