/* Global CSS start here */
:root {
    /* Fonts */
    --font-opensans: "Open Sans", sans-serif;
    --font-volkov: "Volkhov", serif;
    --font-montserrat: "Montserrat", sans-serif;
    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #D45C06;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --dark-green: #276542;
    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --padding-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --margin-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}

body {
    font-family: var(--font-opensans);
    padding-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font-volkov);
}

h1 {
    font-size: clamp(3rem, 4vw + 1rem, 5.35rem);
}

h2 {
    font-size: clamp(2.3rem, 2.5vw + 1rem, 3rem);
}

h3 {
    font-size: clamp(1.75rem, 2.5vw + 1rem, 2.5rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 1.25rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1rem);
}

p {
    font-size: 1rem;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.btn.btn-primary {
    border-radius: 60px;
    border: 1px solid #D45C06;
    background: linear-gradient(90deg, #E66203 0%, #FF6B00 100%);
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 16px;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: inline-flex;
    height: 60px;
    padding: 22px 30px;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    transform: scale(1.03);
    border-color: #FF6B00;
    background: linear-gradient(90deg, #FF6B00 0%, #E66203 100%);
}

.btn.btn-outline-primary {
    border-radius: 60px;
    border: 1px solid #D45C06;
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: inline-flex;
    height: 60px;
    padding: 22px 30px;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}

.btn.btn-outline-primary:hover {
    transform: scale(1.03);
    border-color: #FF6B00;
    background: linear-gradient(90deg, #FF6B00 0%, #E66203 100%);
}

.btn.btn-outline-primary:hover svg path {
    fill: var(--white);
}

/* Global CSS end here */
.top-bar {
    background-color: var(--dark-green);
}

.top-bar p {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    line-height: 148%;
}

.blog--detail-block a {
    color: #000;
}
.post-thumbnail {
    margin-bottom: 30px;
}

.post-thumbnail img {
    border-radius: 20px;
}



.page-header .navbar.fixed-top {
    top: 36px;
   background-color: rgba(255, 255, 255, 0.95); 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-header.scroll .navbar.fixed-top {
    top: 0;
    background-color: var(--white) !important;
    /* Solid white when scrolled */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 78px;
    transition: all 0.3s ease;
}

#navbar.is-fixed .navbar-brand img {
    height: 50px;
}

.navbar .nav-link {
    transition: color 0.3s ease;
    color: rgba(0, 0, 0, 0.90);
    font-size: 14px;
    font-weight: 600;
    line-height: 160%;
}

.navbar .nav-link:hover {
    color: var(--primary) !important;
}

.phone-number {
    color: var(--black);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.page-header .btn.btn-primary {
    height: 49px;
    padding: 12px 30px;
}

/* Dropdown Menu Enhancements */
.navbar .dropdown-menu {
    border-radius: 12px;
    padding: 15px 0;
    margin-top: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: none;
    border-top: 3px solid var(--primary);
    animation: dropdownFadeIn 0.3s ease forwards;
    transform-origin: top;
}

.navbar .dropdown-item {
    font-family: var(--font-montserrat);
    font-weight: 500;
    padding: 10px 25px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.navbar .dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    background: url(../images/dropdown-arrow.png) no-repeat;
    background-position: center right;
    background-size: cover;
    width: 16px;
    height: 17px;
    border: none;
    margin-left: 6px;
    opacity: 1;
    vertical-align: middle;
}

@media (max-width: 991.98px) {
    .navbar .offcanvas {
        max-width: 320px;
        border-left: 4px solid var(--primary);
    }

    .navbar .offcanvas-body .navbar-nav {
        align-items: flex-start !important;
        gap: 15px;
    }

    .navbar .offcanvas-body .nav-link {
        font-size: 18px;
    }

    .navbar .offcanvas-body .dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: var(--light);
        margin: 10px 0 !important;
        animation: none;
        transform: none !important;
    }

    .navbar .offcanvas-body .phone-number {
        padding-left: 0;
        margin-top: 10px;
    }
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-banner-image {
    height: 810px;
}

.hero {
    background: linear-gradient(0deg, #191F26 -4.33%, rgba(0, 0, 0, 0.00) 100%), url('../images/banner-img-1.jpg') no-repeat;
    background-position: bottom;
    background-size: cover;
    height: 966px;
}

.hero h1 {
    color: var(--white);
    font-weight: 400;
    line-height: 114%;
}

.navbar .dropdown-item:hover {
    background: transparent !important;
}

.menu-item-has-children .dropdown-item:hover {
    background-color: var(--light) !important;
}

.hero p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    max-width: 534px;
    margin-bottom: 48px;
}

.hero .container {
    margin-top: 16rem;
}

/* Values Section */
.values-section {
    padding: clamp(3.5rem, 2.5vw + 1rem, 4.3rem) 0;
}

.value-icon-box {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(245, 127, 42, 0.30);
    background: #FCEBCE;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-text {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 600;
    line-height: 128%;
}

#navbar.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 0.5rem 0 !important;
}

/* Every Client Section */
.every-client-section {
    /* background-color: var(--white); */
    padding-bottom: 0;
    padding-top: clamp(3rem, 5vw + 1rem, 6rem);
    position: relative;
}

/* .every-client-section:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    width: 1057px;
    height: 960px;
    background-image: url(../images/we-are-about-bg.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
} */

.every-client-content h2 {
    font-weight: 400;
    line-height: 1.1;
}

.every-client-content p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}

.every-client-image img {
    max-width: 543px;
    width: 100%;
}

/* Client Grid Styling */
.client-grid-wrapper {
    position: relative;
    padding-left: 2rem;
}

.client-grid .col-6 {
    border-right: 1px solid #276542;
    border-bottom: 1px solid #276542;
}

.client-grid .col-6:nth-child(2n) {
    border-right: none;
}

.client-grid .col-6:nth-child(3) {
    border-bottom: none;
}

.client-grid .col-6:nth-child(4) {
    border-bottom: none;
}

.location-item-link:hover {transform: scale(1.03); transition: all 0.3s ease;}
.location-item-link{    transition: all 0.3s ease;}

.grid-item {
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    padding: 30px 25px;
}

.grid-icon-box {
    width: 79px;
    height: 79px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 87px;
}

.grid-title {
    font-size: clamp(1.2rem, 1.5vw + 0.5rem, 1.4rem);
    margin-bottom: 0;
    color: var(--black);
    font-family: var(--font-opensans);
    font-weight: 600;
    line-height: 140%;
}

.btn-get-help {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    opacity: 0;
}

.grid-item:hover {
    background-color: var(--dark-green);
    border-radius: 0;
}

.grid-item:hover .btn-get-help {
    opacity: 1;
}

.grid-item:hover .grid-icon-box {
    border-color: #50A74D;
}

.grid-item:hover .grid-icon-box svg path {
    fill: var(--white);
}

.grid-item:hover .grid-title {
    color: var(--white);
}

.brightness-0 {
    filter: brightness(0);
}

.invert-1 {
    filter: invert(1);
}

/* Services Section */
.services-section {
    padding-top: clamp(3.2rem, 6vw + 1rem, 6rem);
    padding-bottom: clamp(3.8rem, 6vw + 1rem, 8rem);
}

.services-section h2 {
    line-height: 114%;
}

.sub-title {
    color: var(--dark-green);
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 600;
    line-height: 128%;
    text-transform: uppercase;
}

.services-intro {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}

.services-grid {
    margin-top: 3rem;
}

.service-card {
    position: relative;
    height: 540px;
    background-size: cover;
    background-position: center;
    border-radius: 88px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #191F26 -4.33%, rgba(0, 0, 0, 0.00) 100%);
    z-index: 1;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card-img {
    width: 100%;
    height: 100%;
}

.service-overlay-active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(39, 101, 66, 0.85);
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: flex-end;
    padding: 68px 40px;
}

.service-title {
    color: var(--white);
    font-size: clamp(1.3rem, 2vw + 0.5rem, 2.1rem);
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 20px;
}

.service-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.9;
}

.service-btn-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-left: auto;
}

.service-btn-circle img {
    width: 100%;
}

.service-btn-circle:hover {
    transform: scale(1.1);
}

/* Initially hide text and button for non-active cards */
.service-card .service-text,
.service-card .service-btn-circle {
    display: none;
}

/* Show on hover or active */
.service-card.active .service-text,
.service-card.active .service-btn-circle,
.service-card:hover .service-text,
.service-card:hover .service-btn-circle {
    display: flex;
}

.service-card:hover .service-overlay {
    background: linear-gradient(0deg, #276542 -4.33%, rgba(0, 255, 111, 0.00) 100%);
}

.service-card:hover {
    transform: scale(1.03);
}

/* Help Section */
.help {
    padding: clamp(3.8rem, 6vw + 1rem, 7rem) 0;
    position: relative;
}

.help .sub-title {
    color: var(--dark-green);
    font-family: var(--font-opensans);
    font-size: 16px;
}

.help h2 {
    color: var(--black);
    font-style: italic;
    font-weight: 400;
    line-height: 114%;
}

.help-card {
    height: 480px;
    background-size: cover;
    background-position: center;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    transition: all 0.3s ease;
}

.help-card-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
}

.help-card-title {
    color: var(--white);
    font-size: clamp(1.4rem, 1vw + 1rem, 1.7rem);
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 30px;
}

.help .bottom-content p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.help-card:hover {
    transform: translateY(-10px);
}

.help-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1057px;
    height: 960px;
    background-image: url(../images/help-design-left.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

/* Choose Us Section */
.choose-us {
    background: #FCEBCE;
    padding: clamp(3.8rem, 6vw + 1rem, 7rem) 0;
    position: relative;
}

.choose-us .sub-title {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
}

.choose-us h2 {
    font-style: italic;
    font-weight: 400;
    line-height: 114%;
}

.choose-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    height: 100%;
    transition: all 0.3s ease;
}

.choose-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.choose-icon {
    margin-bottom: 80px;
}

.choose-icon img {
    height: 80px;
    width: auto;
}

.choose-title {
    color: var(--black);
    font-size: clamp(1.4rem, 1vw + 1rem, 1.7rem);
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 20px;
    max-width: 300px;
}

.choose-desc {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
    margin-bottom: 0;
}

.choose-us .btn.btn-primary {
    margin-top: 60px;
}

/* Results Section */
.results {
    background: url('../images/results-bg.png') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    padding: clamp(4rem, 5vw + 1rem, 7rem) 0;
    position: relative;
    height: 662px;
}

.results .sub-title {
    color: var(--white);
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 16px;
    letter-spacing: 0.32px;
}

.results h2 {
    color: var(--black);
    text-align: center;
    font-style: italic;
    font-weight: 400;
    line-height: 114%;
}

.results p {
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
}

/* Our Approach Section Styling */
.our-approach {
    padding: clamp(3.5rem, 6vw + 1rem, 7rem) 0;
    position: relative;
}

.our-approach:after {
    content: "";
    position: absolute;
    bottom: 120px;
    right: 0;
    width: 691px;
    height: 774px;
    background-image: url(../images/our-choose-right-design.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.our-approach .sub-title {
    color: var(--dark-green);
    letter-spacing: 0.32px;
}

.our-approach h2 {
    line-height: 1.1;
    font-weight: 400;
}

.our-approach p {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}

.approach-image-wrapper img {
    border-radius: 14px;
    max-width: 400px;
    width: 100%;
}

.feature-list .feature-text {
    color: var(--black);
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.btn-outline-location {
    border-radius: 60px;
    border: 1px solid #D45C06;
    color: var(--black);
    font-size: 16px;
    padding: 17px 40px;
    display: inline-block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline-location:hover {
    transform: scale(1.03);
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 991.98px) {
    .approach-features {
        padding-left: 0 !important;
        margin-top: 10px;
    }
}

/* Find Treatment Section Styling */
.find-treatment {
    background: url('../images/find-bg.jpg') no-repeat center center;
    background-size: cover;
    border-radius: 14px;
    padding-top: clamp(4rem, 6vw + 1rem, 6rem);
    padding-bottom: clamp(4rem, 6vw + 1rem, 6rem);
    padding-left: clamp(1rem, 3.5vw + 1rem, 4.5rem);
    padding-right: clamp(1rem, 3.5vw + 1rem, 4.5rem);
}

.find-treatment .sub-title {
    font-size: 16px;
    letter-spacing: 0.32px;
}

.find-treatment h2 {
    font-weight: 400;
    font-style: italic;
}

.step-card {
    background: var(--white);
    border-radius: 20px;
    border: none;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-label {
    color: #F57F2A;
    font-size: 16px;
    letter-spacing: 0.32px;
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 160px;
    border: 1px solid #F57F2A;
    background: #FCEBCE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-family: var(--font-volkov);
    font-size: clamp(1.4rem, 2vw + 1rem, 1.8rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
}

.step-desc {
    color: var(--black);
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
}

/* Our Locations Section Styling */
.our-locations {
    margin-top: 47px;
    padding: clamp(3rem, 6vw + 1rem, 6rem) 0;
    padding-top: clamp(2rem, 3vw + 1rem, 4rem);
    position: relative;
    background: url(../images/location-bg.png) no-repeat center right;
    background-size: 50%;
    background-position: top right;
}

.our-locations .sub-title {
    color: var(--dark-green);
    letter-spacing: 0.1em;
}

.our-locations h2 {
    font-weight: 400;
    font-style: italic;
}

.location-img-box {
    width: 140px;
    height: 140px;
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fa;
}

.location-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-name {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 140%;
}

/* Slick Slider Custom Styles */
.locations-slider li {
    list-style: none;
}

.locations-slider .slick-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 40px;
    padding: 0;
}

.locations-slider .slick-dots button {
    font-size: 0;
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: none;
    border: 1px solid transparent;
    opacity: 0.32;
    background: #BABABA;
    padding: 0;
    margin: 0 2px;
}

.locations-slider .slick-dots .slick-active button {
    border-radius: 10px;
    background: #276542;
    border: 1px solid #276542;
    opacity: 1;
    width: 31px;
    height: 5px;
}

.locations-slider .slick-track {
    padding: 30px 0 0;
}

.location-item {
    margin: 0 10px;
}

/* FAQ Section Styling */
.faq {
    padding-bottom: clamp(3.5rem, 7vw + 1rem, 9rem);
}

.faq h2 {
    font-weight: 400;
}

.faq .subtitle {
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}

.faq .accordion-button {
    border-radius: 60px !important;
    border: 1px solid #FFD0AE;
    background: #FCEBCF;
    padding: 7px 7px 7px 34px;
    color: var(--black);
    font-size: 18px;
    font-weight: 400;
    line-height: 138%;
}

.faq .accordion-button:focus {
    box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
    color: var(--black);
    box-shadow: none;
    background: none;
    border-color: transparent;
}

.faq .accordion-button::after {
    background-image: url('../images/accordion-close-icon.png');
    background-size: contain;
    width: 60px;
    height: 60px;
}

.faq .accordion-button:not(.collapsed)::after {
    background-image: url('../images/accordion-open-icon.png');
    transform: none;
    /* Reset rotation */
}

.faq .accordion-button[aria-expanded="true"]::after {
    background-image: url('../images/accordion-open-icon.png');
}

.faq .accordion-button[aria-expanded="true"] {
    background: none;
    border-color: transparent;
}

.faq .accordion-item {
    background-color: transparent;
}

.faq .accordion-body {
    padding: 0 88px 30px 33px;
}

.faq .accordion-body p {
    margin-bottom: 0;
    color: #424141;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
}

#faqAccordion {
    max-width: 909px;
    margin: auto;
}

/* We Care Section Styling */
.we-care-box {
    background: url(../images/we-care-client-bg.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 18px;
    position: relative;
    overflow: visible;
    margin-bottom: clamp(4rem, 7vw + 1rem, 8rem);
}

.we-care-img-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

.we-care-person {
    width: 83%;
    margin: auto;
    display: block;
}

.we-care-content h2 {
    font-weight: 400;
}

.we-care-box p {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}

.we-care-features svg {
    margin-right: 8px;
}

.we-care-features li span {
    color: var(--black);
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .we-care-img-wrapper {
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .we-care-box {
        padding: 40px 20px;
        overflow: hidden;
    }

    .we-care-content {
        padding: 0 !important;
        text-align: center;
    }

    .location-section-btn {
        text-align: left !important;
    }

    .location-btn-two {
        margin-left: 0px !important;
        margin-top: 15px;
    }
}

/* Footer Styles */
.site-footer {
    background: url(../images/footer-bg.jpg) no-repeat center center;
    background-size: cover;
    color: var(--black);
    padding: 50px 0 40px;
    font-style: normal;
}

.footer-desc {
    color: var(--black);
    font-size: 18px;
    font-weight: 700;
    line-height: 144%;
    max-width: 398px;
}

.footer-logo {
    margin-bottom: 32px;
}

.footer-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 144%;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--black);
    font-size: 17px;
    font-weight: 400;
    line-height: normal;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 0.8;
    font-style: normal;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-hours li {
    font-size: 16px;
    color: var(--black);
    opacity: 0.8;
    margin-bottom: 12px;
    font-style: normal;
}

.footer-contact-bar .border-gradient {
    width: 100%;
    height: 1px;
    display: block;
    background: linear-gradient(to right,
            transparent,
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.2),
            rgba(0, 0, 0, 0.1),
            transparent);
}

.contact-icon {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.contact-icon img {
    width: 18px;
    height: 18px;
}

.contact-label {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 160%;
}

.contact-value {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}

.footer-bottom {
    background: rgba(255, 255, 255, 0.2);
}

.copyright-text {
    color: var(--black);
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
}

.footer-contact-bar .row {
    padding: 50px 0 !important;
}

.bottom-text {
    margin-top: 37px;
}

.location-section-btn {
    text-align: right;
}

@media (max-width: 575px) {
    .location-section-btn {
        text-align: left;
    }

    .location-btn-two {
        margin-left: 0px !important;
        margin-top: 15px;
    }

    .container {
        padding: 0 20px;
    }

    .site-footer {
        padding: 0 0 30px;
    }

    .container.main-footer.py-5 {
        padding-bottom: 0 !important;
    }

    .contact-item {
        justify-content: flex-start !important;
        text-align: left;
    }

    .footer-contact-bar .row {
        padding: 25px 0 !important;
    }

    .footer-bottom {
        padding-top: 0 !important;
    }

    .value-text {
        font-size: 13px;
    }

    .value-icon-box {
        width: 50px;
        height: 50px;
        margin-right: 0.7rem !important;
    }

    .value-icon-box img {
        width: 20px;
        height: 20px;
    }

    .btn.btn-primary {
        font-size: 16px;
        height: 57px;
        padding: 22px 22px;
    }

    .grid-icon-box {
        margin-bottom: 57px;
    }

    .client-grid-wrapper {
        padding-left: 0;
    }

    .grid-item {
        padding: 20px 18px;
    }

    .every-client-section:after {
        top: -239px;
        width: 100%;
        height: 960px;
    }

    .values-section .col-lg-3.col-md-6.col-6 {
        padding: 0 7px !important;
        margin: 0;
    }

    .values-section .row {
        margin: 0 -7px;
        gap: 20px 0 !important;
        padding: 0 !important;
    }

    .every-client-section .col-lg-6 {
        margin: 0;
        padding: 0 10px;
    }

    .every-client-image.mt-5 {
        margin-top: 2rem !important;
        margin-bottom: 2.5rem;
    }

    .btn-get-help {
        font-size: 12px;
    }

    .bottom-text {
        margin-top: 37px;
    }

    .services-section h2 {
        font-size: clamp(2.4rem, 2.5vw + 1rem, 3rem);
    }

    .every-client-section {
        padding-bottom: 0 !important;
    }

    .services-header.mb-5 {
        margin-bottom: 0 !important;
    }

    .services-grid {
        margin-top: 1rem;
    }

    .service-content {
        padding: 30px 16px;
    }

    .service-card {
        height: 380px;
        border-radius: 30px;
    }

    .service-text {
        overflow: visible;
        font-size: 14px;
        line-height: 19px;
        margin-top: 10px;
    }

    .service-btn-circle {
        width: 55px;
        height: 55px;
        margin-top: 10px;
    }

    .services-section .col-lg-4.col-md-6.col-6 {
        padding: 0 7px !important;
        margin: 0;
    }

    .services-section .row {
        margin: 0 -7px;
        gap: 20px 0 !important;
        padding: 0 !important;
    }

    .services-header .row {
        margin: 0 -7px;
        gap: 0 !important;
        padding: 0 !important;
    }

    .service-title {
        margin-bottom: 0;
        line-height: 27px;
    }

    .services-intro {
        margin-bottom: 1.5rem !important;
        font-size: 16px;
        margin-top: 1rem;
    }

    .services-section .col-lg-6 {
        margin: 0;
    }

    h2 br {
        display: none;
    }

    .help h2 {
        font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    }

    .header.text-center {
        margin-bottom: 2rem !important;
    }

    .help-card {
        height: 360px;
        border-radius: 26px;
    }

    .help-card-overlay {
        padding: 25px;
    }

    .btn.btn-outline-primary {
        height: 56px;
        padding: 22px 20px;
        gap: 0;
    }

    .help .bottom-content p {
        margin-bottom: 2rem !important;
    }

    .help .row {
        margin-bottom: 2rem !important;
    }

    .help .bottom-content {
        margin-top: 2rem !important;
    }

    .help-card-title {
        margin-bottom: 20px;
    }

    .every-client-section .row {
        margin: 0 -10px;
    }

    .help:after {
        width: 100%;
        height: 550px;
    }

    .help-card-img {
        width: 100%;
    }

    .choose-icon img {
        height: 65px;
    }

    .choose-icon {
        margin-bottom: 30px;
    }

    .choose-card {
        padding: 20px;
    }

    .choose-title {
        line-height: 27px;
        margin-bottom: 15px;
    }

    .choose-desc {
        font-size: 15px;
        line-height: 22px;
        margin-bottom: 0;
    }

    .choose-us .btn.btn-primary {
        margin-top: 40px;
    }

    .footer-logo img {
        height: 75px;
    }

    .our-approach:after {
        width: 100%;
        height: 474px;
        top: -200px;
    }

    .our-approach p {
        margin-bottom: 3px;
    }

    .feature-list li {
        margin-bottom: 14px !important;
    }

    .feature-list {
        margin-bottom: 35px;
    }

    .container.find-treatement-container {
        padding: 0;
    }

    .find-treatment {
        border-radius: 0;
        padding-left: 20px;
        padding-right: 20px;
    }

    .find-treatment .text-center.mt-5 {
        margin-top: 2.2rem !important;
    }

    .step-card {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .values-section {
        padding-bottom: 1rem;
    }

    .location-img-box {
        width: auto;
        height: auto;
    }

    .location-item {
        margin: 0 9px;
    }

    .our-locations {
        margin-top: 25px;
        background-size: 80%;
    }

    .our-locations h2 {
        font-size: clamp(2rem, 2.5vw + 1rem, 3rem);
    }

    .locations-slider .slick-dots {
        margin: 10px 0 25px;
    }

    .faq .accordion-button {
        font-size: 15px;
        gap: 0 20px;
        line-height: 20px;
        padding: 7px 7px 7px 24px;
    }

    .faq .accordion-button::after {
        width: 45px;
        height: 45px;
    }

    .faq .accordion-body p {
        font-size: 15px;
    }

    .faq .accordion-body {
        padding: 0 68px 30px 24px;
    }

    .faq .accordion-item:last-child {
        margin-bottom: 0 !important;
    }

    .we-care-box .col-lg-5 {
        order: 2;
    }

    .we-care-box {
        padding: 40px 20px 0 20px;
        overflow: hidden;
    }

    .we-care-img-wrapper {
        width: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .we-care-box p {
        font-size: 16px;
        line-height: 25px;
        margin-bottom: 1.5rem !important;
    }

    .we-care-features {
        gap: 10px 0 !important;
    }

    .we-care-box .mb-5 {
        margin-bottom: 1.8rem !important;
    }

    .we-care-features {
        justify-content: flex-start;
        gap: 10px 0 !important;
        max-width: 220px;
        align-items: flex-start !important;
        margin: 0 auto 22px;
    }

    .we-care-box .btn.btn-primary {
        font-size: 14px;
        height: 51px;
        padding: 19px 17px;
    }

    .we-care-box {
        padding: 40px 18px 0 18px;
    }

    .faq .subtitle {
        font-size: 16px;
    }

    .faq .subtitle br {
        display: none;
    }

    .btn-outline-location {
        font-size: 16px;
        padding: 16px 35px;
    }

    .every-client-section .btn.btn-primary {
        font-size: 15px;
        height: 57px;
        padding: 22px 29px;
    }

    .hero .container {
        margin-top: 8rem;
    }

    .hero {
        align-items: flex-start !important;
    }
}

/* We Care Section Styling */
.we-care-box {
    background: url(../images/we-care-client-bg.jpg) no-repeat center center;
    background-size: cover;
    border-radius: 18px;
    position: relative;
    overflow: visible;
    margin-bottom: clamp(4rem, 7vw + 1rem, 8rem);
}

.we-care-img-wrapper {
    position: relative;
    margin-top: -100px;
    z-index: 2;
}

/* .we-care-person {
    width: 100%;
} */

.we-care-content h2 {
    font-weight: 400;
}

.we-care-box p {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}

.we-care-features svg {
    margin-right: 8px;
}

.we-care-features li span {
    color: var(--black);
    font-size: 16px;
}

@media (max-width: 991.98px) {
    .we-care-img-wrapper {
        margin-top: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .we-care-box {
        padding: 40px 20px;
        overflow: hidden;
    }

    .we-care-content {
        padding: 0 !important;
        text-align: center;
    }
}

/* We Care Section Styling end */
.our-clinic-section {
    margin-bottom: clamp(3.2rem, 7vw + 1rem, 9rem);
}

.our-clinic-title {
    font-size: 28px;
    line-height: 140%;
}

/* Location Section Styling  */
.location-banner {
    background: #FFEFE4;
    padding-top: 100px;
}

.location-time ul {
    padding: 0;
    list-style: none;
}

.location-time ul li {
    padding: 2px 0;
    font-size: 15px;
} 

.location-banner-title { 
color: #000 !important; 
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

span.black-heading {
    color: #000 !important;
}
.location-banner-para {
    color: var(--white);
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.location-overlay {
    background: linear-gradient(0deg, #FFF 0%, rgba(255, 255, 255, 0.00) 81.69%);
    height: 100%;
}

.location-section-btn {
    text-align: right;
}

.btn.btn-outline--secondary {
    border-radius: 60px;
    border: 1px solid #000;
    color: #000;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: inline-flex;
    height: 60px;
    padding: 22px 30px;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
    margin-left: 12px;
}

.btn.btn-outline--secondary:hover {
    transform: scale(1.03);
    border-color: #FF6B00;
    background: linear-gradient(90deg, #FF6B00 0%, #E66203 100%);
}

@media (max-width: 991.98px) {
    section.location-banner.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }

    .location-section-btn {
        text-align: left;
    }

    .location-btn-two {
        margin-left: 0px !important;
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    section.location-banner {
        padding-top: 8rem;
    }
}

/* location Section Styling end */
/* specialist Section Styling */
.specialist-section-li {
    font-size: 20px;
    font-weight: 600;
}

.specialist-section-li img {
    width: auto;
    max-width: auto !important;
}

.specialist-section-ul {
    margin-bottom: 30px;
    max-width: 614px;
    width: 100%;
}

.specialist-section {
    padding-top: clamp(3.2rem, 6vw + 1rem, 6rem);
}

.services-section-location {
    padding-bottom: clamp(3.8rem, 6vw + 1rem, 6.5rem);
}

.specialist-section-location {
    padding-top: clamp(3.2rem, 3vw + 1rem, 4rem);
    padding-bottom: clamp(3.2rem, 4vw + 1rem, 6rem);
}

.specialist-section p {
    font-size: 16px;
    line-height: 160%;
    opacity: 0.8;
}

.specialist-section span {
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 991.98px) {
    .specialist-section {
        padding-top: 60px !important;
    }
}

/* specialist Section Styling end*/
/* About page about Section Styling  */
.about-us-banner {
    background: url('../images/about-us-banner.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 493px;
}

.about-us-banner-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 991.98px) {
    .about-us-banner.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }
}

@media (max-width: 575px) {
    .about-us-banner {
        padding-top: 8rem;
    }
}

/* About page about Section Styling end */
/* Road to recovery Section Styling */
.road-to-recovery {
    padding-top: 120px;
}

@media (max-width: 991.98px) {
    .road-to-recovery {
        padding-top: 60px;
    }
}

@media (max-width: 575px) {
    section.road-to-recovery {
        padding-top: 60px;
    }
}

/* Road to recovery Section Styling end */
/* our mission Section Styling */
.our-mission-n {
    padding-top: 120px;
}

.col-lg-6.our-mission-n-left {
    padding: 54px 60px 101px 61px;
    align-items: center;
    border-radius: 15px;
    background: #FBF7EF;
    margin-top: 90px;
    height: 100%;
}

.our-mission-n h2 {
    margin-bottom: 38px;
}

.our-mission-n p {
    font-size: 18px;
    font-style: normal;
    line-height: 160%;
}

.p-one-n {
    margin-bottom: 24px;
}

.p-two-n {
    margin-bottom: 65px;
}

@media (max-width: 991.98px) {
    .our-mission-n {
        padding-top: 0px;
    }

    .col-lg-6.our-mission-n-left {
        padding: 40px 24px 40px 24px;
    }

    .p-two-n {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .our-mission-n {
        padding-top: 0px;
    }

    .col-lg-6.our-mission-n-left {
        padding: 40px 24px 40px 24px;
    }

    .p-two-n {
        margin-bottom: 40px;
    }
}

/* our mission Section Styling end */
/* our value Section Styling */
.our-value-n {
    margin-top: 100px;
    margin-bottom: 100px;
}

.our-value-n-title {
    font-size: 28px;
}

.our-value-n-card {
    display: flex;
    padding: 17px 34px;
    flex-direction: column;
    align-items: flex-start;
    gap: 70px;
}

.br-r {
    border-right: 1px solid rgba(39, 101, 66, 0.10);
}

@media (max-width: 991.98px) {
    .our-value-n-title {
        font-size: 20px;
    }

    .our-value-n {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .our-value-n-card {
        padding: 17px 9px;
        gap: 29px;
    }

    .br-r-m {
        border-right: 0px !important;
    }
}

@media (max-width: 575px) {
    .our-value-n-title {
        font-size: 17px;
    }

    .our-value-n {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .our-value-n-card {
        padding: 17px 9px;
        gap: 20px;
    }

    .br-r-m {
        border-right: 0px !important;
    }
}

/* our value Section Styling end */
/* journey Section Styling */
.journey-section {
    background: url(../images/siting-ladies.png) no-repeat;
    background-position: center top;
    background-size: cover;
    height: 865px;
    margin-top: 120px;
    margin-bottom: 150px;
    background-position: 0;
}

.journey-section-title {
    color: var(--black);
    font-size: 42px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

@media (max-width: 991.98px) {
    .journey-section {
        padding-top: 2rem !important;
        height: 750px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .journey-section-title {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .journey-section {
        padding-top: 2rem;
        margin-top: 40px;
        margin-bottom: 40px;
        height: 750px;
    }

    .journey-section-title {
        font-size: 28px;
    }
}

/* journey Section Styling */
.our-clinic-section.a-b-p {
    margin-top: 100px;
}

@media (max-width: 991.98px) {
    .our-clinic-section.a-b-p {
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .our-clinic-section.a-b-p {
        margin-top: 40px;
    }
}

/* Blog page about Section Styling  */
.blog--us-banner {
    background: url('../images/blog-banner.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 493px;
}

.blog-banner-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 991.98px) {
    section.blog-banner-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }
}

@media (max-width: 575px) {
    section.blog-banner-title {
        padding-top: 8rem;
    }
}

/* Blog page about Section Styling end */
.blog-block {
    margin-top: 100px;
    margin-bottom: 100px;
}

.blog--card {
    border-radius: 12px;
    border: 1px solid rgba(38, 99, 65, 0.10);
    padding: 0px;
    margin-bottom: 36px;
}

.blog-card-content {
    padding: 32px 24px;
}

.blog-card-content h5 {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-top: 18px;
    margin-bottom: 14px;
}

a.blog-btn {
    color: #F57F2A;
    font-family: var(--font-opensans);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.blog-card-img img {
    width: 100%;
    border-radius: 0px 0px 12px 12px;
}

.form-select:focus {
    border-color: #F5F7F6;
    outline: 0;
    box-shadow: none;
}

.blog-detail-right select.form-select {
    display: flex;
    padding: 18px 16px;
    justify-content: center;
    align-items: center;
    gap: 218px;
    border-radius: 7px;
    background: url(../images/dropdown-arrow.png) no-repeat 95% 25px;
    appearance: none;
    background-color: #F5F7F6;
    background-size: 14px;
}

.search-wrapper {
    position: relative;
}

.blog-detail-right h5 {
    margin: 20px 0;
}

.blog-detail-right a {
    color: #000;
}

.location-dev {
    margin-bottom: 40px;
}

button.search-icon {
    background: transparent;
    border: none;
}

.search-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfd8d3;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    color: #000;
    font-family: var(--font-opensans);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.search-input::placeholder {
    color: #666;
}

.search-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

/* Blog detail page about Section Styling  */
.blog--detail--us-banner {
    background: url('../images/blog-detail.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 644px;
}

.blog-banner-detail-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
    margin-bottom: 100px !important;
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g-n {
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.b-t-h {
    color: var(--Black, #141414);
    font-family: var(--font-opensans);
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%;
    /* 38.08px */
}

ul.blog-detail-ul {
    list-style: none;
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.d-flex.blog-detail--n {
    border-radius: 8px;
    background: #F7F7F7;
    padding: 15px;
    align-items: center;
    gap: 15px;
}

.d-flex.blog-detail--n img {
    width: 61px;
    height: 61px;
    max-width: 61px;
    object-fit: cover;
}

.d-flex.blog-detail--n {
    gap: 15px;
}

.blog-detail--n span {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.blog-detail--n p {
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 991.98px) {
    section.blog-banner-detail-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }
}

@media (max-width: 575px) {
    section.blog-banner-detail-title {
        padding-top: 8rem;
    }
}

.blog--detail-block {
    margin-top: 100px;
    margin-bottom: 150px;
}

.blog-detail-right h5 {
    font-family: var(--font-opensans);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 119%;
    /* 23.8px */
}

/* faqs page about Section Styling  */
.faqs-section {
    background: url('../images/faq.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 493px;
}

.faqs-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

.faq {
    margin-top: 100px;
}

@media (max-width: 991.98px) {
    section.faqs-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }

    .faq {
        margin-top: 60px;
    }
}

@media (max-width: 575px) {
    section.faqs-title {
        padding-top: 8rem;
    }

    .faq {
        margin-top: 60px;
    }
}

/* Blog page about Section Styling  */
.privacy-banner {
    background: #fff;
    background-position: center top;
    background-size: cover;
    height: 350px;
}

section.pr-block {
    margin-bottom: 130px;
}

section.privacy-banner.d-flex.align-items-end {
    margin-bottom: 50px;
}

.privacy-title {
    color: var(--black);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

.bs-d {
    color: #000;
    font-family: var(--font-opensans);
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 124%;
    /* 34.72px */
}

.pr-block {
    margin-top: 34px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 1140px;
    margin: auto;
}

span.sub-title.breadcrumb-text.b-n-g-n {
    color: #000;
}

@media (max-width: 991.98px) {
    section.privacy-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }

    .privacy-title {
        font-size: 30px;
    }

    .pr-block {
        margin-top: 34px;
        margin-bottom: 20px !important;
    }

    .b-t-h {
        font-size: 18px;
    }

    .bs-d {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    section.privacy-title {
        padding-top: 8rem;
    }

    .privacy-title {
        font-size: 30px;
    }

    .privacy-banner {
        height: 200px;
    }

    .pr-block {
        margin-top: 34px;
        margin-bottom: 20px !important;
    }

    .b-t-h {
        font-size: 18px;
    }

    .bs-d {
        font-size: 18px;
    }
}

/* contact page about Section Styling  */
.contact-section {
    background: url('../images/contact.png') no-repeat;
    background-position: center top;
    background-size: cover;
    height: 493px;
}

.contact-title {
    color: var(--white);
    font-size: 48px;
    font-weight: 400;
    line-height: 111%;
    text-transform: capitalize;
}

.breadcrumb-text {
    color: var(--white);
    font-family: var(--font-opensans);
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 148%;
    text-transform: uppercase;
}

.b-n-g {
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact {
    margin-top: 100px;
    margin-bottom: 150px;
}

@media (max-width: 991.98px) {
    section.contact-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }

    .contact {
        margin-top: 60px;
        margin-bottom: 50px !important;
    }

    .contact-page-sm-des {
        width: 100% !important;
        margin-bottom: 50px;
    }

    .contact-card {
        padding: 26px !important;
    }

    .contact-page-bootom-content {
        margin-top: 40px !important;
    }
}

@media (max-width: 575px) {
    section.contact-title {
        padding-top: 8rem;
    }

    .contact {
        margin-top: 60px;
        margin-bottom: 50px !important;
    }

    .contact-card {
        padding: 26px !important;
    }

    .contact-page-bootom-content {
        margin-top: 40px !important;
    }
}

.contact-card {
    border-radius: 16px;
    padding: 48px;
    width: 100%;
    max-width: 568px;
    border-radius: 26px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    background: #FFF;
}

.form-control {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 30px;
    padding: 18px 22px;
    font-size: 14px;
}

textarea.form-control {
    border-radius: 20px;
    resize: none;
}

.wpcf7-submit {
    color: var(--Grays-White, #FFF);
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: flex;
    padding: 18px 48px;
    align-items: center;
    gap: 11px;
    border-radius: 60px;
    border: 1px solid #D45C06;
    background: linear-gradient(90deg, #E66203 0%, #FF6B00 100%);
}

span.wpcf7-not-valid-tip {
    position: absolute;
    font-size: 12px;
    right: 0;
}

h2.screen-reader-text {
    display: none;
}

nav.navigation.pagination {
    text-align: center;
    display: block;
}

.nav-links a {
    color: #000;
    font-weight: bold;
    padding: 0 4px;
}

.wpcf7-response-output {
    position: absolute;
    border: none !important;
    font-size: 12px;
    text-align: center;
    width: 100%;
    left: 0;
}

.contact-card {
    position: relative;
    overflow: hidden;
}

.wpcf7-submit:hover {
    background: #e65f00;
}

label {
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 106%;
    /* 19.08px */
    text-transform: capitalize;
    margin-bottom: 16px;
}

.form-control::placeholder {
    color: #000;
    font-family: var(--font-montserrat);
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
    /* 15.9px */
}

.c-s-b-n {
    margin-bottom: 25px;
}

.contact-page-sm-des h2 {
    color: #000;
    font-family: var(--font-volkov);
    font-size: 28px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
    margin-bottom: 19px;
}

.contact-page-sm-des {
    width: 484px;
    padding: 38px 37px 36px 37px;
    border-radius: 18px;
    background: linear-gradient(180deg, #FCEBCE 0%, #FFFBF5 113.52%);
}

.contact-info-card {
    display: flex;
    padding: 40px 43px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    border-radius: 24px;
    border: 1px solid rgba(245, 127, 42, 0.26);
    background: #FFF;
}

.contact-info-card span {
    color: #000;
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 106%;
}

.contact-info-card a {
    height: 54px;
    text-decoration: none;
    color: #000;
    text-align: center;
    font-family: var(--font-opensans);
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 106%;
}

.contact-page-bootom-content {
    margin-top: 100px;
}

.our-mission-n.about-space {
    padding-top: 90px;
}

.about-us-banner .container,
.contact-section .container,
.faqs-section .container,
.blog--us-banner .container {
    margin-bottom: 135px !important;
}

.our-mission-n .slider-item img {
    height: 580px;
}

.contact-page textarea.form-control {
    height: 159px;
    min-height: auto;
}

.contact-page .wpcf7-not-valid-tip {
    position: relative;
    font-size: 15px;
    right: 0;
    margin-top: 5px;
}

.blog--us-banner {
    align-items: flex-end !important;
}

.blog--card {
    display: flex;
    flex-direction: column;
    height: 95%;
}

.blog-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-content h5 {
    flex: 1;
}

.blog--detail--us-banner .sub-title.breadcrumb-text.b-n-g-n {
    color: #fff;
}

.blog--detail-block h2 {
    font-size: clamp(2.3rem, 2.5vw + 1rem, 2rem);
    margin-bottom: 26px;
    margin-top: 30px;
}

/* Programe page start here */
.programe-banner .breadcrumb-text {
    color: var(--white);
}

.programe-banner .container {
    margin-top: 250px;
}

.help.programme-help:after {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    width: 1057px;
    height: 521px;
    background-image: url(../images/programe-help-right-design.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    right: 0;
}

@media (max-width: 991.98px) {
    section.privacy-title.d-flex.align-items-end {
        padding-top: 8rem !important;
        height: 100%;
    }

    .privacy-title {
        font-size: 30px;
    }

    .pr-block {
        margin-top: 34px;
        margin-bottom: 20px;
    }

    .b-t-h {
        font-size: 18px;
    }

    .bs-d {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    section.privacy-title {
        padding-top: 8rem;
    }

    .privacy-title {
        font-size: 30px;
    }

    .privacy-banner {
        height: 200px;
    }

    .pr-block {
        margin-top: 34px;
        margin-bottom: 20px;
    }

    .b-t-h {
        font-size: 18px;
    }

    .bs-d {
        font-size: 18px;
    }
}

/* Respect Journey Section Start */
.respect-journey {
    padding: clamp(3rem, 5vw + 1rem, 5rem) 0;
    margin-top: -149px;
    padding-bottom: 10px;
}

.respect-journey-img img {
    width: 100%;
}

.respect-journey-content h2 {
    font-size: clamp(2.3rem, 2.5vw + 1rem, 3rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--black);
}

.respect-journey-content p {
    color: #0F0F0F;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 50px;
}

.respect-journey-content .sub-title {
    color: var(--dark-green) !important;
}

.respect-journey-content {
    margin-top: 200px;
}

/* Respect Journey Section End */
/* Treatment Steps Section Start */
.treatment-steps-programe {
    background: #FCEBCE;
    padding: clamp(5rem, 6vw + 1rem, 7rem) 0;
    padding-bottom: 9rem;
}

.treatment-steps-programe .treatment-step-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 35px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.treatment-steps-programe .treatment-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.treatment-steps-programe .step-number {
    font-family: var(--font-volkov);
    font-size: 80px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 25px;
    background: linear-gradient(180deg, #F57F2A 0%, rgba(245, 127, 42, 0.00) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.treatment-steps-programe .step-title {
    font-size: 28px;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 13px;
    color: var(--black);
}

.treatment-steps-programe .step-desc {
    color: var(--black);
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
    opacity: 0.8;
    max-width: 260px;
    margin: auto;
}

.treatment-steps-programe .sub-title {
    color: var(--black);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
}

/* Treatment Steps Section End */


/* Support Options Section */
.support-options-resource {
    padding: clamp(5rem, 6vw + 1rem, 7rem) 0;
    position: relative;
}

.support-options-resource:after {
    content: "";
    position: absolute;
    top: 0;
    left: auto;
    width: 1057px;
    height: 800px;
    background-image: url(../images/programe-help-right-design.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
    right: 0;
}

.support-options-resource .support-card {
    background: #FFFFFF;
    border-radius: 40px;
    box-shadow: 0px 4px 60px 0px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    padding: 28px;
}

.support-options-resource .support-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0px 10px 80px 0px rgba(0, 0, 0, 0.1);
}

.support-options-resource .support-icon-circle {
    width: 80px;
    height: 80px;
    border: 1px solid #F57F2A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.support-options-resource .support-card:hover .support-icon-circle {
    background-color: #FCEBCE;
}

.support-options-resource .support-card-title {
    color: var(--black);
    font-family: var(--font-opensans);
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
}

.support-options-resource .support-card-desc {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}

.support-options-resource .grayscale {
    filter: grayscale(1);
    opacity: 0.7;
}

.support-options-resource .btn.btn-primary {
    margin-top: 20px;
}

.respect-journey.whole-respect-resources {
    margin: 0;
    padding-bottom: clamp(5rem, 7vw + 1rem, 7rem);
}

.respect-journey.whole-respect-resources .respect-journey-content {
    margin-top: 40px;
}

.famlies-and-loved-img {
    margin-top: -13px;
}

.faq .accordion-body h6 {
    color: #276542;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 15px;
    font-family: var(--font-opensans);
}

.faq .accordion-body a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.find-nearest-location {
    padding-top: clamp(3rem, 5vw + 1rem, 6rem);

}

.google-map-location {
    border-radius: 18px;
    overflow: hidden;
}

.clinic-location-list a {
    display: flex;
    padding: 18px 22px 18px 20px;
    justify-content: center;
    align-items: center;
    gap: 32px;
    border-radius: 100px;
    background: rgba(252, 235, 206, 0.74);
    color: var(--black);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    opacity: 0.8;
    text-decoration: none;
}

.clinic-location-list .arrow-link {
    margin-left: auto;
    display: flex;
}

.clinic-location-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog .we-care {
    display: none;
}

.post-template-default .we-care {
    display: none;
}

.page-template-faq-template .we-care .btn.btn-primary {
    display: none;
}

.results.reslut-about-us {
    background: none;
    height: auto;
    padding: 0;
}

.results.reslut-about-us img {
    height: 662px;
    width: 100%;
    object-fit: cover;
}

.results.reslut-about-us p {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    opacity: 0.8;
}