/* Main Styles */
:root {
    --primary-color: #4D4D4D;
    /* Green for Health Reservoir text */
    --secondary-color: #029732;
    --button-color: #2E8B57;
    --accent-color: #F36809;
    /* Orange for active nav item */
    --nav-text-color: #4D4D4D;
    /* Dark gray for nav items */
    --green-text-color: #59983E;
    --ul-title-color: #7a7a7a;
}

.green-text {
    color: #59983E;
}

.secondary-text {
    color: var(--secondary-color);
}

/* @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap'); */

body {
    font-family: 'Poppins', sans-serif;
    padding-top: 110px;
    background: #F8F8F8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Rajdhani', sans-serif;
}

p {
    font-family: 'Poppins', sans-serif;
    color: var(--primary-color);
    font-size: 16px;
    line-height: 32px;
}

.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.btn-primary {
    background-color: var(--secondary-color);
    border: none;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

#return-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.7);
    width: 50px;
    height: 50px;
    display: block;
    text-decoration: none;
    -webkit-border-radius: 35px;
    -moz-border-radius: 35px;
    border-radius: 35px;
    display: none;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 99;
}

#return-to-top i {
    color: #fff;
    margin: 0;
    position: relative;
    left: 16px;
    top: 13px;
    font-size: 19px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#return-to-top:hover {
    background: rgba(0, 0, 0, 0.9);
}

#return-to-top:hover i {
    color: #fff;
    top: 5px;
}

@media(min-width:1280px) {
    .container {
        max-width: 1210px;
    }
}

section.breadcrumb-section {
    padding: 30px 0px;
}

li.breadcrumb-item,
li.breadcrumb-item a {
    font-size: 22px;
    color: var(--primary-color);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-decoration: none;
}

li.breadcrumb-item.active {
    color: var(--accent-color);
}

li.breadcrumb-item:not(:first-child)::before {
    content: "\f105";
    font: normal normal normal 24px / 1 FontAwesome;
    line-height: 34px;
}

/* Logo Styles */
.navbar-brand {
    display: flex;
    align-items: center;
}

/* Navigation Styles */
.navbar {
    background-color: white !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}

/* Sticky Header Effect */
.navbar.sticky {
    padding: 10px 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.sticky .navbar-brand img {
    height: 60px;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .nav-link {
    color: var(--nav-text-color) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 26px !important; 
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar .nav-link.active {
    background-color: var(--accent-color);
    color: white !important;
    border-radius: 50px;
}


/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 60px 0px;
    /* border-radius: 30px;
    background: linear-gradient(45deg, rgba(46, 139, 87, 0.1), rgba(255, 152, 0, 0.1)); */
}

    .hero-section .carousel-inner {
        border-radius: 80px;
        max-height: 445px;
    }

.welcome-text {
    font-size: 66px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #fff;
    text-shadow: 0px 4px 6px #FF8A0073;
    letter-spacing: -2px;
}

.tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color: #fff;
    margin-top: -6px;
    margin-bottom: 0px;
}

.phone-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #fff;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 22px;
    margin: 40px 0px;
    transition: all 0.3s ease;
    font-family: "Inter", sans-serif;
    min-width: 240px;
}

.phone-button:hover {
    background-color: #008B44;
    color: white;
    transform: translateY(-2px);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 19px;
    margin-bottom: 30px;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #fff;
}

    .social-icon:hover {
        transform: translateY(-3px);
        color: white;
    }


/* Types of Diets Section */
.diets-section {
    padding: 50px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    /* background-image: url('assets/images/dot_line.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden; */
    border-radius: 50px;
}

.section-title {
    margin-bottom: 20px;
}

.section-title h2 {
    font-size: 62px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0px;
}

.section-title .highlight, .highlight {
    color: var(--accent-color);
}

.section-title .green_highlight, .green_highlight {
    color: #59983E;
}

.diets-section::before,
.diets-section::after {
    width: 100%;
    height: 100%;
}

.diets-section::before,
.diets-section::after,
.diets-section .leaf-top-right,
.diets-section .leaf-bottom-left {
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

.diets-section .leaf-top-right,
.diets-section .leaf-bottom-left {
    width: 150px;
    height: 150px;
}

.diets-section::before {
    top: 50px;
    background-image: url('../assets/images/Vector1.png');
    background-position: right;
    background-size: auto;
}

.diets-section::after {
    top: 0px;
    background-image: url('../assets/images/Vector2.png');
    background-position: right;
    background-size: auto;
}

.diets-section .leaf-bottom-left {
    top: 0px;
    left: 50px;
    background-image: url('../assets/images/bg_before.png');
    transform: rotate(0deg);
}

.diets-section .leaf-top-right {
    bottom: 0px;
    right: 0px;
    background-image: url('../assets/images/bg_before.png');
    transform: rotate(180deg);
}

/* Owl Carousel Custom Styles */
.diet-carousel {
    padding: 0px 10px;
}

.owl-carousel.diet-carousel .owl-nav {
    display: inline-block;
}

.diet-carousel .owl-stage-outer {
    padding: 20px 0;
}

.diet-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .diet-card:hover {
        transform: translateY(-5px);
    }

.diet-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

#diets .diet-image {
    height: 280px;
}

.diet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Owl Carousel Navigation Styles */
.diet-carousel .owl-nav .owl-prev,
.diet-carousel .owl-nav .owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50% !important;
    background: #59983E !important;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.diet-carousel .owl-nav .owl-prev {
    left: -80px;
}

.diet-carousel .owl-nav .owl-next {
    right: -80px;
}

.diet-carousel .owl-nav div span {
    font-size: 24px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}

.diet-carousel .owl-nav div:hover {
    background: #029732 !important;
}

    .diet-carousel .owl-nav div:hover span {
        color: #fff;
    }

/* Owl Carousel Dots Styles */
.diet-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
}

    .diet-carousel .owl-dots .owl-dot {
        width: 10px;
        height: 10px;
        margin: 0 5px;
        border-radius: 50%;
        background: #ddd;
        transition: all 0.3s ease;
    }

        .diet-carousel .owl-dots .owl-dot.active {
            background: #F76707;
            transform: scale(1.2);
        }


/* Services Section Styles */
.services-section {
    padding: 80px 0px;
    position: relative;
}

    .services-section .section-title {
        margin-bottom: 8px;
    }

.service-row .col-md-6 {
    margin-top: 98px;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 188px;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: transparent;
    }

.service-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute;
    top: -65px;
}

.service-card.green {
    border: 1px solid var(--secondary-color);
}

.service-card.orange {
    border: 1px solid var(--accent-color);
}

.service-icon img {
    object-fit: contain;
}

.service-card h3 {
    font-size: 24px;
    line-height: 33px;
    font-weight: 500;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    margin-top: 40px;
}

.service-card.green h3 {
    color: var(--secondary-color);
}

.service-card.orange h3 {
    color: var(--accent-color);
}


/* Books Section Styles */
#books {
    position: relative;
    /* overflow: hidden; */
    padding-bottom: 30px;
}

    #books::before {
        content: '';
        background: url(../assets/images/bottom_flyline.png) no-repeat;
        background-size: contain;
        position: absolute;
        width: 100%;
        height: 100%;
        display: block;
        bottom: 0px;
        margin: auto;
        z-index: 1;
        background-position: center bottom;
    }

.books-section {
    margin: 48px 0;
    background-color: #fff;
    position: relative;
    border-radius: 50px;
    box-shadow: 0px 4px 34px 0px #F973161A;
    padding: 44px 118px 50px;
    overflow: hidden;
}

.topright_bg {
    background: url(../assets/images/top_flyline.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 0px;
    width: 90%;
    height: 30%;
    background-position: top right;
}

.books-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 146px;
    height: 146px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 1;
    transform: translate(40%, -50%);
}

.books-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 192px;
    height: 192px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 1;
    transform: translate(12%, 53%);
}
.signature-line[contenteditable]:empty::before {
    content: "Type your full name";
    color: #888;
    font-style: italic;
}

.signature-input {
    border: none;
    border-bottom: 1px solid #000;
    font-family: inherit;
    font-size: inherit;
    padding: 2px 6px;
    width: 200px;
    outline: none;
    background: transparent;
    margin: 0 4px;
}


.books-section .section-title h2 {
    font-size: 50px;
}

.books-section .section-title {
    margin-bottom: 36px;
}

.books-section .subtitle {
    font-size: 21px;
    color: var(--primary-color);
    font-weight: 300;
}

.book-card {
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    padding: 28px
}

    .book-card::before {
        content: '';
        border: 1px solid var(--accent-color);
        position: absolute;
        width: 100%;
        height: 89%;
        display: block;
        border-radius: 21px;
        top: 0px;
        left: 0px;
        right: 0px;
        margin: auto;
        z-index: -1;
    }

.book-image {
    width: 398px;
    height: 313px;
    margin: auto;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

    .book-image img {
        max-width: 100%;
        height: auto;
        border-radius: 20px;
    }

.book-content h3 {
    font-size: 22px;
    color: var(--accent-color);
    margin-bottom: 0px;
    font-weight: 700;
}

.book-content p {
    font-size: 16px;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 22px;
}

.btn-buy {
    background-color: var(--accent-color);
    color: white;
    padding: 15px 24px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
}

    .btn-buy:hover {
        background-color: var(--secondary-color);
        color: white;
        transform: translateY(-2px);
    }

    .btn-buy i {
        margin-right: 8px;
    }

/* Books Carousel Navigation */
.books-carousel .owl-nav {
    margin-top: 30px;
    text-align: center;
}

    .books-carousel .owl-nav .owl-prev,
    .books-carousel .owl-nav .owl-next {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: var(--accent-color) !important;
        margin: 0 10px;
        transition: all 0.3s ease;
    }

    .books-carousel .owl-nav div span {
        color: white;
        font-size: 24px;
        line-height: 1;
    }

    .books-carousel .owl-nav div:hover {
        background: var(--secondary-color) !important;
        transform: translateY(-2px);
    }


/* Global Work Section Styles */
.global-work-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.global-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .global-image img {
        max-width: 100%;
        height: auto;
        animation: float 3s ease-in-out infinite;
    }

.global-content {
    padding-left: 30px;
}

    .global-content h2 {
        margin-bottom: 30px;
    }

        .global-content h2 .highlight {
            color: var(--accent-color);
        }

    .global-content p {
        font-size: 18px;
        line-height: 1.8;
        color: var(--primary-color);
        margin-bottom: 13px;
    }

    .global-content .whatsapp-text {
        color: var(--secondary-color);
        font-weight: 600;
    }

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Process Steps Section Styles */
.process-steps-section {
    position: relative;
    padding-bottom: 100px;
}

    .process-steps-section::before {
        content: '';
        background: url(../assets/images/bg_logo.png) no-repeat;
        background-size: 180px;
        position: absolute;
        width: 100%;
        height: 100%;
        bottom: -90px;
        background-position: bottom right;
    }

.step-box {
    position: relative;
    padding: 0 10px;
    margin-bottom: 6px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: 1;
}

.step-box.green .step-number {
    background-color: var(--secondary-color);
}

.step-box.orange .step-number {
    background-color: var(--accent-color);
}

.step-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 50px;
    height: 100%;
    text-align: center;
    max-height: 360px;
}

.step-box.green .step-content {
    border: 1px solid var(--secondary-color);
}

.step-box.orange .step-content {
    border: 1px solid var(--accent-color);
}

.step-content h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    margin-bottom: 20px;
}

.step-box.green .step-content h3 {
    color: var(--secondary-color);
}

.step-box.orange .step-content h3 {
    color: var(--accent-color);
}

.step-content p {
    font-size: 20px;
    line-height: 2;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.step-content .highlight-number {
    color: var(--secondary-color);
    font-weight: 600;
}


/* Testimonials Section Styles */
.testimonials-section {
    position: relative;
    padding-bottom: 40px;
}

    .testimonials-section::before,
    .testimonials-section::after,
    .clinical-section::before,
    .clinical-section::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 150px;
        background-size: auto;
        background-repeat: no-repeat;
    }

    .testimonials-section::before,
    .clinical-section::before {
        top: 150px;
        background-image: url('../assets/images/top_qutotes.png');
        background-position: top left;
        background-size: auto;
    }

    .testimonials-section::after,
    .clinical-section::after {
        bottom: 0px;
        background-image: url('../assets/images/bottom_qutotes.png');
        background-position: bottom right;
        background-size: auto;
    }

    .testimonials-section .section-title h2 {
        font-size: 62px;
        font-weight: 700;
        color: var(--secondary-color);
        margin-bottom: 50px;
    }

.testimonial-block {
    position: relative;
    background: #fff;
    border-radius: 50px;
    padding: 32px;
    width: 480px;
    margin: 0px auto;
}

.testimonials-section .col-lg-6:first-child .testimonial-block {
    margin-right: 10px;
}

    .testimonials-section .col-lg-6:first-child .testimonial-block .testimonial-item img {
        border: 1px solid var(--accent-color);
    }

.testimonials-section .col-lg-6:last-child .testimonial-block {
    margin-left: 10px;
}

    .testimonials-section .col-lg-6:last-child .testimonial-block .testimonial-item img {
        border: 1px solid var(--secondary-color);
    }

.testimonial-block h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

.orange-title {
    color: var(--accent-color);
}

.green-title {
    color: var(--secondary-color);
}

.testimonial-carousel {
    position: relative;
}

.testimonial-item {
    border-radius: 20px;
    overflow: hidden;
}

.testimonial-item img {
    width: 100%;
    height: auto;
    border-radius: 28px;
    max-height:416px;
}

.owl-nav {
    display: flex;
    gap: 10px;
    margin-top: 28px;
}

.owl-carousel.owl-theme .owl-nav div {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    font-size:inherit;
}

.owl-carousel.success-stories .owl-nav div {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    margin-right: 12px;
}

.owl-carousel.client-testimonials .owl-nav div {
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    margin-right: 12px;
}

.owl-carousel.success-stories .owl-nav div:hover {
    background: var(--accent-color);
    color: #fff;
}

.owl-carousel.client-testimonials .owl-nav div:hover {
    background: var(--secondary-color);
    color: #fff;
}

.owl-nav div:hover {
    transform: translateY(-2px);
}

.btn-view-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 14px;
    position: absolute;
    right: 30px;
    bottom: 32px;
    z-index: 1;
}

    .btn-view-more.orange {
        border: 1px solid var(--accent-color);
        color: var(--accent-color);
    }

        .btn-view-more.orange:hover {
            background: var(--accent-color);
            color: #fff;
        }

    .btn-view-more.green {
        border: 1px solid var(--secondary-color);
        color: var(--secondary-color);
    }

        .btn-view-more.green:hover {
            background: var(--secondary-color);
            color: #fff;
        }

    .btn-view-more:hover {
        transform: translateY(-2px);
    }

    .btn-view-more i {
        font-size: 16px;
    }

/* Share Problem Section Styles */
.share-problem-section {
    padding: 25px 0;
    position: relative;
    margin: 40px 0;
}

.share-problem-wrapper {
    background: url(../assets/images/form_bg.png) no-repeat #fff;
    background-size: cover;
    background-position: center center;
    border-radius: 30px;
    padding: 40px;
    position: relative;
    border: 1px solid var(--secondary-color);
    overflow: hidden;
}

.logo-container {
    text-align: center;
    margin-bottom: 15px;
}

    .logo-container img {
        max-width: 300px;
        height: auto;
    }

.share-content {
    max-width: 600px;
    margin: 0 auto;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--accent-color);
    color: #fff;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 28px;
    font-family: 'Inter', sans-serif;
}

    .share-button:hover {
        background-color: var(--secondary-color);
        color: #fff;
        transform: translateY(-2px);
    }

.share-description {
    font-size: 18px;
    color: #000;
    margin-bottom: 0px;
    line-height: 28px;
    font-weight: 300;
}


/* Success Stories Section Styles */
.success-stories-section {
    padding: 15px 0;
    position: relative;
}

    .success-stories-section .success-stories-carousel::before,
    .success-stories-section .success-stories-carousel::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-size: initial;
        background-repeat: no-repeat;
        border-radius: 72px;
        z-index: -2;
    }

    .success-stories-section .success-stories-carousel::before {
        background-image: url('../assets/images/storie_left.png');
        background-position: bottom left;
        bottom: 0px;
        left: 0px;
    }

    .success-stories-section .success-stories-carousel::after {
        background-image: url('../assets/images/storie_right.png');
        background-position: bottom right;
        top: 0px;
        right: 0px;
        background-size: contain;
    }

    .success-stories-section .section-title {
        margin-bottom: 25px;
    }


    .success-stories-section .highlight {
        color: var(--accent-color);
    }

.success-stories-carousel {
    position: relative;
    background: #fff;
    padding: 60px;
    border-radius: 72px;
}

.story-item {
    text-align: center;
}

.story-image {
    position: relative;
    margin: auto;
    margin-bottom: 10px;
    width: 100%;
    height: 340px;
    border-radius: 28px;
    overflow: hidden;
}

.story-video {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    object-fit: contain;
    background: #000;
    transition: all 0.3s ease;
}

    /* Add styles for playing state */
    .story-video.playing {
        object-fit: contain;
    }

/* Style for the poster */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
    z-index: 1;
}

    .video-poster.hidden {
        opacity: 0;
        pointer-events: none;
    }

.play-btn,
.expand-btn {
    position: absolute;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.play-btn {
    background: transparent;
}

.play-btn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.expand-btn {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #ffffff;
}

    .play-btn i,
    .expand-btn i {
        color: var(--accent-color);
        transition: all 0.3s ease;
    }

.play-btn i {
    font-size: 30px;
    margin-left: 5px;
}

.expand-btn i::before {
    content: url(../assets/images/expand.png);
}

.play-btn.playing i {
    margin-left: 0;
}

.play-btn i.fa-play::before {
    content: url(../assets/images/play.png);
}

.play-btn i.fa-pause::before {
    content: url(../assets/images/pause.png);
}

.story-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0;
    text-align: center;
    line-height: 40px;
    margin-top: 12px;
}

.success-stories-carousel .owl-stage-outer {
    z-index: 2;
}

.success-stories-carousel .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 20px;
    width: 100%;
    position: absolute;
    right: 0px;
    left: 0px;
    margin: auto;
    top: 0px;
    bottom: 0px;
}

.success-stories-carousel.owl-carousel .owl-nav div {
    width: 61px;
    height: 61px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: #fff;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    top: 0px;
    position: absolute;
    bottom: 0px;
    margin: auto;
    font-size: inherit;
}

.success-stories-carousel .owl-nav .owl-prev {
    left: -30px;
}

.success-stories-carousel .owl-nav .owl-next {
    right: -30px;
}

.success-stories-carousel.owl-carousel .owl-nav div:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Video Modal Styles */
.video-modal .modal-content {
    background-color: transparent;
    border: none;
}

.video-modal .modal-body {
    padding: 0;
    position: relative;
}

.video-modal .video-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

    .video-modal .video-container video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.video-modal .btn-close {
    position: absolute;
    right: -30px;
    top: -30px;
    background-color: #fff;
    opacity: 1;
    padding: 10px;
    z-index: 1;
}

/* Workshop Section Styles */
.workshop-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .workshop-section .container-fluid {
        max-width: 1420px;
    }

    .workshop-section::before {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background-size: initial;
        background-repeat: no-repeat;
        background-image: url('../assets/images/bot_fly.png');
        background-position: top right;
        top: -55px;
        right: 0px;
    }

    .workshop-section .section-title {
        margin-bottom: 50px;
        text-align: left;
        position: relative;
    }

        .workshop-section .section-title h2 {
            margin-bottom: 16px;
        }

    .workshop-section .subtitle {
        color: #000;
        font-size: 22px;
        max-width: 700px;
        line-height: 1.6;
        font-weight: 300;
    }

.workshop-item {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    padding: 34px;
    transition: all 0.3s ease;
    border: 1px solid var(--secondary-color);
    position: relative;
    z-index: 1;
    /* width: 440px; */
    width: 100%;
    margin: 10px -1px;
}

    .workshop-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

.workshop-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 28px;
}

    .workshop-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.workshop-content {
    padding-top: 30px;
    text-align: left;
}

    .workshop-content h3 {
        font-size: 31px;
        font-weight: 700;
        margin-bottom: 5px;
        color: var(--primary-color);
        line-height: 1.3;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .workshop-content p {
        font-size: 16px;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: 300;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.view-gallery {
    display: inline-flex;
    align-items: center;
    background: var(--green-text-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 50px;
}

    .view-gallery i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .view-gallery:hover {
        background: var(--secondary-color);
        color: #fff;
    }

        .view-gallery:hover i {
            transform: translateX(5px);
        }

.workshop-carousel.owl-carousel .owl-nav,
.clinical-carousel.owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    top: -80px;
    position: absolute;
    z-index: 1;
    right: 0px;
    margin-top: 0px;
}

    .workshop-carousel.owl-carousel .owl-nav div,
    .clinical-carousel.owl-carousel .owl-nav div {
        width: 61px;
        height: 61px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid var(--green-text-color);
        color: var(--green-text-color);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 20px;
    }

    .workshop-carousel.owl-carousel .owl-nav .owl-prev:hover,
    .workshop-carousel.owl-carousel .owl-nav .owl-next:hover,
    .clinical-carousel.owl-carousel .owl-nav .owl-prev:hover,
    .clinical-carousel.owl-carousel .owl-nav .owl-next:hover {
        background: var(--green-text-color);
        color: #fff;
    }


/* Meet Our Founder Section Styles */
.founder-section {
    padding: 68px 0;
    position: relative;
    background: rgb(9 243 18 / 3%);
    border-radius: 72px;
}

.bg_beforeAfter {
    position: relative;
}

    .founder-section::before,
    .bg_beforeAfter::before,
    .bg_beforeAfter::after {
        content: '';
        position: absolute;
        bottom: -25px;
        left: 0;
        width: 220px;
        height: 220px;
        background: url('../assets/images/footer_fly.png') no-repeat;
        background-size: contain;
        background-position: bottom left;
        opacity: 0.1;
        transform: rotate(-50deg);
        z-index:-1;
    }

    .bg_beforeAfter::after {
        top: 0px;
        right: 0px;
        left: inherit;
        bottom: initial;
        background: url('../assets/images/bg_logo.png') no-repeat;
        background-size: contain;
        background-position: top right;
        opacity: 1;
        transform: rotate(0deg);
        z-index: -1;
    }

.founder-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 120px;
    background: url('../assets/images/bg_before.png') no-repeat;
    background-size: contain;
    background-position: 55% 50%;
}

.founder-section h2 {
    margin-bottom: 20px;
}

.quote-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 18px;
    line-height: 1.4;
}

    .quote-text .orange-text {
        color: var(--accent-color);
        font-weight: 600;
    }

.founder-description,
.founder-description p {
    font-size: 17px;
    line-height: 30px;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 400;
}

    .founder-description p {
        font-size: 18px;
        margin-bottom: 10px;
    }

.read-more {
    display: inline-flex;
    align-items: center;
    background: var(--green-text-color);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .read-more i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .read-more:hover {
        background: var(--secondary-color);
        color: #fff;
    }

        .read-more:hover i {
            transform: translateX(5px);
        }

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--green-text-color);
    color: var(--green-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

    .social-link:hover {
        transform: translateY(-3px);
    }

.founder-image {
    position: relative;
    text-align: center;
    background: #fff;
    padding: 24px;
    border-radius: 28px;
    width: 385px;
    margin: auto;
}

    .founder-image::before {
        content: '';
        position: absolute;
        top: 104px;
        right: -110px;
        width: 129px;
        height: 129px;
        background: url(../assets/images/bg_before.png) no-repeat;
        background-size: contain;
        background-position: center right;
        transform: rotate(-90deg);
        z-index: -1;
    }

    .founder-image::after {
        content: '';
        position: absolute;
        bottom: 132px;
        left: -40px;
        width: 113px;
        height: 113px;
        border-radius: 50%;
        border: 1px solid var(--secondary-color);
        z-index: -1;
    }

    .founder-image img {
        max-width: 100%;
        height: auto;
        border-radius: 28px;
        margin-bottom: 20px;
    }

.founder-name {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color);
    text-align: center;
    margin: 10px 0px;
}

.dot_spot {
    display: block;
    position: absolute;
    width: 19px;
    height: 19px;
    background: var(--secondary-color);
    border-radius: 50%;
}

    .dot_spot.dot_top {
        top: 50px;
        left: -40px;
    }

    .dot_spot.dot_bottom {
        bottom: 128px;
        right: -50px;
    }

/* Our Team Section Styles */
.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .team-section .section-title {
        margin-bottom: 0px;
    }

    .team-section .orange-text {
        color: var(--accent-color);
    }

.team-grid {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
}

    .team-grid::before,
    .team-grid::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 260px;
    }

    .team-grid::before {
        background: url(../assets/images/team_bgicon.png) no-repeat;
        background-position: 28% 50%;
    }

    .team-grid::after {
        background: url(../assets/images/team_bgicon.png) no-repeat;
        background-position: 70% -24%;
        bottom: 0px;
        top: auto;
        transform: scaleY(-1);
    }

.team-line {
    position: absolute;
    top: 0px;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: url(../assets/images/ourteam_bgline.png) no-repeat;
    background-size: contain;
    background-position: center center;
}

.team-item {
    position: relative;
    z-index: 1;
}

    .team-item.small {
        position: relative;
        top: 50px;
    }

    .team-item.team-item-2 {
        top: 100px;
    }

    .team-item.team-item-3 {
        top: 120px;
        right: -10px;
    }

    .team-item.team-item-4 {
        top: -40px;
    }

    .team-item.large .team-image {
        width: 355px;
        height: 355px;
    }

    .team-item.small .team-image {
        width: 265px;
        height: 265px;
    }

.team-image {
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent-color);
    position: relative;
    background: #fff;
}

    .team-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        padding: 18px;
    }


/* Our Gallery Section Styles */
.gallery-section {
    padding: 115px 0;
    position: relative;
}

    .gallery-section::before {
        content: '';
        position: absolute;
        top: -120px;
        left: 0;
        width: 220px;
        height: 450px;
        background: url('../assets/images/bg_logo.png') no-repeat;
        background-size: contain;
        background-position: top left;
        transform: scaleX(-1);
    }

.gallery-image {
    position: relative;
    margin-right: 50px;
}


    .gallery-image img {
        width: 100%;
        height: auto;
        border-radius: 28px;
        transform: scale(1);
        transition: transform 0.5s ease;
    }

    .gallery-image:hover img {
        transform: scale(1.05);
    }

.gallery-content {
    position: relative;
    z-index: 1;
    padding-left: 30px;
}

    .gallery-content h2 {
        margin-bottom: 25px;
    }

    .gallery-content p {
        font-size: 20px;
        line-height: 1.6;
        color: var(--primary-color);
        margin-bottom: 15px;
        font-weight: 400;
    }

.open-gallery {
    display: inline-flex;
    align-items: center;
    background: var(--green-text-color);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 21px;
    transition: all 0.3s ease;
    margin-top: 30px;
    width: 270px;
    justify-content: center;
}

    .open-gallery i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .open-gallery:hover {
        background: var(--secondary-color);
        color: #fff;
    }

        .open-gallery:hover i {
            transform: translateX(5px);
        }

/* footer Banner Styles */
.footer-banner {
    position: relative;
}

.banner-wrapper {
    position: relative;
    padding: 30px;
    border: 1px solid var(--secondary-color);
    border-radius: 26px;
    background: #fff;
    overflow: hidden;
}

    .banner-wrapper::before,
    .banner-wrapper::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .banner-wrapper::before {
        background: url('../assets/images/bg_after.png') no-repeat;
        background-position: bottom right;
        transform: scaleX(-1);
    }

    .banner-wrapper::after {
        background: url('../assets/images/bg_before.png') no-repeat;
        background-position: top center;
    }

.banner-content {
    position: relative;
    z-index: 2;
}

.logo-area {
    margin-bottom: 10px;
}

.main-logo {
    max-width: 400px;
    height: auto;
}

.banner-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 30px;
}

    .banner-title .highlight {
        color: var(--accent-color);
    }

.banner-illustration {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .banner-illustration::before {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -120px;
        width: 180px;
        height: 180px;
        background: url('../assets/images/footer_bglogo.png') no-repeat;
        background-size: contain;
        background-position: bottom left;
    }

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.float-item {
    position: absolute;
    animation: float 3s ease-in-out infinite;
}

    .float-item.orange {
        top: -12%;
        left: 0px;
        right: 0px;
        margin: auto;
        animation-delay: 0.5s;
    }

    .float-item.avocado {
        top: 0px;
        right: 0px;
        bottom: 0px;
        margin: auto;
        animation-delay: 1s;
    }

    .float-item.banana {
        top: 40%;
        left: -15%;
        animation-delay: 1.5s;
    }

    .float-item.cherry {
        bottom: -45px;
        right: 5%;
        width: 60px;
        animation-delay: 2s;
    }

.main-illustration {
    position: relative;
    z-index: 2;
    bottom: -40px;
}

.girl-img {
    max-width: 100%;
    height: auto;
}

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Health Journey Section Styles */
.health-journey-section {
    padding: 20px 0;
    margin-top: 40px;
    margin-bottom: 40px;
}

.journey-wrapper {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 40px 75px;
    position: relative;
    max-width: 970px;
    margin: auto;
}

.journey-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 30px;
}

.journey-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--secondary-color);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 21px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 240px;
    font-family: 'Inter', sans-serif;
}

    .journey-phone i {
        margin-right: 10px;
    }

    .journey-phone:hover {
        background: var(--accent-color);
        color: #fff;
        transform: translateY(-2px);
    }

.journey-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .journey-social .social-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .journey-social .social-icon:hover {
            transform: translateY(-3px);
        }

        .journey-social .social-icon img {
            width: 24px;
            height: 24px;
            object-fit: contain;
        }


/* Footer Section Styles */
.footer-section {
    background: #fff;
    padding: 0px 0 50px;
    position: relative;
    margin-top: 152px;
}

    .footer-section::before {
        content: '';
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 180px;
        background: url('../assets/images/footer_bg.png') no-repeat;
        background-size: contain;
    }

    .footer-section::after {
        content: '';
        position: absolute;
        bottom: 0px;
        left: 0;
        right: -250px;
        margin: auto;
        width: 230px;
        height: 120px;
        background: url('../assets/images/footer_bglogo.png') no-repeat;
        background-position: bottom center;
        background-size: contain;
    }

    .footer-section .row {
        position: relative;
    }

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

    .footer-social .social-icon {
        width: 37px;
        height: 37px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .footer-social .social-icon:hover {
            transform: translateY(-3px);
        }

        .footer-social .social-icon img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

.footer-widget h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 42px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.our_services .footer-links {
    grid-template-columns: repeat(1, 1fr);
}

.footer-links li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 600;
}

    .footer-links li a:hover {
        color: var(--secondary-color);
        transform: translateX(5px);
    }

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .contact-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
        gap: 15px;
    }

        .contact-list li i {
            color: var(--accent-color);
            font-size: 20px;
            margin-top: 5px;
        }

        .contact-list li p,
        .contact-list li a {
            color: var(--primary-color);
            text-decoration: none;
            font-size: 18px;
            line-height: 1.6;
            margin: 0;
            transition: all 0.3s ease;
        }

li.email {
    font-weight: 600;
}

li.address {
    font-weight: 400;
}

.contact-list li a:hover {
    color: var(--accent-color);
}

li.footer_Call {
    width: 240px;
    background: var(--accent-color);
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 600;
    font-family: 'Inter';
    text-align: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #fff;
    align-items: center;
    margin: 30px 0px;
}

    li.footer_Call a,
    li.footer_Call i {
        color: #fff;
        font-size: 21px;
        margin-top: 0px;
    }

    li.footer_Call:hover {
        background-color: var(--secondary-color);
    }

        li.footer_Call:hover,
        li.footer_Call:hover a {
            color: #fff;
        }

    li.footer_Call i {
        color: #fff !important;
    }

/* Copyright Section Styles */
.copyright-section {
    background: #F8F8F8;
    padding: 20px 0;
    color: #fff;
}

.copyright-text {
    margin: 0;
    font-size: 12px;
    color: #78716C;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

    .footer-bottom-links li a {
        color: #1C1917;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
        font-weight: 400;
        font-family: 'Inter', sans-serif;
    }

        .footer-bottom-links li a:hover {
            color: var(--accent-color);
        }


/* why us section styles */
section.why-us-section {
    padding: 40px 0px;
}

/* section.why-us-section::before,.section.why-us-section::after   {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
    section.why-us-section::before{
    background: url('../assets/images/whyus_bg.png') no-repeat;
    background-size: contain;
    background-position: center;
}
    section.why-us-section::after{
    background: url('../assets/images/whyus_bg.png') no-repeat;
    background-size: contain;
    background-position: center;
} */

/* clinical carousel styles */
.clinical-carousel .diet-image img {
    border-radius: 20px;
}

section.clinical-section {
    padding: 65px 0px;
    position: relative;
}

.owl-carousel.clinical-carousel .owl-stage-outer {
    padding: 25px 0px;
}

.clinical-carousel.owl-carousel .owl-nav {
    left: 0px;
    top: inherit;
}

.owl-carousel.clinical-carousel .owl-item:nth-child(even) {
    margin-top: 25px;
}

.testimonial-page .section-title h2 {
    font-size: 48px;
}

.clinical-section.client-section::before {
    display: none;
}

.clinical-section::before {
    top: 0px;
}

.clinical-section.client-section::after {
    bottom: -80px;
    background-image: url('../assets/images/leftqutote.png');
    background-position: bottom left;
}

.container-fluidWidth {
    max-width: 1600px;
}

/* contact section styles */
section.contact-section {
    padding-bottom: 80px;
}

.contact-section.bg_beforeAfter::before {
    background: url('../assets/images/arrow_bgpoint.png') no-repeat;
    background-size: contain;
    background-position: center;
    opacity: 1;
    transform: rotate(0deg);
    width: 40%;
}

.contact-subtitle {
    font-size: 48px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Rajdhani';
    line-height: 48px;
    padding-right: 70px;
}

.contact-section .section-title {
    margin-bottom: 62px;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-top: 58px;
    font-family: Rajdhani;
    font-weight: 700;
    font-size: 22px;
    line-height: 100%;
    vertical-align: middle;
    margin-bottom: 15px;
}

.contact-info p,
.contact-info a {
    color: var(--primary-color);
    font-family: Poppins;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
    vertical-align: middle;
}

    .contact-info a.email-link {
        color: var(--accent-color);
        text-decoration: none;
    }

        .contact-info a.email-link:hover {
            text-decoration: underline;
        }

.contact-info .social-icons {
    justify-content: left;
}

.contact-info-phone i {
    color: var(--accent-color);
    vertical-align: sub;
}

.contact-info a {
    font-weight: 600;
    text-decoration: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .contact-form label {
        color: var(--secondary-color);
        margin-bottom: 5px;
        font-family: Poppins;
        font-weight: 600;
        font-size: 16px;
        line-height: 100%;
        letter-spacing: 0px;
        vertical-align: middle;
        text-transform: capitalize;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid #ffffff;
        box-shadow: 0px 0px 8px #ededed;
        font-size: 16px;
        background-color: #fff;
        border-radius: 26px;
        outline: none;
        margin-bottom: 8px;
        height: 48px;
    }

    .contact-form textarea {
        height: 148px;
        resize: none;
    }

    .contact-form button {
        background-color: var(--secondary-color);
        color: #fff;
        padding: 16px 20px;
        border: none;
        border-radius: 35px;
        font-size: 18px;
        cursor: pointer;
        transition: background-color 0.3s ease;
        width: max-content;
        margin-top: 15px;
        min-width: 223px;
    }

        .contact-form button:hover {
            background-color: var(--accent-color);
        }

/* faq section styles */
section.faq-section {
    position: relative;
}

.faq-section .section-title h2 {
    font-weight: 400;
}

    .faq-section .section-title h2 span {
        font-weight: 700;
    }

.faq-section .accordion-item {
    border-radius: 26px;
    border: 1px solid transparent !important;
    box-shadow: 0px 0px 8px #ededed;
    margin-bottom: 20px;
}

    .faq-section .accordion-item:hover {
        border: 1px solid var(--secondary-color) !important;
    }

    .faq-section .accordion-item .accordion-button {
        padding: 24px 30px;
        color: var(--primary-color);
        font-family: Rajdhani;
        font-weight: 600;
        font-size: 22px;
        border-radius: 26px !important;
        border: 0px !important;
        background: transparent !important;
        box-shadow: none !important;
    }

.faq-section .accordion-body,
.faq-section .accordion-body p,
.faq-section .accordion-body a,
.faq-section .accordion-body ul {
    font-family: Poppins;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: var(--primary-color);
}

.faq-section .accordion-body {
    padding: 15px 30px;
}

    .faq-section .accordion-body a {
        color: var(--accent-color);
        text-decoration: none;
    }

.faq-section .accordion-button::after {
    content: '\f067';
    position: absolute;
    right: 20px;
    top: 28px;
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary-color);
    transition: transform 0.3s ease, content 0.3s ease;
    background: none;
    font: normal normal normal 20px/1 FontAwesome;
}

/* Change plus to times and rotate when open */
.faq-section .accordion-button:not(.collapsed)::after {
    content: '\f00d';
    transform: rotate(180deg);
    top: 32px;
}

/* Gallery Section Styles */

/* Vertical Tabs Styles */
.vertical-tabs {
    background: #fff;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    max-width: 340px;
    margin: auto;
    margin-right: 0px;
}

.nav-pills .nav-link {
    border: none;
    background: transparent;
    color: var(--primary-color);
    padding: 8px 12px;
    font-size: 22px;
    font-weight: 600;
    text-align: left;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    font-family: Rajdhani;
    border-radius: 26px;
    justify-content: space-between;
    margin-bottom: 3px;
}

.nav-pills .nav-link i.fa.fa-chevron-right {
    font-size: 15px;
}

.nav-pills .nav-link:hover,
.nav-pills .nav-link.active {
    background: var(--secondary-color);
    color: #fff;
}
.receipe-accordion .nav-pills .nav-link:hover,
.receipe-accordion .nav-pills .nav-link.active {
    background: var(--accent-color);
    color: #fff;
}
.submenu {
    padding: 30px 10px 10px;
    margin-top: -30px;
    margin-bottom: 10px;
    background: #F8F8F8;
    border-radius: 26px;
}

.submenu-item {
    display: block;
    padding: 10px 25px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    margin: 10px 0px;
    font-weight: 400;
    border: 0px;
    width: 100%;
    background: transparent;
    text-align: left;
}

.submenu-item:hover, .submenu-item.active {
    color: var(--accent-color);
    background: #fff;
    border-radius: 30px;
}
.receipe-accordion .submenu-item:hover, .receipe-accordion .submenu-item.active {
    color: var(--secondary-color);
}

.receipe-accordion h4 {
    font-family: Rajdhani;
    font-weight: 600;
    font-size: 26px;
    color: var(--accent-color);
    padding: 10px;
}

/* Gallery Grid Styles */
.gallery-grid {
    text-align: center;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    transition: all 0.3s ease;
    width: max-content;
    border-radius: 26px;
    display: inline-block;
    margin: 0px 10px;
    margin-bottom: 10px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: max-content;
    height: 297px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}


/* Recipes Section */
.recipe-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
    transition: all 0.3s ease;
    height: 100%;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.recipe-img {
    position: relative;
    width: 100%;
    height: 286px;
    overflow: hidden;
    border-radius: 15px;
}

.recipes-section .col-xl-3:nth-child(odd) .recipe-img {
    background: linear-gradient(201.1deg, rgba(123, 52, 0, 0.32) 73.51%, rgba(229, 96, 0, 0.8) 86.08%);
    border: 1px solid var(--accent-color);
}

.recipes-section .col-xl-3:nth-child(even) .recipe-img {
    background: linear-gradient(201.1deg, rgba(27, 89, 0, 0) 63.64%, rgba(19, 62, 0, 0.64) 75.42%, rgba(89, 152, 62, 0.8) 86.08%);
    border: 1px solid var(--secondary-color);
}

.recipe-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img img {
    transform: scale(1.1);
}

.recipe-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    color: #fff;
    text-align: center;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.recipe-overlay h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}


/* recipesDetail section */
.recipeDetail-card {
    border: 1px solid var(--accent-color);
    border-radius: 30px;
    margin-bottom: 30px;
    padding: 20px;
    position: relative;
}

.recipesCategory-section h2 {
    font-size: 42px;
}

.recipes-grid .recipe-title {
    color: var(--accent-color);
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0px;
    line-height: 1.2;
    font-family: Rajdhani;
    text-align: center;
}

.recipes-grid .view-btn {
    background: var(--accent-color);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: block;
    font-family: 'Poppins';
    margin: 0px auto;
    width: 115px;
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
}

.recipes-grid .view-btn img {
    margin-right: 5px;
}

.recipe-preview {
    height: 300px;
    overflow: hidden;
}

.recipe-preview img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

/* recipesDetail section */
.title_detail {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    font-family: Rajdhani;
    text-align: center;
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 26px;
    display: block;
    margin: auto;
    margin-bottom: 20px;
    width: max-content;
}

.recipe-detail-title {
    font-size: 36px;
    font-weight: 700;
    font-family: Rajdhani;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.recipe-detail-content.bg-white {
    background: #fff;
}

.recipe-detail-content {
    padding: 40px;
    border-radius: 26px;
}

    .recipe-detail-content h6 {
        font-size: 26px;
        font-weight: 700;
        font-family: Rajdhani;
        color: var(--ul-title-color);
        margin-bottom: 16px;
    }

    .recipe-detail-content ul {
        margin-bottom: 30px;
    }

        .recipe-detail-content ul li {
            list-style-type: disc;
            font-family: Poppins;
            font-weight: 400;
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: 10px;
        }

.recipe-detail-title.secondary-text {
    color: var(--secondary-color);
    margin-top: 10px;
    margin-bottom: 24px;
}

.boxBorder {
    width: 100%;
    height: 2px;
    border-radius: 45px;
    background-image: linear-gradient(to right, var(--green-text-color) 50%, white 50%);
    background-position: top;
    background-size: 28px 2px;
    background-repeat: repeat-x;
    margin-bottom: 20px;
}

.recipe-detail-content ul.fw-500 li {
    font-weight: 500;
    margin-bottom: 20px;
}

.calorie_sec li {
    display: inline-block;
    width: 32%;
    position: relative;
    padding-right: 20px;
}

    .calorie_sec li::before {
        content: '.';
        position: absolute;
        left: -22px;
        top: -3px;
        margin: auto;
        font-size: 58px;
        line-height: 1px;
        vertical-align: top;
    }
/* google form */
.form_sec {
    background: #fff;
    padding: 30px;
    border: 1px solid #DDE2E5;
    border-radius: 30px;
    margin-bottom: 30px;
}

    .form_sec h6 {
        font-family: Rajdhani;
        font-weight: 700;
        font-size: 24px;
        color: var(--secondary-color);
        margin-bottom: 30px;
    }

    .form_sec label {
        font-weight: 600;
    }

    .form_sec input, .form_sec textarea {
        outline: none !important;
        box-shadow: none !important;
        padding: 10px 15px;
        background: #F8F8F8;
        font-size: 16px;
        font-weight: 400;
        font-family: 'Poppins';
    }

    .form_sec textarea {
        resize: none;
        height: 120px;
        overflow: hidden;
        overflow-y: auto;
    }

    .form_sec .form-group {
        margin-bottom: 20px;
    }

    .form_sec .checkmark {
        position: absolute;
        top: 2px;
        left: 0;
        height: 20px;
        width: 20px;
        border: 2px solid #ddd;
        border-radius: 50%;
    }

    .form_sec .checkbox-group .checkmark {
        border-radius: 0px;
    }

    .form_sec .radio-group .option_sec, .form_sec .checkbox-group .option_sec {
        position: relative;
        padding-left: 30px;
        padding-right: 10px;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .form_sec .radio-group input, .form_sec .checkbox-group input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

    .form_sec .radio-group .form-label input:checked ~ .checkmark:after,
    .form_sec .checkbox-group .form-label input:checked ~ .checkmark:after {
        display: block;
    }

.option_sec .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.option_sec .checkmark:after {
    top: 5px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
}

.form_sec .radio-group input:checked ~ .checkmark,
.form_sec .checkbox-group input:checked ~ .checkmark {
    background-color: transparent;
    border: 2px solid var(--accent-color);
}

.checkbox-group .option_sec .checkmark:after {
    top: -1px;
    left: 5px;
    width: 7px;
    height: 13px;
    border: solid var(--accent-color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    border-radius: 0px;
    background: transparent;
}

.checkbox-group.opt_4 label {
    width: 24%;
    margin-bottom: 20px;
}

.signature-line {
    display: inline-block;
    min-width: 200px;
    border-bottom: 1px dashed #000;
    padding: 2px 4px;
    margin: 0 4px;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.5;
}

    .signature-line:focus {
        outline: none;
        box-shadow: none;
        border-color: #000;
    }


.form_sec h5 {
    color: var(--primary-color);
    font-weight: 700;
}

/* newsletter styles */
div#newsLetter .modal-dialog {
    max-width: 700px;
}

div#newsLetter .modal-content {
    border: 0px;
    border-radius: 30px;
}

div#newsLetter .modal-body {
    padding: 22px 40px;
}

div#newsLetter button.btn-close {
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    font-size: 20px;
    margin-top: 4px !important;
    margin-right: 8px !important;
    color: var(--accent-color);
    opacity: 1;
    background: none;
    font-family: cursive;
    line-height: 15px;
    padding: 8px;
    text-align: center;
    display: inline-flex;
    align-items: flex-end;
    width: 10px;
    height: 10px;
}

.popup-content h2 {
    font-size: 22px;
    color: var(--ul-title-color);
    font-weight: 600;
    letter-spacing: 5px;
}

.popup-content h2 .highlight {
    font-size: 33px;
}

.popup-content p, .popup-content a {
    font-size: 14px;
    line-height: 22px;
    font-weight: 300;
    font-family: 'Poppins';
    color: var(--ul-title-color);
}

.popup-content a {
    text-decoration: none;
    font-weight: 500;
}

.email-form {
    margin-top: 1.5rem;
    display: flex;
    gap: 0;
}

.email-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 15px 0 0 15px;
    font-size: 14px;
    outline: none;
    color: #000;
}

.email-form input::placeholder {
    color: #CFD3D4;
}

.email-form button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: #f67332;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 0 15px 15px 0;
    cursor: pointer;
}

.email-form button:hover {
    background: #e45d1b;
}

.note {
    font-size: 11px;
    color: #b7b7b7;
    margin-top: 0.5rem;
    text-align: center;
    font-style: oblique;
    display: block;
}
/* Responsive Styles */
@media (max-width: 1480px) {
    .gallery-item {
        margin: 0px;
        margin-bottom: 10px;
    }
}
@media (max-width: 1366px) {
    .nav-pills .nav-link, .recipes-grid .recipe-title {
        font-size: 20px;
    }

    .submenu-item {
        font-size: 16px;
    }

    .receipe-accordion h4 {
        font-size: 24px;
    }
    .gallery-item img {
        height: 280px;
    }
    .team-grid {
        gap: 5px;
    }

    .team-item.small .team-image {
        width: 235px;
        height: 235px;
    }

    .team-item.large .team-image {
        width: 325px;
        height: 325px;
    }

    .section-title h2,
    .books-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 46px;
    }

    .main-logo {
        max-width: 220px;
    }

    .banner-title {
        font-size: 35px;
    }
}

@media (max-width: 1299px) {
    .gallery-item img {
        height: 270px;
    }
    .recipe-preview {
        height: 260px;
    }
}

@media (max-width: 1199px) {
    .title_detail, .recipe-detail-title {
        font-size: 28px;
    }

    .recipe-detail-content h6 {
        font-size: 22px;
    }

    .recipe-detail-content ul li {
        font-size: 16px;
    }

    .calorie_sec li {
        width: 48%;
    }
    .gallery-item img {
        height: 210px;
    }

    .submenu-item {
        margin: 4px 0px;
        font-size: 15px;
        padding: 5px 15px;
    }

    .vertical-tabs {
        padding: 10px;
    }

    .nav-pills .nav-link {
        padding: 7px 15px;
        font-size: 18px;
    }
    section.breadcrumb-section {
        padding: 10px 0px;
    }

    li.breadcrumb-item, li.breadcrumb-item a {
        font-size: 18px;
    }

    li.breadcrumb-item:not(:first-child)::before {
        line-height: 28px;
    }
    .navbar .nav-link {
        font-size: 13px;
        padding: 8px 15px !important;
    }

    .navbar {
        padding: 10px 0px;
    }

    .navbar .navbar-brand img {
        height: 60px;
    }

    .share-problem-section {
        margin: 0px;
    }

    .team-item.large .team-image {
        width: 280px;
        height: 280px;
    }

    .team-item.small .team-image {
        width: 205px;
        height: 205px;
    }

    .process-steps-section::before {
        background-size: 120px;
    }

    .founder-name {
        font-size: 28px;
    }

    .founder-image {
        width: 340px;
    }

    .founder-image::before {
        right: -52px;
        width: 60px;
        height: 60px;
    }

    .workshop-image {
        height: 180px;
    }

    .story-name,
    .workshop-content h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .workshop-content p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .service-row .col-md-6 {
        margin-top: 78px;
    }

    .services-section,
    .workshop-section,
    .founder-section,
    .global-work-section,
    .testimonials-section {
        padding: 40px 0px;
    }

    .team-section {
        padding: 40px 0 80px;
    }

    .gallery-section {
        padding: 45px 0;
    }

    .gallery-section::before {
        width: 150px;
        height: 310px;
    }

    .testimonials-section::after,
    .clinical-section::after {
        background-size: 100px;
        z-index: -1;
    }

    .testimonials-section::before,
    .clinical-section::before {
        top: 10px;
        background-size: 100px;
    }

    .clinical-carousel.owl-carousel .owl-nav {
        position: relative;
    }

    .clinical-section.client-section::after {
        bottom: -20px;
    }

    section.clinical-section {
        padding: 20px 0px;
    }

    .diets-section {
        padding: 20px 0;
    }

    .diet-image {
        height: 315px;
    }

    .service-card {
        min-height: 158px;
    }

    .service-card h3 {
        font-size: 18px;
        line-height: 24px;
        margin-top: 20px;
    }

    .health-journey-section {
        margin: 20px 0px;
    }

    .logo-container img {
        max-width: 200px;
    }

    .workshop-section::before {
        width: 200px;
        height: 200px;
        background-size: contain;
    }

    .story-image {
        height: 260px;
    }

    .service-icon img {
        width: 100px;
        height: 100px;
    }

    .testimonial-page .section-title h2,
    .section-title h2,
    .books-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 38px;
    }

    .testimonials-section .section-title h2 {
        margin-bottom: 30px;
    }

    .testimonial-block {
        width: 100%;
    }

    .process-steps-section {
        padding-bottom: 50px;
    }

    .book-image {
        width: 100%;
        height: 222px;
    }

    .books-section {
        margin: 0px;
    }

    .global-content {
        padding-left: 0px;
    }

    .step-content h3 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    .step-content {
        padding: 30px;
    }

    .step-content p {
        line-height: 1.5;
    }

    .diet-carousel .owl-nav .owl-next {
        right: -20px;
    }

    .diet-carousel .owl-nav .owl-prev {
        left: -20px;
    }

    .hero-section {
        padding: 30px 0px;
    }

    .welcome-text {
        font-size: 48px;
    }

    .phone-button {
        margin: 20px 0px;
    }

    .tagline {
        font-size: 22px;
    }

    .footer-section {
        padding: 0px;
        margin-top: 120px;
    }

    .journey-wrapper {
        padding: 35px 25px;
    }

    .dot_spot.dot_top {
        left: -20px;
    }

    .dot_spot.dot_bottom {
        right: -20px;
    }

    .contact-subtitle {
        font-size: 36px;
    }

    .contact-info h3 {
        font-size: 20px;
        margin-top: 38px;
    }

    .contact-info p,
    .contact-info a {
        font-size: 16px;
    }

    .faq-section .accordion-body,
    .faq-section .accordion-body p,
    .faq-section .accordion-body a,
    .faq-section .accordion-body ul {
        font-size: 18px;
    }

    .faq-section .accordion-body {
        padding-top: 0px;
    }

    .testimonial-item img {
        max-height: 392px;
    }
}

@media (max-width: 991px) {
    .checkbox-group.opt_4 label {
        width: 32%;
    }
    .submenu-item {
        font-size: 13px;
    }

    .nav-pills .nav-link, .recipes-grid .recipe-title {
        font-size: 15px;
    }

    .recipe-preview {
        height: 190px;
    }

    .recipe-img {
        height: 220px;
    }

    .recipe-overlay h3 {
        font-size: 18px;
    }

    .gallery-item img {
        height: 140px;
    }
    body {
        padding-top: 80px;
    }

    .footer-section {
        margin-top: 90px;
    }

    .footer-section::before {
        top: -50px;
    }

    .footer-widget h3 {
        font-size: 18px;
        margin-bottom: 22px;
    }

    .footer-links li a,
    .contact-list li p,
    .contact-list li a {
        font-size: 14px;
    }

    li.footer_Call a,
    li.footer_Call i {
        font-size: 16px;
    }

    .footer-widget {
        margin-bottom: 20px;
        /* text-align: center; */
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo {
        margin-bottom: 30px;
    }

    .footer-links {
        gap: 10px;
        /* grid-template-columns: repeat(1, 1fr); */
    }

    /* .contact-list li {
        justify-content: center; 
    } */
    li.footer_Call {
        margin: 10px 0px;
    }

    .footer-bottom-links {
        /* justify-content: center; */
        gap: 10px;
    }

    .copyright-section {
        padding: 10px 0px;
    }

    .copyright-text {
        text-align: center;
    }

    button.navbar-toggler {
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-nav {
        padding-top: 10px;
    }

    /* li.nav-item {
        border-bottom: 1px solid #ddd;
    } */
    .navbar .nav-link {
        padding: 8px 15px !important;
        text-align: center;
        border-top: 1px solid #ddd;
        margin: 2px;
    }

    .navbar .nav-link.active {
        border-top: 0px;
        margin-top: 0px;
    }

    .welcome-text {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .hero-section .carousel-inner {
        border-radius: 50px;
    }

    .phone-button {
        padding: 10px 25px;
        font-size: 16px;
        margin: 10px 0px;
    }

    .social-icons {
        gap: 10px;
        margin-bottom: 0px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .section-title h2,
    .testimonial-page .section-title h2,
    .section-title h2,
    .books-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 36px;
    }

    #diets .diet-image {
        height: 210px;
    }

    .diet-carousel .owl-nav .owl-prev,
    .diet-carousel .owl-nav .owl-next {
        width: 38px;
        height: 38px;
        top: 40%;
        transform: translateY(-40%);
    }

    .diet-carousel .owl-nav .owl-prev {
        left: -10px;
    }

    .diet-carousel .owl-nav .owl-next {
        right: -10px;
    }

    .service-card {
        padding: 20px 15px;
        max-width: 260px;
        margin: auto;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        top: -35px;
    }

    /* .service-card h3 {
        font-size: 16px;
    } */

    .books-section {
        padding: 40px;
    }

    .book-image {
        height: 188px;
    }

    .btn-buy {
        padding: 10px 25px;
        font-size: 16px;
    }

    .topright_bg {
        width: 95%;
        height: 20%;
    }

    .books-section::before {
        width: 106px;
        height: 106px;
    }

    .books-section::after {
        width: 132px;
        height: 132px;
    }

    .step-content {
        padding: 15px;
    }

    .step-content p {
        font-size: 16px;
    }

    .step-content h3 {
        font-size: 20px;
    }

    .testimonial-page .section-title h2 {
        font-size: 36px;
    }

    .testimonial-block h3 {
        font-size: 28px;
    }

    .testimonial-block {
        width: 480px;
        margin: 0px auto !important;
        margin-top: 20px !important;
    }

    .diet-image {
        height: 240px;
    }

    section.breadcrumb-section {
        padding: 20px 0px;
    }

    .share-problem-wrapper {
        padding: 20px;
    }

    .share-button {
        padding: 14px 20px;
        font-size: 16px;
    }

    .share-description {
        font-size: 16px;
    }

    .workshop-item {
        margin: 10px 0px;
    }

    .workshop-carousel.owl-carousel .owl-nav div,
    .clinical-carousel.owl-carousel .owl-nav div,
    .success-stories-carousel.owl-carousel .owl-nav div {
        width: 50px;
        height: 50px;
    }

    .workshop-carousel.owl-carousel .owl-nav {
        top: -50px;
    }

    .founder-image {
        margin-bottom: 20px;
    }

    .read-more {
        margin-bottom: 0px;
    }

    .team-item.large .team-image {
        width: 200px;
        height: 200px;
    }

    .team-item.small .team-image {
        width: 155px;
        height: 155px;
    }

    .team-image img {
        padding: 8px;
    }

    .team-item.small {
        top: 20px;
    }

    .team-item.team-item-2 {
        top: 50px;
    }

    .team-item.team-item-3 {
        top: 50px;
        right: -5px;
    }

    .team-section {
        padding: 40px 0 40px;
    }

    .gallery-image {
        width: 450px;
        margin: 0px auto;
    }

    .gallery-content {
        padding-left: 0;
        text-align: center;
    }

    .gallery-content p {
        font-size: 18px;
        line-height: normal;
    }

    .open-gallery {
        margin-top: 10px;
    }

    .banner-title {
        text-align: center;
    }

    .logo-area {
        text-align: center;
    }

    .banner-illustration {
        margin-top: 40px;
    }

    .journey-wrapper {
        text-align: center;
    }

    .journey-title {
        margin-bottom: 20px;
    }

    .journey-phone {
        margin-bottom: 20px;
    }

    .journey-social {
        justify-content: center;
    }

    .contact-list li {
        margin-bottom: 10px;
    }

    .global-content {
        text-align: center;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .expand-btn {
        width: 34px;
        height: 34px;
    }

    .play-btn i {
        font-size: 24px;
    }

    .expand-btn i {
        font-size: 16px;
    }

    .step-number {
        font-size: 25px;
        line-height: normal;
        top: -10px;
        left: -10px;
        width: 40px;
        height: 40px;
    }

    .founder-section::before,
    .bg_beforeAfter::before,
    .bg_beforeAfter::after {
        width: 150px;
        height: 150px;
    }

    .workshop-section .subtitle {
        font-size: 18px;
    }

    .contact-subtitle {
        font-size: 28px;
        line-height: 30px;
        padding-right: 40px;
    }

    .contact-section .section-title {
        margin-bottom: 40px;
    }

    section.contact-section {
        padding-bottom: 30px;
    }

    li.breadcrumb-item,
    li.breadcrumb-item a {
        font-size: 18px;
    }

    li.breadcrumb-item:not(:first-child)::before {
        line-height: 24px;
    }

    .faq-section .accordion-item .accordion-button {
        font-size: 18px;
    }

    .faq-section .accordion-body,
    .faq-section .accordion-body p,
    .faq-section .accordion-body a,
    .faq-section .accordion-body ul {
        font-size: 16px;
        line-height: normal;
    }
}

@media (max-width: 767px) {
    #newsLetter img {
        margin: auto;
        display: block;
    }

    .popup-content h2 {
        margin-top: 20px;
        font-size: 20px;
        letter-spacing: 2px;
        text-align: center;
    }

    .popup-content h2 .highlight {
        font-size: 28px;
    }
    .signature-line {
        width: 70%;
    }

    .checkbox-group.opt_4 label {
        width: 100%;
    }

    .title_detail, .recipe-detail-title {
        font-size: 22px;
    }

    .calorie_sec li {
        width: 100%;
        padding-right: 0px;
    }
    .nav-pills .nav-link, .recipes-grid .recipe-title {
        font-size: 18px;
    }

    .recipeDetail-card {
        width: max-content;
        margin: auto;
        margin-bottom: 30px;
    }

    .recipe-preview {
        height: 260px;
    }

    .recipe-img {
        height: 286px;
        width: 282px;
        margin: auto;
    }

    .recipe-overlay h3 {
        font-size: 20px;
    }

    .gallery-item {
        width: 100%;
    }

    .gallery-item img {
        height: 280px;
        width: 100%;
    }

    .vertical-tabs {
        margin: 0px auto;
        margin-bottom: 30px;
    }
    .hero-section .carousel-inner {
        border-radius: 22px;
        background: rgb(0 0 0 / 80%);
    }

    .hero-section .carousel-caption {
        position: relative;
        right: 0px;
        bottom: 0px;
        left: 0px;
    }

    .welcome-text {
        font-size: 28px;
        letter-spacing: 0px;
    }

    .founder-image::before {
        right: -32px;
        width: 40px;
        height: 40px;
    }

    .books-section {
        padding: 20px;
    }

    .books-section::before {
        width: 70px;
        height: 70px;
    }

    .book-image {
        height: 250px;
    }

    .book-image img {
        height: 100%;
        object-fit: contain;
    }

    .topright_bg {
        width: 100%;
        height: 12%;
    }

    section.why-us-section {
        padding: 20px 0px;
    }

    .process-steps-section::before,
    .testimonials-section::before,
    .clinical-section::before,
    .testimonials-section::after,
    .clinical-section::after {
        background-size: 70px;
    }

    .workshop-section::before {
        width: 150px;
        height: 150px;
    }

    .testimonials-section .section-title h2 {
        margin-bottom: 0px;
    }

    .testimonial-block {
        width: 100%;
    }

    .testimonial-block h3 {
        font-size: 24px;
        text-align: center;
    }

    .workshop-section .subtitle {
        font-size: 16px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-section {
        padding: 20px 0 0px;
        margin-top: 70px;
    }

    .footer-section::before {
        top: -30px;
    }

    .footer-section::after {
        right: -150px;
        width: 150px;
    }

    .footer-widget h3 {
        font-size: 22px;
    }

    .footer-links li a,
    .contact-list li p,
    .copyright-text,
    .footer-bottom-links li a {
        font-size: 14px;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .contact-list li {
        margin: 10px auto;
    }

    .section-title h2,
    .testimonial-page .section-title h2,
    .section-title h2,
    .books-section .section-title h2,
    .testimonials-section .section-title h2 {
        font-size: 32px;
    }

    .service-card {
        margin: auto;
        margin-bottom: 20px;
        width: 300px;
    }

    /* .diet-carousel {
        padding: 20px 0;
    } */
    #diets .diet-image {
        height: 370px;
    }

    .diet-carousel .owl-nav .owl-prev,
    .diet-carousel .owl-nav .owl-next {
        top: 45%;
        transform: translateY(-45%);
    }

    .workshop-image {
        height: 220px;
    }

    .workshop-content {
        padding: 12px;
    }

    .workshop-content h3 {
        font-size: 18px;
    }

    .founder-image::after {
        left: -30px;
        width: 80px;
        height: 80px;
    }

    .books-section .subtitle {
        font-size: 20px;
    }

    .global-content p {
        font-size: 16px;
    }

    .diet-image {
        height: 380px;
    }

    .clinical-carousel.owl-carousel .owl-nav {
        position: relative;
        bottom: 0px;
    }

    .success-stories-carousel {
        padding: 50px;
    }

    .success-stories-carousel .owl-nav .owl-prev {
        left: 5px;
    }

    .success-stories-carousel .owl-nav .owl-next {
        right: 5px;
    }

    .success-stories-carousel.owl-carousel .owl-nav div {
        width: 41px;
        height: 41px;
    }

    .owl-carousel.clinical-carousel .owl-item:nth-child(even) {
        margin-top: 0px;
    }

    .founder-section::before,
    .bg_beforeAfter::before,
    .bg_beforeAfter::after {
        width: 80px;
        height: 80px;
    }

    .founder-section::after {
        height: 60px;
        z-index: -1;
    }

    .team-grid {
        display: block;
    }

    .team-image {
        margin: auto;
    }

    .team-item.team-item-1 {
        top: 0px;
    }

    .team-item.team-item-2 {
        top: 20px;
    }

    .team-item.team-item-3 {
        top: 40px;
    }

    .team-item.team-item-4 {
        top: 60px;
    }

    .team-item.small .team-image {
        width: 185px;
        height: 185px;
    }

    .team-item.large .team-image {
        width: 240px;
        height: 240px;
    }

    .gallery-image {
        width: 100%;
    }

    .navbar {
        padding: 10px;
    }

    .play-btn {
        width: 50px;
        height: 50px;
    }

    .expand-btn {
        width: 30px;
        height: 30px;
        top: 15px;
        right: 15px;
    }

    .play-btn i {
        font-size: 20px;
    }

    .expand-btn i {
        font-size: 14px;
    }

    .video-modal .btn-close {
        right: 0;
        top: -40px;
    }

    .founder-description,
    .founder-description p {
        font-size: 14px;
    }

    .team-line {
        display: none;
    }

    .gallery-content p {
        font-size: 16px;
    }

    .open-gallery {
        padding: 12px 24px;
        font-size: 16px;
    }

    .journey-wrapper {
        padding: 20px;
    }

    .journey-title {
        font-size: 20px;
    }

    .journey-phone {
        font-size: 18px;
        padding: 8px 20px;
    }

    .journey-social .social-icon {
        width: 36px;
        height: 36px;
    }

    .journey-social .social-icon img {
        width: 18px;
        height: 18px;
    }

    .contact-subtitle {
        font-size: 25px;
        line-height: normal;
        padding-right: 0px;
        margin-top: 30px;
    }

    .contact-info h3 {
        margin-top: 28px;
    }

    li.breadcrumb-item,
    li.breadcrumb-item a {
        font-size: 16px;
    }

    li.breadcrumb-item:not(:first-child)::before {
        line-height: 20px;
    }

    .faq-section .accordion-item .accordion-button {
        font-size: 17px;
        line-height: normal;
    }

    .faq-section .accordion-body,
    .faq-section .accordion-body p,
    .faq-section .accordion-body a,
    .faq-section .accordion-body ul {
        font-size: 16px;
        line-height: normal;
    }

    .faq-section .accordion-body {
        padding-top: 0px;
    }
}
