*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Roboto", sans-serif !important;
}
.typed-cursor{
    display: none;
}
.scroll-to-top {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 53px;
    height: 52px;
    bottom: 20px;
    right: 20px; 
    background-color: #007bff; 
    border-bottom: 4px solid rgb(63, 63, 63);
    border-radius: 50%;
    cursor: pointer; 
    display: none; 
    z-index: 1000;
    transition: background-color 0.3s, transform 0.3s;
    animation: jump 1s infinite; 
}

.scroll-to-top.show {
    display: flex;
}

.scroll-to-top:hover {
    background-color: #0056b3; 
    transform: scale(1.05);
}

.scroll-to-top svg {
    width: 24px; 
    height: 24px;
}

.scroll-to-top path {
    fill: black; 
    transition: fill 0.3s ease-in-out;
}

.scroll-to-top:hover path {
    fill: white; 
}
@keyframes jump {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px); 
    }
    100% {
        transform: translateY(0);
    }
}

nav {
    background-color: white;
    box-shadow: 0 4px 8px rgb(48 82 144 / 30%);
    padding: 15px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;  
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul:last-child {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 35px;
    align-items: center;
}

nav ul:last-child li {
    display: inline;
}

/* General link styles */
nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    font-size: 14px;
    position: relative;
}

/* Underline effect */
nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #007BFF;
    left: 50%;
    bottom: 0;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover effect for regular nav links */
nav ul li a:not(.book_app):hover {
    color: #007BFF;
}

nav ul li a:not(.book_app):hover::after {
    width: 100%; /* Underline expands from center */
}

/* Active link effect */
nav ul li a.active {
    color: #007BFF;
    font-weight: bold;
    border-bottom: 2px solid #007BFF;
}

nav ul li a.active::after {
    width: 100%;
}

/* Disable hover effect for logo link */
nav ul li a.logo-link {
    padding: 0; /* Optional: Adjust padding if needed for the logo */
}

nav ul li a.logo-link:hover,
nav ul li a.logo-link:hover::after {
    color: inherit; /* Keeps the default color */
    width: 0; /* Prevent underline effect */
}

/* Button styles */
.book_app {
    background-color: #305290;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 16px 22px;
    color: white;
    text-decoration: none; 
    display: inline-block; 
    transition: background-color 0.3s ease;
    animation: vibrate 2s ease-out infinite; 
}

@keyframes vibrate {
    0%     { transform: translateX(0); }
    12.5%  { transform: translateX(5px); } 
    25.0%  { transform: translateX(-5px); }
    37.5%  { transform: translateX(5px); }
    50.0%  { transform: translateX(-5px); }
    62.5%  { transform: translateX(5px); }
    75.0%  { transform: translateX(0); }
    100%   { transform: translateX(0); }
}

.book_app:hover {
    background-color: white;
    color: #203a70;
    border: 1px solid #203a70;
    box-shadow: 0 0 15px rgba(48, 82, 144, 0.7); /* Glow effect */
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
    width: 30px;
}

.hamburger div {
    width: 30px;  
    height: 3px; 
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hero-section {
    background-image: url('img/hero_bg.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.text-slider {
    /* overflow: hidden; */
    min-height: 50px;
    position: relative;
}

#sliding-text {
    white-space: normal; 
    display: block; 
    line-height: 1.2;
    font-size: 36px; 
    text-align: left;
    max-width: 80%;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #305290;
}

.hero-section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
}
.hero-section a{
    text-decoration: none;
}















.things_section{
    width: 100%;
    background: #f6fbff;
    padding: 30px 0;
}
.things_division{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8px 0;
}
.things_head_text {
    font-weight: 300;
    font-size: 40px;
    color:#305290;
    line-height: 45px;
}
.things_text{
    color: gray;
    max-width: 650px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.thing_box{
    border-top: 3px solid #203b72;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease; 
}
.thing_box:hover {
    border-top-color: #203b72; 
    box-shadow: 0px 8px 20px rgb(0 123 255 / 30%); 
    transform: scale(1.03); 
    transition: all 0.3s ease;
}
.things_img{
    width: 100%;
}
.things_img img{
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.thing_box:hover .things_img img {
    transform: scale(1.05);
}
.things_content{
    width: 100%;
    text-align: center;
    padding: 2px 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}
.things_content p:nth-child(1) {
    font-size: 24px; 
    color: #0b2c69;
    font-weight: bold; 
    margin-bottom: 0;
    padding-top: 10px;
}
.things_content p:nth-child(2) {
    font-size: 13px; 
    color: #666; 
    line-height: 1.5;
    margin-bottom: 0;
    font-weight: 500;
}










.fix_app_section {
    background-image: url(img/fix_app_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 0;
    position: relative;
    animation: changeBg 10s infinite;
}


@keyframes changeBg {
    0% {
        background-image: url('img/fix_app_bg_01.jpg');
    }
    25% {
        background-image: url('img/fix_app_bg_02.jpg');
    }
    50% {
        background-image: url('img/fix_app_bg_03.jpg');
    }
    75% {
        background-image: url('img/fix_app_bg_04.jpg');
    }
    100% {
        background-image: url('img/fix_app_bg_01.jpg');
    }
}
.fix_app_contnet {
    padding: 20px;
    color: white;
    position: relative;
    z-index: 2;
}




.fix_head_text p{
    font-size: 40px;
    color: white;
    margin-bottom: 0;
    font-weight: 500;
    margin-bottom: 20px;
    padding: 0 10px;
}
.contact_both{
    width: 100%;
    display: flex;
}
.con_box{
    margin: 0 10px;
    text-align: center;
}
.con_box p{
    font-size: 22px;
    color: white;
    margin-bottom: 0;
}

.wp_box {
    border: 2px solid #04B742;
    border-radius: 16px;
    background-color: white;
    padding: 12px 0;
    transition: all 0.3s ease; 
}

.wp_box a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease; 
}

.wp_box:hover {
    background-color: #04B742;
    border-color: white;
}

.wp_box:hover .wp_text p {
    color: white;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); 
}

.wp_icon_svg {
    padding: 2px 40px;
    transition: transform 0.3s ease; 
}

.wp_box:hover .wp_icon_svg {
    transform: scale(1.1);
}

.wp_text p {
    margin-bottom: 0;
    font-size: 18px;
    color: #3FC250;
    transition: color 0.3s ease;
}





.call_box {
    border: 2px solid #305290;
    border-radius: 16px;
    background-color: white;
    padding: 12px 0;
    transition: all 0.3s ease;
}

.call_box a {
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
}

.call_box:hover {
    background-color: #305290; 
    border-color: white;
}

.call_box:hover .call_text p {
    color: white;
    text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}

.call_icon_svg {
    padding: 2px 40px;
    transition: transform 0.3s ease;
}

.call_box:hover .call_icon_svg {
    transform: scale(1.1); 
}
.call_box:hover svg path {
    fill: white; 
}

.call_text p {
    margin-bottom: 0;
    font-size: 18px;
    color: #305290;
    transition: color 0.3s ease;
}




























.plan_section{
    width: 100%;
}
.plan_division{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
}
.plan_head_text {
    font-weight: 300;
    font-size: 40px;
    color:#305290;
    line-height: 45px;
}
.pre_head_text{
    font-weight: 300;
    font-size: 26px;
    color:#305290;
    line-height: 45px;
    margin-bottom: 0;
}
.pre_line{
    display: inline-block;
    width: 40px;
    height: 4px;
    border-radius: 8px;
    background-color: #305290;
    margin-bottom: 10px;
}
.plan_text{
    color: gray;
    max-width: 650px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
}
.table_box {
    text-align: center;
    border: 2px solid #acacac;
    border-radius: 8px;
    margin: 8px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.table_box:hover {
    border-color: #305290;
    box-shadow: 0px 8px 20px rgb(0 123 255 / 30%); 
    transform: scale(1.05);
}

.table_box:hover .box_text p {
    color: #305290;
}
.table_box.active {
    border-color: #305290;
    box-shadow: 0px 8px 20px rgb(0 123 255 / 30%); 
    transform: scale(1.05);
}

.table_box.active .box_text p {
    color: #305290;
}
.table_box.active .box_img img {
    filter: brightness(1.2) saturate(1.2);
    transition: filter 0.3s ease;
}
.table_box .box_img img {
    transition: opacity 0.3s ease;
}

.table_box:hover .box_img img {
    opacity: 0.8;
}



.box_text p {
    margin-bottom: 0;
    padding: 5px 0;
    font-size: 14px;
    color: #000;
}

.box_img {
    width: 100%;
    height: 80px;
    margin-top: 8px;
}
.pre_img {
    position: relative;
    padding: 40px 0 5px 0;
}

.pre_bg_img {
    width: 100%;
    height: auto; 
}

.trolyy_img {
    position: absolute; 
    bottom: 5px;
    left: -80px; 
    width: auto;
    height: auto; 
}

/* Ensure images are responsive */
.trolyy_img img, .pre_bg_img img {
    max-width: 100%;
    height: auto;
}

.pre_box{
    padding: 20px 0;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    margin-top: 30px;
}
.pre_both_btn{
    display: flex;
    align-items: center;
    margin-top: 20px;

}
.pre_both_btn a{
    text-decoration: none;
}
.pre_both_btn button{
    margin: 0 5px;
}
.talk_btn_pre{
    outline: none;
    border: 1.5px solid #305290;
    border-radius: 30px;
    background-color: transparent;
    color: #305290;
    padding: 12px 22px;
    font-weight: 600;
    gap: 8px;
    display: flex;
    transition: 0.3s ease-in-out;
}
.talk_btn_pre svg path {
    fill: #305290;
    transition: fill 0.3s ease;
}
.talk_btn_pre:hover {
    background-color: #305290;
    color:white;
}

.talk_btn_pre:hover svg path {
    fill:white;
}
.Appointment_btn_pre{
    outline: none;
    border: 1.5px solid #305290;
    border-radius: 30px;
    background-color: transparent;
    color: #305290;
    padding: 12px 22px;
    font-weight: 600;
    gap: 8px;
    display: flex;
    transition: 0.3s ease-in-out;
}
.Appointment_btn_pre svg path {
    fill: #305290;
    transition: fill 0.3s ease;
}
.Appointment_btn_pre:hover {
    background-color: #305290;
    color: white;
}

.Appointment_btn_pre:hover svg path {
    fill: white;
}
























/* ===================================== timechart_section */
.timechart_section{
    width: 100%;
    background-color: #f5f5f5;
}
.timechart_division{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px 0 20px 0;
}
.timechart_division p{
    text-align: center;
}
.timechart_division p:nth-child(1) {
    font-weight: 300;
    font-size: 40px;
    color:#305290;
    line-height: 45px;
}
.timechart_text{
    color: gray;
    max-width: 650px;
    font-size: 16px;
    font-weight: 400;
}

.gray_baby_carriage{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
}
.gray_line{
    width: 50px;
    background-color: #E4E4E4;
    height: 3px;
    border-radius: 40px;
}
.timechart_img_division{
    width: 100%;
}
.timechart_img_division img{
    width: 100%;
    padding-bottom: 10px;
}
.week-time{
    text-align: center;
    padding-bottom: 10px;
}
.week-time p{
    margin-bottom: 0;
    font-weight: 500;
    font-size: 15px;
    color: darkgray;
}












/* ===============================  question_section */
.question_section{
    width: 100%;
    background-color: #ebf2ff;
}
.question_division{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
}
.que_img{
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.que_img img{
    width: 100%;
    transition: transform 0.5s ease, opacity 0.5s ease; 
    opacity: 1;
}

.que_img img:hover {
    transform: scale(1.1); 
    opacity: 0.8;
}
.que_content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px 0;
}
.que_content a{
    text-decoration: none;
}
.que_main_text {
    font-size: 26px;
    font-weight: 600;
    color: #000;
}
.que_sub_text{
    font-size: 16px;
    color: gray;
    font-style: italic;
}
.talk_btn{
    outline: none;
    border: 2px solid #305290;
    border-radius: 30px;
    background-color: transparent;
    color: #305290;
    padding: 12px 22px;
    font-weight: 600;
    gap: 8px;
    display: flex;
    transition: 0.3s ease-in-out;
}
.talk_btn svg path {
    fill: #305290;
    transition: fill 0.3s ease;
}
.talk_btn:hover {
    background-color: #305290;
    color: #fff;
}

.talk_btn:hover svg path {
    fill: #fff;
}

/* =========================================  schedule_section */
.schedule_section{
    background: url(img/schedule_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.schedule_divison{
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 50px 0;
    padding: 20px 0;
}
.schedule_divison p{
    color: white;
    text-align: center;
}
.schedule_divison p:nth-child(1) {
    font-weight: 300;
    font-size: 40px;
}
.schedule_divison p:nth-child(2) {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 35px;
}
.schedule_both_btn{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;

}
.schedule_both_btn a{
    text-decoration: none;
}
.schedule_both_btn button{
    margin: 0 5px;
}
.talk_btn_schedule{
    outline: none;
    border: 1.5px solid white;
    border-radius: 30px;
    background-color: transparent;
    color: white;
    padding: 12px 22px;
    font-weight: 600;
    gap: 8px;
    display: flex;
    transition: 0.3s ease-in-out;
}
.talk_btn_schedule svg path {
    fill: white;
    transition: fill 0.3s ease;
}
.talk_btn_schedule:hover {
    background-color: white;
    color: #305290;
}

.talk_btn_schedule:hover svg path {
    fill: #305290;
}
.Appointment_btn{
    outline: none;
    border: 1.5px solid white;
    border-radius: 30px;
    background-color: transparent;
    color: white;
    padding: 12px 22px;
    font-weight: 600;
    gap: 8px;
    display: flex;
    transition: 0.3s ease-in-out;
}
.Appointment_btn svg path {
    fill: white;
    transition: fill 0.3s ease;
}
.Appointment_btn:hover {
    background-color: white;
    color: #305290;
}

.Appointment_btn:hover svg path {
    fill: #305290;
}
.white_baby_carriage{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 15px;
}
.white_line{
    width: 50px;
    background-color: white;
    height: 2px;
    border-radius: 40px;
}


/* ================================================ footer */
.special_height{
    background-color: rgb(218, 218, 218);
    height: 250px;
}
.end_footer{
    background-image: url(img/footer_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}
.footer_logo_content{
    width: 100%;
}
.footer_logo img{
    width: 100%;
}
.fotter-links-new ,.footer_logo_content ,.footer-contact{
    padding: 40px 0;

}
.fotter-links-new p a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.4s ease-in-out, font-size 0.4s ease-in-out, text-decoration 0.4s ease-in-out, text-underline-offset 0.4s ease-in-out;
}

.fotter-links-new p a:hover {
    text-decoration: underline;
    text-underline-offset: 3px; 
    font-size: 15px; 
    color: #99bdff;
}
.footer_left_side_contnet{
    padding: 20px 0;
}
.footer_left_side_contnet p{
    font-size: 14px;
    color: white;
    font-weight: 300;
    line-height: 29px;
}
.footer-contact{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.input_mail_division{
    width: 100%;
}
.input_mail_division div{
    position: relative;
}
.input_mail {
    position: relative;
    border: 1px solid transparent;
    width: 100%;
    outline: none;
    padding: 15px 65px 15px 22px;
    border-radius: 30px;
    transition: border 0.8s ease-in-out, box-shadow 0.3s, background-color 0.3s, color 0.3s; 
}

.input_mail:hover {
    border: 1px solid #007bff;
    box-shadow: 0 0 5px rgb(23, 23, 24); 
}

.input_mail:focus {
    border: 1px solid #0056b3; 
    box-shadow: 0 0 10px rgba(0, 86, 179, 0.5); 
    background-color: black;
    color: white;
    transition: border 8s ease-in-out, box-shadow 2s ease-in-out, background-color 1s ease-in-out, color 0.3s; 
}


.send_mail_btn {
    position: absolute;
    border: 1.5px solid transparent;
    outline: none;
    padding: 8px;
    background-color: #305290;
    border-radius: 50%;
    right: 9px;
    top: 6px;
    transition: background-color 0.3s, border 0.3s; /* Smooth transitions */
}

.send_mail_btn:hover {
    border: 1.5px solid #305290;
    background-color: white;
}

.send_mail_btn:hover svg path {
    fill: #305290; 
}

.footer-social-media{
    width: 100%;
}

.footer-three-icon{
    padding: 20px 0;
}
.footer-three-icon ul {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
}

.footer-three-icon ul li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.footer-three-icon ul li a:hover {
    background-color: #305290; 
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.footer-three-icon ul li a:hover svg path {
    fill: #ffffff; 
}


/* ===================================== copyright_division */
.copyright_division{
    width: 100%;
    background-color: white;
    color: black;
    text-align: center;
    padding: 10px 0;

}
.copyright_division p{
    margin-bottom: 0;
    font-size: 14px;
}
.copyright_division p a{
    color: #305290;
    font-weight: 700 !important;
}


















/* doctor profile HTML */

.doc_hero_section {
    background-image: url('img/doctor_hero.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 140px 0;
    margin-top: 60px;
}
.doc_hero_section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #305290;
}

.doc_hero_section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
}
.doc_hero_section a{
    text-decoration: none;
}
.doctor_data_section{
    width: 100%;
    padding: 20px 0;
}



.doc_pro img {
    width: 100%;
    transition: transform 0.5s ease, opacity 0.5s ease; 
}

.doc_pro img:hover {
    transform: scale(1.06) rotate(3deg); /* Scale and rotate slightly */
    opacity: 0.9; /* Slightly transparent on hover */
}






.doc_data{
    width: 100%;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 8px;
    border-top: 3px solid #305290;
}
.doc_name_social{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.doc_name p{
    margin-bottom: 0;
}
.doc_name p:nth-child(1) {
    font-size: 22px;
    color: #000;
    font-weight: 600;
}

.doc_name p:nth-child(2) {
    font-size: 18px;
    color: darkgray;
    font-style: italic;
}




.doc_soc_three_icon{
    padding: 5px 0;
}
.doc_soc_three_icon ul {
    list-style-type: none; 
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
}

.doc_soc_three_icon ul li a {
    margin: 0 5px;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #EFEFEF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease;
}

.doc_soc_three_icon ul li a:hover {
    background-color: #305290; 
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.doc_soc_three_icon ul li a:hover svg path {
    fill: #ffffff; 
}
.custom-list {
    list-style-type: none; 
    /* padding-left: 0; */
}
.custom-list li {
    line-height: 28px;
}


.custom-list li::before {
    content: "";
    display: inline-block;
    border-radius: 2px;
    border: 1.5px solid #305290;
    width: 10px;
    transform: rotate(45deg);
    height: 10px;
    background-color: transparent;
    margin-right: 15px;
}





.doc_spe{
    padding: 10px 0;
}
.doc_spe p{
    font-size: 17px;
    color: #000;
    font-weight: 500;
    text-align: justify;
}
.divison_line{
    max-width: 80%;
    margin: 0 auto;
    height: 4px;
    background-color: #efefef;
    border-radius: 10px;
    position: relative;
}
.divison_line::after{
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: #efefef;
    top: -3px;
    left: 0;
    transform: rotate(45deg);
}
.divison_line::before{
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    background-color: #efefef;
    top: -3px;
    right: 0;
    transform: rotate(45deg);
}
.direct_ask_que{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #EEEEEE;
    border-radius: 10px;
    padding: 20px 0;
}
.direct_ask_que a{
    text-decoration: none;
}
.direct_ask_que p{
    margin-bottom: 0;
}
.direct_ask_que div{
    margin: 0 5px;
}





/* gallery HTML */

.gallery_section {
    background-image: url('img/gallery_hero.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 140px 0;
    margin-top: 60px;
}
.gallery_section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #305290;
}

.gallery_section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
}
.gallery_section a{
    text-decoration: none;
}
.gallry_img{
    width: 100%;
    padding: 20px 0;
}
.gal_img{
    width: 100%;
    border-top: 3px solid #305290;
    padding: 10px;
    overflow: hidden;
    margin: 12px 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.3s ease;
}
.gal_img img{
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.gal_img:hover {
    border-top-color: #203b72; 
    box-shadow: 0px 8px 20px rgb(0 123 255 / 30%); 
    transform: scale(1.03); 
    transition: all 0.3s ease;
}
.baby_icon{
    width: 100%;
    padding: 10px 0;
}
.baby_division{
    display: flex;
    justify-content: center;
    align-items: center;
}
.baby_text p{
    margin-bottom: 0;
    font-size: 24px;
    color: #000;
}
.baby_text strong{
    font-size: 40px;
}
.baby_sleeping {
    display: flex;
    justify-content: center;
}

.baby_sleeping img {
    width: 100%;
    animation: breathing 3s ease-in-out infinite; /* Adjust duration to 3s */
}

/* Animation keyframes */
@keyframes breathing {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1); /* More noticeable scale up */
    }
    100% {
        transform: scale(1);
    }
}










/* conatct CSS */
.con_hero_section {
    background-image: url('img/contact_hero.png'); 
    background-size: cover;
    background-position: center;
    color: #fff;
    position: relative;
    display: flex;
    align-items: center;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 140px 0;
    margin-top: 60px;
}
.con_hero_section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #305290;
}

.con_hero_section p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #000;
}
.con_hero_section a{
    text-decoration: none;
}
.map_section {
    width: 100%;
}

.guru_address {
    width: 100%;
    padding: 10px;
    background-color: #f0f0f0;
    border-radius: 10px;
    margin: 20px 0;
}

.guru_address iframe {
    width: 100%;
    aspect-ratio: 16 / 9; 
    border-radius: 15px;
    box-sizing: border-box;
}

.con_add_section{
    width: 100%;
    pad: 20px 0;
}
td p span:nth-child(1) {
    font-size: 18px;
    color: #305290;
    font-weight: 600;
}
  
td p span:nth-child(2) {
    font-size: 16px;
    color: #000;
} 
table{
    width: 100%;
}
td{
    width: 50%;
}
td p{
    margin-bottom: 0;
    padding: 8px 12px;
}  
table, th, td {
    border: 1px solid #305290 !important;
    border-collapse: collapse;
}
th{
    text-align: left;
}
table tr:last-child td p {
    text-align: center;
    padding: 4px 0;
}
.emergency_time{
    color: red;
}
.hospital_division{
    width: 100%;
    padding: 22px 0;
    background-color: #e4e4e4;
    border-radius: 12px;
}
.hos_add{
    display: flex;
    align-items: center;
}
.hos_add div{
    margin: 4px 8px;
}
.hos_add p{
    margin-bottom: 0;
    text-align: justify;
}
.call_add{
    display: flex;
    align-items: center;
}
.call_add div{
    margin: 4px 8px;
}
.call_add p{
    margin-bottom: 0;
    text-align: justify;
}
.mail_add{
    display: flex;
    align-items: center;
}
.mail_add div{
    margin: 4px 8px;
}
.mail_add p{
    margin-bottom: 0;
    text-align: justify;
}


::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;

}
::-webkit-scrollbar {
    width: 10px; 
    background-color: #F5F5F5; 
}

::-webkit-scrollbar-thumb {
    border-radius: 10px; 
    background-image: linear-gradient(
        to top,
        rgb(122, 153, 217) 44%,
        rgb(73, 125, 189) 72%,
        rgb(28, 58, 148) 86%
    );
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(28, 58, 148, 0.8); 
}
