:root {
    --thm-color: #66B53B;
    --dark: #222222;
    --highlight: #ff6666;
    --light: #f6f6f6;
    --sky-blue: #e6f2e6;
    --bg-small-green: #e6f2e6;
    --bg-dark-skyblue: #e6f2e6;
    --bg-gray: #f4f5f4;
    --tg-color-white-default: #ffffff;
}

/* Common Css */

.text-blue {
    color: var(--thm-color) !important;
}

.bg-dark-blue {
    background-color: var(--thm-color);
}

.bg-skyblue {
    background-color: var(--sky-blue) !important;
}

.bg-dark-skyblue {
    background-color: var(--bg-dark-skyblue) !important;
}

.bg-small-green {
    background-color: var(--bg-small-green) !important;
}

.bg-light-gray {
    background: #f6f6f6;
}

.bg-thm {
    background: var(--thm-color);
}

.bg-success {
    background: #45b71c;
    color: #fff;
}

.tx-light-thm {
    color: var(--light);
}

.tx-thm {
    color: var(--thm-color);
}

p {
    color: #434343;
}

.a-link-thm {
    color: var(--thm-color);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.a-link-thm:hover {
    opacity: 0.7;
}

.card-cust {
    box-shadow: 0 0 14px rgba(0, 0, 0, 0.125);
}

.ht-fit {
    height: fit-content;
}

.wd-14 {
    width: 14px;
}

.ht-14 {
    height: 14px;
}

.wd-15 {
    width: 15px;
}

.ht-15 {
    height: 15px;
}

.wd-16 {
    width: 16px;
}

.ht-16 {
    height: 16px;
}

.border-none {
    border: none !important;
}

/* Common Css End*/
/* status */
.bg-pending {
    background: #d4edda;
    color: #155724;
}

.bg-complete {
    background: #d4edda;
    color: #155724;
}

/* status */

/* Header Css */
.cust-header .tg-header__area-five {
    -webkit-box-shadow: 0 10px 1px rgba(197, 238, 245, 0.2);
    box-shadow: 0 2px 14px rgba(197, 238, 245, 0.35);
}

.cust-header .tg-header__area-five.sticky-menu {
    -webkit-box-shadow: 0 10px 1px rgba(197, 238, 245, 0.2);
    box-shadow: 0 10px 14px rgba(197, 238, 245, 0.2);
}

/* Header Css end*/
/* Button */

.btn-thm {
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: medium none;
    color: var(--tg-color-white-default);
}

.btn-sec:hover,
.btn-thm:hover {
    color: var(--tg-color-white-default) !important;
}

.btn-thm-dark {
    background: var(--tg-color-white-default) none repeat scroll 0 0;
    border: medium none;
    color: var(--thm-color);
}

.btn-thm-dark:hover {
    color: var(--tg-color-white-default) !important;
}

.btn-sec {
    background: var(--tg-color-white-default) none repeat scroll 0 0;
    border: 1px solid var(--tg-theme-primary);
    color: var(--tg-theme-primary);
}

.btn-sm {
    padding: 12px 14px;
    font-size: 12px;
    height: fit-content;
}

/* Button end */

.arrow-btn {
    background-color: var(--light);
    border-radius: 100%;
    border: 1px solid var(--thm-color);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--thm-color);
}

.steps-wrapper {
    display: flex;
    justify-content: space-evenly;
}

.step-indi {
    width: 50%;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    opacity: 0.9;
    transition: all 0.3s;
}

.step-indi .step-index {
    width: 35px;
    border: 1px solid #dcdcdc;
    border-radius: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: calc(17px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 600;
    height: 35px;
    margin: 10px auto 0;
}

.step-indi .step-index::after,
.step-indi .step-index::before {
    content: "";
    display: inline-block;
    width: 50%;
    height: 3px;
    background: #dcdcdc;
    position: absolute;
    right: 0;
    z-index: -1;
}

.step-indi .step-index::after {
    right: 0;
}

.step-indi .step-index::before {
    left: 0;
}

.step-indi .step-title {
    font-size: calc(15px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: #000;
}

.step-indi.active {
    opacity: 1;
}

.step-indi.active .step-index::after,
.step-indi.active .step-index::before {
    background: var(--thm-color);
}

.step-indi.completed .step-index {
    background: var(--thm-color);
    color: #fff;
}

.no-before::before,
.no-after::after {
    content: none !important;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.time-slot-ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 370px;
}

.time-slot-ul li {
    width: 100%;
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    background: transparent;
    transition: all 0.3s;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    padding: calc(8px + (11 - 8) * ((100vw - 320px) / (1920 - 320)))
        calc(16px + (24 - 16) * ((100vw - 320px) / (1920 - 320)));
}

.time-slot-ul li:hover,
.time-slot-ul li.selected {
    background: #d4edda;
    border-color: var(--thm-color);
    color: var(--thm-color);
}

/*  */

.date-slot-wrapper {
    align-items: flex-end;
    inline-size: 100%;
    overflow: scroll;
    display: flex;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    transition: transform 0.3s ease;
    overflow-x: auto;

    white-space: nowrap;

    scroll-behavior: smooth;
}

.date-item {
    flex-shrink: 0;
}

.date-slot {
    align-items: flex-end;
    display: inline-flex;
    gap: 23px;
}

.date-slot .date-button {
    background: none;
    border: none;
    padding: 0;
    outline: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.date-day-area {
    border: 1px solid #dcdcdc;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    width: 80px;
    height: auto;
    padding: 8px;
    background: transparent;
    color: #434343;
    transition: all 0.3s ease-in-out;
}

.day-date {
    font-size: calc(14px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
}

.day-word {
    font-size: calc(15px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 400;
}

.date-month {
    font-size: calc(15px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    font-weight: 500;
    color: #434343;
    transition: all 0.3s ease-in-out;
}

.date-item.selected .date-day-area,
.date-item:hover .date-day-area {
    background: var(--thm-color);
    border-color: var(--thm-color);
    color: #fff;
}

.date-item.selected .date-month {
    color: var(--thm-color);
}

.date-item.unavailable .date-day-area,
.date-item.unavailable.hover .date-day-area {
    cursor: not-allowed;
    background: #dcdcdc;
    border-color: #dcdcdc;
    color: #000;
    opacity: 0.8;
    user-select: none;
}

.date-item.unavailable .date-month,
.date-item.unavailable.hover .date-month {
    color: #dcdcdc;
    opacity: 0.8;
}

.time-slot-ul li.unavailable:hover,
.time-slot-ul li.unavailable {
    cursor: not-allowed;
    background: #dcdcdc;
    border-color: #dcdcdc;
    color: #000;
    user-select: none;
    opacity: 0.8;
}

.doc-logo img {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    object-fit: cover;
    object-position: center;
}

.label-badge {
    background: #45b71c;
    color: #fff;
    width: fit-content;
    margin: -5px auto 0;
    border-radius: 12px;
    font-size: calc(12px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    position: relative;
    z-index: 2;
}

.success-icon {
    font-size: calc(90px + (16 - 14) * ((100vw - 320px) / (1920 - 320)));
    color: var(--thm-color);
}

.card-img {
    width: 100px;
    height: 100px;
    border-radius: 5px;
}

.card-img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.timeline-ul {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

.timeline-ul li {
    position: relative;
    padding-left: 30px;
    padding-bottom: 20px;
}

.timeline-ul li::before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 6px solid var(--thm-color);
    position: absolute;
    top: 0;
    left: 0;
}

.timeline-ul li:not(:last-child)::after {
    content: "";
    width: 4px;
    height: calc(100% - 20px);
    background-color: var(--thm-color);
    position: absolute;
    top: 20px;
    left: 8px;
}

.profile-pic {
    color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    position: relative;
    width: fit-content;
    transition: all 0.3s ease;
    height: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
    width: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
}

.profile-pic img {
    width: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
    height: calc(99px + (108 - 93) * ((100vw - 320px) / (1920 - 320)));
    -o-object-fit: cover;
    object-fit: cover;
    background-color: #f8f8f8;
    border-radius: 0;
    padding: 5px;
    border: 1px solid #ececec;
    -webkit-box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
    box-shadow: 2px 3px 8px rgba(34, 34, 34, 0.32);
    position: absolute;
    z-index: 0;
}

.cover-icon {
    width: 30px;
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: absolute;
    bottom: -10px;
    right: -5%;
    background-color: #fff;
    border-radius: 100%;
    color: #4a5568;
    cursor: pointer;
}

.cover-icon i {
    position: relative;
}

.profile-url {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    opacity: 0;
    width: 106%;
    height: 108%;
    cursor: pointer;
    z-index: 1;
}

/*  */

@media (max-width: 768px) {
    .border-top-sm-none {
        border-top: none !important;
    }

    .doc-card {
        position: fixed;
        inset-block-end: 0;
        inline-size: 100%;
        z-index: 5;
        bottom: 0;
        left: 0;
    }

    .doc-logo,
    .doc-content {
        display: none;
    }

    .date-slot {
        gap: 13px;
    }

    .services__area-home8 .card-icon .w-25 {
        width: 15% !important;
    }

    .small-end {
        justify-content: start !important;
        margin-top: 30px;
    }
}

/* K css */

.offcanvas .offcanvas-close-outside {
    position: absolute;
    top: 10px;
    left: -40px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 25px;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.offcanvas .offcanvas-body a {
    text-decoration: underline;
}

.offcanvas .offcanvas-body .cutom-btn {
    background: var(--tg-theme-primary) none repeat scroll 0 0;
    border: medium none;
    color: var(--tg-color-white-default);
    display: flex;
    justify-content: center;
    width: 100%;
}

/* service details */

.services__details-area
    .services__details-wrap
    .services__details-content
    > h2 {
    font-size: 28px;
}

.services__details-area
    .services__details-wrap
    .services__details-content
    > h3 {
    font-size: 22px;
}

/* call icon */

.call-icon-container {
    width: 40px;
    height: 40px;
    background-color: var(--thm-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.3s ease;
}

.call-icon-container i {
    font-size: 20px;
}

.call-icon-container:hover {
    background-color: var(--dark);
}

.about__content-inner-three {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.custom-social .banner-social {
    gap: 45px;
}

.custom-social .social-right {
    left: auto;
    position: fixed;
    right: 1%;
    top: 30%;
    z-index: 11;
}

.banner-social .list-wrap li a {
    transform: rotate(-1deg);
}

.tg-header__top .tg-header__top-right .goog-te-gadget {
    font-size: 0px;
}

.tg-header__top
    .tg-header__top-right
    #google_translate_element
    .goog-te-gadget
    span {
    display: none !important;
}

/* bottombar */

.mobile-menu {
    position: fixed;
    bottom: 0px;
    padding: 10px;
    width: 100%;
    background-color: var(--tg-theme-primary);
    z-index: 2;
    overflow: hidden;
    -webkit-box-shadow: 0 -3px 10px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0 -3px 10px 0px rgba(0, 0, 0, 0.08);
}

.mobile-menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.mobile-menu ul li.active {
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    position: relative;
}

.mobile-menu ul li {
    width: 100%;
    text-align: center;
    display: inline-block;
    font-size: 14px;
}

.mobile-menu ul li a span {
    display: block;
    color: white;
}

.mobile-menu ul li a .icli {
    display: inline-block;
    margin: 0 auto;
    font-size: 18px;
    color: #fff;
}

@media (max-width: 767.98px) {
    .scroll__top.open {
        bottom: 76px !important;
    }
}

@media (min-width: 992px) {
    /* Large Screens */
    .col-lg-custom {
        flex: 0 0 20%;
        /* Each box takes exactly 20% */
        max-width: 20%;
    }
}

.testimonial__item-three.home-9 {
    padding: 24px;
    gap: 22px;
    border-radius: 12px;
    border: 1px solid var(--tg-color-dark-blu);
    background: var(--tg-color-dark-blue);
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
    content: "prev";
    border: 1px solid black;
    padding: 10px 14px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
    content: "next";
    border: 1px solid black;
    padding: 10px 14px;
    border-radius: 50%;
}

.special-text {
    font-size: 20px;
    font-style: italic;
    text-align: center;
    font-weight: 600;
}

.services__area-seven .mySwiper {
    overflow: hidden;
}

.services__area-seven .mySwiper .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: 200px;
}

.services__area-seven .mySwiper .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 200px;
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .services__area-seven .mySwiper .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: 60px;
    }

    .services__area-seven .mySwiper .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 60px;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .services__area-seven .mySwiper .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: 6px;
    }

    .services__area-seven .mySwiper .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 6px;
    }
}

@media (max-width: 767px) {
    .services__area-home8 {
        position: relative;
        z-index: 0;
    }

    .services__area-seven .mySwiper .swiper-button-next,
    .swiper-container-rtl .swiper-button-prev {
        right: 0px;
    }

    .services__area-seven .mySwiper .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 0px;
    }
}

.services__area-seven .mySwiper .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    top: 50%;
}

.services__area-seven .mySwiper .swiper-button-next {
    top: 50%;
}

.gallery_sec {
    width: 100%;
}

.gallery_sec img {
    width: 100%;
    margin-bottom: 30px;
    height: 250px;
}

.gallery_sec a {
    position: relative;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.gallery_sec a img {
    object-fit: cover;
}

.gallery_sec a::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 30px;
    background: none;
    background-size: contain;
    background-repeat: no-repeat;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery_sec img {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.gallery_sec a:hover img {
    position: relative;
    width: 100%;
}

.gallery_sec a:hover img {
    opacity: 0.8;
}

.gallery_sec a:hover::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 99;
}

/* Default Styles for Desktop */
.box-slide-testimonials .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    right: -33px !important;
    left: auto;
}

.box-slide-testimonials .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: -33px;
    right: auto;
}

/* Responsive - Mobile Devices */
@media (max-width: 768px) {
    .box-slide-testimonials .swiper-button-next,
    .box-slide-testimonials .swiper-button-prev {
        right: 0px !important;
        left: auto;
    }

    .box-slide-testimonials .swiper-button-prev,
    .swiper-container-rtl .swiper-button-next {
        left: 0px;
        right: auto !important;
    }
}

.step-time .time-slot-ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* 4 items per row */
    gap: 10px;
    /* Spacing between items */
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-time .time-slot-ul li {
    padding: 10px 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.btn-whatsapp-pulse {
    background: #25d366;
    color: white;
    position: fixed;
    bottom: 85px;
    z-index: 99;
    right: 50px;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 0;
    height: 0;
    padding: 22px;
    text-decoration: none;
    border-radius: 50%;
    animation-name: pulse;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .btn-whatsapp-pulse {
        right: 27px;
    }
}

/* Mobiles (up to 767px) */
@media (max-width: 767px) {
    .btn-whatsapp-pulse {
        right: 12px;
        bottom: 120px;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    80% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
}

.btn-whatsapp-pulse-border {
    bottom: 120px;
    right: 20px;
    animation-play-state: paused;
}

.btn-whatsapp-pulse-border::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 25px;
    border: 5px solid #25d366;
    opacity: 0.75;
    animation-name: pulse-border;
    animation-duration: 1.5s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes pulse-border {
    0% {
        padding: 25px;
        opacity: 0.75;
    }

    75% {
        padding: 50px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.tg-header__area-five .tgmenu__navbar-wrap ul {
    margin: 0 0 0 auto !important;
}

.call-icon-container1 {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.5s ease, transform 0.3s ease;
}

label.error {
    color: red !important;
}

/* card icon 3 container */
.card-icon-container .card-icon-item {
    box-shadow: 0px 4px 30px 0px var(--sky-blue);
    overflow: hidden;
}

.card-icon-container .card-icon-item .icon-content {
    height: 200px;
    background-color: var(--sky-blue);
}

.card-icon-container .card-icon-item .icon-content .img-icon {
    height: 120px;
    width: 120px;
}

.card-icon-container .card-icon-item .icon-content .img-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

/* service component  */

.slider-service-container .service-card .content h2,
.slider-service-container .service-card .content p {
    min-height: 4.5rem;
    line-height: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

/* video container  */

.slider-video-container .video-thumbnail {
    height: 250px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    z-index: 99;
}

.slider-video-container .video-thumbnail img {
    height: 100%;
    width: 100%;
    /* object-fit: cover; */
    border-radius: 12px;
    z-index: 0;
}

/* healthy-lifestyle-container  */
.healthy-lifestyle-container .left-side-content,
.healthy-lifestyle-container .right-side-content {
    border-radius: 12px;
}

@media (max-width: 767.98px) {
    .healthy-lifestyle-container .left-side-content {
        border-radius: 0;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
    }

    .healthy-lifestyle-container .right-side-content {
        border-radius: 0;
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
    }
}

.healthy-lifestyle-container .right-side-content ul li,
.find-health-container .health-card .content ul li {
    list-style: none;
    margin: 20px 0;

    a:hover {
        text-decoration: underline;
        transition: all 0.3s ease-in-out;
        color: var(--dark);
    }
}

/* find-health-container  */

.find-health-container .health-card {
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
}

.find-health-container .health-card .services__icon-three {
    background-color: transparent !important;
    font-size: 32px !important;
    color: var(--thm-color);
}

.find-health-container .health-card .content p {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 7.5rem;
    line-height: 1.5rem;
}

@media (max-width: 767.98px) {
    .find-health-container .health-card .content p {
        -webkit-line-clamp: unset;
        max-height: unset;
        overflow: visible;
        display: block;
    }
}

/* Why Choose Dr. Nair  */

.why-choose-dr-container .card-icon-item .icon-content .img-icon {
    height: 85px;
    width: 85px;
}

/* contact container */
.contact-container .contact__content .section-title h5::after {
    content: "";
    display: block;
    height: 5px;
    border-radius: 12px;
    width: 70px;
    background-color: var(--thm-color);
    margin-top: 5px;
}

.contact-container .contact__content .contact__info .list-wrap li {
    align-items: start !important;
    margin-bottom: 15px !important;

    .content {
        width: 100%;
    }
}

.contact-container .contact__content .contact__info .list-wrap .icon {
    height: auto !important;
    width: auto !important;
    font-size: 24px !important;

    background-color: transparent !important;
}

/* counter link 4 */

@media (max-width: 767.98px) {
    .row.media-content.g-4 > .col-6 {
        padding: 10px;
        /* Adjust as needed for consistent gap */
    }

    .row.media-link.mb-60 {
        margin: 10px 0;
    }
}

/* footer  */

.footer-menu {
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li a {
    position: relative;
    color: var(--tg-color-white-default);
    text-decoration: none;
    padding-bottom: 3px;
}

.footer-menu li a:hover {
    color: var(--thm-color);
}

.footer-menu li a:hover::after {
    width: 50%;
}

.footer-menu .separator {
    color: #999;
    pointer-events: none;
    user-select: none;
}

.footer-menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 5px;
    background-color: var(--thm-color);
    transition: width 0.3s ease;
}

.cust-mt-31 {
    margin-top: 31px;
}

@media (max-width: 991px) {
    .user-dashboard-section .dashboard-left-sidebar.mobile-profile {
        /* width: 300px; */
        /* height: 100vh; */
        /* position: fixed; */
        /* top: 0; */
        /* left: -320px; */
        position: static !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 0;
        z-index: 6;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        margin-bottom: 50px;
    }

    .mobile-dashboard-container {
        padding-top: 0px !important;
    }

    .w-m-83 {
        width: 83% !important;
    }
}

.date-button input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.date-button {
    cursor: pointer;
}

.date-button input[type="radio"] {
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.date-button input[type="radio"]:checked + .date-day-area {
    background-color: var(--thm-color);
    color: rgb(255, 255, 255);
}

.date-button {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-slot-label {
    padding: 10px 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    border: 1px solid var(--thm-color);
    color: #000;
}

.time-slot-label:has(input[type="radio"]:checked) {
    background-color: var(--sky-blue);
    font-weight: bold;
    border-radius: 6px;
}

.faq-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-card .card-body {
    flex: 1 1 auto;
}

.faq-title {
    font-weight: 700;
}

.accordion-button {
    font-weight: 600;
}

.our-service-slider .services__item-five {
    padding: 0px;
}

.sidebar__contact .btn:hover {
    color: var(--tg-theme-secondary) !important;
}

.education-area {
    padding: 120px 0;
}

.education-box .services__item-two {
    background-color: var(--light-color);
    border: 1px solid var(--tg-theme-primary);
    min-height: 264px;
}

.education-icon-box {
    font-size: 24px;
    line-height: 50px;
    height: 50px;
    width: 50px;
    text-align: center;
    background-color: #fef6e6;
    color: #000;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* education area end  */

.special-skills h5 {
    font-size: 18px;
}

.special-skills .h-85 {
    height: 85%;
    padding: 30px 20px;
}

.brand__area-four {
    border: none;
}

.float-button {
    text-decoration: none;
    position: fixed;
    padding: 8px 20px;
    padding-right: 10px;
    bottom: 80px;
    right: 30px;
    color: #fff;
    background-color: #25d366;
    border-radius: 50px;
    z-index: 100;
    font-size: 17px;
    animation: whatsapp-animation 0.5s ease-in-out;
    box-shadow: 1px 2px 5px 2px rgba(30, 30, 30, 0.3);
    transition: all 0.3s ease-out;
}

.float-button:hover {
    background-color: var(--thm-color);
    color: #fff;
}

.fa-whatsapp {
    font-size: 32px !important;
    padding-right: 5px;
    padding-left: 5px;
}

@keyframes whatsapp-animation {
    from {
        opacity: 0%;
    }

    to {
        opacity: 100%;
    }
}

@media screen and (max-width: 545px) {
    .float-button {
        bottom: 116px;
        right: 15px;
    }
}

.float-button h5 {
    font-size: 14px;
}

.float-button span {
    display: inline-block;
    line-height: 6px;
    font-size: 11px;
}

.testiminials-active-2 p {
    display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: calc(1.5em * 12);
    line-height: 1.5em;
}

.h-400px {
    height: 400px;
}
.h-480px {
    height: 480px;
}
.wh-50 {
    width: 50px;
    height: 50px;
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    pointer-events: auto;
    cursor: pointer !important;
}
.card-icon-container .services-content {
    padding: 30px 20px 30px;
    position: relative;
    min-height: 222px;
}
.service-page .p-4 {
    min-height: 190px;
}
.why-choose .counter-item .icon {
    font-size: 40px;
}
.why-choose .counter-item .content .count {
    font-size: 24px;
}
.w-50px {
    width: 50px;
}
.why-choose .choose__img-wrap-five img:nth-child(2) {
    right: -60px;
}
footer .f-logo {
    width: 75px;
}
.tgmenu__navbar-wrap > ul > li .sub-menu > li {
    position: relative;
}
@media (max-width: 767.98px) {
    .choose__img-wrap-five img:nth-child(2) {
        display: block !important;
        right: 0 !important;
        width: 100% !important;
        position: static !important;
    }
    .choose__img-wrap-five {
        margin-bottom: 0px;
        padding: 0 !important;
    }
    .tgmenu__nav .logo img {
        max-height: 55px;
    }
 
}
@media (max-width: 992px) { 
  .call-back-area .col-lg-6.d-flex {
    flex-direction: column;
    align-items: center;
  }
  .call-back-area .row.justify-content-end {
    justify-content: center !important;
  }
}

.thank-you .check-icon {
    height: 120px;
    width: 120px;
    max-width: 100%;
    object-fit: contain;
}

.icon-green {
  stroke: #66B53B;
}

.doctor-icon {
  width: 50px;
  height: 50px;
  fill: #66B53B;
}

.breadcrumb__content nav {
    display: none;
}