/* Global CSS start here */
:root {
    /* Fonts */

    --font-poppins: "Poppins", sans-serif;
    --font-montserrat: "Montserrat", sans-serif;
    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #284D06;
    --primary-hover: #306500;
    --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-montserrat);
    padding-top: 93px;
}

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

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

h2 {
    font-size: clamp(2.2rem, 3.125vw + 1rem, 3.125rem);
    font-weight: 700 !important;
}

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, 1.38vw + 1rem, 1.38rem);
}

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: var(--primary);
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-poppins);
    font-size: 22px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    /* text-transform: uppercase; */
    display: inline-flex;
    height: 68px;
    padding: 22px 35px;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}

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

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

.btn.btn-outline-primary:hover {
    transform: scale(1.03);
    background: none;
}

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

.btn.btn-secondary {
    border-radius: 60px;
    border: var(--primary);
    background: #EBFFE1;
    color: #000;
    font-family: var(--font-poppins);
font-size: 22px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0.32px;
    /* text-transform: uppercase; */
    display: inline-flex;
    height: 68px;
    padding: 22px 35px;
    align-items: center;
    gap: 11px;
    transition: all 0.3s ease;
}

.btn.btn-secondary:hover {
    transform: scale(1.03);
}

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

.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;
}

.navbar-nav li.current-menu-item a{	
    color: #3fa500;
}

.page-header .navbar.fixed-top {
    top: 0;
    background: #FFF;
    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: 68px;
    transition: all 0.3s ease;
    max-width: 115px;
}

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

.navbar .nav-link {
    font-family: var(--font-poppins);
    font-weight: 500;
    padding: 10px 25px;
    font-size: 18px;
    transition: all 0.2s ease;
    color: var(--black);
}

.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;
    border-radius: 100px;
    border: 1px solid #284D06;
    display: flex;
    height: 54px;
    padding: 18px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-right: 16px;
    margin-left: auto;
}

.page-header .btn.btn-primary {
    height: 54px;
    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-poppins);
    font-weight: 500;
    padding: 10px 25px;
    font-size: 18px;
    transition: all 0.2s ease;
    color: var(--black);
}

.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: contain;
    width: 16px;
    height: 17px;
    border: none;
    margin-left: 6px;
    opacity: 1;
    vertical-align: middle;
}

.stars .star{
    font-size:14px;
}

.star.full{
    color:#f5b301;
}

.star.empty{
    color:#ddd;
}

.star.half{
    background:linear-gradient(90deg,#f5b301 50%,#ddd 50%);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

@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: 824px;
}

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

.hero h1 span {
    color: var(--primary);
}

.hero .btn.btn-primary {
    padding: 22px 30px 22px 16px;
}

.feature-list.list-unstyled li {
    width: 50%;
    max-width: 50%;
}

.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;
}



/* 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(--primary);
    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-card p {
    color: #161616;
    opacity: 0.9;
}

.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);
}
.services-section .service-card:hover {
    transform: scale(1.03);
	background-color: #284d06 !important;
    color: #fff !important;
}
.services-section .service-card:hover h5,
.services-section .service-card:hover p,
.services-section .service-card:hover a{
    color: #fff !important;
} 
.services-section .service-card:hover a svg{
   filter: invert(1) brightness(7.5);
} 
/* 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(--primary);
    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);
    margin-bottom: clamp(4rem, 5vw + 1rem, 6rem);
}

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


.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: #284D06;
    font-size: 16px;
    letter-spacing: 0.32px;
}

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

.step-title {
    font-family: var(--font-volkov);
    font-size: clamp(1.4rem, 1vw + 1rem, 1.6rem);
    color: var(--black);
    text-align: center;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

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

/* 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;
}



/* We Care Section Styling */
.we-care-box {
    border-radius: 18px;
    background: linear-gradient(180deg, #284D06 0%, #284D06 100%);
    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 {
    margin: auto;
    display: block;
    border-radius: 20px;
    height: 473px;
    object-fit: cover;
    width: 100%;
}

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

.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: 600;
    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: left;
    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;
        padding-top: 5rem !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,
    .btn.btn-secondary {
        font-size: 18px;
        height: 54px;
        padding: 22px 28px;
    }

    .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: 0px 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: 50px;
        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: 3rem;
    }

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

/* We Care Section Styling */
.we-care-box {
    border-radius: 32px;
    background: linear-gradient(180deg, #284D06 0%, #284D06 100%);
    position: relative;
    overflow: visible;
    margin-bottom: clamp(4rem, 7vw + 1rem, 8rem);
    padding: 25px 25px 25px 60px;
}

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

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

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

.we-care-box p {
    color: var(--black);
    font-size: 16px;
    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(--white);
    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%;
	font-weight: 700;
}

/* 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: 700;
    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: 44px 60px 48px 61px;
    align-items: center;
    border-radius: 15px;
    background: #F4FFEF;
    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: 700;
    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;
}

.blog-btn {
    color: var(--primary);
    font-family: var(--font-opensans);
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
	text-underline-offset: 8px;
}

.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;
	    background-color: #0000003d;
    background-blend-mode: darken;
}

.blog-banner-detail-title {
    color: var(--white);
/*     font-size: 48px; */
    font-weight: 600;
    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;
}


@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: 700;
    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 var(--primary);
    background: var(--primary);
}

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: var(--primary-hover);
    border-color: var(--primary-hover);
}

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: 600;
    line-height: 106%;
    margin-bottom: 19px;
}

.contact-page-sm-des {
    width: 484px;
    padding: 38px 37px 36px 37px;
    border-radius: 18px;
    background: linear-gradient(180deg, #EBFFE1 0%, rgba(235, 255, 225, 0.00) 134.85%);
}

.contact-info-card {
    display: flex;
    padding: 40px 43px;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    border-radius: 24px;
    border: 1px solid rgba(40, 77, 6, 0.26);
    background: #FFF;
    transition: all 0.5s ease-in-out 0s;
}

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

.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-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 122%;
}

.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: 579px;
    width: 100%;
}

.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;
	font-weight: 600;
}
.blog--detail-block h2 strong{	
	font-weight: 600;
}

/* 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: 50px 0 0 0;
}

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

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

.areas-we-serve {
    background: #F6FFF1;
    margin-top: clamp(4rem, 5vw + 1rem, 6rem);
    padding: clamp(4rem, 5vw + 1rem, 6rem) 0;
}

/* .areas-we-serve h2 {
    font-size: clamp(2rem, 3vw + 1rem, 3.5rem);
} */

.areas-we-serve .lead {
    font-size: 1.1rem;
    color: var(--secondary);
}

.areas-we-serve .icon-pin {
    display: inline-block;
    width: 20px;
    min-width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-geo-alt' viewBox='0 0 16 16'%3E%3Cpath d='M12.166 8.94c-.524 1.062-1.234 2.12-1.96 3.07A31.493 31.493 0 0 1 8 14.58a31.481 31.481 0 0 1-2.206-2.57c-.726-.95-1.436-2.008-1.96-3.07C3.304 7.867 3 6.862 3 6a5 5 0 0 1 10 0c0 .862-.304 1.867-.834 2.94zM8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10z'/%3E%3Cpath d='M8 8a2 2 0 1 1 0-4 2 2 0 0 1 0 4zm0 1a3 3 0 1 0 0-6 3 3 0 0 0 0 6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.areas-we-serve .area-item {
    font-size: 1.125rem;
    font-weight: 600;
}

.areas-we-serve .list-unstyled {
    position: relative;
}

/* .areas-we-serve .list-unstyled:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    right: 49px;
    top: 0;
} */

.areas-we-serve .list-unstyled:after:last-child {
    display: none;
}

.areas-we-serve .col-lg-3.col-md-6.col-6.mb-4:last-child .list-unstyled:after {
    display: none;
}

@media (min-width: 992px) {
    .border-end-desktop {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
}

.we-care .row {
    flex-direction: row-reverse;
}

.we-care-features.list-unstyled li {
    width: 43%;
}

.we-care-content .btn.btn-primary {
    background: #EBFFE1;
    color: #000;
}

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

.flag-map {
    display: none;
}

.we-care {
    margin-top: clamp(4rem, 7vw + 1rem, 7rem);
}

.navbar-nav {
    flex: 1;
}

.navbar-nav li:first-child {
    margin-left: auto;
}

.results.reslut-about-us .row {
    position: relative;
}

.our-clinic-icon img {
    width: 80px;
}

.our-clinic-card p {
    max-width: 334px;
    width: 100%;
    margin: auto;
}



/* Services Section Styles */
.why-choose-sec {
    background: var(--primary);
    color: var(--white);
    padding: clamp(3.5rem, 5vw + 1rem, 6.5rem) 0;
}

.why-choose-sec h2 {
    color: var(--black);
}

.why-choose-sec p {
    line-height: 148%;
    color: var(--white);
}

.why-choose-sec .service-card {
    position: relative;
    height: 325px;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
    border-radius: 14px;
    background: #FFF;
}

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

.why-choose-sec .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: clamp(1rem, 1vw + 1rem, 2.5rem);
    padding-bottom: clamp(1rem, 1vw + 1rem, 2.5rem);
    padding-left: clamp(1rem, 1vw + 1rem, 2rem);
    padding-right: clamp(1rem, 1vw + 1rem, 2rem);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-choose-sec .service-overlay h3 {
    color: var(--black);
    font-size: clamp(1rem, 0.6vw + 1rem, 1.75rem);
    font-weight: 700;
}

.why-choose-sec .service-overlay p {
    color: #161616;
    font-size: 1rem;
    opacity: 0.9;
}

.service-card-image {
    margin-bottom: 42px;
}

.service-card-image img {
    width: 65px;
    height: 65px;
}

.blog-detail--n .we-care-person {
    border-radius: 6px;
}

/* .blog--detail-block li {
    margin-bottom: 15px;
} */

.recent-work {
    padding: clamp(3.5rem, 5vw + 1rem, 6rem) 0;
}

.recent-work h2 {
    color: var(--black);
}

/* Slick Slider Customization */
.recent-work-slider .slick-dots {
    bottom: -40px;
}

.recent-work-slider .slick-dots li button:before {
    font-size: 12px;
    color: #009D0A;
}

.recent-work-slider .slick-dots li.slick-active button:before {
    color: #009D0A;
}

.recent-work-slider {
    position: relative;
}

.recent-work-slider:before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    width: 250px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 99;
}

.recent-work-slider:after {
    content: "";
    position: absolute;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 20%, rgba(255, 255, 255, 0) 100%);
    width: 250px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 99;
}

.recent-work-slider .slider-item {
    margin: 0 6px;
}

.slick-slide img {
    border-radius: 10px;
}

/* FAQ Section Styling */
.faq {
    padding-bottom: 0;
}

.faq .accordion-item {
    border: none;
}

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

.faq .accordion-button {
    border: none;
    padding: 32px 22px 32px 42px;
    color: #161616;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 128%;
    background: none;
}

.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.png');
    background-size: contain;
    width: 40px;
    height: 40px;
}

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

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

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

.faq .accordion-item {
    background-color: transparent;
    border-radius: 14px !important;
}

.faq .accordion-body {
    padding: 0 88px 30px 42px;
    color: #161616;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

.faq .accordion-body p {
    color: #161616;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
}

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

.faq .accordion-item.active {
    box-shadow: 0 30px 90px 0 rgba(0, 0, 0, 0.05);
	border: 1px solid #284d06;
/*     background: #284d06; */
}
/* .faq .accordion-item.active button,
.faq .accordion-item.active .accordion-body{
    color: #fff;
} */
/* Fresh air section */
.fresh-home-air {
    padding: clamp(3.5rem, 5vw + 1rem, 6rem) 0;
}

.fresh-home-air h6 {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.fresh-home-air h2 {
    color: var(--black);
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.fresh-home-air p {
    color: var(--black);
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: 138%;
}

.fresh-home-air h3 {
    color: #284D06;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.fresh-home-air .cta-container {
    margin-top: 40px;
}

/* Top reason section */

.top-reason h6 {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.top-reason h2 {
    color: var(--black);
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
}

.top-reason img {
    border-radius: 18px;
}

.top-reason-widget {
    max-width: 18%;
    width: 18%;
}

.top-reason-widget p {
    color: var(--black);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

/* Breath fresh section */

.breath-fresh {
    background: #f6f6f6;
    padding: 80px 0;
}

.breath-fresh .hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.breath-fresh .hero-subtitle {
    color: #3c6e47;
    font-weight: 600;
    margin: 15px 0 25px;
}

.breath-fresh .accordion-item {
    border: 0;
    border-bottom: 1px solid #ddd;
}

.breath-fresh .accordion-button {
    font-size: 18px;
    font-weight: 600;
    background: none;
}

.breath-fresh .accordion-button:not(.collapsed) {
    background: none;
    box-shadow: none;
}

.breath-fresh .hero-image {
    border-radius: 20px;
    overflow: hidden;
}

.breath-fresh .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breath-fresh .breath-btn {
    margin-top: 30px;
    background: #2f5e0f;
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
}

.breath-fresh .breath-btn:hover {
    background: #23460c;
}



/* Stats Section */
.experience-stats {
    background: url(../images/counter-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: clamp(4rem, 5vw + 1rem, 6rem);
}

.experience-stats .display-3 {
    font-size: clamp(3.5rem, 5vw + 1rem, 5rem);
    letter-spacing: -2px;
    color: #000;
    font-weight: 600;
}

.experience-stats .stat-plus {
    color: #4a7c15 !important;
    font-size: 0.7em;
    vertical-align: middle;
    margin-left: 5px;
    font-weight: 300;
}

.experience-stats .stat-label {
    max-width: 250px;
    margin: 0 auto;
    line-height: 1.4;
    color: #161616;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

@media (max-width: 768px) {
    .experience-stats .display-3 {
        font-size: 3.5rem;
    }
}

/* Trusted Partner Section */
.trusted-partner .icon-check-green {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a7c15' class='bi bi-check-circle-fill' viewBox='0 0 16 16'%3E%3Cpath d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    flex-shrink: 0;
}

trusted-partner p {
    color: #161616;
    font-size: 1rem;
    opacity: 0.9;
}

.trusted-partner h2 {
    color: var(--black);
    line-height: 1.2;
}

.trusted-partner .benefit-list li span:last-child {
    font-size: 1.1rem;
    color: #1a1a1a;
}

.trusted-partner .image-wrapper {
    transition: transform 0.5s ease;
}

.trusted-partner .image-wrapper:hover {
    transform: translateY(-10px);
}

/* Reviews Section */
.reviews-section .stars .star {
    color: #fbbc05;
}

.review-card {
    border: none;
    transition: transform 0.3s ease;
}

/* .review-card:hover {
    transform: translateY(-5px);
} */

.review-slider .slick-prev,
.review-slider .slick-next {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 0;
    border: none;
}

.review-slider .slick-prev {
    left: 7px;
    background: url(../images/arrow-prev.svg) no-repeat center center;
    background-size: 53%;
    background-color: #fff;
    background-position: 13px;
}

.review-slider .slick-next {
    right: -32px;
    background: url(../images/arrow-next.svg) no-repeat center center;
    background-size: 53%;
    background-color: #fff;
}

.review-slider .slick-prev:before,
.review-slider .slick-next:before {
    color: #333;
    font-size: 20px;
}

@media (min-width: 992px) {
    .border-end-lg {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
    }
}

.review-slider .slick-slide {
    height: 283px;
}

.review-card .stars {
    font-size: 1.3rem;
}

/* Services Section */
.services-section {
    /* background-color: #fcfcfc; */
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 17.297px;
    background: #FFF;
    box-shadow: 0 4px 31.2px 0 rgba(0, 0, 0, 0.05);
    padding: 15px 15px 30px 15px;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .1) !important;
}

.service-card .img-wrapper {
    height: 200px;
}

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

.service-card .learn-more {
    color: #284D06;
    font-size: 1rem;
    display: flex;
    align-items: center;
    transition: gap 0.3s ease;
    justify-content: space-between;
    opacity: 0.8;
}

.service-card .learn-more:hover {
    gap: 0.5rem;
}

.services-section .ls-1 {
    letter-spacing: 1.5px;
}

.services-section .section-title {
    color: #111;
}

.service-card-content {
    padding: 0 16px;
}

.review-slider {
    margin-bottom: 7px;
}

.hero h1.hero-price {
    color: #3FA500;
}

.stars p {
    color: #284D06;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.quote-card {
    background: #f3f3f3;
    border-radius: 31px;
    padding: 28px 35px;
    max-width: 650px;
    margin: auto;
    width: 100%;
}

.quote-card .quote-title {
    text-align: center;
    margin-bottom: 32px;
}

.quote-card .quote-title p {
    font-size: 17px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.quote-card .quote-title h2 {
    font-weight: 800 !important;
    color: #0b3d1c;
    letter-spacing: 0;
    font-size: 27px;
}

.quote-card .form-label {
    font-weight: 500;
    color: #444;
    font-size: 1rem;
    margin-bottom: 2px;
}

.quote-card .form-control,
.quote-card .form-select {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #dcdcdc;
}

.quote-card textarea.form-control {
    height: 125px;
    resize: none;
}

.quote-card .form-control:focus {
    box-shadow: none !important;
}

.quote-card .submit-btn {
    border: var(--primary);
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 16px;
    font-size: 18px;
    width: 100%;
    margin-top: 15px;
    transition: 0.3s;
    font-weight: 800;
}

.quote-card .form-select {
    padding-left: 22px;

}

.quote-card .submit-btn:hover {
    background: #0f5a2a;
}

.reviews-section.services-reviews-section {
    padding-top: clamp(3.5rem, 5vw + 1rem, 6rem);
    margin-bottom: 0 !important;
}

.reviews-section.services-reviews-section .container.pb-5 {
    padding-bottom: 0 !important;
}
.review-card .stars {
    font-size: 1.3rem !important;
    display: flex;
}
.stars .star {
    font-size: 26px;
}
.home .areas-we-serve, .page-template-services-page-template .areas-we-serve {
	display:none;
}
.areas-we-serve.area-we-cover-front-pages {
	display:block;
}
.home .faq, .page-template-services-page-template .faq {
    margin-top: clamp(4rem, 7vw + 1rem, 7rem);
}
	.we-care-img-wrapper
 {
        margin-left: auto;
    }
.our-mission-n.about-space .slider-item img {
    height: 495px;
}
.our-mission-n.about-space .slider-item {
    margin-top: 40px;
}
.page-template-services-page-template .areas-we-serve.area-we-cover-front-pages {
	display:block;
}
span.wpcf7-not-valid-tip {
    position: relative;
    font-size: 14px;
    right: 0;
    margin-top: 7px;
}
.contact-card .form-block {
    margin-bottom: 1.5rem;
}
.contact-card .form-block:last-child {
	margin-bottom:0;
}
.contact-card {
    padding: 48px 48px 0 48px;
}
.contact-info-card span {
    font-size: 18px;
}
.contact-info-card .contact-value {
    font-weight: 600;
}
.contact-info-card .contact-value br {
	display:none;
}
.contact-info-card {
    height: 100%;
}
.review-card .stars.mb-2.small.text-warning.text-start .text-primary.ms-1 {
    font-size: 0;
    list-style: none;
    height: 22px;
    margin-top: 12px;
}
.review-card .stars.mb-2.small.text-warning.text-start .text-primary.ms-1:before {
	content:"";
	width:16px;
	height:16px;
	background:url(../images/rating-check-icon.png) no-repeat center center;
	background-size:100%;
	display:flex;
}

.footer-links li,
footer .contact-value{	
    white-space: break-spaces;
}
footer .contact-value{	
   line-break: anywhere;
}


.footer-links a{	
    white-space: break-spaces;
}

@media screen and (min-width: 991px){
	header.page-header .navbar, #navbar.is-fixed{
		padding: 0 !important;
	}
	.navbar-nav li{
		padding: 20px 0;
	}
	.navbar-nav li.dropdown li{
		padding: 0 0;
	}
	.navbar-nav li a{
		padding-top:  0;
		padding-bottom:  0;
	}
}

 .custom-offer-widget {
    background-color: #ffffff;
    color: #172554;
    border-radius: 12px;
    padding: 19px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--primary);
  
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
    margin: 20px auto; /* Centers it if placed in a wide container */
    opacity: 0; /* Starts hidden for animation */
    animation: popInTilt 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
	 transform: none !important;
  }


  /* Straightens out when the user hovers over it */
  .custom-offer-widget:hover {
    box-shadow: 0 30px 50px -15px rgba(0, 0, 0, 0.3);
  }

.custom-offer-header {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.025em;
    margin: 0;
}

  .custom-offer-header svg {
    margin-right: 8px;
    animation: pulseIcon 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .custom-offer-price-row {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-bottom: 8px;
  }

.custom-offer-price-new {
    font-size: 48px !important;
    font-weight: 900 !important;
    color: #3FA500 !important;
    line-height: 1;
    margin: 0 !important;
    display: inline-block;
    animation: priceHeartbeat 3s ease-in-out infinite;
}

  .custom-offer-price-old {
    font-size: 24px !important;
    color: #64748b !important;
    font-weight: 700 !important;
    text-decoration: line-through;
    margin: 0 !important;
    line-height: 1.1;
  }

  .custom-offer-desc {
    font-weight: 700;
    font-size: 18px;
    color: #334155;
    margin: 0 0 16px 0;
  }

.custom-offer-timer-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    background-color: #f1ffe4;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #a8b59d;
}

  .custom-offer-timer-label {
    font-weight: 700;
    color: var(--primary);
  }

  .custom-offer-timer-countdown {
    display: flex;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    align-items: center;
  }

  .custom-offer-time-unit {
    background-color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid #fee2e2;
  }

  @keyframes pulseIcon {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
  }

  @keyframes popInTilt {
    0% {
      opacity: 0;
      transform: translateY(40px) scale(0.9) rotate(-5deg);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1) rotate(-1deg);
    }
  }

  @keyframes priceHeartbeat {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.08); color: #D32929; }
    20% { transform: scale(1); color: #172554; }
    30% { transform: scale(1.08); color: #D32929; }
    40% { transform: scale(1); color: #172554; }
  }

  /* Mobile responsiveness - Compact & Readable Grid Layout */
  @media (max-width: 480px) {
    .custom-offer-widget { 
      padding: 16px; 
      display: grid;
      grid-template-columns: 1fr auto; /* Creates a left section for price, right for timer */
      grid-template-areas:
        "header header"
        "desc desc"
        "price timer";
      gap: 8px 12px;
      border-width: 3px;
    }
    .custom-offer-header { 
      grid-area: header; 
      font-size: 18px; 
      margin: 0; 
    }
    .custom-offer-header svg {
      width: 20px;
      height: 20px;
    }
    .custom-offer-desc { 
      grid-area: desc; 
      font-size: 13px; 
      margin: 0 0 4px 0; 
    }
    .custom-offer-price-row { 
      grid-area: price; 
      margin: 0; 
      flex-direction: column-reverse; /* Puts $149 directly above $49 */
      align-items: flex-start; 
      gap: 2px;
    }
    .custom-offer-price-new { 
      font-size: 40px; 
      line-height: 0.9;
    }
    .custom-offer-price-old { 
      font-size: 16px; 
      line-height: 1;
    }
    .custom-offer-timer-box { 
      grid-area: timer; 
      flex-direction: column; 
      align-items: flex-end;
      justify-content: center;
      padding: 8px 10px; 
      gap: 6px;
    }
    .custom-offer-timer-label { 
      font-size: 11px; 
      text-transform: uppercase;
    }
    .custom-offer-timer-countdown { 
      font-size: 14px; 
      gap: 4px; 
    }
    .custom-offer-time-unit { 
      padding: 2px 5px; 
    }
  }
#countdown ul {
    list-style: none;
	display: flex;
    gap: 8px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    align-items: center;
	margin:0;
	padding:0;
}
#countdown ul li:first-child {
	display:none;
}
#countdown ul li {
	background-color: #ffffff;
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    border: 1px solid var(--primary);
}
#countdown ul li:after {
	content:":"
		display:block;
}
.areas-we-serve .area-item {
    font-size: 1.125rem;
    font-weight: 600;
    max-width: 48%;
    width: 48%;
}
.areas-we-serve .list-unstyled {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.area-we-cover-widget {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-top: 8px solid var(--primary);
    padding: 40px;
    display: flex;
    flex-direction: column;
}
.area-we-cover-widget .custom-area-header {
    display: flex;
    align-items: center;
    font-size: 30px;
    font-weight: 700;
    color: #000;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
    margin: 0 0 24px 0;
}
.area-we-cover-widget-content {
    max-height: 240px;
    overflow: auto;
}
.custom-area-badge {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background-color: var(--primary);
    padding: 4px 12px;
    border-radius: 999px;
    margin-left: 16px;
    white-space: nowrap;
}
.quote-card .wpcf7-response-output {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
position: relative;
}
.hero h1 {
    font-size: clamp(2.5rem, 3vw + 1rem, 3rem);
}
.phone-number .nav-link {
    font-size: 22px;
    font-weight: 600;
}