/* -----------------------------
GLOBAL
----------------------------- */

:root{
    --primary-color: #BD9354;
    --secondary-color: #855f3a;
    --accent-color: #7B581F;
    --gradient-color:linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%);
    --fancy-font: 'The Seasons', serif;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Geist", sans-serif;
    overflow-x: hidden;
}


.custom-container {
    padding: 0px 60px;
}

.section-padding {
    padding: 80px 0px;
}


.section-title {
    font-size: 50px;
    font-weight: 400;
    line-height: 1.3;
    font-family: var(--fancy-font);
    text-transform: capitalize;
}

.section-title-service {
    font-size: 42px;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* Call floating button (placed left of WhatsApp) */
.call-float {
    position: fixed;
    bottom: 105px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff, #0056d6);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.call-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    color: #fff;
}

@media (max-width:480px) {
    .call-float {
        height: 40px;
        width: 40px;
        bottom: 80px;
        font-size: 17px;
    }

    .whatsapp-float {
        height: 40px;
        width: 40px;
        bottom: 30px;
        font-size: 17px;
    }
}


.section-subtitle {
    font-size: 18px;
    color: #555;
}

.font-normal {
    font-family: "Geist", sans-serif;
}


.btn-book {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 15px 30px;
    border: 2px solid transparent;
    border-radius: 0px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #000000, #000000) border-box;
    position: relative;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: "Geist", sans-serif;
}

/* Gradient border on hover */
.btn-book:hover {
    border: 2px solid transparent;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #6a00ff, #ff6ec4) border-box;
    color: #000;
    box-shadow:
        0 0 rgba(168, 85, 247, 0.3),
        0 0 0 rgba(240, 171, 252, 0.3);
}

.btn-fill-bg {
    background:
        linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%) padding-box,
        linear-gradient(90deg, #855f3a, #855f3a) border-box;
    background: linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%);
    color: #fff;
}

.btn-fill-bg:hover {
    border: 2px solid transparent;
    background:
        linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%) padding-box,
        linear-gradient(90deg, #6a00ff, #ff6ec4) border-box;
    color: #000;
    box-shadow:
        0 0 rgba(168, 85, 247, 0.3),
        0 0 0 rgba(240, 171, 252, 0.3);
    color: #fff;
}

.btn-fill-transperent {
    background:
        linear-gradient(316deg, #000000ce 0%, #000000ce 44%) padding-box,
        linear-gradient(90deg, #ffffff9a, #ffffff9a) border-box;
    color: #ffffff;
}

.btn-fill-transperent:hover {
    background:
        linear-gradient(316deg, #000000ce 0%, #000000ce 44%) padding-box,
        linear-gradient(90deg, #6a00ff, #ff6ec4) border-box;
    color: white;
}

img {
    width: auto;
    max-width: 100%;
}


[data-aos] {
    overflow: hidden;
}

a {
    text-decoration: none !important;
}

@media (max-width:768px) {
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
    }
}

@media(max-width: 1440px) {
    .section-title {
        font-size: 45px;
    }
}

@media(max-width:1150px) {
    .section-title {
        font-size: 38px;
    }
}


@media(max-width:991px) {
    .section-padding {
        padding: 40px 0px;
    }

    .section-title {
        font-size: 33px;
    }

    .section-title br {
        display: none;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .section-subtitle br {
        display: none;
    }

    .custom-container {
        padding: 0px 40px;
    }
}

@media(max-width:768px) {
    .custom-container {
        padding: 0px 20px;
    }

}

@media(max-width:500px) {
    .section-title {
        font-size: 30px;
    }
}



/* -----------------------------
Loader
----------------------------- */


.loader-wrapper {
    position: fixed;
    inset: 0;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Initial zoom animation */
.loader-img {
    width: 200px;
    animation: zoomLoop 2s ease-in-out infinite;
    transition: transform 0.6s ease, opacity 0.6s ease;
}

/* Loop animation */
@keyframes zoomLoop {
    0% {
        transform: scale(0.9);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(0.9);
        opacity: 0.7;
    }
}

/* EXIT STATE */
.loader-wrapper.hide {
    opacity: 0;
    visibility: hidden;
}

/* Logo exit effect */
.loader-wrapper.hide .loader-img {
    animation: none;
    /* stop looping */
    transform: scale(1.6);
    /* zoom out big */
    opacity: 0;
}

/* -----------------------------
Loader
----------------------------- */




/* -----------------------------
NAVBAR
----------------------------- */

/* NAVBAR DEFAULT (TRANSPARENT) */

.custom-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    transition: all 0.4s ease;
    z-index: 999;
    padding: 20px 0;
}

/* NAVBAR AFTER SCROLL */

.navbar-scrolled {
    background: #1e1e1e;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

/* LINKS */

.custom-navbar .nav-link {
    color: #fff;
    margin-right: 20px;
    font-weight: 500;
    padding-left: 0px !important;
}

.custom-navbar .nav-link:hover {
    color: #c89b6f;
}



.navbar-brand img {
    width: 250px;
}

.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.custom-navbar.navbar-black .nav-link {
    color: black !important;
}

.navbar-scrolled.custom-navbar.navbar-black .nav-link {
    color: white !important;
}

.white-logo {
    display: none;
}

.black-logo {
    display: block;
}

.navbar-scrolled.custom-navbar.navbar-black .black-logo {
    display: none;
}

.navbar-scrolled.custom-navbar.navbar-black .white-logo {
    display: block;
}

.custom-dropdown {
    min-width: 500px;
    background: #000;
    border: none;
}

.custom-dropdown-small {
    min-width: auto;
}

.custom-dropdown .dropdown-item {
    color: #ccc;
    padding: 8px 10px;
    font-size: 14px;
}

.custom-dropdown .dropdown-item:hover {
    color: #fff;
    background: transparent;
}


.dropdown-toggle-custom {
    display: flex;
    align-items: center;
    gap: 6px;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.show>.dropdown-toggle-custom .arrow-icon {
    transform: rotate(90deg);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #d4a373;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show:focus-visible {
    box-shadow: none;
    outline: none;
    border: none;
}

.custom-navbar.navbar-expand-lg .navbar-nav .dropdown-menu {
    background: #000;
    color: white;
    border-radius: 0px;
    padding: 10px 20px;
}

.custom-navbar.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item {
    color: white;
}

.custom-navbar.navbar-expand-lg .navbar-nav .dropdown-menu .dropdown-item:hover {
    background: #d4a373;
    color: #000;
}

.nav-btns {
    display: flex;
    gap: 10px;
}

.nav-btn {
    border-radius: 30px;
    color: white;
    border: none;
    height: 40px;
    padding: 0px 20px;
    outline: none;
    font-size: 13px;
    background: #000;
    transition: .5s;
}

.nav-btn:hover {
    transform: translateY(-4px);
    transition: .5s;
    background: #fff;
    color: #000;
}

.nav-color-btn {
    background: linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%);
}

@media(max-width: 991px) {
    .header-nav {
        display: initial;
    }

    .custom-navbar.navbar-expand-lg .navbar-nav .dropdown-menu {
        max-height: 250px;
        overflow-y: scroll;
        overflow-x: hidden;
        min-width: auto;
    }


    .navbar-toggler {
        filter: invert(1) brightness(1);
    }

    .navbar-toggler:focus-visible {
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        border: none !important;
        box-shadow: none !important;
        outline: none !important;
    }

    .custom-navbar .navbar-collapse {
        background: #1e1e1e;
        padding: 10px;
    }

    .custom-navbar .nav-link {
        margin: 0px;
    }

    .custom-navbar.navbar-black .nav-link {
        color: rgb(255, 255, 255) !important;
    }

    .custom-navbar.navbar-black .navbar-toggler {
        filter: none;
    }

    .navbar-scrolled.custom-navbar.navbar-black .navbar-toggler {
        filter: invert(1) brightness(1);
    }
}

@media(max-width: 400px) {
    .navbar-brand img {
        width: 200px;
    }
}

/* -----------------------------
HERO SLIDER
----------------------------- */

.hero-slider .item {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.077);
}

.hero-content {
    position: absolute;
    bottom: 80px;
    left: 80px;
    color: white;
    max-width: 1000px;
    z-index: 2;
    font-family: var(--fancy-font);
}

.hero-content h3 {
    font-size: 60px;
    font-weight: 400;
}

.hero-content h3.long-text {
    font-size: 60px;
}

.hero-content h3.extra-long-text {
    font-size: 30px;
}

.hero-content p {
    font-size: 18px;
    font-family: "Geist", sans-serif;
}

@media(max-width: 768px) {
    .hero-content {
        left: 40px;
    }

    .hero-content h3 {
        font-size: 50px;
    }
}

@media(max-width: 500px) {
    .hero-content h3 {
        font-size: 35px;
    }

    .hero-content {
        left: 20px;
        bottom: 130px;
    }
}


/* -----------------------------
OWL NAVIGATION
----------------------------- */

.owl-nav {
    position: absolute;
    bottom: 80px;
    right: 100px;
}

.owl-nav button {
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    border: 1px solid white !important;
    background: transparent !important;
    color: white !important;
    margin-right: 10px;
    font-size: 20px !important;
}

@media(max-width: 500px) {
    .owl-nav {
        bottom: 40px;
        right: auto;
        left: 20px;
    }

    .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 18px !important;
    }

}

/* -----------------------------
HERO SLIDER
----------------------------- */



/* -----------------------------
ABOUT SECTION
----------------------------- */
.about-para {
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    width: 75%;
    margin: auto;
    margin-bottom: 25px;
}

@media(max-width: 500px) {
    .about-para {
        width: 100%;
        font-size: 15px;
    }

    .about-para:last-child {
        margin: 0px;
    }

}


/* -----------------------------
ABOUT SECTION
----------------------------- */


/* -----------------------------
CONSULTATION SECTION
----------------------------- */

.consultation-img {
    overflow: hidden;
    border-radius: 20px;
    height: 500px;
}

/* IMAGE */

.consultation-img img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.image-shine-effect {
    position: relative;
}


/* SHINE EFFECT */

.image-shine-effect::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    opacity: .2;

    transform: skewX(-25deg);
    animation: shineMove 3s infinite;
}


/* KEYFRAME ANIMATION */

@keyframes shineMove {

    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }

}


.consultation-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.consultation-list li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #4A4A4A;
}


@media(max-width: 1440px) {
    .consultation-img {
        height: 400px;
        margin-bottom: 20px;
    }
}

@media(max-width: 991px) {
    .consultation-list li {
        font-size: 16px;
    }

    .consultation-img {
        height: auto;
    }
}

/* -----------------------------
CONSULTATION SECTION
----------------------------- */

/* -----------------------------
WHY CHOOSE
----------------------------- */

/* FEATURE BOX */

.feature-box {
    gap: 20px;
    padding: 15px;
    transition: 0.3s;
}

.feature-box p {
    margin: 0;
    font-size: 20px;
    font-family: var(--fancy-font);

}

/* ICON */

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #c8a27d;
    transition: 0.6s;
    transform-style: preserve-3d;
}

.icon-box img {
    object-fit: contain;
    width: 80px;
}

/* Hover flip animation */

.feature-box:hover .icon-box {
    transform: rotateY(180deg);
}

@media(max-width: 1440px) {
    .feature-box {
        padding: 0px;
    }
}

/* -----------------------------
WHY CHOOSE
----------------------------- */
.services-section {
    padding: 100px 0;
    background: #E4E7ED;
}

/* Card */

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 25px;
    height: 100%;
    transition: 1s;
    height: 250px;
    cursor: pointer;
}

.service-card img {
    width: 80px;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: .7s;
}

.service-card h4 {
    font-size: 18px;
    margin: 0;
    width: 100%;
    margin-top: 10px;
    color: #000;
}

/* Hover */

.service-card:hover {
    background: #231F20;
    transition: .7s;
}

.service-card:hover img {
    width: 130px;
    transition: .7s;
    margin-bottom: 10px;
}

.service-card:hover h4 {
    color: white;
    transition: .7s;
}

@media(max-width: 1440px) {
    .service-card h4 {
        width: 70%;
    }

    .service-card {
        padding: 20px;
    }
}

@media(max-width: 991px) {
    .services-section {
        padding: 40px 0px;
    }

    .service-card {
        height: 200px;
    }

    .service-card:hover img {
        width: 100px;
    }

}

@media(max-width: 500px) {
    .service-card img {
        margin-bottom: 10px;
    }

}



/* -----------------------------
WHY CHOOSE
----------------------------- */
/* Card */

.tech-card {
    background: #F9F9F9;
    padding: 25px;
    border-radius: 16px;
    height: 100%;
    transition: 0.3s;
}

/* IMAGE WRAPPER */

.tech-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

/* IMAGE */

.tech-img img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* SHINE EFFECT */

.tech-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    transition: 0.5s;
}

/* HOVER TRIGGER */

.tech-card:hover .tech-img::before {
    animation: shineMove .8s;
}

/* KEYFRAME */

@keyframes shineMove {

    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }

}

.tech-card h4 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 500;
    font-family: var(--fancy-font);
    margin-top: 20px;
}

.tech-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
    margin: 0px;
}

/* Hover */

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Bottom Text */

.tech-bottom-text {
    font-size: 21px;
    color: #333;
}

@media(max-width: 991px) {
    .tech-card h4 {
        font-size: 20px;
    }

    .tech-bottom-text {
        font-size: 18px;
    }

    .tech-card {
        padding: 15px;
    }

    .tech-bottom-text br {
        display: none;
    }

}



/* -----------------------------
WHY CHOOSE
----------------------------- */


/* -----------------------------
ADD SECTION
----------------------------- */

.add-main-wrapper {
    padding: 60px;
    background-image: url(../img/add-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    min-height: 650px;
    border-radius: 30px;
    color: white !important;
    animation: bgZoom 12s infinite alternate ease-in-out;
}

/* Background zoom animation */
@keyframes bgZoom {

    0% {
        background-size: 100%;
    }

    100% {
        background-size: 115%;
    }

}

.add-main-wrapper .consultation-list li {
    color: rgba(255, 255, 255, 0.764);
}

.add-main-wrapper .section-subtitle {
    color: rgba(255, 255, 255, 0.764);
}

.add-content-left {
    width: 50%;
}

.add-content-left .section-subtitle {
    width: 60%;
}

.add-main-wrapper .section-title {
    font-size: 62px;
}

@media(max-width: 1440px) {
    .add-main-wrapper .section-title {
        font-size: 55px;
    }
}

@media(max-width: 1200px) {
    .add-main-wrapper {
        min-height: auto;
    }
}

@media(max-width:1150px) {
    .add-main-wrapper {
        padding: 40px;
    }
}

@media(max-width:1024px) {
    .add-content-left {
        width: 70%;
    }
}

@media(max-width:991px) {
    .add-main-wrapper {
        animation: none;
    }

    .add-main-wrapper .section-title {
        font-size: 35px;
    }

    .add-content-left {
        width: 100%;
    }
}

@media(max-width:500px) {
    .add-main-wrapper {
        padding: 20px;
    }

    .add-main-wrapper .section-title {
        font-size: 30px;
    }

    .add-content-left .section-subtitle {
        width: 100%;
    }
}


/* -----------------------------
ADD SECTION
----------------------------- */

/* -----------------------------
    APPOINTMENT SECTION
----------------------------- */



.appointment-content {
    padding-left: 35px;
    width: 100%;
}

.appointment-img {
    height: 100%;
}

.appointment-img img {
    width: 100%;
}

@media(max-width:991px) {
    .appointment-content {
        /* padding-top: 20px; */
        padding-left: 15px !important;
    }

    .appointment-main-wrapper .consultation-content {
        padding-left: 40px;
        padding-top: 0px;
    }
}

@media(max-width:500px) {
    .appointment-main-wrapper .consultation-content {
        padding-left: 20px;
    }
}




/* -----------------------------
    APPOINTMENT SECTION
----------------------------- */


/* -----------------------------
    ADD SECTION SECOND SECTION
----------------------------- */


.add-main-wrapper-second {
    background-image: url(../img/add-banner-second.png);
    min-height: 600px;
    border-radius: 30px;
    overflow: hidden;
    animation: none;
    background-size: cover;
}

@media(max-width: 1200px) {
    .add-main-wrapper-second {
        min-height: 400px;
    }
}

@media(max-width: 991px) {
    .add-main-wrapper-second {
        min-height: auto;
    }

}

/* -----------------------------
    ADD SECTION SECOND SECTION
----------------------------- */


/* -----------------------------
    APPPOINTMENT SECTION
----------------------------- */


.appointment-section {
    max-width: 1300px;
    margin: auto;
    padding: 100px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LEFT IMAGE */

.appointment-image img {
    width: 1000px;
    border-radius: 30px;
    display: block;
}

/* RIGHT CONTENT */

/* .appointment-content {
    flex: 1;
} */

.appointment-content h2 {
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #1e1e1e;
    font-family: var(--fancy-font);
}

/* FORM */

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #cfcfcf;
    background: #fff;
    font-size: 14px;
    outline: none;
}

.form-group textarea {
    height: 90px;
    resize: none;
}


/* RESPONSIVE */

@media(max-width: 1440px) {
    .appointment-content h2 {
        font-size: 50px;
    }
}

@media(max-width: 1024px) {
    .appointment-content h2 {
        font-size: 40px;
    }

    .appointment-content h2 br {
        display: none;
    }
}

@media(max-width:991px) {

    .appointment-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 0px;
    }

    .appointment-image img {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }

    .appointment-content h2 {
        font-size: 33px;
        margin-bottom: 10px;
    }

    .appointment-section .appointment-content {
        width: 100%;
        padding: 20px;
    }

}


@media(max-width:500px) {
    .appointment-content h2 {
        font-size: 25px;
    }
}


/* -----------------------------
    APPPOINTMENT SECTION
----------------------------- */

/* -----------------------------
    PAYMENT SECTION
----------------------------- */

.payment-section {
    padding: 80px 20px;
    text-align: center;
}

.payment-section .section-title {
    margin-bottom: 60px;
}


.payment-card {
    height: 200px;
    background: #fff;
    border-radius: 25px;
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s;
}

.payment-card:hover {
    transform: translateY(-4px);
}

.payment-card img {
    max-width: 250px;
}

@media(max-width:991px) {
    .payment-section {
        padding: 40px 40px;
    }

    .payment-section .section-title {
        margin-bottom: 30px;
    }
}

@media(max-width:768px) {
    .payment-section {
        padding: 0px 20px;
    }
}

/* -----------------------------
    PAYMENT SECTION
----------------------------- */


/* -----------------------------
    TESTIMONIAL SECTION
----------------------------- */

.testimonial-card-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.189);
    transition: 0.3s ease;
}

.testimonial-card-box:hover {
    transform: translateY(-5px);
}

.testimonial-card-quote {
    width: 60px;
    height: 60px;
    background: #3399B0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonial-card-quote i {
    color: #fff;
    font-size: 24px;
}

.testimonial-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.testimonial-card-user {
    gap: 15px;
}

.testimonial-card-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-card-info h5 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    font-family: var(--fancy-font);
    color: #091F5B;
}

.testimonial-card-info span {
    font-size: 14px;
    color: #777;
}

.testimonial-card-rating {
    margin-top: 8px;
}

.testimonial-card-rating i {
    color: #f4b400;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 767px) {

    .testimonial-card-box {
        padding: 20px;
    }

    .testimonial-card-text {
        font-size: 15px;
    }

    .testimonial-card-info h5 {
        font-size: 16px;
    }

}

/* -----------------------------
    TESTIMONIAL SECTION
----------------------------- */

/* -----------------------------
    FAQ SECTION
----------------------------- */


.faq-section {
    max-width: 1200px;
    margin: auto;
    padding: 80px 20px;
    display: flex;
    gap: 80px;
}

/* LEFT TITLE */

.faq-title {
    width: 40%;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.faq-title h2 {
    font-size: 52px;
    font-weight: 400;
    line-height: 1.1;
    font-family: var(--fancy-font);

}

.faq-title span {
    font-style: italic;
    display: block;
    font-weight: 900;
}

/* RIGHT FAQ */

.faq-container {
    width: 60%;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 25px;
    font-family: var(--fancy-font);
}

.faq-icon {
    font-size: 22px;
    transition: .3s;
    font-family: serif;
}

/* ANSWER */

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    font-size: 17px;
    color: #666;
    margin-top: 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* LIST */

.faq-answer ul {
    margin: 10px 0 0 15px;
    padding: 0;
    list-style: none;
}

/* RESPONSIVE */

@media(max-width:1440px) {
    .faq-title h2 {
        font-size: 45px;
    }
}

@media(max-width:1150px) {
    .faq-title h2 {
        font-size: 38px;
    }
}

@media(max-width:991px) {

    .faq-section {
        flex-direction: column;
        gap: 10px;
    }

    .faq-title {
        position: relative;
        top: 0;
        width: 100%;
    }

    .faq-container {
        width: 100%;
    }

    .faq-title h2 {
        font-size: 33px;
    }
}

@media(max-width:768px) {
    .faq-title h2 {
        font-size: 34px;
    }

    .faq-question {
        font-size: 20px;
    }

    .faq-answer {
        font-size: 15px;
    }

}

@media(max-width:500px) {
    .faq-title h2 {
        font-size: 30px;
    }
}


/* -----------------------------
    FAQ SECTION
----------------------------- */


/* -----------------------------
    FOOTER
----------------------------- */


footer {
    background:  linear-gradient(43deg, #855f3a 0%, #ffcaa6 100%);
    color: #ffffff;
    font-size: 14px;
    padding: 80px 0px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
    gap: 32px;
    padding-bottom: 32px;
}

/* Brand column */
.brand-logo img {
    width: 250px;
    margin-bottom: 20px;
}

.brand-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
}

.more-item{
    display:none;
}

.more-item.show{
    display:list-item;
}

.load-more{
    padding: 0px !important;
}

.load-more a{
    color: #C9B7A5 !important;
}

.load-more::before{
    display:none;
}

/* Nav columns */
.footer-nav h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
    border-bottom: 1px solid #ffffff49;
    padding-bottom: 5px;
}

.footer-service-icon{
    position: relative;
}

.footer-service-icon li {
    position: relative;
    padding-left: 20px;
}

.footer-service-icon li::before {
    content: "\f054"; /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900; /* Solid icons */
    position: absolute;
    top: 2px;
    left: 0;
    color: #ffffff8c;
    font-size: 13px;
}
.footer-nav ul {
    list-style: none;
    padding-left: 0px;
}

.footer-nav ul li {
    margin-bottom: 13px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition:  0.2s;
}

.footer-nav ul li a:hover {
    opacity: 0.6;
    text-decoration: underline;
    margin-left: 10px;
    transition:  0.2s;

}

.related-post-icon{
    min-width: 25px;
}

.related-post-icon i{
    font-size: 25px;
}


.footer-address p {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
}

.newsletter-form{
    position: relative;
    max-width: 420px;
    width: 100%;
    margin-bottom: 55px;
}

.newsletter-form input{
    width: 100%;
    height: 50px;
    padding: 0 70px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.323);
    border-radius: 0px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    outline: none;
 
}

.newsletter-form input::placeholder{
    color: rgba(255,255,255,.7);
}

.newsletter-form button{
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: .3s;
}

.newsletter-form button:hover{
    background: #9f7246;
}

.newsletter-form button i{
    font-size: 18px;
}



.social-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
    background: #AE9379;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    transition: .5s;
}

.social-links a:hover {
    transform: translateY(-2px);
    transition: .5s;
}

.social-links a i {
    font-size: 15px;
    color: #fff;
}

.footer-copy {
    font-size: 16px;
    color: #fff;;
    text-align: left;
    line-height: 1.6;
}

.related-posts{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.related-post-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.related-post-image{
    width:60px;
    height:60px;
    flex-shrink:0;
    border-radius:6px;
    overflow:hidden;
    border:2px solid rgba(255,255,255,.7);
}

.related-post-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.related-post-item:hover .related-post-image img{
    transform:scale(1.08);
}

.related-post-content{
    flex:1;
}

.related-post-content .post-date{
    color:rgba(255,255,255,.8);
    font-size:12px;
    text-transform:uppercase;
    margin-bottom:0px;
    letter-spacing:.5px;
}

.related-post-content h3{
    margin:0;
    font-weight:200;
    line-height: 15px;
}

.related-post-content h3 a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size: 15px;
}

.related-post-content h3 a:hover{
    color:#f5e2cd;
}

@media (max-width:991px){

    .related-post-item{
        gap:0px;
        margin-bottom: 10px;
    }

    .related-posts{
        gap: 10px;
    }

    .related-post-image{
        width:40px;
        height:40px;
    }

    .related-post-content .post-date{
        font-size:11px;
    }
    .newsletter-form{
        margin-bottom: 30px;
    }


}

@media (max-width:767px){

    .related-post-item{
        gap:5px;
        align-items:flex-start;
    }

    .related-post-image{
        width:40px;
        height:40px;
    }

    .related-post-content .post-date{
        font-size:10px;
    }


}

@media (max-width: 820px) {


    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }

    .footer-divider {
        margin: 0 -24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .footer-copy {
        text-align: left;
    }

    .footer-top {
        gap: 20px;
    }

    .footer-nav ul li {
        margin-bottom: 8px;
    }

    footer {
        padding: 40px 0px;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* -----------------------------
    FOOTER
----------------------------- */


/* -----------------------------
    SERVICE PAGE
----------------------------- */


.about-banner {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    /* justify-content:center; */
    /* text-align:center; */
}

.about-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.059);
}

.hero-content-service {
    position: relative;
    color: #fff;
    padding-top: 120px;
    width: 100%;
}

.hero-content-service h3 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-family: var(--fancy-font);
}

.hero-content-service p {
    font-size: 18px;
    font-weight: 300;
}

.service-list-points {
    list-style: none;
    padding-left: 0;
}

.service-list-points li {
    position: relative;
    padding-left: 30px;
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
}

.service-list-points li:last-child {
    margin: 0;
}

.service-list-points li::before {
    content: "\f00c";
    /* Font Awesome check icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    background: linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%);
    border-radius: 100%;
    width: 25px;
    font-size: 13px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 768px) {
    .hero-content-service {
        padding-top: 0px;
    }

    .hero-content-service h3 {
        font-size: 50px !important;
    }

    .hero-content-service h3 br {
        display: none;
    }

    .service-list-points li {
        font-size: 15px;
    }

    .hero-content-service p br {
        display: none;
    }
}

@media(max-width: 500px) {
    .hero-content-service h3 {
        font-size: 27px !important;
    }

}



/* -----------------------------
    SERVICE LIST CONTENTS PAGE
----------------------------- */

.service-list-section {
    padding: 100px 120px;
    background: #E4E7ED;
}

.service-list-card {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 30px;
    background: #fff;
    border-radius: 15px;
    margin-top: 25px;
}


.service-list-img {
    overflow: hidden;
    display: inline-block;
    border-radius: 10px;
    max-width: 150px;
    max-height: 150px;
    min-width: 150px;
    min-height: 150px;
}

.service-list-img img {
    /* width: 250px; */
    object-fit: cover;
    display: block;
}

.service-list-contents {
    padding-left: 20px;
}

.service-list-contents h4 {
    font-size: 25px;
    font-family: var(--fancy-font);
    margin-bottom: 10px;
}

.service-list-contents p {
    font-size: 14px;
}

.service-inner-section-title {
    font-size: 35px !important;
}

@media(max-width: 991px) {
    .service-list-section {
        padding: 40px 10px;
    }

    .service-list-card {
        gap: 0px;
    }

    .service-list-contents h4 {
        font-size: 20px;
    }

    .service-inner-section-title {
        font-size: 30px !important;
    }
}

@media(max-width: 768px) {
    .service-inner-section-title {
        font-size: 30px !important;
    }
}

/* -----------------------------
    SERVICE LIST CONTENTS PAGE
----------------------------- */



/* -----------------------------
    About
----------------------------- */

.about-layout-image-box {
    border-radius: 30px;
    overflow: hidden;
}

.about-layout-image-box img {
    object-fit: cover;
    border-radius: 30px;
    width: 100%;

}

/* -----------------------------
    Center banner section
----------------------------- */

.center-banner-section {
    background-image: url(../img/center-banner-img.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #00000058;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 180px 0px;
}

.center-banner-section .section-subtitle {
    color: white;
}


@media(max-width: 991px) {
    .center-banner-section {
        padding: 50px 0px;
    }
}

/* -----------------------------
    Center banner section
----------------------------- */

/* -----------------------------
    Health Smile
----------------------------- */


.healthy-smile {
    max-width: 100%;
}

.healthy-smile .appointment-content {
    padding-left: 0px;
}

.card-gray {
    background: #EBECF0;
    padding: 20px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: left;
    transition: .5s;
}

.card-gray:hover {
    transform: translateY(-4px);
    transition: .5s;
}

.card-gray h2 {
    font-size: 25px;
    font-family: var(--fancy-font);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.card-gray img {
    width: 120px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-gray p {
    color: #5F5F5F;
    font-size: 17px;
}

@media(max-width: 991px) {
    .card-gray {
        margin-top: 10px;
    }

    .card-gray h2 {
        font-size: 18px;
    }
}

/* -----------------------------
    Health Smile
----------------------------- */


/* -----------------------------
    About
----------------------------- */


/* -----------------------------
    Denter Offers
----------------------------- */

.offer-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-card h3 {
    font-weight: 700;
}

.offer-card small {
    color: #c49a6c;
    font-weight: 500;
}

.offer-card p {
    color: #666;
    font-size: 14px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.offer-list li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.offer-list li i {
    background: linear-gradient(45deg, #8b5e3c, #d4a373);
    color: #fff;
    border-radius: 50%;
    padding: 8px;
    margin-right: 10px;
    font-size: 12px;
}

.feature-btn {
    background: linear-gradient(45deg, #8b5e3c, #d4a373);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 30px;
    width: 100%;
    margin-top: 50px;
}

.feature-btn:hover {
    opacity: 0.9;
    color: #fff;
}


.dentel-offer-gary-box {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 100%;
    margin-top: 0;

}


.dentel-offer-gary-box h6 {
    font-size: 18px;
    width: 100%;
}

.why-choose-img-box {
    min-height: 80px;
    min-width: 80px;
    max-height: 80px;
    max-width: 80px;
    background: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    align-items: center;
    padding: 10px;
}

.why-choose-img-box img {
    width: 80%;
    object-fit: contain;
    margin: auto;

}


@media(max-width: 991px) {
    .offer-card {
        padding: 15px;
    }

    .dentel-offer-gary-box h6 {
        width: 100%;
    }

    .offer-card h3 {
        font-weight: 700;
    }
}


/* -----------------------------
    Denter Offers
----------------------------- */



/* -----------------------------
    Contact
----------------------------- */


.contact-banner {
    display: flex;
    justify-content: center;
    background-color: #00000052;
    background-blend-mode: overlay;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: .5s;
    height: 100% !important;
    padding: 20px 25px;
}

.contact-card h6 {
    font-size: 14px;
    color: #4A4A4A;
    transition: .5s;
}

.contact-card h4 a {
    color: #1e1e1e;
    transition: .5s;
}

.contact-card:hover h4 a {
    color: white;
    transition: .5s;
}

.contact-card:hover h6 {
    color: white;
    transition: .5s;
}


.contact-card-wrapper {
    background: #ffffff;
    padding: 25px;
    /* height:100%; */
    border: 1px solid #D2D2DF;
}

.contact-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 14px;
    color: #777;
    margin-bottom: 70px;
}

.form-control,
.form-select {
    border-radius: 0px;
    border: 1px solid #D2D2DF;
    padding: 12px;
    font-size: 14px;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid #855f3a;
}

.form-control,
.form-select:focus-within {
    box-shadow: none;
    outline: none;
}


textarea.form-control {
    height: 120px;
}


.info-box {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 20px;
    border: 1px solid #D2D2DF;
}

.info-box:last-child {
    margin-bottom: 0px;
}

.info-box h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: #666;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.info-item {
    font-size: 14px;
}

.info-item i {
    margin-right: 6px;
    color: #8b5e3c;
}

.social-icons i {
    font-size: 18px;
    margin-right: 15px;
    cursor: pointer;
    color: #555;
}

/* .position-sticky-box{
    position: sticky;
    top: 100px;
} */

@media (max-width:991px) {
    .info-box {
        padding: 20px;
    }

    .contact-card-wrapper {
        padding: 20px;
    }

    .contact-desc {
        margin-bottom: 20px;
    }

    .contact-card-wrapper .btn-book {
        margin: auto;
        display: block;
    }
}



/* -----------------------------
    Contact
----------------------------- */


/* -----------------------------
    Doctors
----------------------------- */


.doctor-card {
    background: #e9e9eb;
    border-radius: 18px;
    padding: 28px 28px 30px;
    height: 100%;
    min-height: 315px;
    transition: all 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-4px);
}

.doctor-thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 18px;
    display: block;
}

.doctor-category {
    font-size: 16px;
    color: #5e5e5e;
    font-weight: 400;
    margin-bottom: 14px;
    line-height: 1.4;
}

.doctor-title {
    font-family: var(--fancy-font);
    font-size: 24px;
    font-weight: 500;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}

.doctor-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.45;
    margin-bottom: 26px;
    max-width: 95%;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 228px;
    height: 38px;
    padding: 0 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #a97442 0%, #e0ad83 100%);
    transition: all 0.3s ease;
}

.consult-btn:hover {
    color: #fff;
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 991px) {
    .doctor-card {
        min-height: auto;
    }

    .doctor-title {
        font-size: 22px;
    }

    .doctor-desc {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .doctor-card {
        padding: 22px 20px 24px;
        border-radius: 16px;
    }

    .doctor-thumb {
        width: 62px;
        height: 62px;
    }

    .doctor-category {
        font-size: 15px;
    }

    .doctor-title {
        font-size: 21px;
    }

    .doctor-desc {
        font-size: 14px;
    }

    .consult-btn {
        min-width: 210px;
        height: 40px;
        font-size: 13px;
    }
}

/* -----------------------------
    Doctors
----------------------------- */




/* -----------------------------
    New service page
----------------------------- */



/* counter */

.counter-section {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.counter-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto;
    color: #fff;
    text-align: center;
}


.counter-item {
    flex: 1;
    padding: 20px;
    position: relative;
}


.counter-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.3);
}


.counter-number {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 5px;

    background: linear-gradient(90deg, #d4a373, #f5d0a9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* for better browser support */
    background-clip: text;
    color: transparent;
}


.counter-text {
    font-size: 16px;
    opacity: 0.9;
}

.doctor-img-wrapper {
    width: 100%;
}

@media(max-width:991px) {
    .counter-section {
        bottom: 10px;
    }

    .counter-item {
        padding: 10px;
    }

    .counter-number {
        font-size: 30px;
    }
}


@media(max-width:768px) {

    .counter-wrapper {
        /* flex-direction: column; */
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .counter-item::after {
        display: none;
    }

    .counter-number {
        font-size: 20px;
    }

    .counter-item {
        flex: auto;
    }

    .counter-text {
        font-size: 14px;
    }

}

@media(max-width:450px) {
    .counter-wrapper {
        gap: 5px;
        flex-wrap: wrap;
    }

    .counter-item {
        padding: 5px;
    }
}

/* COUNTER */

/* FEATURES */


.feature-strip {
    padding: 30px 0;
    background: linear-gradient(90deg, #9c7353, #d9a67c);
    color: #fff;
}

.feature-strip-box {
    gap: 15px;
}

.feature-strip-box .icon-box {
    min-width: 70px;
    min-height: 70px;
    max-width: 70px;
    max-height: 70px;
    background: #fff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-strip-box .icon-box img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
}

.service-form {
    padding: 40px;
    border-radius: 20px;
}

.about-counter .counter-wrapper {
    justify-content: start;
}

.about-counter .counter-wrapper .counter-item {
    flex: initial;
}

.about-counter .counter-wrapper .counter-text {
    color: #000;
}

.about-counter .counter-item:not(:last-child)::after {
    background: #B7B8BA;
}

.about-counter .counter-item:first-child {
    padding-right: 50px;
}

.about-counter .counter-item:last-child {
    padding-left: 50px;
}


.feature-strip-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.3;
}

.box-content-count {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin: auto;
}

.offer-card-gray {
    background: #F3F3F6;
}

.tow-side-point-head {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 20px;
    text-transform: capitalize;
}

/* FEATURES */

.contraindications-box {
    padding: 80px 50px;
    border-radius: 20px;
    background: #fff;
}


.plan-card {
    padding: 30px;
    border-radius: 12px;
    margin: auto;
    border: 1px solid #f2f2f2;
}

/* ITEM */

.plan-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.plan-item h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 500;
    font-family: var(--fancy-font);
}

.plan-item span {
    font-size: 13px !important;
}


.price-box {
    text-align: right;
}

.price-box small {
    display: block;
    font-size: 12px;
    color: #777;
}

.price-box h3 {
    margin: 0;
    font-size: 28px;
    color: #442604;
    font-weight: 700;
}

.price-box span {
    font-size: 12px;
    color: #777;
}

.price-text {
    font-size: 14px;
    color: #555;
    font-weight: 700;
}


.plan-item hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 25px 0;
}


.offer-text {
    font-size: 17px;
    color: #666;
    margin-bottom: 25px;
}


.plan-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #000;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.plan-btn:hover {
    background: #000;
    color: #fff;
}

/* RESPONSIVE */

@media(max-width:768px) {

    .plan-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .price-box {
        text-align: left;
    }

    .feature-strip-box p {
        text-align: left;
    }

    .about-counter .counter-item:first-child {
        padding-right: 5px;
    }

    .service-form {
        padding: 15px;
        margin-top: 10px;
    }

    .contraindications-box {
        padding: 15px;
    }

    .tow-side-point-head {
        font-size: 18px;
        margin-top: 10px;
    }

    .tow-side-point-head br {
        display: none;
    }

    .plan-card {
        padding: 20px;
        margin: 0px 5px;
    }

    .feature-strip-box .icon-box {
        min-width: 50px;
        min-height: 50px;
        max-width: 50px;
        max-height: 50px;
    }
}




.before-after-section .compare-card {
    position: relative;
    display: flex;
    height: 400px;
    overflow: hidden;
}

.before-after-section .before {
    width: 40%;
    height: 100%;
    overflow: hidden;
}

.before-after-section .after {
    width: 60%;
    height: 100%;
    overflow: hidden;
}

.before-after-section .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.before-after-section .divider {
    position: absolute;
    left: 40%;
    top: 0;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after-section .arrow {
    min-width: 45px;
    min-height: 45px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}



@media(max-width:768px) {

    .before-after-section .compare-card {
        height: 250px;
    }

}

@media(max-width:576px) {

    .before-after-section .compare-card {
        flex-direction: column;
        height: auto;
    }

    .before-after-section .img-box {
        width: 100%;
        height: 200px;
    }

    .before-after-section .divider {
        transform: rotate(90deg);
        left: 50%;
    }

}



/* PARENT */
.doctor-section {
    padding: 50px 20px;
    background: #f3f3f3;
    border-radius: 20px;
}

/* IMAGE */
.doctor-section .doctor-img img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* CONTENT */
.doctor-section .doctor-content {
    padding-left: 20px;
}

.doctor-section .sub-title {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 10px;
}

/* TITLE */
.doctor-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* TEXT */
.doctor-section p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* BUTTON */
.doctor-section .consult-btn {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(90deg, #9c7353, #d9a67c);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.doctor-section .consult-btn:hover {
    opacity: 0.9;
}

.banner-overlay-65 {
    position: relative;
}

.banner-overlay-65 .overlay {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.466) 0%, rgba(0, 0, 0, 0.721) 46.27%, #000000bb 100%);
}


.banner-overlay-45 {
    position: relative;
}

.banner-overlay-45 .overlay {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.422) 46.27%, #000000a2 100%);
}


.banner-overlay-25 {
    position: relative;
}

.banner-overlay-25 .overlay {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 46.27%, #000 100%);
}

.banner-overlay-40 .overlay {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.612) 46.27%, #000 100%);
}

/* RESPONSIVE */
@media(max-width:992px) {

    .doctor-section .doctor-content {
        padding-left: 0;
        text-align: center;
    }

}

@media(max-width:576px) {

    .doctor-section {
        padding: 30px 15px;
    }

    .doctor-section h2 {
        font-size: 22px;
    }

    .doctor-section p {
        font-size: 14px;
    }

}

/* -----------------------------
    New service page
----------------------------- */



/* -----------------------------
    COMPARE
----------------------------- */


.compare-wrapper-main {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}

.compare-wrapper-box .offer-card {
    border-radius: 0 !important;
}

.compare-wrapper-box {
    flex: 1 1 0;
    min-width: 0;
}

.compare-wrapper-box .offer-card h3 {
    min-height: 70px;
    text-align: center;
}

@media(max-width:992px) {

    .compare-wrapper-main {
        overflow-x: scroll;
        gap: 10px;
    }

    .compare-wrapper-box {
        width: 100%;
        min-width: 500px;
    }

    .compare-wrapper-box .offer-card {
        width: 100%;
    }
}

@media(max-width:500px) {
    .compare-wrapper-box {
        min-width: 400px;
    }
}

@media(max-width:400px) {
    .compare-wrapper-box {
        min-width: 300px;
    }
}

.testimonial-masonry-wrap {
    height: 600px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #855f3a #f1f1f1;
}

.testimonial-masonry-wrap::-webkit-scrollbar {
    width: 8px;
}

.testimonial-masonry-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-masonry-wrap::-webkit-scrollbar-thumb {
    background: #855f3a;
    border-radius: 10px;
}

.testimonial-masonry-wrap::-webkit-scrollbar-thumb:hover {
    background: #6f4d2f;
}

@media(max-width:991px) {
    .testimonial-masonry-wrap {
        height: auto;
    }
}


/* -----------------------------
    Galler
----------------------------- */


.blog-banner {
    height: 500px;
    background-position: top;
}

.bg-gray {
    background: #EBECF0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 600px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}


.before-after-images {
    display: flex;
    gap: 12px;
}

.before-after-images img {
    width: 50%;
    height: 450px;
    object-fit: cover;
    border-radius: 0;
}

.gallery-carousel {
    padding: 0px 50px;
}

.gallery-carousel .owl-nav {
    margin-top: 25px;
    display: flex !important;
    justify-content: center;
    gap: 15px;
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    top: auto;
}

.gallery-carousel .owl-nav button.owl-prev,
.gallery-carousel .owl-nav button.owl-next {
    width: 60px;
    height: 60px;
    border: 1px solid #000000 !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    font-size: 22px !important;
    transition: 0.3s;
    color: #000000 !important;
    margin: 0px !important;
}

.gallery-carousel .owl-nav button.owl-prev:hover,
.gallery-carousel .owl-nav button.owl-next:hover {
    background: #855f3a !important;
    color: #fff !important;
    border-color: #855f3a !important;
}

.gallery-carousel .owl-dots {
    display: flex !important;
    justify-content: center;
    gap: 1px;
    position: relative;
    bottom: auto;
    right: auto;
    left: auto;
    top: auto;
    margin-top: 20px;

}

.gallery-carousel .owl-dots button.owl-dot {
    margin-top: 20px;
    display: block !important;
    background: #D9D9D9 !important;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    margin: 0px 2px;

}

.gallery-carousel .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px;
    background: #000000 !important;
}

.gallery-carousel .owl-dots button.owl-dot.active {
    background: #222 !important;
}


@media (max-width: 991px) {

    .gallery-carousel {
        padding: 0px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item:last-child {
        margin-top: 10px;
    }

    .before-after-images img {
        height: 220px;
    }

    .gallery-carousel .owl-nav button.owl-prev,
    .gallery-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        font-size: 14px !important;
    }
}


@media (max-width: 767px) {
    .before-after-images {
        flex-direction: column;
    }

    .before-after-images img {
        width: 100%;
        height: 150px;
    }
}

.beforeAfterCarousel2 .item {
    padding: 0;
}

.custom-video-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.custom-video-wrapper iframe{
    height: 450px;
}

.custom-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
    background: #000;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    cursor: pointer;
    z-index: 9;
    display: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn i {
    font-size: 22px;
    color: #333;
}

.beforeAfterCarousel2 .owl-item {
    opacity: .5;
    transition: .4s;
}

.beforeAfterCarousel2 .owl-item.active.center {
    opacity: 1;
}

.beforeAfterCarousel2 .owl-nav {
    text-align: center;
    margin-top: 25px;
}

.beforeAfterCarousel2 .owl-nav button {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    border: 1px solid #000 !important;
    background: #fff !important;
    margin: 0 5px;
}

.beforeAfterCarousel2 .owl-nav button span {
    font-size: 28px;
    line-height: 1;
}

.video-banner-wrapper {
    position: relative;
    padding: 0px 80px;
}

.video-banner-wrapper .custom-video {
    height: 500px;
}

@media(max-width:1100px) {
    .video-banner-wrapper {
        padding: 0px 50px;
    }

    .video-banner-wrapper .custom-video {
        height: 400px;
    }

}

@media(max-width:767px) {

    .custom-video {
        height: 300px;
    }

    .video-banner-wrapper .custom-video {
        height: 300px;
    }

    .video-banner-wrapper {
        position: relative;
        padding: 0px;
    }

    .play-btn {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .mobile-py-3 {
        padding: 30px !important;
    }
}


/* -----------------------------
    BLOG
----------------------------- */



.blog-filter-section{
    padding: 40px 0;
    background: #F4F1EE;
}

.filter-search{
    max-width: 1000px;
    margin: 0 auto 25px;
    position: relative;
}

.filter-search input{
    width: 100%;
    height: 46px;
    border: 1px solid #d8d8d8;
    border-radius: 50px;
    padding: 0 50px 0 15px;
    font-size: 14px;
    outline: none;
    background: #fff;
}

.filter-search button{
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #999;
}

.filter-tags{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.filter-tag{
    border: 1px solid #d9d9d9;
    background: #fff;
    color: #888;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 15px;
    line-height: 1;
    transition: .3s;
}

.filter-tag.active{
    background: var(--gradient-color);
    color: #fff;
    border-color: var(--primary-color);
}

.filter-tag:hover{
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.filter-adjust{
    max-width: 1000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: auto;
    margin-bottom: 20px;
}

.filter-adjust{
    color: var(--accent-color);
    font-weight: 600;
}

.blog-card{
    height:100%;
}

.blog-card:last-child{
    margin-bottom:0;
}

.blog-image{
    overflow:hidden;
    margin-bottom:15px;
}

.blog-image img{
    width:100%;
    height:300px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.05);
}

.blog-category{
    display:block;
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:1px;
    color:#666;
    margin-bottom:10px;
    font-weight:600;
}

.blog-title{
    font-size:24px;
    line-height:1.4;
    margin-bottom:10px;
    font-weight:400;
    font-family: var(--fancy-font);
}

.blog-date{
    font-size:13px;
    color:#777;
    margin-bottom:10px;
}

.blog-link{
    color:#c89b5d;
    text-decoration:none;
    font-size:13px;
    font-weight:500;
}

.blog-item.hide{
    display:none;
}


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e0db;
    background: #fff;
    color: #222;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.page-btn:hover:not(.active) {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.blog-nav-btn i {
    font-size: 16px;
}

.pagination .dots {
    font-size: 16px;
    color: #8a7664;
    padding: 0 8px;
}

.filter-tags.hide {
    display: none;
}

.toggle-filters{
    cursor: pointer;
}


@media(max-width:991px){

    .blog-image img{
        height:220px;
    }

    .blog-title{
        font-size:20px;
    }
}

@media(max-width:767px){

    .blog-image img{
        height:250px;
    }

    .blog-title{
        font-size:18px;
    }
    .blog-date{
        margin-bottom: 5px;
    }
}

@media(max-width:767px){

    .filter-tag{
        font-size: 11px;
        padding: 7px 14px;
    }
    .blog-filter-section {
        padding: 20px 0px;
    }
    .filter-tags{
        gap: 5px;
    }
    .filter-adjust{
        font-size: 14px;
    }
    .filter-search{
        margin-bottom: 10px;
    }

}




/* -----------------------------
    BLOG DETAIL
----------------------------- */

.blog-layout{
    display:grid;
    grid-template-columns:1fr 320px;
    gap:40px;
    padding: 0px 50px;
    padding-top: 150px;
    padding-bottom: 100px;
}

.blog-content h1{
    font-size:40px;
    line-height:1.2;
    margin-bottom:20px;
    font-family: var(--fancy-font);
}

.blog-inner-category{
    display:inline-block;
    padding:6px 12px;
    border:1.5px solid #000000;
    font-size:12px;
    margin-bottom:20px;
    color: #000;
    font-weight: 600;
}

.blog-excerpt{
    font-size:20px !important;
    color:#47464F;
    margin-bottom:20px;
    padding-left: 20px;
    border-left: 6px solid #305bab4a;
    font-style: italic;
    width: 75%;
}

.blog-content p{
    font-size:16px;
}

.blog-meta{
    color: #8C7B6E;
}

.blog-inner-main-para{
    font-size:18px !important;
}

.blog-meta,
.blog-tags{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
    font-size:14px;
}

.blog-tags .blog-dates-tag{
    background: #ececec;
    padding: 5px 15px;
    border-radius: 50px;
}

.blog-inner-main-img{
    width:100%;
    margin:0px 0 10px;
}

.img-caption{
    text-align:center;
    font-size:13px;
    color:#777;
    margin-bottom:25px;
}

.blog-content{
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #EAE4DD;
}

.blog-inner-spacing{
    padding-left:30px;
    padding-top: 30px;
}

.blog-content h2{
    margin:35px 0 15px;
    font-family: var(--fancy-font);
    border-bottom: 1px solid #ddd;
    width: fit-content;
    padding-bottom: 7px;
    font-size: 35px;
}

.blog-content h3{
    margin:45px 0 20px;
    font-size: 26px;
    color: #0B0B0B;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}


.blog-content h3 span img{
    width: 25px;
    margin-right: 5px;
}

.sidebar-widget{
    background:#F4F1EE;
    padding:20px;
    border-radius:4px;
    margin-bottom:24px;
    border-left: 2px solid #000000;
}

.sidebar-widget a{
    color: var(--accent-color);
    font-size: 14px;
}

.widget-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.widget-header h4{
    margin:0;
    font-size:18px;
    font-weight: 600;
}

.blog-sidebar {
    position: sticky;
    top: 100px; 
    height: fit-content;
}

.blog-layout,
.blog-details-page {
    overflow: visible;
}

.blog-sidebar .blog-card{
    display:flex;
    gap:12px;
    padding:12px;
    background:#D9D9D9;
    border-radius:10px;
    margin-bottom:12px;
}

.blog-sidebar .blog-card img{
    width:70px;
    height:70px;
    object-fit:cover;
    border-radius:8px;
}

.blog-sidebar .blog-card span{
    font-size:12px;
    color:#888;
    text-transform: uppercase;
}

.blog-sidebar .blog-card h5{
    margin-top:0px;
    font-size:14px;
    line-height:1.4;
}

.blog-inner-shadow{
    box-shadow:  0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-highlight-section{
    width:100%;
}

.blog-highlight-section .highlight-box{
    border-left: 8px solid #77767F;
    background: #F4F1EE;
    border-radius:10px;
    padding:35px;
    margin-bottom:20px;
    margin-bottom: 40px;
}

.blog-highlight-section .highlight-box .treatment-info-item .icon-box i{
    color: #77767F;
}

.blog-highlight-section .warning-box{
    border-left:8px solid #99714C;
    background: #F4F1EE;
}

.blog-highlight-section .highlight-box h3{
    margin:0 0 10px;
    color:#3b322b;
    font-size:34px;
    font-weight:400;
    line-height:1.3;
}

.blog-highlight-section .highlight-box p{
    margin:0;
    color:#6d6d6d;
    line-height:1.9;
    font-size:16px;
}

.blog-highlight-section .highlight-list{
    list-style:none;
    padding:0;
    margin:0;
}

.blog-highlight-section .highlight-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:6px;
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.blog-highlight-section .highlight-list li:last-child{
    margin-bottom:0;
}

.blog-highlight-section .highlight-list li i{
    position:absolute;
    left:0;
    top:5px;
    color:#c69b62;
    font-size:16px;
}

.blog-highlight-section .bottom-note{
    margin-top:25px;
    color:#444;
    line-height:1.9;
    font-size:18px;
}

/* ==========================
   LUXURY CTA SECTION
========================== */

.luxury-cta-section {
    background: linear-gradient(
        90deg,
        #443329 0%,
        #4b382d 50%,
        #443329 100%
    );
    padding: 100px 20px;
    text-align: center;
}

.luxury-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.luxury-cta-content h2 {
    font-size: 56px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: var(--fancy-font);
}

.luxury-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 650px;
    margin: 0 auto 20px;
}

.luxury-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-btn {
    min-width: 220px;
    padding: 18px 35px;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s ease;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}



.cta-btn-outline {
    border: 1px solid;
    border-image: linear-gradient(
        90deg,
        #7a5639,
        #d8ab7e,
        #7a5639
    ) 1;
    color: var(--primary-color);
    background: transparent;
}

.cta-btn-outline:hover {
     border: 2px solid transparent;
    background:
        linear-gradient(316deg, #855f3a 0%, #ffcaa6 100%) padding-box,
        linear-gradient(90deg, #6a00ff, #ff6ec4) border-box;
    color: #000;
    box-shadow:
        0 0 rgba(168, 85, 247, 0.3),
        0 0 0 rgba(240, 171, 252, 0.3);
    color: #fff;
}

.blog-info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 10px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #e2e2e955;
    padding-bottom: 20px;
}

.blog-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a5148;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.blog-info-item i {
    color: #b98a5b;
    font-size: 17px;
    flex-shrink: 0;
}

.treatment-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.treatment-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.treatment-info-item .icon-box {
    width: 32px;
    height: 32px;
    min-width: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.treatment-info-item .icon-box i {
    font-size: 26px;
    color: #b98a5b;
}

.treatment-info-item .content h4 {
    margin: 0 0 0px;
    font-size: 17px;
    font-weight: 700;
    color: #0B0B0B;
}

.treatment-info-item .content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.comparison-table-wrap {
    margin: 30px 0;
}

.comparison-table-wrap .table-responsive {
    overflow-x: auto;
}

.comparison-table-wrap .comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e7ddd2;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.comparison-table-wrap .comparison-table thead th {
    background: #a97c50;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px;
    text-align: left;
    border: none;
}

.comparison-table-wrap .comparison-table tbody td {
    padding: 22px 16px;
    font-size: 15px;
    color: #333;
    border-bottom: 1px solid #e7ddd2;
    border-right: 1px solid #e7ddd2;
    vertical-align: middle;
}

.comparison-table-wrap .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-wrap .comparison-table tbody td:last-child,
.comparison-table-wrap .comparison-table thead th:last-child {
    border-right: none;
}

.comparison-table-wrap .comparison-table tbody td:first-child {
    background: #F4F1EE;
    font-weight: 700;
    color: #222;
    width: 30%;
    border-bottom: 0px !important;
}

.comparison-table-wrap .comparison-table tbody td:nth-child(2),
.comparison-table-wrap .comparison-table tbody td:nth-child(3) {
    width: 35%;
}

.comparison-table tr td strong{
    font-weight: 700 !important;
}

.blog-inner-tutorial {
    margin: 20px 0;
}

.blog-inner-tutorial .tutorial-card {
    background: #f8f5f2;
    border-radius: 14px;
    padding: 28px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding-right: 80px;
    transition: all 0.3s ease;
}

.blog-inner-tutorial .tutorial-card:hover {
    transform: translateY(-3px);
}

.blog-inner-tutorial .tutorial-icon {
    flex-shrink: 0;
}

.blog-inner-tutorial .tutorial-icon i {
    font-size: 28px;
    color: #a97c50;
}

.blog-inner-tutorial .tutorial-content h4 {
    display: inline;
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
}

.blog-inner-tutorial .tutorial-content p {
    display: inline;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.blog-final-takeaway {
    margin: 50px 0;
}

.blog-final-takeaway .takeaway-card {
    position: relative;
    background: #000;
    border-radius: 16px;
    padding: 40px;
    overflow: hidden;
}

.blog-final-takeaway .takeaway-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.blog-final-takeaway .takeaway-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.blog-final-takeaway .takeaway-title i {
    font-size: 20px;
    color: #fff;
}

.blog-final-takeaway .takeaway-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.blog-final-takeaway .takeaway-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-final-takeaway .takeaway-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 190px;
    height: 56px;
    padding: 0 24px;
    background: #fff;
    color: #111;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-final-takeaway .takeaway-btn-primary:hover {
    transform: translateY(-2px);
}

.blog-final-takeaway .takeaway-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.blog-final-takeaway .takeaway-btn-outline:hover {
    border-color: rgba(255,255,255,0.5);
}

.blog-final-takeaway .takeaway-plus {
    position: absolute;
    right: -15px;
    bottom: -25px;
    font-size: 130px;
    color: rgba(255,255,255,0.08);
    line-height: 1;
    z-index: 1;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 991px) {
    .blog-final-takeaway .takeaway-card {
        padding: 30px;
    }

    .blog-final-takeaway .takeaway-content p {
        font-size: 18px;
    }

    .blog-final-takeaway .takeaway-plus {
        font-size: 100px;
    }
    .blog-content h3{
        font-size: 20px;
        margin: 20px 0px;
    }
    .blog-inner-spacing{
        padding: 20px;
    }
    .blog-excerpt{
        width: 100%;
        font-size: 16px !important;
    }
    .blog-final-takeaway{
        margin: 25px 0;
    }
}


@media (max-width: 767px) {
    .blog-final-takeaway .takeaway-card {
        padding: 25px 20px;
    }

    .blog-final-takeaway .takeaway-content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 15px;
    }

    .blog-final-takeaway .takeaway-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .blog-final-takeaway .takeaway-btn-primary,
    .blog-final-takeaway .takeaway-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .blog-final-takeaway .takeaway-plus {
        font-size: 80px;
        right: -10px;
        bottom: -10px;
    }
}



@media (max-width: 991px) {
    .blog-inner-tutorial .tutorial-card {
        padding: 24px;
        
    }

    .blog-inner-tutorial .tutorial-content h4,
    .blog-inner-tutorial .tutorial-content p {
        font-size: 15px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .blog-inner-tutorial .tutorial-card {
        padding: 20px;
        gap: 15px;
    }

    .blog-inner-tutorial .tutorial-icon i {
        font-size: 24px;
    }

    .blog-inner-tutorial .tutorial-content h4,
    .blog-inner-tutorial .tutorial-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 767px) {
    .comparison-table-wrap .comparison-table {
        min-width: 700px;
    }

    .comparison-table-wrap .comparison-table thead th,
    .comparison-table-wrap .comparison-table tbody td {
        padding: 14px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .treatment-info-item {
        gap: 12px;
    }

    .treatment-info-item .icon-box {
        width: 24px;
        min-width: 24px;
    }

    .treatment-info-item .icon-box i {
        font-size: 20px;
    }

    .treatment-info-item .content h4 {
        font-size: 15px;
    }

    .treatment-info-item .content p {
        font-size: 14px;
    }
}


@media (max-width: 767px) {
    .blog-info {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-info-item {
        font-size: 15px;
    }

    .blog-info-item i {
        font-size: 14px;
    }
}



@media (max-width: 991px) {

    .luxury-cta-section {
        padding: 60px 20px;
    }

    .luxury-cta-content h2 {
        font-size: 42px;
    }

}

@media (max-width: 767px) {

    .luxury-cta-section {
        padding: 40px 20px;
    }

    .luxury-cta-content h2 {
        font-size: 32px;
    }

    .luxury-cta-content p {
        font-size: 15px;
    }

    .luxury-cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
    }

}



@media(max-width:991px){

    .blog-layout{
        grid-template-columns:1fr;
    }

    .blog-content h1{
        font-size:30px;
    }

    .blog-layout{
        padding: 0px;
        padding-top: 130px;
        padding-bottom: 40px;
    }
    .sidebar-widget{
        margin-bottom: 0px;
    }

    .blog-content h2{
        font-size: 25px;
    }
}


@media(max-width:768px){

    .blog-highlight-section .highlight-box{
        padding:25px;
    }

    .blog-highlight-section .highlight-box h3{
        font-size:26px;
    }

    .blog-highlight-section .highlight-box p,
    .blog-highlight-section .highlight-list li,
    .blog-highlight-section .bottom-note{
        font-size:15px;
        margin-bottom: 0px;
    }
    .blog-highlight-section .highlight-list li{
        padding-left: 25px;
    }
}

@media(max-width:576px){

    .blog-highlight-section .highlight-box{
        padding:20px;
    }

    .blog-highlight-section .highlight-box h3{
        font-size:22px;
        margin-bottom:15px;
    }

}