@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #1A237E;
    --primary-light: #F9FAFF;
    --white-font: #FCFCFC;
    --black-font: #111111;
    --grey-font: #555555;
    --footer-bg: #05021A;

    --light-green-border: #E7E9FF;
    --light-green-bg: #DBF4EC;

    --hero-gradient1: #F3FFFB;
    --hero-gradient2: #C7EEE1;

    /* font family  */
    /* body font  */
    --railway-font: "Raleway", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

p {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-size: 18px;
    font-weight: 400;
    font-family: var(--railway-font);
    background: white;
    /* overflow-x: hidden; */
}

/* CUSTOM FONT DEFINED  */
.fw-400 {
    font-weight: 400;
}

.fw-500 {
    font-weight: 500;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 00;
}

.fs-18 {
    font-size: 18px;
}

.fs-20 {
    font-size: 20px;
}

.fs-22 {
    font-size: 22px;
}

.grey-text {
    color: var(--grey-font);
}

.black-text {
    color: var(--black-font);
}

.off-white {
    color: #E2E2E2;
}

.brand-text {
    color: var(--primary-color);
}




/* CONTAINER WIDHT RE-DEFINED  */

/* .container {
    max-width: 1500px;
}

@media (max-width: 1400px) {
    .container {
        max-width: 1300px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 1100px;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
} */



/* NAVIGATION BAR CSS STARTS FROM HERE  */
.book_btn {
    /* background: linear-gradient(to right, var(--button-gradient1), var(--button-gradient2)); */
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: var(--white-font);
    padding: 10px 25px;
    font-size: 20px;
    font-weight: 600;
    transition: all .5s ease-in-out;
    box-shadow: 0 4px 10px 0 #00000033;
    width: max-content;
}
.navbar .book_btn:hover{
    border: 2px solid white;
    color: white;
}
.fa-bars-staggered,
.fa-xmark {
    font-size: 40px;
    color: var(--primary-color) !important;
    background: #E7E9FF !important;
    padding: 10px;
    border-radius: 10px;
}

.custom-close-btn {
    font-size: 10px !important;
    color: var(--primary-color) !important;
    background: var(--light-green-border);
    padding: 5px;
    border-radius: 10px;
    border: none;
    margin-left: auto;
}


.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    border: none !important;
}

.navbar-toggler {
    border: none;
}

.book_btn:hover {
    color: var(--primary-color);
    background: transparent;
    transform: scale(.9);
    border: 2px solid var(--primary-color);
}

.logo {
    max-width: 150px;
    width: 100%;
}

.home_nav_bar {
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 0;
    border-bottom: 1px solid #C7C7C7;
}

.navbar ul li a {
    color: #E2E2E2;
    font-size: 18px;
    font-weight: 500;
}
#scrollTopBtn{
    background: var(--primary-color);
    font-size: 25px;
    color: var(--white-font);
    position: fixed;
    bottom: 50px;
    right: 30px;
    border: none;
    padding: 10px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all .5s ease-in-out;
    display: none;
}
#scrollTopBtn.show{
    display: flex;
}
#scrollTopBtn:hover{
   border: 2px solid var(--primary-color);
   background: transparent;
   color: var(--primary-color);
}
.nav-link.active {
    color: white !important;
    font-weight: 600 !important;
    pointer-events: none; 
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 0;
    padding: 15px 0;
}
/* NAVIGATION BAR CSS ENDS HERE  */


/* HERO SECTION CSS STARTS FROM HERE  */
.hero_Section_home {
    background: url('./images/homePage/hero_gif.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 850px;
    position: relative;
    margin-bottom: 100px;
}

.home_hero_overlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero_heading {
    font-size: 80px;
    font-weight: 800;
    padding-top: 250px;
    text-align: center;
    color: var(--white-font);
    line-height: 1.4;
}

.hero_service_Details {
    background: var(--white-font);
    padding: 40px;
    border-radius: 16px;
    position: absolute;
    bottom: -240px;
    box-shadow: 0 4px 10px 0 #00000033;
}

.hero_omg_man {
    height: 75px;
    width: 75px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* HERO SECTION CSS ENDS HERE  */


/* HOME PAGE ABOUR SECTION CSS STARTS FROM HERE  */
.about_section_home_page {
    padding: 85px 0;
    /* background: ; */
    overflow-x: hidden;
}

.about_section_home_page .about2_image {
    width: 100%;
    height: 700px;
    overflow: hidden;
    border-radius: 10px;
}

.about_section_home_page .about2_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about2_image {
    position: relative;
}

.about2_image .palyIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    height: 100px !important;
    width: 100px !important;
    object-fit: contain !important;
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.excellence_heading {
    font-size: 55px;
    font-weight: 800;
    line-height: 1.4;
}

.excellence_heading1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.4;
    color: var(--black-font);
}

.home_about_text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
}

/* HOME PAGE ABOUT SECTION CSS ENDS HERE  */


/* HOME PAGE SERVICE SECTION CSS STARTS FROM HERE  */
.home_service_section {
    padding: 85px 0;
    background: var(--primary-light);
    overflow-x: hidden;
}

.service_learn_btn {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    background: transparent;
    border: none;
}

.service_learn_btn span i {
    transition: all .5s ease-in-out;
}

.service_learn_btn:hover span i {
    transform: translateX(10px);
}


.service_first,
.service_second,
.service_third,
.service_third1,
.service_third2,
.service_third3,
.service_last,
.same_height,
.service_second1 {
    position: relative;
    height: 400px;
    /* border: 1px solid red; */
}

.service_first::after {
    height: 260px;
    position: absolute;
    content: '';
    width: 2px;
    right: 0;
    bottom: 0;
    background: #EAECF8;
}

.service_first::before {
    height: 2px;
    position: absolute;
    content: '';
    width: 360px;
    right: 0;
    bottom: 0;
    background: #EAECF8;
}

.service_second::after {
    height: 260px;
    position: absolute;
    content: '';
    width: 2px;
    right: 0;
    bottom: 0;
    background: #EAECF8;
}

.service_second::before {
    height: 2px;
    position: absolute;
    content: '';
    width: 120%;
    right: 0;
    bottom: 0;
    background: #EAECF8;
}

.service_second1::before {
    height: 2px;
    position: absolute;
    content: '';
    width: 380px;
    /* border: 1px solid red; */
    left: -50px;
    bottom: 0;
    background: #EAECF8;
}

.service_third::after {
    height: 300px;
    position: absolute;
    content: '';
    width: 2px;
    right: 0;
    top: -12%;
    background: #EAECF8;
}

/* HOME PAGE SERVICE SECTION CSS END HERE  */


/* HOME PAGE WHY CHOOSE SECTION CSS STARTS FROM HERE  */
.home_page_why_choose {
    padding: 85px 0;
    background: url(./images/homePage/why_choose_bg.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow-x: hidden;
}

.choose_icon_bgs {
    height: 70px;
    width: 70px;
    overflow: hidden;
    border-radius: 8px;
    background: #F9FAFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fs-25 {
    font-size: 25px;
}

/* HOME PAGE WHY CHOOSE SECTION CSS ENDS HERE  */

/* HOME PAGE OUR DOCTOR SECTION CSS STARTS FROM HERE  */
.home_page_our_doctor {
    padding: 85px 0;
    overflow-x: hidden;
    background: var(--primary-light);
}
.about_doctor {
    padding: 85px 0;
    overflow-x: hidden;
    background: transparent !important;
}

.doctor_name {
    font-size: 25px;
    font-weight: 700;
}

.doctor_social_icon .fa-facebook-f,
.doctor_social_icon .fa-instagram,
.doctor_social_icon .fa-x-twitter {
    font-size: 22px;
    background: #FCFCFC;
    color: var(--primary-color);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor_social_icon {
    position: absolute;
    top: 20px;
    right: 20px;
}

.mySwiperDoctor .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    /* Change to your preferred color */
    width: 20px;
    /* Increase width when active */
    height: 8px;
    /* Keep the height same */
    border-radius: 10px;
    /* Make it rounded */
}

.mySwiperDoctor .swiper-button-next,
.mySwiperDoctor .swiper-button-prev {
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);

}

.mySwiperDoctor .swiper-button-next::after {
    content: "\f061";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.mySwiperDoctor .swiper-button-prev::after {
    content: "\f060";
    font-family: "Font Awesome 6 Free";
    /* Required for FontAwesome */
    font-weight: 600;
    /* Needed for solid icons */
    color: var(--primary-color) !important;
    font-size: 25px;
}

.mySwiperDoctor {
    position: relative;
    overflow: visible;
}

.mySwiperDoctor .swiper-button-next {
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperDoctor .swiper-button-prev {
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.doctor_image_container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}

.doctor_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
}

.mySwiperDoctor .swiper-slide {
    padding-bottom: 60px;
    margin-top: 50px;
}

/* HOME PAGE OUR DOCTOR SECTION ENDS HERE  */




/* HOME PAGE BEFORE AND AFTER SECTION CSS STARTS FROM HERE  */
.home_page_before_after {
    padding: 90px 0;
    overflow-x: hidden;
}
.home_page_before_after1{
    background: var(--primary-light);
}
.before_after_image_container {
    height: 350px;
    overflow: hidden;
}

.before_after_image_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/2;
}

/* HOME PAGE BEFORE AND AFTER SECTION CSS ENDS HERE  */



/* CUSTOMER FEEDBACK SECTION CSS STARTS FROM HERE  */
.customer_feedback_home {
    padding: 85px 0;
    background: var(--primary-light);
    overflow-x: hidden;
}

.p-85 {
    padding-top: 85px;
    padding-bottom: 30px;
}

.client_Details .client_stars i {
    color: #FFBB00;
    font-size: 20px;
}

.client_profile_detail .profile_image {
    height: 60px;
    width: 60px;
    overflow: hidden;
    min-width: 60px; 
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client_profile_detail .profile_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client_Details {
    background: var(--white-font);
    padding: 35px 30px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;

}

.client_stars {
    padding-bottom: 20px !important;
}

.client_name {
    font-size: 20px;
    font-weight: 700;
    color: var(--black-font);
}

.client_profile_detail {
    padding-top: 1.5rem;
    border-top: 1px solid #E8E8E8;
}

.mySwiperClient {
    position: relative;
    overflow: visible;
    padding: 80px 0;
}

.mySwiperClient .swiper-button-next {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperClient .swiper-button-prev {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperClient .swiper-button-next::after {
    color: var(--black-font);
}

.mySwiperClient .swiper-button-prev::after {
    color: var(--black-font) !important;
}

.mySwiperClient .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    /* Change to your preferred color */
    width: 20px;
    /* Increase width when active */
    height: 8px;
    /* Keep the height same */
    border-radius: 10px;
    /* Make it rounded */
}

.mySwiperClient .swiper-wrapper {
    display: flex;
}

.mySwiperClient .swiper-wrapper .swiper-slide {
    display: flex;
    flex-direction: column;
    /* Align content in column */
    align-items: stretch;
    /* Stretch to equal height */
    height: auto;
    /* Allow height adjustment */
}

/* CUSTOMER FEEDBACK SECTION ENDS HERE  */


/* HOME PAGE BLOG AND ARTICLE SECTION STARTS FROM HERE  */
.blog_article_section {
    padding: 85px 0;
    overflow-x: hidden;
}
.blog_article_section1{
    background: var(--primary-light);
}

.blog_slider_Content_container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--white-font);
    box-shadow: 4px 4px 10px 0px #0000001A;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog_slider_Content_container .imge_container {
    width: 50%;
    overflow: hidden;
    height: 100%;
}

.blog_slider_Content_container .half_right_content {
    width: 50%;
    overflow: hidden;
    height: 100%;
    padding: 60px 40px 50px 40px;
}

.blog_slider_Content_container .imge_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mySwiperBlog {
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

.mySwiperBlog .swiper-button-next {
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperBlog .swiper-button-prev {
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
}

.mySwiperBlog .swiper-button-next::after {
    color: var(--primary-color);
}

.mySwiperBlog .swiper-button-prev::after {
    color: var(--primary-color) !important;
}

/* HOME PAGE BLOG AND ARTICLE SECTION STARTS FROM HERE  */


/* HOME PAGE CONTACT SECTION STARTS FORM HERE  */
.home_page_contact {
    padding: 90px 0;
    background: var(--primary-light);
    overflow-x: hidden;
}
.home_page_contact1 {
    padding: 90px 0;
    background: none !important;
}

.icon_bg {
    height: 50px;
    width: 50px;
    background: var(--primary-color);
    border-radius: 8px;
    overflow: hidden;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}
.icon_bg img{
    width: 100% !important;
    height: 100% !important;
    object-fit:  contain !important;
    object-position: center;
}
.detail_contact1 {
    font-size: 22px;
    font-weight: 700;
}

.left_contact_content {
    background: #E7E9FF;
    padding: 40px;
    position: sticky;
    /* height:50vh; */
    left: 0;
    top: 0;
    border-radius: 16px;
}

.contact_social_icons .fa-facebook-f,
.contact_social_icons .fa-instagram,
.contact_social_icons .fa-x-twitter {
    font-size: 25px;
    background: #F9FAFF;
    color: #05021A;
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.brand_color {
    color: var(--primary-color);
}

.brand_color img {
    margin-bottom: 50px;
}

.contact_social_icons .fa-facebook-f:hover,
.contact_social_icons .fa-instagram:hover,
.contact_social_icons .fa-x-twitter:hover {
    background: var(--primary-color);
    color: var(--white-font);

}

.contact_socila_container {
    padding-top: 50px;
    border-top: 1px solid #E8E8E8;
}

.contact_heading {
    font-size: 50px;
    font-weight: 800;
}

.contact_form {
    border: 1px solid #D4D4D4;
    padding: 40px;
    border-radius: 20px;
}

.contact_form form input,
.contact_form form textarea {
    padding: 15px 20px;
    border: 1px solid #D4D4D4;
    width: 100%;
    outline: none;
    background-color: transparent;
    border-radius: 10px;
}

.contact_form form input::placeholder,
.contact_form form textarea::placeholder {
    font-size: 16px;
    font-weight: 500;
    color: #BFBFBF;
}

/* HOME PAGE CONTACT SECTION ENDS  HERE  */

/* last section css home page starts  */
.backseat {
    padding: 85px 0;
    background: url('./images/homePage/sevice5.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    margin-bottom: 90px;
    overflow-x: hidden;
}

.backseat_background {
    position: relative;
    z-index: 2;
}

.overlay_backseat {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #01052ACC;
    top: 0;
    left: 0;
}

.backseat_content {
    padding-top: 10px;
}

.inst_imge {
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.inst_imge .palyIcon{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 1.5s infinite ease-in-out;
    cursor: pointer;
}

.inst_imge .imgins {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.backsear_heading {
    color: var(--white-font);
}

.offcanvas-backdrop.show {
    opacity: .5;
    height: 100%;
    width: 100%;
}

.book_btn1 {
    border: 1px solid var(--white-font);
    background: transparent;
    color: var(--white-font);
    font-size: 20px;
    font-weight: 600;
    padding: 20px 40px;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}

.book_btn1:hover {
    border: none;
    background: var(--white-font);
    color: var(--primary-color);
    transition: all .5s ease-in-out;
}

/* last section css home page ends */


/* FOOTER SECTION CSS STARTS FROM HERE  */
footer {
    padding-top: 85px;
    background: var(--footer-bg);

}

.footer_social_icons .fa-facebook-f,
.footer_social_icons .fa-instagram,
.footer_social_icons .fa-pinterest-p,
.footer_social_icons .fa-twitter {
    font-size: 25px;
    background: #28329C;
    color: var(--white-font);
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: all .5s ease-in-out;
}
.footer_social_icons .fa-facebook-f:hover,
.footer_social_icons .fa-instagram:hover,
.footer_social_icons .fa-pinterest-p:hover,
.footer_social_icons .fa-twitter:hover {
    background: white;
    color: var(--primary-color);
}

.f-color {
    color: #CDCDCD;
    font-weight: 500;
    font-size: 18px;
}

.footer_social_icons {
    padding-top: 48px;
    border-top: 1px solid #33336E;
}

.footer_heading_link {
    font-size: 22px;
    font-weight: 700;
    color: var(--white-font);
}

.f-color2 {
    color: #CDCDCD;
}

.w-50 {
    width: 50%;
}

footer iframe {
    max-width: 600px;
    width: 100%;
    border-radius: 15px;
    height: 200px;
}

.last_footer {
    font-size: 20px;
    font-weight: 500;
    color: var(--white-font);
    text-align: center;
    padding-top: 40px;
    padding-bottom: 30px;
}
.footer_bg_primaey{
    background: var(--primary-color);
    color: var(--white-font);
    padding: 40px;
    margin-top: -140px;
    border-radius: 20px;
    max-height: 850px;

}
.fs-16{
    font-size: 16px;
}
/* FOOTER SECTION ENDS  HERE  */


/* ABOUT PAGE CSS STARTS FROM HERE  */

.about_page_hero_section {
    height: 700px;
    background: url('./images/aboutPage/about_hero.jpeg');
    /* border: 2px solid red; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    position: relative;
}
.about_hero_overlay{
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    width: 100%;
}
.about_hero_content{
    max-width: 600px;
    margin: auto;
    margin-top: 40px;
}

/* about page vision and mission css starts from here  */
.our_mission_vision {
    padding: 85px 0;
    background: var(--primary-light);
    overflow-x: hidden;
}

/* about page vision and mission css ends here */
.misssion_visioin_container {
    background: #FCFCFC;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
    height: 360px;
}

.vision_icon {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    overflow: hidden;
    padding: 10px;
    background: var(--primary-color);
}

.visiono_heding {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
}

/* ABOUT PAGE CSS ENDS HERE  */

/* SERVICE PAGE CSS STARTS FROM HERE  */
.service_third3,
.service_last,
.service_third1,
.service_third2 {
    position: relative;
}

.service_last::after {
    height: 260px;
    position: absolute;
    content: '';
    width: 2px;
    right: 0;
    top: 0;
    background: #EAECF8;
}

.service_third1::after {
    height: 480px;
    position: absolute;
    content: '';
    width: 2px;
    right: 0;
    top: -12%;
    background: #EAECF8;
}
.service_third2::before {
    height: 2px;
    position: absolute;
    content: '';
    width: 110%;
    right: 0;
    bottom: 0;
    background: #EAECF8;
}
.service_third3::before {
    height: 2px;
    position: absolute;
    content: '';
    width: 380px;
    left: -40px;
    bottom: 0;
    background: #EAECF8;
}
.service_third2::after {
    height: 480px;
    position: absolute;
    content: '';
    width: 2px;
    right: 0;
    top: -12%;
    background: #EAECF8;
}
.service_third1::before {
    height: 2px;
    position: absolute;
    content: '';
    width: 360px;
    right: 0;
    bottom: 0;
    background: #EAECF8;
}
/* SERVICE PAGE CSS ENDS HERE  */



/* TESTINOMIAL PAGE CSS STARTS FROM HERE  */
.testinomila_customer_feedback {
    background: var(--primary-light);
    padding: 85px 0;
    overflow-x: hidden;
}

.testinomial_vidoes_container {
    height: 460px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.testinomial_vidoes_container::before {
    background: rgba(0, 0, 0, 0.0.5);
    background: rgba(0, 0, 0, 0.0.5);
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.testinomial_video_section {
    padding: 85px 0;
    overflow-x: hidden;
}

.testinomial_vidoes_container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testinomial_vidoes_container .testinomial_paly_icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    will-change: transform;
    object-fit: contain !important;
    width: 100px;
    height: 100px;
    animation: pulse 1.5s infinite ease-in-out;
    cursor: pointer;
}

/* TESTINOMIAL PAGE CSS ENDS HERE  */

/* GALLARY PAGE CSS  */
.gallary_before_after {
    padding: 85px 0;
    background: transparent !important;
}

.get_in_touch_contact {
    padding: 85px 0;
    background: var(--primary-light);
}

.contact_map {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.contact_map iframe {
    height: 550px;
    width: 100%;
}
.mt-80{
    margin-top: 85px;
}

/* INDIVIDUAL BLOG PAGE CSS STARTS FORM HERE  */
.individual_blog_description {
    padding: 85px 0;
}

.h-650 {
    height: 650px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow: hidden;
}

.indiviual_content_bg {
    background: #F9FAFF;
    padding: 45px 35px;
}

.contodfhk {
    font-size: 25px;
    font-weight: 700;
    color: var(--black-font);
}

.bg_primagry_imdiviaul {
    background: #E7E9FF;
    border-left: 5px solid var(--primary-color);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

.gren {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 40px;
}

.h-300 {
    height: 300px;
}

.h-500 {
    height: 500px;
}

/* INDIVIDUAL BLOG PAGE ENDS HERE  */

/* APPOINTMENT PAGE CSS STARTS FROM HERE  */
.appointment_contact_form {
    padding: 85px 0;
}

/* Customizing the radio button */
input[type="radio"] {
    width: 22px !important;
    /* Outer circle size */
    height: 22px !important;
    border: 4px solid var(--primary-color) !important;
    /* Border color */
    border-radius: 50% !important;
    /* Ensures a perfect circle */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    /* background-color: white; */
}

/* Custom checked state */
input[type="radio"]:checked::before {
    content: "";
    width: 12px !important;
    /* Inner circle size should be smaller than outer */
    height: 12px !important;
    background-color: var(--primary-color) !important;
    /* Inner circle color */
    border-radius: 50%;
    position: absolute;
}

.input_border_radio {
    padding: 10px 15px;
    border: 2px solid var(--primary-color);
    width: max-content;
}

.input_border_radio1 {
    padding: 10px 15px;
    border: 2px solid #DEDEDE;
    width: max-content;
}

.patientDetails {
    display: none;
}

.time_d {
    padding: 10px 15px;
    font-size: 18px;
    color: var(--white-font);
    background: var(--primary-color);
    width: max-content;
    font-weight: 500;
}

.time_d1 {
    padding: 10px 15px;
    font-size: 18px;
    color: var(--grey-font);
    background: transparent;
    border: 1px solid #DEDEDE;
    width: max-content;
    font-weight: 500;
    transition: all .5s ease-in-out;
}

.bottom_Border_tme {
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 40px;
}

.bottom_Border_tme1 {
    padding-top: 40px;
    border-bottom: 1px solid #DEDEDE;
    padding-bottom: 40px;
}

.w_30 {
    width: 30%;
}

.w_70 {
    width: 70%;
}

.Dental_care_btns_container {
    padding: 30px 25px;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
    position: sticky;
    right: 0;
    top: 0;
}


.appointment_contact_form .contact_form form input, .appointment_contact_form.contact_form form textarea{
    padding: 15px 20px;
    border: 1px solid #D4D4D4;
    width: 100%;
    outline: none;
    background: transparent;
}
.appointment_contact_form .contact_form form select{
    padding: 15px 20px;
    background-color: transparent !important;
    color: #BFBFBF;
    box-shadow: none !important;
    outline: none !important;
    border: 1px solid #DEDEDE;
}

.appointment_contact_form .contact_form form select:focus{
    box-shadow: none !important;
    outline: none !important;
    /* border: none !important; */
}
.Patient{
    font-size: 25px;
    font-weight: 700;
    padding-bottom: 20px;
}
.service_dental_care{
    padding: 85px 0;
    overflow-x: hidden;
}
.Dental_care_btns_container button{
    padding: 10px 20px;
    width: 100%;
    background: #F9FAFF;
    color: var(--black-font);
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 8px;
}
.Dental_care_btns_container button.active{
    background: var(--primary-color);
    color: var(--white-font);
}

.time_buttons p:hover{
    background: var(--primary-color);
    color: var(--white-font);
}
/* APPONTMENT PAGE CSS ENDS HERE  */

@media (max-width: 992px) {
    .navbar-nav {
        display: block;
    }

    .nav-link {
        margin-bottom: 10px;
    }

    .hero_service_Details {
        position: static;
        margin-top: 40px;
        border-radius: 0;
        box-shadow: none;
    }

    .navbar ul li a {
        color: var(--black-font);
    }

    .nav-link.active {
        color: var(--primary-color) !important;
        font-weight: 600 !important;
    }

    .fa-bars-staggered,
    .fa-xmark {
        background: transparent;
    }

    .service_first::after {
        background: transparent;
    }

    .service_first::before {
        background: transparent;
    }

    .service_second::after {
        background: transparent;
    }

    .service_second::before {
        background: transparent;
    }

    .service_second1::before {

        background: transparent;
    }

    .service_third::after {

        background: transparent;
    }
    .about_hero_content {
        margin-bottom: 80px;
    }
    .service_last::after {
        background: transparent;
    }
    
    .service_third1::after {
        background: transparent;
    }
    .service_third2::before {
        background: transparent;
    }
    .service_third3::before {
        background: transparent;
    }
    .service_third2::after {
        background: transparent;
    }
    .service_third1::before {
        background: transparent;
    }
    .offcanvas-body {
       
        padding-left: 30px;
    }




    .about_section_home_page .about2_image {
        height: auto;
    }

    .about_image_contaier {
        padding: 100px 0;
    }

    .mySwiperClientReview {
        right: -35%;
        bottom: -95%;
    }

    .client_swiper .swiper-button-next {
        position: absolute;
        top: 380px !important;
        left: 150px !important;
    }

    .client_swiper .swiper-button-prev {
        position: absolute;
        top: 380px !important;
        left: 50px !important;
    }

    .client_swiper .book_btn {
        position: absolute;
        top: 430px !important;
        left: 50px !important;
    }

    .backseat_content {
        padding: 30px;
    }

    .about_page_hero_section {
        height: auto;
    }

    .about_hero_right .hero_right {
        position: static;
    }

    .about_heroImgar_right {
        position: static;
        width: 100%;
        height: 100%;
    }

    .excellence_heading1 {
        font-size: 50px;
    }
    .mySwiperClient .swiper-button-next{
        right: 0;
        display: none;
    }
    .mySwiperClient .swiper-button-prev{
        left    : 0;
        display: none;
    }
    .mySwiperClient{
        overflow: hidden;
    }
    .mySwiperBlog{
        overflow: hidden;
    }
    .mySwiperBlog .swiper-button-next {
        right: 0px;
    }
    
    .mySwiperBlog .swiper-button-prev {
        left: 0px;
    }

    .Dental_care_btns_container {
        display: flex;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 20px !important;
        justify-content: space-between;

    }

    .Dental_care_btns_container button {
        width: 140px;
        font-size: 16px;
        border-radius: 10px;
    }

}

@media (max-width: 768px) {
    .hero_heading {
        font-size: 40px;
        width: 100%;
    }

    .clinic_heading {
        font-size: 20px;
    }

    .excellence_heading,
    .excellence_heading1 {
        font-size: 40px;
    }

    .about_image_contaier {
        padding: 80px 0;
    }

    .customer_feedback_home {
        height: auto;
    }

    .mySwiperClientReview {
        right: -5%;
        bottom: -90%;
    }

    .client_swiper .swiper-button-next {
        position: absolute;
        top: 220% !important;
        left: 150px !important;
    }

    .client_swiper .swiper-button-prev {
        position: absolute;
        top: 220% !important;
        left: 50px !important;
    }

    .client_swiper .book_btn {
        position: absolute;
        top: 240% !important;
        left: 50px !important;
    }

    .about_hero_left {
        padding-top: 75px;
    }
    .footer_bg_primaey{
        height: auto;
    }

}



@media (max-width: 576px) {

    .about_image_contaier {
        padding-top: 0;
        padding-bottom: 50px;
    }

 

    .blog_slider_Content_container {
        flex-direction: column;
        height: max-content;

    }
    
    .blog_slider_Content_container .imge_container {
        width: 100%;

    }
    .blog_slider_Content_container .imge_container img{
       aspect-ratio: 3/2;
    }
    
    .blog_slider_Content_container .half_right_content {
        width: 100%;
        overflow: hidden;
        height: 100%;
        padding: 20px 10px ;
    }
    
    .customer_feedback_home {
        height: auto;
    }

    .mySwiperClientReview {
        right: -5%;
        bottom: -90%;
    }

    .client_swiper .swiper-button-next {
        position: absolute;
        top: 220% !important;
        left: 150px !important;
    }

    .client_swiper .swiper-button-prev {
        position: absolute;
        top: 220% !important;
        left: 50px !important;
    }

    .client_swiper .book_btn {
        position: absolute;
        top: 240% !important;
        left: 50px !important;
    }

    .client_Details {
        background: var(--white-font);
        padding: 15px;
        width: 100%;
    }

    .w_30 {
        width: 100%;
    }

    .w_70 {
        width: 100%;
    }
    .mySwiperDoctor .swiper-button-next{
        right: 0;
    }
    .mySwiperDoctor .swiper-button-prev{
        left: 0;
    }
    .why_choose_img{
        width: 100% !important;
    }
    footer{
        overflow-x: hidden;
    }
    .footer_bg_primaey{
        margin-top: 0;
    }
    .left_contact_content{
        padding: 20px;
    }
}