/*
 -- Purple Shade --> #46287d

 -- Red Shade --> #cd111d

 -- Dark Font Color --> #0b041e

 -- Too Light Purple Color --> #f4f2ff

 -- Copyright Color --> #b4b0cd

 -- Paragraph <p></p> Color --> #3c3c3c
*/

/************************************/
/*** 	      Common Css          ***/
/************************************/
.text-align-justify {
    text-align: justify;
}

.header-container {
    max-width: 1340px;
}

.new-container {
    max-width: 1300px;
}

.text-right {
    text-align: right;
}

.breadcrumb-bar .page-breadcrumb ol li a {
    color: #fff;
    transition: 0.5s all ease-in-out;
    font-weight: 500;
    font-size: 17px;
}

/************************************/
/***         Preloader Css        ***/
/************************************/
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #f0e0ff;
    top: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: opacity 0.5s ease, visibility 0.5s ease;

    flex-direction: column;
}

.preloader-img-1 {
    width: 300px;
    margin-bottom: 18px;
    animation: fadeZoom 1.5s ease-in-out infinite alternate;
}
@keyframes fadeZoom {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* hide smoothly */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}


/************************************/
/***       Floating Icon Css      ***/
/************************************/
/* FORCE hide initially */
#appointmentBtn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.4s ease;
}

/* Show after preloader */
#appointmentBtn.show-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Floating container */
.appointment-float {
    position: fixed;
    right: 0;
    top: 60%;
    transform: translateY(-50%);
    
    background: #cd111d;
    color: #fff;
    
    display: flex;
    align-items: center;
    
    padding: 12px;
    border-radius: 30px 0 0 30px;
    
    cursor: pointer;
    z-index: 9999;

    overflow: hidden;
    transition: all 0.4s ease;
}

/* Icon */
.appointment-float i {
    font-size: 18px;
    min-width: 24px;
    text-align: center;
}

/* Text hidden initially */
.appointment-float span {
    margin-left: 10px;
    white-space: nowrap;
    
    opacity: 0;
    max-width: 0;
    transition: all 0.4s ease;
}

/* Hover effect */
.appointment-float:hover {
    padding: 12px 20px;
    background: #cd111d;
}

/* Show text */
.appointment-float:hover span {
    opacity: 1;
    max-width: 150px;
}

/* Hover lift */
.appointment-float:hover {
    box-shadow: 0 5px 7px #cd111d4d;
}

/************************************/
/***  Book Appointment Modal Css  ***/
/************************************/
/* Modal Background */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.modal-content {
    background: #fff;
    width: 90%;
    max-width: 600px;
    margin: 8% auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    animation: fadeIn 0.4s ease;
}
.modal-content h2 {
    margin-bottom: 30px;
}

/* Close Button */
.closeBtn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* Inputs */
.modal-content input,
.modal-content textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* Button */
.modal-content button {
    width: auto;
    background: #cd111d;
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
}
.modal-content button:hover {
    background: #46287d;
}

/* Wrapper */
.select-wrapper {
    position: relative;
}

/* Select */
.select-wrapper select {
    width: 100%;
    margin-bottom: 12px;
    padding: 10px 40px 10px 10px;

    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;

    background-color: #fff;
    color: #999; /* placeholder color */

    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    cursor: pointer;
}

.select-wrapper select:valid {
    color: #333; /* same as input text */
}

/* Single Down Arrow */
.select-wrapper::after {
    content: "\f107"; /* fa-angle-down */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;

    position: absolute;
    right: 22px !important;
    top: 39% !important;
    transform: translateY(-50%);
    
    font-size: 14px;
    color: #666;

    pointer-events: none;
}

/* Custom arrow */
.modal-content .col-md-6 {
    position: relative;
}

.modal-content .col-md-6 select {
    padding-right: 35px;
}

/* Animation */
@keyframes fadeIn {
    from { transform: translateY(-20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.book-whatsapp-btn {
    /*background: linear-gradient(135deg, #25D366, #128C7E) !important;*/
    /*background: linear-gradient(132deg, #075E54, #128C7E, #075E54) !important;*/
    background: #25D366 !important;
}

.book-whatsapp-btn:hover {
    background: #075E54 !important;
}


/************************************/
/*** 	     Header Css  		  ***/
/************************************/
.mobile-header-fix {
    position: relative;
    z-index: 9999;
}

.special-offer-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
header.inner-header .header-nav .header-menu {
    padding-right: 40px;
}


.top-bar-details-part a {
    color: #fff;
}
.top-bar-details-part a:hover {
    letter-spacing: 0.7px;
}
.special-offer-content1 {
    float: right;
}

.header-logo {
    display: flex;
    flex-direction: row;
}

.cart-logo2 {
    width: 100%;
}

.cart-logo1 {
    width: 40%;
}

.home-shopping-cart-content {
	display: flex;
	gap: 10px;
}

.top-header-right .nav li {
    gap: 20px;
}

.top-bar-mail-icon i,
.top-bar-fb-icon i {
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    border-radius: 50%;
    font-size: 14px;
    display: inline-block;
    transition: 0.3s ease;
}

.top-bar-mail-icon i {
    background: #EA4335;
    color: #fff;
}

.top-bar-mail-icon:hover i {
    background: #fff;
    color: #EA4335;
}

.top-bar-fb-icon i {
    background: #1877F2;
    color: #fff;
}

.top-bar-fb-icon:hover i {
    background: #fff;
    color: #1877F2;
}

.shopping-cart-amount .shopping-cart-content p {
    color: #0b041e;
}

.padding-top-bar {
	padding: 10px 0 0;
}

/*.header .header-nav {
	justify-content: flex-end;
}*/

.header .header-nav .main-nav {
    gap: 22px;
}


/************************************/
/*** 	    Home Banner Css  	  ***/
/************************************/
.banner-slider {
    width: 100%;
    height: 70vh;
}

.swiper-slide {
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay */
.content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    width: 50%;
}

.content h1 {
    font-size: 50px;
    margin-bottom: 10px;
    /*color: #fff;*/
}
.content h1 span{
    /*color: #46287d;*/
    color: #fff;
}

.content p {
    font-size: 17px;
    color: #0b041e;
}

.content3 h1 {
    color: #fff;
}

.content3 h1 span {
    color: #ffffff;
    position: relative;
}

/* Stylish underline */
.content3 h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #46287d, #EA4335);
    border-radius: 2px;
    transition: 0.4s ease;
}

.content3 p, .content p {
    color: #fff;
    margin-top: 30px;
    margin-bottom: 20px;
}

/* Content box */
.content2 {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 2;
    max-width: 500px;
}

/* Title */
.content2 h1 {
    color: #f1f1f1;
}

/* List styling */
.content2 ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.content2 ul li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    transition: 0.3s ease;
}

/* Icon styling */
.content2 ul li i {
    color: #EA4335;
    margin-right: 8px;
}

/* Hover effect on list */
.content2 ul li:hover {
    transform: translateX(5px);
    color: #f1f1f1;
}

/* Overlay dark effect */
.swiper-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 30%);
    /*background: rgb(255 255 255 / 14%);*/
    top: 0;
    left: 0;
}

.swiper-button-next, 
.swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(6px);
    color: #fff !important;
    
    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.3s ease;
}

/* Remove default arrow size issue */
.swiper-button-next::after, 
.swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Hover effect */
.swiper-button-next:hover, 
.swiper-button-prev:hover {
    background: #f4f2ffa6;
    color: #46287d !important;
}


.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    display: none;
}

/************************************/
/***        Home About Css        ***/
/************************************/
.home-about-banner-content p {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 12px;
}
.margin-about-home {
    margin-bottom: 40px !important;
}
.home-about-banner-content p .home-about-hospital {
    font-weight: 600;
    font-size: 18px;
    color: #46287d;
}

.home-about-banner-content p span {
    color: #46287d;
    font-weight: 600;
    font-size: 17px;
}

.remedy-about-img {
    width: 32%;
    border-radius: 20px;
}

/************************************/
/***     Home About Doctor Css    ***/
/************************************/
.home-content-doctor p {
    font-weight: 400;
    font-size: 16px;
}
.home-content-doctor p b {
    color: #46287d;
}
.home-doc-img {
    max-width: 350px;
}
.work-details {
    padding-left: 0;
}
.home-content-doctor {
    margin-bottom: 30px;
}

/************************************/
/***       Home Services Css      ***/
/************************************/
.facts-section-sixteen .facts-section-all .facts-content-all ul li .facts-sixteen-img img {
    width: 34%;
}
.facts-section-sixteen .facts-section-all .facts-main-sixteen .bg-img img {
    opacity: 0.3;
}
.facts-section-sixteen .facts-section-all .facts-content-all ul li .facts-sixteen-img .facts-content-sixteen .facts-content-one h5 {
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}
.facts-section-sixteen .facts-section-all .facts-content-all ul li .facts-sixteen-img .facts-content-sixteen .facts-content-one h5:hover {
    letter-spacing: 1px;
    color: #46287d;
}
.facts-section-sixteen .facts-section-all .facts-content-all ul li .facts-sixteen-img .facts-content-sixteen .facts-content-one h5:hover i {
    color: #cd111d;
}
.facts-section-sixteen .facts-section-all .facts-content-all {
    box-shadow: -5px 1px 8px 0px rgb(255 255 255 / 23%);
    z-index: 1;
}

/************************************/
/***   Home Contact & Review Css  ***/
/************************************/
.home-con-test-sec-heading-eye {
    margin: 0 0 18px;
}
.testimonial-wrap {
    background: #f4f2ff;
    border-radius: 20px;
    border: 1px solid #ddd6ff;
    padding: 20px 25px 20px;
}


.dentist-home-testi .customer-wrap {
    height: 331px;
}
.home-testi-name-margin {
    margin-bottom: 24px !important;
}

/************************************/
/***   Home Mission vission Css   ***/
/************************************/
.reason-item p span {
    font-size: 17px;
    font-weight: 500;
    line-height: 40px;
}
.mission-vission-icon {
    font-size: 23px;
}

/************************************/
/***   About Mission vission Css  ***/
/************************************/
.about-benifit-section .about-benifit-wrap {
    flex-direction: column !important;
    align-items: flex-start !important;
}
.about-benifit-wrap span {
    margin-bottom: 20px !important;
    color: #46287d;
}
.about-benifit-section {
    padding: 60px 0 50px;
    background: #f4f2ff;
}
.bg-shapes img {
    z-index: 1 !important;
    opacity: 0.2;
}
.home-about-container {
    z-index: 1;
    position: relative;
}

/************************************/
/***       Home Counter Css       ***/
/************************************/
.count-box {
    z-index: 1;
    position: relative;
}

.counter-bg-07 {
    transform: scaleX(-1);
}

/************************************/
/***    About Dr.H.B.Bhatt Css    ***/
/************************************/
.about-doctor-section {
    padding: 60px 0 60px;
}

.doctor-widget.doctor-profile-two .doc-info-right {
    display: flex;
    justify-content: flex-end;
}

.about-doc-experience {
    margin-top: 20px;
}

.about-doctor-section-h3 {
    color: #46287d;
    margin: 30px 0 15px;
}

.doctor-sidebar {
    position: sticky;
    top: 30px; /* adjust according to header */
}

.doctor-about-title {
    margin: 6px 0 20px;
}

/************************************/
/***  Remedy hospital About Css   ***/
/************************************/
.hospital-fac-img {
    width: 70%;
}
.benifit-section .benifit-wrap p {
    font-size: 17px;
}

.benifit-section .benifit-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.benifit-section .benifit-wrap span {
     margin-bottom: 0; 
     width: 30%;
}

.section-header-about-us {
    margin: 0 0 24px 0;
}

.about-us-center {
    align-items: center;
}
.about-us-p {
    font-size: 16px;
}

/************************************/
/***         Treatment Css        ***/
/************************************/
.treatment-section {
    padding: 70px 0 50px;
}
.treatment-content p {
    font-size: 16px;
}
.treatment-content p span {
    font-size: 18px;
    color: #cd111d;
    font-weight: 600;
}
.treatment-content h1 {
    margin-bottom: 12px;
}
.treatment-content h5 a {
    color: #cd111d;
    font-size: 23px;
    transition: 0.5s all ease;
}
.treatment-content h5 a:hover {
    color: #46287d;
}
.treatment-content ul li {
    color: #3c3c3c;
}
.treatment-content ul {
    margin-bottom: 20px;
}

.content-block a {
    color: #cd111d;
    font-size: 20px;
    transition: 0.5s all ease;
}

.content-block a:hover {
    color: #46287d;
}

.slide-nav-3 .owl-prev:hover,
.slide-nav-3 .owl-next:hover {
    background: #cd111d;
}

.blog .blog-image img {
    aspect-ratio: 1 / 0.6;
    /*aspect-ratio: 1 / 0.4;*/
    /*object-fit: cover;*/
}

.clinic-features-section {
    padding: 0;
}

.sidebar-right {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.clinic-features-section .clinic-features img {
    object-fit: cover;
    aspect-ratio: 1/1;
}



/*------*/
/* Sticky */
.category-widget {
    position: sticky;
    top: 100px;
    border-radius: 12px;
    overflow: hidden;
}

/* Title */
.sidebar-title {
    background: #46287d;
    color: #fff;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

/* List */
.categories {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.categories li {
    border-bottom: 1px solid #eee;
}

.categories li:last-child {
    border-bottom: none;
}

/* Links */
.categories li a {
    display: flex;
    justify-content: left;
    padding: 10px 16px;
    color: #333;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
    position: relative;
}

.categories li a:hover::after {
    transform: translateX(5px);
    color: #46287d;
}

.categories li.active a {
    color: #cd111d;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.categories li.active a:hover {
    letter-spacing: 0.5px;
}

.categories li a.active {
    background: #46287d;
    color: #fff;
}

.treatment-card-body {
    padding: 20px 20px 5px;
}

.clinic-features-section {
    padding-bottom: 60px;
}

/************************************/
/***        Contact Us Css        ***/
/************************************/
.contact-card-body {
    align-items: flex-start !important;
}

/************************************/
/***         Gallery Css          ***/
/************************************/
.gallery-container {
    margin: 50px 0;
}

.gallery-img-div img {
    border-radius: 10px;
    transition: 0.3s;
    margin-bottom: 20px;
}

.gallery-img-div img:hover {
    transform: scale(1.05);
}

.gslide-image img {
    max-width: 700px !important;
}

/************************************/
/***         FAQs Css          ***/
/************************************/
.faq-title {
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 30px;
}
.faq-title2 {
    margin-top: 60px;
    margin-bottom: 30px;
}

.faq-subtitle {
    color: #8a8a8a;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Accordion Card */
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
    /*box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);*/
    transition: 0.3s;
}

/* Hover effect */
.faq-accordion .accordion-item:hover {
    transform: translateY(-3px);
    /*box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);*/
}

/* Question Button */
.faq-accordion .accordion-button {
    background: #f4f2ff;
    font-weight: 600;
    font-size: 16px;
    color: #0b041e;
    padding: 18px 20px;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Active State */
.faq-accordion .accordion-button:not(.collapsed) {
    background: #46287d;
    color: #fff;
}

/* Answer */
.faq-accordion .accordion-body {
    background: #f4f2ff;
    /*color: #555;*/
    font-size: 15px;
    line-height: 1.7;
    padding: 18px 20px;
    border-top: 1px solid #eee;
}

.faq-accordion .accordion-body p {
    margin: 0;
    line-height: 28px;
    font-weight: 500;
}

.faq-accordion .accordion-body p i {
    font-weight: 700;
}

/* Remove default arrow */
.accordion-button::after {
    display: none;
}

/* Custom Icon */
/*.accordion-button::before {
    content: "+";
    font-size: 18px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #46287d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}*/
.accordion-button::before {
    content: "+";
    font-size: 20px;
    font-weight: 500;

    width: 28px;
    height: 28px;
    min-width: 28px;
    
    border-radius: 50%;
    background: #46287d;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    line-height: 1;
}
.faq-accordion .accordion-button {
    align-items: center;
    gap: 12px;
    text-align: left;
}

/* Active Icon */
/*.accordion-button:not(.collapsed)::before {
    content: "–";
    background: #ffffff;
    color: #46287d;
}*/
.accordion-button:not(.collapsed)::before {
    content: "–";
    background: #ffffff;
    color: #46287d;
}

/* Smooth Transition */
.accordion-collapse {
    transition: all 0.3s ease;
}

/************************************/
/***       Achievements Css       ***/
/************************************/
.achievement-highlighted-text {
    color: #cd111d;
    font-weight: 500;
    margin-top: 46px;
}
.achievement-marging-bottom {
    color: #cd111d;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}
.achievement-marging-bottom:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 60px;
    height: 4px;
    background: #cd111d;
    border-radius: 2px;
}
.terms-text p {
    font-size: 16px;
    letter-spacing: 0.3px;
}
.terms-text ul li {
    font-size: 16px;
    letter-spacing: 0.3px;
}

/************************************/
/***          Footer Css          ***/
/************************************/
.footer-one .footer-top {
    position: relative;
    background: url(../img/banner/footer-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-one .footer-top::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgb(244 242 255 / 73%); /* overlay color */

    z-index: -1;
}

.footer-one .footer-top .footer-widget .footer-contact-info .footer-address p a, .footer-one .footer-top .footer-widget .footer-contact-info .footer-address p {
    font-size: 15px;
    font-weight: 500;
    color: #3c3c3c;
}
.footer-one .footer-top .footer-widget .footer-contact-info .footer-address p a {
    /*color: #465D7C;*/
    color: #3c3c3c;
    transition: 0.5s all ease;
}
.footer-one .footer-top .footer-widget .footer-contact-info .footer-address p a:hover {
    color: #cd111d;
}
.footer-one .footer-top .footer-widget.footer-menu ul li a:hover i {
    display: none;
}

/************************************/
/***        Responsive Css        ***/
/************************************/
/* Responsive */
@media (max-width: 768px) {

    .content p {
        font-size: 14px;
    }
    .mouse-cursor {
        display: none;
    }

/* ---------- HEADER CSS ---------- */
    .header .header-nav .main-nav {
        gap: 0;
    }
    .header .header-nav .menu-header {
        height: 124px;
    }
    .header .header-nav .main-menu-wrapper {
        background-color: #fff;
        box-shadow: 0px 0px 16px 0 #212121b5;
        width: 235px;
    }
    .header .header-nav .main-nav > li {
        border-bottom: 1px solid #d3d3d3;
    }
    .header .header-nav .main-nav > li > a {
        color: #46287d;
    }
    header.inner-header .header-nav .navbar-header {
        flex-direction: row-reverse;
    }
    .header .header-nav .main-nav ul {
        background-color: #fff;
    }
    .header .header-nav .main-nav > li .submenu li a {
        color: #46287d;
    }


/* ---------- BREADCRUMB CSS ---------- */
    .breadcrumb-bar {
        padding: 35px 0 35px;
    }

/* ---------- FOOTER CSS ---------- */
    .footer-one .footer-top .footer-widget .footer-about-content {
        max-width: 100%;
    }
    .footer-widget .footer-about {
        text-align: center !important;
    }

/* ---------- BOOK NOW MODAL CSS ---------- */
    .modal-half-button {
        width: 50%;
    }
    .book-whatsapp-btn i {
        display: none;
    }

/* ---------- HOME BANNER CSS ---------- */
    .content {
        width: auto;
        margin-left: 10px;
        margin-right: 40px;
    }
    .content p {
        margin-top: 15px;
    }
    .content h1 {
        font-size: 25px;
    }
    .banner-slider {
        height: 45vh;
    }
    .content2 ul li {
        margin-bottom: 2px;
    }
    .content {
        padding: 15px 0 16px;
    }
    .swiper-button-next, .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 16px !important;
    }

/* ---------- HOME ABOUT CSS ---------- */
    .banner-content h1 {
        text-align: left;
    }
    .banner-content .header-icon {
        display: block;
        width: 14%;
        right: 25px;
    }
    .banner-img {
        display: block;
    }

/* ---------- HOME ABOUT DOCTOR CSS ---------- */
    .work-section {
        padding: 40px 15px 20px;
    }
    .work-img-info {
        display: block;
    }
    .work-img-info .work-img {
        position: relative;
        bottom: 0;
        margin-bottom: 30px;
    }
    .home-doc-img {
        max-width: 100%;
    }

/* ---------- HOME TREATMENTS CSS ---------- */
    .services-section-sixteen .service-sixteen-icon .bg-img-top {
        top: 88px;
        left: 7px;
    }

/* ---------- HOME COUNTER CSS ---------- */
    .ban-bg {
        display: block;
        opacity: 0.4;
    }

/* ---------- HOME TESTIMONIALS CSS ---------- */
    .dentist-home-testi .customer-wrap {
        height: 320px;
    }

/* ---------- GALLERY CSS ---------- */
    .gslide-image img {
        max-width: 350px !important;
    }

/* ---------- FAQS CSS ---------- */
    .faq-title {
        font-size: 24px;
    }
    .faq-accordion .accordion-button {
        font-size: 14px;
        padding: 15px;
    }
    .faq-accordion .accordion-body {
        font-size: 14px;
    }
    .accordion-button::before {
        width: 22px;
        height: 22px;
        min-width: 22px;
        font-size: 16px;
    }
    .faq-accordion .accordion-button {
        font-size: 14px;
        padding: 14px;
    }
    .faq-accordion .accordion-body p {
        text-align: justify;
    }

/* ---------- ABOUT HOSPITAL CSS ---------- */
    .section-header-about-us h2 {
        font-size: 24px;
        text-align: left;
    }
    .choose-us-fourteen {
        padding: 60px 0;
    }
    .choose-us-fourteen .choose-us-right-main {
        display: block;
    }
    .section-header-about-us {
        margin: 15px 0 25px 0;
    }


/* ---------- ABOUT DOCTOR CSS ---------- */
    .doctor-about-title {
        margin: 15px 0px 20px;
    }
    .doctors-detailed-info {
        padding: 0 5px;
    }
    .doc-information-details.bio-detail p {
        text-align: justify;
    }
    .doctor-sidebar {
        position: relative;
        top: 0; 
    }
    .about-section-header-fourteen p {
        display: none;
    }
    .section-header-about-us h2 {
        line-height: 40px;
    }
    .section-header-about-us h2 span::before {
        bottom: -6px;
    }

/* ---------- ACHIEVEMENTS CSS ---------- */
    .achievement-marging-bottom {
        margin-bottom: 6px;
    }
    .terms-text p {
        text-align: justify;
    }

/* ---------- FAQS CSS ---------- */
    .faq-inner-page {
        padding: 10px 0 16px;
    }
    .faq-title2 {
        margin-top: 50px;
        margin-bottom: 20px;
    }

/* ---------- TREATMENTS CSS ---------- */
    .treatment-section {
        padding: 70px 0 25px;
    }
    .categories li a {
        padding: 10px 10px;
    }
    .treatment-card-body h5{
        font-size: 20px;
    }
    .blog {
        padding: 20px 15px 20px;
    }
    .blog .blog-image img {
        aspect-ratio: 1 / 0.8;
    }

/* ---------- CONTACT US CSS ---------- */
    .contact-card .card-body {
        padding: 20px 7px 20px 20px;
    }
    .contact-form-card .card-body {
        padding: 20px;
    }
    .contact-icon {
        font-size: 27px;
    }
}