/* -----------------------------
GLOBAL
----------------------------- */

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: 'The Seasons';
    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;
}


.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: 'The Seasons';
}

.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: 'The Seasons';

}

/* 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: 'The Seasons';
    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: 'The Seasons';
}

/* 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: 'The Seasons';
    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: 'The Seasons';

}

.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: 'The Seasons';
}

.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(316deg, #855f3a 0%, #ffcaa6 100%);
    color: #ffffff;
    font-size: 14px;
    padding-top: 80px;
}

.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;
    max-width: 240px;
}

/* Nav columns */
.footer-nav h4 {
    display: none;
    /* no heading in original – links only */
}

.footer-nav ul {
    list-style: none;
    padding-left: 0px;
}

.footer-nav ul li {
    margin-bottom: 16px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    transition: opacity 0.2s;
}

.footer-nav ul li a:hover {
    opacity: 0.6;
    text-decoration: underline;
}

/* Address column */
.footer-address h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.footer-address p {
    font-size: 16px;
    line-height: 1.75;
    color: #fff;
    ;
}

/* Divider */
.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    margin: 0 -48px;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 18px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 18px;
}

.social-links a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.55;
}

.social-links a i {
    font-size: 20px;
    color: #fff;
}

.footer-copy {
    font-size: 16px;
    color: #fff;
    ;
    text-align: left;
    line-height: 1.6;
}

@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-top: 40px;
    }
}

@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: 'The Seasons';
}

.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: 35px !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: 'The Seasons';
    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: 'The Seasons';
    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%;

}


.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: 'The Seasons';
    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;
}

@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: 'The Seasons';
}

.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;
        }
}