.hero-slider-container {
    position: relative;
    height: 85vh;
    min-height: 750px;
    width: 100%;
    overflow: hidden;
}

.hero-stats-wrapper {
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 15;
}

.hero-stats-wrapper .stats-counter-bar {
    margin-top: 0 !important;
    background: #fff;
    box-shadow: none;
}

.hero-descr {
    color: #fff;
    line-height: 1.8; font-size: 1.1rem;
}

.swiper-pagination-hero {
    bottom: 75px !important;
    z-index: 10;
}

.swiper-pagination-hero .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.45) !important;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-hero .swiper-pagination-bullet-active {
    background-color: var(--color-primary-light) !important;
    transform: scale(1.1);
    width: 24px !important;
    border-radius: 5px;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    overflow: hidden;
}

.hero-video-wrapper.video-loaded {
    opacity: 1;
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.hero-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.hero-slide.swiper-slide-active .hero-bg-image {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 45, 23, 0.5), rgba(14, 45, 23, 0.85));
    z-index: 3;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    display: flex;
    align-items: center;
    color: var(--bg-warm);
}

.hero-slide .hero-content-wrapper .herolabel, .hero-slide .hero-content-wrapper .hero-title, .hero-slide .hero-content-wrapper .hero-subtitle, .hero-slide .hero-content-wrapper .hero__btns {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-slide.swiper-slide-active .hero-content-wrapper .herolabel {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.3s !important;
}

.hero-slide.swiper-slide-active .hero-content-wrapper .hero-title {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.5s !important;
}

.hero-slide.swiper-slide-active .hero-content-wrapper .hero-subtitle {
    opacity: 0.95 !important;
    transform: translateY(0) !important;
    transition-delay: 0.7s !important;
}

.hero-slide.swiper-slide-active .hero-content-wrapper .hero__btns {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition-delay: 0.9s !important;
}

.hero__btntwo {
    --svg: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="25px" height="26px" class="arr-1" viewBox="0 0 24 24"><path d="M0 0h24v24H0z" fill="none" /><path fill="currentColor" d="M17 8C8 10 5.9 16.17 3.82 21.34l1.89.66l.95-2.3c.48.17.98.3 1.34.3C19 20 22 3 22 3c-1 2-8 2.25-13 3.25S2 11.5 2 13.5s1.75 3.75 1.75 3.75C7 8 17 8 17 8" /></svg>');
}

.herolabel {
    color: var(--color-leaf) !important;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    background-color: #fff;
    padding: 2px 10px;
    border-radius: 25px;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 650px;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-center .hero-subtitle {
    max-width: 660px;
    margin: 0 auto 10px;
    font-size: clamp(0.875rem, 4vw, 1.2rem);
    opacity: 0.95;
}

.hero-center .hero__btns {
    justify-content: center;
}

.leaf-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 4;
    pointer-events: none;
}

.falling-leaf {
    position: absolute;
    top: -50px;
    opacity: 0.6;
    animation: fall 12s linear infinite;
    pointer-events: none;
}

@keyframes fall {
    0% {
        transform: translateY(0) rotate(0deg) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(105vh) rotate(360deg) translateX(150px);
        opacity: 0;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    color: var(--bg-warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
    color: var(--color-primary-light);
}

.scroll-indicator-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--bg-warm);
    border-radius: 20px;
    position: relative;
    margin-bottom: 8px;
}

.scroll-indicator-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--bg-warm);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 20px;
        opacity: 0;
    }
}

.stats-counter-bar {
    background-color: var(--bg-white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    padding: 80px 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-item {
    text-align: center;
    padding: 29px 30px;
    background-color: #fff;
    box-shadow: 0 14px 40px -25px rgba(18, 51, 33, .35);
    border: 2px solid rgba(46, 125, 69, .08);
    border-radius: 25px;
    color: #333333;
    transition: all 500ms;
}

.stat-item:hover {
    background-color: var(--color-secondary);
    color: #fff;
}

.stat-item .icon {
    width: 65px;
    height: 65px;
    background: #e7f4e4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 auto 13px;
    transition: all 350ms ease;
}

.stat-item .icon svg {
    font-size: 34px;
    color: var(--color-primary-light);
    transition: all 1s ease;
}

.stat-item:hover .icon {
    transform: scaleX(-1) rotate(5deg);
    background-color: #fff;
}

.stat-item:hover .icon svg {
    /* color: #ffffff; */
}

.stat-number {
    font-family: var(--font-body);
    font-size: clamp(1.0rem,9vw,3.5rem);
    color: inherit;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: inherit;
    font-weight: 600;
}

.luxury-card {
    background: var(--bg-white);
    border-radius: 28px;
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px -10px rgba(18, 51, 33, 0.08);
    border: 1px solid rgba(46, 125, 69, 0.06);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, background 0.3s ease;
}

.luxury-card0:hover, .luxury-card.active {
    transform: translateY(-8px);
    border-color: rgba(46, 125, 69, 0.2);
    box-shadow: 0 25px 60px -15px rgba(18, 51, 33, 0.16);
    background-color: var(--color-primary);
}

.luxury-card-icon {
    font-size: 27px;
    color: var(--color-primary);
    margin-bottom: 24px;
    transition: var(--transition-fast);
    display: inline-flex;
    width: 58px;
    height: 58px;
    background: #eef5ec;
    color: #2e7d45;
    border-radius: 50px;
    text-align: center;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition-duration: 0.2s;
}

.luxury-card.active .luxury-card-icon {
    color: #2e7d45;
    background-color: #fff;
    transform: scaleX(-1);
}

.luxury-card-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
    font-weight: 500;
    font-family: var(--font-body);
}

.luxury-card.active h3, .luxury-card.active h4 {
    color: #fff
}

.luxury-card-text {
    color: #556257;
    font-size: 0.98rem;
    margin-bottom: 24px;
    flex-grow: 1;
}

.luxury-card.active p {
    color: #fff
}

.luxury-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    color: var(--color-primary);
}

.luxury-card.active a {
    color: #fff;
}

.luxury-card-link i {
    margin-left: 6px;
    transition: var(--transition-fast);
}

.luxury-card.active .luxury-card-link i {
    transform: translateX(5px);
}

.immersive-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 450px;
    transition: var(--transition-smooth);
}

.immersive-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: var(--transition-smooth);
}

.immersive-card:hover .immersive-card-bg {
    transform: scale(1.08);
}

.immersive-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 45, 23, 0.1), rgba(14, 45, 23, 0.9));
    z-index: 2;
    transition: var(--transition-smooth);
}

.immersive-card:hover .immersive-card-overlay {
    background: linear-gradient(to bottom, rgba(14, 45, 23, 0.2), rgba(14, 45, 23, 0.95));
}

.immersive-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    color: var(--bg-warm);
    transition: var(--transition-smooth);
}

.immersive-card-price {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--color-leaf);
    margin-bottom: 8px;
}

.immersive-card-title {
    font-size: 2rem;
    color: #FFFFFF !important;
    margin-bottom: 12px;
}

.immersive-card-text {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.immersive-card:hover .immersive-card-text {
    opacity: 0.9;
    max-height: 80px;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonial-card {
    background-color: var(--bg-white);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 12px 35px -10px rgba(18, 51, 33, 0.06);
    border: 1px solid rgba(46, 125, 69, 0.04);
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(46, 125, 69, 0.12);
    box-shadow: 0 25px 50px -15px rgba(18, 51, 33, 0.12);
}

.testimonial-quote-icon {
    font-size: 2.8rem;
    color: var(--color-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 15px;
}

.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    font-style: italic;
    color: #4a574d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}

.testimonial-author-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-primary-dark);
    margin-bottom: 2px;
}

.testimonial-author-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8C9A90;
}

.testimonial-pagination {
    position: relative !important;
    margin-top: 30px;
    bottom: 0 !important;
    display: flex;
    justify-content: center;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: rgba(76, 175, 103, 0.3) !important;
    opacity: 1;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary) !important;
    width: 20px !important;
    border-radius: 4px;
}

.home-hero-section {
    position: relative;
    padding-top: 170px;
    padding-bottom: 110px;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* min-height: 750px; */
}

.home-hero-section .section-title {
    color: var(--color-primary-dark) !important;
}

.home-hero-section .section-subtitle {
    color: var(--color-leaf) !important;
}

.home-hero-section p {
    /* color: #2D3A30 !important; */
    opacity: 0.9;
}

.home-hero-section .section-subtitle {
    position: relative;
    padding-bottom: 15px
}

.home-hero-section .section-subtitle:before {
    content: none;
    position: absolute;
    width: 60px;
    height: 2px;
    background: var(--color-leaf);
    bottom: 0px;
}

.home-hero-section p {
    max-width: 520px;
}

.home-hero-section .section-title {
    font-size: clamp(2.6rem, 10vw, 4.0rem);
    line-height: 1.25;
}

.home-hero-section .title-divider::before, .home-hero-section .title-divider::after {
    background-color: var(--color-primary-light);
}

.home-hero-section .title-divider i {
    color: var(--color-primary-light);
}

.hero-gallery-card {
    background: rgba(31, 94, 51, 0.85);
    border-radius: 24px;
    padding: 26px;
    position: relative;
    z-index: 2;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .18);
    backdrop-filter: blur(2px);
    border: 1px solid var(--color-leaf);
}

.hero-gallery-carousel .carousel-item {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
}

.hero-gallery-carousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-gallery-caption {
    background: rgba(31, 94, 51, 0.85);
    padding: 15px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #FFFFFF;
    font-family: var(--font-body);
    padding-left: 50px;
}

.hero-gallery-caption::before {
    content: '';
    position: absolute;
    top: 10px;
    color: var(--color-leaf);
    display: inline-block;
    width: 2em;
    height: 2em;
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='black' d='M3.516 7a3.5 3.5 0 1 1-3.5 3.5L0 10a7 7 0 0 1 7-7v2a4.97 4.97 0 0 0-3.536 1.464a5 5 0 0 0-.497.578q.269-.043.548-.043zm9 0a3.5 3.5 0 1 1-3.5 3.5L9 10a7 7 0 0 1 7-7v2a4.97 4.97 0 0 0-3.536 1.464a5 5 0 0 0-.497.578q.269-.043.549-.043z'/%3E%3C/svg%3E");
    background-color: currentColor;
    -webkit-mask-image: var(--svg);
    mask-image: var(--svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    left: 5px;
}

.hero-gallery-caption h6 {
    color: #FFFFFF !important;
    font-family: var(--font-body);
    margin-bottom: 2px;
    font-size: 1.1rem;
}

.hero-gallery-caption p {
    font-size: 0.8rem;
    margin-bottom: 0;
    opacity: 0.9;
}

.services-preview-card {
    background-color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(18, 51, 33, 0.06);
    border: 1px solid rgba(76, 175, 103, 0.05);
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 35px -10px rgba(18, 51, 33, 0.08);
    border: 2px solid rgba(46, 125, 69, 0.06);
    text-align: center;
    margin-bottom: 0px;
}

.services-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -15px rgba(18, 51, 33, 0.15);
    border-color: rgb(76 175 103);
    background-color: #f4fbf1;
}

.services-preview-img-wrapper {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.services-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.services-preview-card:hover .services-preview-img {
    transform: scale(1.06);
}

.services-icon {
    bottom: -28px;
    z-index: 31;
    opacity: 1;
    width: 75px;
    aspect-ratio: 1;
    background-color: #fff;
    border-radius: 45px 45px 10px 10px;
    font-size: 30px;
    border: 2px solid var(--color-leaf);
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-leaf);
    transition: all 620ms;
}

.services-preview-card:hover .services-icon {
    /* transform: scale(1) translateX(-50%); */
    bottom: -100px;
}

.services-preview-body {
    padding: 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.services-preview-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.services-preview-text {
    font-size: 16px;
    color: #556257;
    margin-bottom: 0;
    line-height: 1.6;
    letter-spacing: 0.25px;
}

.btnw__btn {
    background-color: #f0f0f000;
    color: var(--color-primary);
    display: inline-flex;
    padding: 4px 19px;
    gap: 8px;
    align-items: center;
    border-radius: 25px;
    margin-top: 20px;
}

.services-preview-card:hover .btnw__btn {
    background-color: var(--color-leaf);
    color: #fff;
}

.treatments-preview-box {
    background-color: var(--bg-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(76, 175, 103, 0.08);
}

.treatments-preview-img-col {
    height: 100%;
    min-height: 380px;
    background-size: cover;
    background-position: center;
}

.hero-gallerytitle {
    color: #ffffff;
    text-align: left;
    letter-spacing: 1.2px;
    color: #ffd08e !important;font-size: 1rem;letter-spacing: 2px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.doctor-section {
    background: linear-gradient(180deg, #f4f7f5 0%, #faf8f5 100%) !important;
}

.doctor-profile-card {
    max-width: 590px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 28px;
    padding: 25px 35px;
    box-shadow: 0 14px 40px -25px rgba(18, 51, 33, .35);
    border: 2px solid rgba(46, 125, 69, .08);
    text-align: center;
    transition: transform 0.45s cubic-bezier(.65, 0, .35, 1), box-shadow 0.45s cubic-bezier(.65, 0, .35, 1), all 300ms;
    height: 100%;
    /* display: flex; */
    flex-direction: column;
    justify-content: space-between;
}

.doctor-profile-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px -20px rgba(18, 51, 33, .35);
    box-shadow: 0 25px 50px -15px rgb(10 162 79 / 23%);
    border-color: rgb(76 175 103);
}

.doctor-img-wrapper {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    margin: 0 auto 30px;
    overflow: hidden;
    border: 4px solid #eef5ec;
    box-shadow: 0 8px 25px -10px rgba(18, 51, 33, 0.15);
    background-color: #f7f9f6;
    transition: all 0.45s cubic-bezier(.65, 0, .35, 1);
}

.doctor-profile-card:hover .doctor-img-wrapper {
    transform: scale(1.05);
    border-color: rgb(44 179 26);
}

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

.doctor-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--color-primary-dark);
    margin-bottom: 6px;
    font-weight: 600;
}

.doctor-degrees {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #525252;
    font-weight: 500;
    display: inline-block;
    margin-left: 6px;
    margin-bottom: 10px;
}

.doctor-role {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6f6f6f;
    font-weight: 600;
    display: block;
    margin-bottom: 24px;
    width: max-content;
    margin: 0 auto 24px;
    background-color: #f4f5f4;
    padding: 8px 18px;
    border-radius: 25px;
}

.doctor-role .icon {
    font-size: 19px;
    vertical-align: bottom;
}

.doctor-profile-card:hover .doctor-role {
    background-color: #e5f2e591;
    color: var(--color-primary);
}

.doctor-bio {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.85;
    color: #4a574d;
    text-align: justify;
    margin-bottom: 0;
    flex-grow: 1;
}

.doctor-contact-details {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    gap: 8px;
    /* border-top: 1px solid rgba(46, 125, 69, 0.08); */
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.doctor-contact-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: #424242;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.doctor-contact-link:hover {
    color: var(--color-leaf);
}

.doctor-contact-link .icon {
    background-color: var(--bg-light-primary);
}

.doctor-contact-link i {
    font-size: 1rem;
    color: var(--color-leaf);
}

.gallery-card {
    height: 250px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(18, 51, 33, 0.15);
}

/* Gallery Hover View Button Styles */
.gallery-hover-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.gallery-card:hover .gallery-hover-view {
    opacity: 1;
}

.gallery-view-btn {
    background-color: var(--color-primary-dark);
    border: 2px solid var(--color-leaf);
    color: #ffffff !important;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateY(35px) scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* springy slide up */
}

.gallery-card:hover .gallery-view-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gallery-view-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-primary-dark) !important;
    border-color: var(--color-accent);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.gallery-view-btn i {
    font-size: 1rem;
}

/* Move inline gallery text styles to separate classes */
.gallery-card-content {
    position: absolute;
    bottom: 25px;
    /* show little below not center */
    left: 0;
    width: 100%;
    padding: 0 15px;
    z-index: 3;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.gallery-card-title {
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    font-family: var(--font-heading);
    color: #FFFFFF !important;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-card:hover .gallery-card-content {
    transform: translateY(8px) scale(0.95) !important;
    opacity: 0.25 !important;
}

.swiper3d {
}

.swiper3d {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
    z-index: 999
}

.swiper3d .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 420px;
    aspect-ratio: 3/4;
    background-color: #393939;
    overflow: hidden;
    border-radius: 25px;
}

.swiper3d .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
}

.swiper3d .picture img {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.home-hero-section-dark {
    color: #ffffff !important;
    padding-top: 30px;
    padding-bottom: 40px;
}

.herodark__overlay {
    background-image: linear-gradient(180deg, rgb(14 45 23 / 68%) 0%, rgba(10, 31, 16, 0.98) 100%) !important;
}

.home-hero-section-dark .section-title {
    color: #ffffff !important;
}

.swiper3d__desc {
    color: rgb(0 0 0 / 85%) !important;
}

.home-hero-section-dark .section-subtitle {
    color: #97e455 !important;
    position: relative;
    padding: 10px 20px;
    background-color: #1c48294d;
    box-shadow: 0px 0px 1px 2px #6dbe4566;
    border-radius: 33px;
    /* color: yellow; */
    letter-spacing: 1.55px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.home-hero-section-dark .section-subtitle:before {
    background: var(--color-accent) !important;
}

.home-hero-section-dark .sbtn-white {
    background-color: #ffffff !important;
    color: var(--color-primary-dark) !important;
}

.home-hero-section-dark .sbtn-white:hover {
    background-color: var(--bg-mint) !important;
    color: var(--color-primary) !important;
}

.hero-gallery-card-swiper {
    position: relative;
    width: 100%;
    overflow: visible;
}

.swiper-banner {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 45px;
    overflow: visible !important;
}

.swiper-banner .swiper-slide {
    background-position: center;
    background-size: cover;
    width: 290px;
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(31, 94, 51, 0.12), 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 3px solid #ffffff;
    position: relative;
    transition: border-color 0.3s ease;
}

.swiper-banner .swiper-slide-active {
    border-color: var(--color-primary-light);
}

.swiper-banner .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-3d-caption {
    position: absolute;
    bottom: -2px;
    left: 0px;
    width: 100%;
    padding: 17px 25px 30px;
    /* background: linear-gradient(180deg, rgb(0 0 0 / 24%) 0%, rgb(32 32 32) 100%); */
    background-color: #ffffff;
    color: #ffffff;
    text-align: left;
    backdrop-filter: blur(1px);
    text-align: center;
}

.swiper3d__title {
    font-family: var(--font-heading);
    font-size: 22px;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: 0.85px
}

.swiper3d__desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    line-height: 1.4;
}

.swiper-pagination {
    bottom: 0px !important;
}

.swiper-pagination .swiper-pagination-bullet {
    background-color: var(--color-primary-light) !important;
    opacity: 0.4;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary) !important;
    opacity: 1;
    width: 22px;
    border-radius: 5px;
}

@media (max-width: 576px) {
    .swiper-banner .swiper-slide {
        width: 240px;
        height: 320px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 991px) {
    .treatments-preview-img-col {
        min-height: 300px;
    }

    .gallery-card {
        height: 280px !important;
    }
}

@media (max-width: 768px) {
    .hero-gallery-carousel .carousel-item {
        height: 320px;
    }

    .decor-leaf-svg {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }

    .testimonial-card {
        padding: 30px 20px;
    }

    .swiper3d .swiper-slide {
        width: 300px;
    }

    .swiper3d .swiper-slide img {
    }

    .stat-item {
        padding: 15px 10px;
        border-radius: 15px;
    }

    .stat-label {
        font-size: 12px;
    }

    .stats-counter-bar {
        padding: 30px 10px;
        /* margin-top: -60px; */
    }

    .home-hero-section-dark .section-subtitle {
        font-size: 0.875rem;
    }
}

.sec-bgimgoverlay {
    background: linear-gradient(rgb(5 60 27 / 80%) 0%, rgb(3 7 3 / 84%) 100%) !important;
}

.sec-bgimg {
    /* background: linear-gradient(rgb(5 60 27 / 80%) 0%, rgb(3 7 3 / 84%) 100%), url(../images/bg/inner-bg.webp) !important; */
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.testimonial-interactive-wrapper {
    background-color: var(--bg-white);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(18, 51, 33, 0.05);
    border: 2px solid rgba(46, 125, 69, 0.05);
    overflow: hidden;
    padding: 50px;
}

.testimonial-display-pane {
    padding-right: 40px;
    border-right: 1.5px solid rgba(46, 125, 69, 0.08);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.testimonial-display-pane::before {
    content: "â€œ";
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 8rem;
    font-family: var(--font-heading);
    color: rgba(46, 125, 69, 0.06);
    line-height: 1;
}

.testimonial-quote-text {
    font-size: 1.25rem;
    line-height: 1.85;
    color: #38423a;
    font-weight: 500;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-author-info {
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.testimonial-author-name-pane {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-primary-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-author-title-pane {
    font-size: 0.9rem;
    color: var(--color-leaf);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.testimonial-author-rating {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Right Side Interactive Selector Grid */
.testimonial-selector-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.testimonial-selector-node {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    cursor: pointer;
    background-color: var(--bg-mint);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-selector-node:hover {
    background-color: var(--bg-white);
    border-color: rgba(46, 125, 69, 0.1);
    transform: translateX(5px);
}

.testimonial-selector-node.active {
    background-color: var(--bg-white);
    border-color: var(--color-primary);
    box-shadow: 0 10px 25px rgba(18, 51, 33, 0.05);
    transform: translateX(5px);
}

.testimonial-node-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-light-primary);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testimonial-selector-node.active .testimonial-node-avatar {
    background-color: var(--color-primary);
    color: #ffffff;
    transform: scale(1.05);
}

.testimonial-node-meta h5, .testimonial-node-meta .testimonial-node-name {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 2px;
    transition: color 0.25s ease;
}

.testimonial-selector-node.active .testimonial-node-meta h5, .testimonial-selector-node.active .testimonial-node-meta .testimonial-node-name {
    color: var(--color-primary);
}

.testimonial-node-meta p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
}

/* Animations */
.pane-fade-out {
    opacity: 0;
    transform: translateY(12px);
}

@media (max-width: 991px) {
    .testimonial-interactive-wrapper {
        padding: 30px;
    }

    .testimonial-display-pane {
        padding-right: 0;
        border-right: none;
        border-bottom: 1.5px solid rgba(46, 125, 69, 0.08);
        padding-bottom: 30px;
        margin-bottom: 10px;
        min-height: auto;
    }

    .testimonial-selector-node:hover, .testimonial-selector-node.active {
        transform: none;
    }
}
