@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    padding: 0;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    color: #272e36;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
    padding: 0;
}

.section-padding {
    padding: 60px 0;
}

.p-top {
    padding-top: 60px;
}

.p-bottom {
    padding-bottom: 60px;
}

:root {
    --theme-color: #0d4e96;
    --body-color: #4d4d4d;
    --snd-color: #f7941e;
}

/* header sec start */
header {
    padding: 20px 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transform: all 0.4s ease;
}


header.fixed {
    position: fixed;
    animation: slideDown 0.4s ease;
    background-color: #fff;
    box-shadow: 2px 7px 8px #0000000f;
    transition: all 0.4s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


#home-page .menu-bar svg {
    filter: brightness(0) invert(1);

}

.fixed .menu-bar svg {
    filter: invert(0) !important;
}

.menu-bar {
    display: none;
}

.close-menu {
    display: none;
}

.logo-part {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-part .form-select {
    border: none;
    border-radius: 0px;
    color: var(--theme-color);
    box-shadow: none !important;
    font-weight: 600;
    background-color: transparent;
}

.form-dropdown {
    position: relative;
}

.form-dropdown::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 1px;
    height: 60%;
    background-color: var(--theme-color);
    z-index: 1;
}

.navbar-nav {
    display: flex;
    flex-direction: inherit;
    justify-content: end;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    padding: 0;
    border-right: 1px solid #000;
    line-height: 1;
    padding-right: 15px;
}

.navbar-nav li:last-child .nav-link {
    padding-right: 0;
    border-right: 0;
}

.navbar-nav li {
    position: relative;
}

.call-box-area {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 30px;
    margin-bottom: 15px;
}

.call-box-area p {
    font-size: 14px;
    color: var(--body-color);
    font-weight: 500;
}


.call-box-area p a:hover {
    background: #f58220;
    transition: 0.5s;
}

.fixed .call-box-area p a:hover {
  background: #f58220;
  transition: 0.5s;
  border-color:#fff;
  color: #fff;
}

.call-box-area p a {

    text-decoration: none;
    transition: 0.5s;
}


.fixed .call-box-area p a {

text-decoration: none;
}


.call-box-area img {
    max-width: 200px;
}

.banner-img {
    float: right;
}

.index-main .navbar-brand img {
    filter: brightness(0) invert(1);
}

.index-main .form-dropdown::before {
    background-color: #fff;
}

.index-main .logo-part .form-select {
    color: #fff;
}

.index-main .logo-part .form-select option {
    background-color: #000;
    /* dropdown background */
    color: #fff;
    /* option text color */
}

.index-main .logo-part .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.index-main .nav-link {
    border-right: 1px solid #ffffff;
    color: #fff;
}

.index-main .navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--snd-color);
}

.index-main .call-box-area p {
    display: block;
    color: #fff;
}

.index-main .call-box-area img {
    filter: brightness(0) invert(1);
}
.logo-fixed {
    display: none;
}
.fixed .navbar-brand img {
    filter: none;
}
.index-main .logo-white{
    display: none;
}
.index-main .logo-fixed{
    display: block;
}
.index-main .fixed .logo-white{
    display: block;
}
.index-main .fixed .logo-fixed{
    display: none;
}
.index-main .logo-fixed{
    display: block;
}

.fixed .logo-part .form-select {
    color: var(--theme-color);
}

.fixed .logo-part .form-select {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.fixed .nav-link {
    border-right: 1px solid #000;
    color: var(--body-color);
}

.fixed .call-box-area img {
    filter: none;
}

.fixed .call-box-area p {
    display: block;
    color: var(--body-color);
}



.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    text-decoration: none;
}

.nav-link span {
    font-size: 12px;
    display: inline-block;
    margin-left: 4px;
}

.dropdown {
    position: absolute;
    top: 120%;
    left: 0;
    background-color: #fff;
    min-width: 280px;
    display: block;
    z-index: 1000;
    list-style: none;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 2px 7px 8px #0000000f;
    opacity: 0;
    transition: all 0.3s ease-in;
    display: none;
}

.dropdown li a {
    color: #000 !important;
    padding: 10px 8px;
    border: 0 !important;
    border-radius: 4px;
    transition: all 0.3s ease-in;
    font-size: 13px;
}

.dropdown li a:hover {
    color: #fff !important;
    background-color: var(--theme-color);
    transition: all 0.3s ease-in;
}

.dropdown .dropdown {
    left: 100%;
    top: 0;
}

.dropdown .nav-item {
    width: 100%;
}

.nav-item:hover>.dropdown {
    opacity: 1;
    transition: all 0.3s ease-in;
    display: block;
}

.media-page-sec a:hover .modern-card {
    transform: translateY(-6px);
    box-shadow: 1px 0px 7px 2px rgba(0, 0, 0, 0.12);
}

/* Responsive styling */
.menu-toggle {
    display: none;
    background-color: #333;
    color: white;
    border: none;
    padding: 15px;
    width: 100%;
    text-align: left;
    font-size: 1.2em;
}

.dropdown-toggle {
    display: none;
    position: absolute;
    top: 10px;
    background: transparent;
    border: none;
    right: 0;
    color: #fff;
}

.dropdown-toggle::after {
    display: none;
}

@media (max-width: 991px) {
    .nav-item:hover>.dropdown {
        display: none;
    }

    .nav-link {
        padding: 12px;
    }

    .dropdown {
        position: static;
        display: none;
    }

    .nav-item.show>.dropdown {
        display: flex;
        flex-direction: column;
    }

    .menu-toggle {
        display: block;
    }
}

/* header sec end */

/* banner start */
.banner-sec {
    background-color: #edf5f8;
    position: relative;
    padding-top: 114px;
}

.banner-area h1 {
    font-size: 38px;
    color: var(--theme-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.banner-area p {
    font-size: 16px;
    font-weight: 500;
    color: var(--body-color);
    margin-bottom: 35px;
}

.book-app {
    padding: 15px 40px;
    border: 1px solid var(--theme-color);
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    color: var(--theme-color);
    font-size: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* Hover effect */
.book-app::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--theme-color);
    z-index: -1;
    transition: all 0.4s ease;
}

.book-app:hover::before {
    left: 0;
}

.book-app:hover {
    color: #fff;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* banner end */


/* content tabs sec start */
.tablist {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 35px;
}

.tab {
    padding: 12px 25px;
    border: 1px solid var(--theme-color);
    border-radius: 8px;
    background: #fff;
    color: var(--theme-color);
    cursor: pointer;
    font-size: 16px;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    text-align: left;
    line-height: 20px;
}

.tab:is(:hover, :focus-visible) {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08)
}

.tab[aria-selected="true"] {
    background: var(--snd-color);
    color: #fff;
    border-color: var(--snd-color)
}

/* PANELS: fade out then hide, fade in when shown */
.panels {
    position: relative
}

.panel {
    display: none;
    /* hidden by default */
    opacity: 0;
    /* start invisible */
    transition: opacity .35s ease;
}

.panel.active {
    /* kept in the flow while animating */
    display: block;
}

.panel.fade-in {
    /* target visible state */
    opacity: 1;
}

.section-heading {
    font-size: 36px;
    font-weight: 400;
    color: var(--theme-color);
    font-weight: 500;
    margin-bottom: 6px;
}

.section-heading span {
    color: var(--snd-color);
}

.panel h3 {
    font-size: 24px;
    color: var(--snd-color);
    margin-bottom: 15px;
}

.panel p {
    font-size: 16px;
    margin-bottom: 10px;
}

.workup-sec h4 {
    color: var(--theme-color);
    font-size: 20px;
    margin-top: 25px;
}

img.img-resposive.why_icon {
    width: 50px;
    height: 50px;
}

img.img-resposive.women_child_icon {
    width: 60px !important;
    height: 60px !important;
    display: flex;
    position: relative;
    top: 21px;
    left: 21px;
}


.listing-apps li h5 {
    font-size: 18px;
    font-weight: 600;
}

.listing-apps li p {
    font-size: 16px;
}

    li.fadeInUp.first_class.animated {
    background-color: #fbf8e8;
    padding: 20px;
    margin-bottom: 11px;
    list-style: none;
}
.listing-apps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 39% 60%);
    gap: 12px;
}
section.app-sec.p-bottom {
    padding-top: 60px;
}
.listing-apps.second_tabb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}
ul.listing-apps.sergical_first {
    display: block;
}

ul.listing-apps.foetal {
    grid-template-columns: 1fr 1fr 1fr;
}

.listing-apps li {
    padding: 20px;
    background: #ddd;
}

.listing-apps li:nth-child(1) {
    background-color: #f2f2fb;
}

.listing-apps li:nth-child(2) {
    background-color: #fbf8e8;
}

.listing-apps li:nth-child(3) {
    background-color: #fbf8e8;
}

.listing-apps li:nth-child(4) {
    background-color: #f2f2fb;
}

.listing-apps li:nth-child(5) {
    background-color: #f2f2fb;
}

.listing-apps li:nth-child(6) {
    background-color: #fbf8e8;
}

.listing-apps li:nth-child(7) {
    background-color: #fbf8e8;
}

.listing-apps li:nth-child(8) {
    background-color: #f2f2fb;
}

.listing-apps li:nth-child(9) {
    background-color: #f2f2fb;
}

.content-001area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 12px;
}

.oo1-item {
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: 0.3s all ease-in;
}

.oo1-item:hover {
    transition: 0.3s all ease-in;
    box-shadow: 0px 1px 10px #00000021;
}

#listing-apps001 {
    grid-template-columns: repeat(2, 1fr);
}

.clients-icon {
    width: 100px;
    height: 100px;
    background: var(--theme-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.cli001-item {
    padding: 20px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-height: 220px;
    position: relative;
    transition: all 0.3s ease-in;
}

.cli001-item:hover {
    background-color: var(--snd-color);
    color: #fff !important;
    transition: all 0.3s ease-in;
    border-color: var(--snd-color);
}

.cli001-item:hover .clients-icon {
    background-color: #fff;
}

.cli001-item:hover .clients-icon svg {
    filter: invert(1);
}

.cli001-item:hover .clients-icon img {
    filter: invert(1);
}

.cli001-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 100px;
    background-color: var(--snd-color);
    transform: translateX(-50%);
    left: 50%;
}

.clientoo1 {
    margin-top: 1rem;
}

/* content tabs sec end */


.appointment-form {
    background: #eaf4fa;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
}

.appointment-form h2 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #205081;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.appointment-form .form-control {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    margin-bottom: 15px;
}

.appointment-form .form-control:focus {
    border-color: #1f6bb5;
    box-shadow: 0 0 5px rgba(31, 107, 181, 0.3);
}

.appointment-form .form-select {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    margin-bottom: 15px;
}

.appointment-form .form-select:focus {
    border-color: #1f6bb5;
    box-shadow: 0 0 5px rgba(31, 107, 181, 0.3);
}

.submit-btn {
    background: #1565c0;
    color: #fff;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #0d47a1;
}

/* doctors sec */
.doctors-item {
    overflow: hidden;
    border-radius: 20px;
    position: relative;
}

.right-plus {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 0;
    transition: 0.3s all ease-in;
}

.doctors-item:hover .right-plus img {
    transform: rotate(360deg);
    transition: 0.3s all ease-in;
}

.right-plus img {
    width: 30px !important;
}

.img-doctor {
    position: relative;
    overflow: hidden;
}

.doctor-name {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: var(--snd-color);
    padding: 12px;
    clip-path: polygon(0 0, 80% 0, 90% 100%, 0% 100%);
    font-size: 17px;
    color: #fff;
    font-weight: 600;
}

.doctor-content {
    text-align: center;
    padding: 20px;
    border: 1px solid #ddd;
}

.sec00-doctorwp .sec001-item {
  width: 350px !important;
  max-width: 100% !important;
  margin: 0 !important;
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

.sec00-doctorwp .owl-stage {
  display: flex !important;
  align-items: stretch !important;
}

.sec00-doctorwp .owl-item {
  display: flex !important;
}


.sec001-item {
    margin: 25px;
    transition: 0.3s all ease-in;
    border-radius: 20px;
    overflow: hidden;
}

.img-doctor img {
    transition: 0.3s all ease-in;
    transform: scale(1);
}

.sec001-item:hover {
    box-shadow: 0px 1px 10px #00000021;
}

.doctor-content h5 {
    color: #2f2484;
    font-weight: 600;
    margin-bottom: 10px;
}

.doctor-content span {
    color: #e3010f;
    margin-bottom: 10px;
    display: block;
}

.doctor-content a {
    font-size: 16px;
    display: inline-block;
    margin-top: 13px;
    text-decoration: none;
    font-weight: 600;
    color: var(--snd-color);
}

.doctor-content a:hover {
    text-decoration: underline;
}

.sec001-item .book-app {
    border: 1px solid #ddd;
    width: 100%;
    border-top: 0;
    text-align: center;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: block;
}

.sec001-item .book-app:hover {
    transform: translateY(0px) scale(1);
}

.rate-list {
    display: flex;
    align-items: center;
    list-style: none;
    position: absolute;
    top: 10px;
    right: 20px;
    gap: 3px;
    z-index: 1;
}

/* footer sec start */
footer {
    background: #f5faff;
    /* light bluish background */
    padding: 60px 0;
    color: #16324f;
    font-size: 15px;
}

footer h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0d47a1;
}

footer p,
footer li,
footer a {
    font-size: 13px;
    text-decoration: none;
    color: #0e4e96;
    margin-bottom: 10px;
}

footer a:hover {
    color: #f57c00;
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.social-icons a {
    font-size: 18px;
    margin-right: 12px;
    color: #16324f;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
}

footer p a {
    font-size: 16px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: inline-block;
    border: 1px solid var(--theme-color);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: var(--theme-color);
    transition: 0.3s all ease-in;
}

.social-icons a:hover {
    background-color: var(--theme-color);
    transition: 0.3s all ease-in;
}

.social-icons {
    margin-top: 20px;
}

.footer-wrap {
    display: none;
    position: fixed;
    bottom: 0;
    z-index: 999;
    background: var(--snd-color);
    width: 100%;
}

.footer-wrap p {
    margin: 0;
    text-align: center;
    padding: 10px;
    border-right: 1px solid #fff;
}
.footer-wrap p:last-child {
    border-color: transparent;
}

.copyright {
    border-top: 1px solid #ddd;
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
}

p.fadeInUp.animated {
    padding-bottom: 10px;
}

/* doctor page */
.field-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: 20px;
}

.field-list li {
    display: inline-block;
    align-items: center;
    border: 1px solid #ddd;
    padding: 10px 15px;
    margin-bottom: 10px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.field-list li:hover {
    border-color: #1565c0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.field-list img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.list002 {
    padding-left: 60px;
}



/*testimonial sec */

/* Left Side - Video Thumbnails */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.video-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.video-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 14px 20px rgb(0 0 0 / 69%);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.play-btn::before {
    content: "";
    border-left: 14px solid #ff6b00;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    margin-left: 4px;
    z-index: 2;
    position: relative;
}

/* 🔥 Outer blinking circle */
.play-btn::after {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    z-index: -1;
    animation: blingPulse 1.5s infinite;
}

a.book-media {
    color: #272e36;
    text-decoration: none;
}

.modern-card-content:hover .explore-link::before {
    width: 60%;
    transition: 0.3s all ease-in;
}

span.explore-link {
    color: #272e36;
}

a.home_card_redirect {
    text-decoration: none;
}
a.home_card_redirect:hover {
    text-decoration: none;
}
.owl-carousel.media-carousel.owl-loaded.owl-drag .item a:hover .modern-card {
    transform: translateY(-6px);
    box-shadow: 1px 0px 7px 2px rgba(0, 0, 0, 0.12);
}

/* ✨ Keyframes for blink effect */
@keyframes blingPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 0;
    }
}



.testimonial-section {
    width: 100%;
    background: #efeff5;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-section .owl-carousel,
.owl-stage-outer,
.owl-stage,
.owl-item,
.item {
    height: 100% !important;
}

.testimonial-box .quote {
    font-size: 50px;
    color: #b39ddb;
    line-height: 0;
}

.testimonial-box p {
    font-size: 18px;
    color: var(--theme-color);
    margin: 20px 0;
    font-weight: 500;
}

.testimonial-box .author {
    font-weight: bold;
    color: var(--snd-color);
}

/* Owl Carousel Navigation */
.testimonial-section .owl-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 50px;
}

.testimonial-section .owl-nav button {
    background: #fff !important;
    border: 1px solid #ddd !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    font-size: 30px !important;
    color: var(--theme-color) !important;
    transition: 0.3s;
    display: flex;
    justify-content: center;
}

.testimonial-section .owl-nav button:hover {
    background: var(--theme-color) !important;
    color: #fff !important;
    border-color: var(--theme-color) !important;
}

.testimonial-sec {
    position: relative;
    padding-bottom: 120px;
}

.img-testi {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
}

/* about us sec start */
.about-content p {
    margin-bottom: 10px;
}

.about-sec {
    position: relative;
}

.about-img {
    position: relative;
    z-index: 1;
}

.about-img img {
    width: 100%;
}

img.abs-1 {
    position: absolute;
    top: -142px;
    right: 0;
}

.abs-2 {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.about-tabs {
    text-align: center;
    margin-bottom: 20px;
}

.about-tabs .tab-link {
    background: none;
    border: none;
    font-size: 18px;
    margin: 0 15px;
    cursor: pointer;
    color: #555;
    font-weight: 500;
    position: relative;
    padding: 0;
    border-bottom: 2px solid transparent;
}

.about-tabs .tab-link.active {
    color: var(--snd-color);
    font-weight: 600;
    border-color: var(--snd-color);
}

.about-desc {
    text-align: center;
    max-width: 85%;
    margin: 0 auto 30px auto;
}

.about-panel {
    display: none;
}

.about-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid #ddd;
}

.about-card::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2px;
    width: 101.3%;
    height: 50%;
    background-color: transparent;
    border-left: 2px solid var(--snd-color);
    border-right: 2px solid var(--snd-color);
}

.about-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 101.3%;
    background-color: transparent;
    border-top: 2px solid var(--theme-color);
    border-bottom: 2px solid var(--theme-color);
}

.about-card:hover::before {
    border: transparent;
}

.about-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 30px;
    color: var(--theme-color);
}

.about-card p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

.about-card .icon svg {
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

/* 🔥 Hover Effect */
.about-card:hover {
    background: var(--snd-color);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--snd-color);
}

img.img-resposive.women_child_icon {
    filter: brightness(0) invert(1);
}

.about-card:hover img.img-resposive.women_child_icon {
  filter: none;
}

.about-card:hover h4 {
    color: #fff;
}

.about-card:hover p {
    color: #fff;
}

.about-card:hover .icon {
    background-color: #fff;
}

.about-card:hover .icon svg path,
.about-card:hover .icon svg circle {
    stroke: var(--theme-color);
    fill: none;
    /* keep stroke white on hover */
}

.about-card .icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background-color: var(--theme-color);
    border-radius: 50%;
    line-height: 100px;
}

.about-card .icon img {
    width: 100%;
    height: auto;
}

.about-tab-section {
    padding-bottom: 88px;
}

#specalities2 .about-card {
    margin-bottom: 30px;
    height: auto;
    min-height: 283px;
}

#specalities2 {
    padding-bottom: 40px;
}

/* about us sec end */

/* why choose start */
.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 50%;
    right: 0;
    background-color: var(--snd-color);
}

.feature-card:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.feature-card .icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: #f5faff;
    border-radius: 8px;
    line-height: 70px;
    text-align: center;
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.why-choose {
    background: #f5faff;
}

.home-testimonial {
    background: #f5faff;
}

/* why choose end */


/* whats new */
.custom-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.custom-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(0deg, #1061af, transparent);
}

.card-img {
    object-fit: cover;
    width: 100%;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    color: white;
    z-index: 1;
}

.card-date {
    font-size: 14px;
    opacity: 0.9;
}

.card-title {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.explore-link {
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    opacity: 0.9;
}

.explore-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.explore-link {
    position: relative;
    text-align: right;
    width: 100%;
    display: block;
    text-decoration: none !important;
    color: #fff;
}

.explore-link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--snd-color);
    height: 2px;
    width: 30%;
    left: 0;
    transition: 0.3s all ease-in;
}

.custom-card:hover .explore-link::before {
    width: 60%;
    transition: 0.3s all ease-in;
}

.full-banner img {
    width: 100%;
}

.full-banner {
    position: relative;
}

.full-banner-overley {
    position: absolute;
    top: 50%;
    left: 0;
    width: 50%;
    padding: 50px;
    transform: translateY(-50%);
}

.full-banner-overley h2 {
    color: #fff;
}

.full-banner-overley p {
    color: #fff;
    margin-bottom: 1rem;
}

.full-banner-overley .explore-link {
    width: 60%;
}

.full-banner-overley .explore-link::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--snd-color);
    height: 2px;
    width: 40%;
    left: 0;
}

.full-banner:hover .explore-link::before {
    width: 60%;
}

.whats-new {
    position: relative;
}

.whats-new::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #f5faff;
}

.width-banner-sec {
    background-color: #f5faff;
}

/* whats new */


.booking-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.booking-form .form-control {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    outline: none;
    margin-bottom: 15px;
}

.booking-form .form-select {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    outline: none;
    margin-bottom: 15px;
}

.form-control:focus {
    border-color: var(--theme-color);
}

.readonly-field {
    color: var(--theme-color);
    font-weight: 500;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    background: #e0e3e7;
    color: var(--theme-color);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    transition: 0.3s all ease-in;
}

.submit-btn:hover {
    background: var(--theme-color);
    color: #fff;
    transition: 0.3s all ease-in;
}

.research-area .oo1-item {
    margin: 0px;
    min-height: 160px;
    position: relative;
}

span.readmore {
    color: #115198;
    font-weight: 500;
    display: block;
    margin-top: 5px;
}
a.open_modal_research {
    color: #272e36;
    text-decoration: none;
}

.show-pdf {
    position: absolute;
    display: block;
    width: 50px;
    height: 50px;
    right: 0;
    bottom: 0;
    background: #184f78;
    text-align: center;
    line-height: 50px;
    border-top-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.modern-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    transition: 0.35s ease;
    border: 1px solid #e6e6e6;
    margin-bottom: 25px;
  }

 

  .modern-card-img {
    height: 100%;
    overflow: hidden;
  }

.modern-card-img img {
    width: 240px;
    height: 214px;
    object-fit: cover;
    transition: 0.4s ease;
}

  .modern-card:hover .modern-card-img img {
    transform: scale(1.12);
  }

  .modern-card-content {
    padding: 24px;
  }

  .modern-date {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 6px;
  }

  .modern-title {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 14px;
    line-height: 1.3;
  }

  .modern-btn {
    background: #007bff;
    border: none;
    padding: 6px 16px;
    border-radius: 6px;
    transition: 0.3s ease;
  }

  .modern-btn:hover {
    background: #0056d2;
  }
a.book-app.media {
    padding: 7px;
    font-size: 15px;
    font-weight: 600;
}
.modern-title.publication {
    font-size: 12px;
}

/*========== animation css start =========*/
.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}


@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        -webkit-transform: translateX(20px);
    }

    80% {
        -webkit-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    60% {
        -moz-transform: translateX(20px);
    }

    80% {
        -moz-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

    80% {
        -o-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        transform: translateX(20px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        -webkit-transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    60% {
        -moz-transform: translateX(-20px);
    }

    80% {
        -moz-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    60% {
        -o-transform: translateX(-20px);
    }

    80% {
        -o-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3);
    }

    50% {
        -moz-transform: scale(1.05);
    }

    70% {
        -moz-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }

    50% {
        -o-transform: scale(1.05);
    }

    70% {
        -o-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes moveUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes moveUp {
    0% {
        opacity: 1;
        -o-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@-o-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

.animated.animationDelay {
    animation-delay: .2s;
    -webkit-animation-delay: .2s;
}

.animated.animationDelayMed {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.animated.animationDelayLong {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    -moz-animation-name: fadeBgColor;
    -o-animation-name: fadeBgColor;
    animation-name: fadeBgColor;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    -moz-animation-name: moveUp;
    -o-animation-name: moveUp;
    animation-name: moveUp;
}

/*======= inner banner ======*/
.inner-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, #000000c7, transparent);
}

/*====== inner banner =======*/

/*====== webpage css ======*/
.doction-lise-sec .sec001-item .img-doctor img {
    width: 100%;
    transform: scale(1);
    transition: 0.8s ease-in all;
    height: 252px;
}
.home-testimonial .owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: 230px;
}
.sec001-item:hover .img-doctor img {
    width: 100%;
    transform: scale(1.2);
    transition: 0.8s ease-in all;
}

.doction-lise-sec .sec001-item {
    margin: 0;
    margin-top: 30px;
}
.doctor-content {
    min-height: 240px;
}
.banner-main-form {
    position: relative;
}

.trending-box {
    display: none;
    position: absolute;
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    width: 700px;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transform: translateX(-50%);
    left: 50%;
    text-align: left;
    overflow: auto;
    height: 390px;
    top: 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding-top: 35px;
    z-index: 1;
}

.trending-box h4 {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    color: #000;
}

.trending-box .tags span {
    display: inline-block;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #f7941e29;
    font-size: 13px;
}


span.search_areaspan {
    display: inline-block;
    padding: 5px 15px;
    cursor: pointer;
    border-radius: 20px;
    background-color: #f7941e29;
    font-size: 13px;
    width: 100%;
    display: grid;
    align-items: center;
    margin-bottom: 5px;
}


span.search_areaspana {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
}

.trending-box .tags span a {
    text-decoration: none;
    color: #000;
}

.tag-details {
    display: flex;
    flex-flow: wrap;
    gap: 6px;
    margin-top: 6px;
}

.trending-box .tags span:hover {
    background: #f2f2f2;
}

.alt-suggestions {
    margin-top: 15px;
    padding-top: 10px;
    border-radius: 6px;
    padding: 10px;
    padding-bottom: 5px;
}

.alt-suggestions h4 {
    font-size: 15px;
    margin-bottom: 0px;
    color: #444;
}

.alt-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.alt-suggestions ul li {
    padding: px 0;
}

.alt-suggestions ul li a {
    text-decoration: none;
    color: var(--snd-color);
    font-size: 13px;
}

.alt-suggestions ul li a:hover {
    text-decoration: underline;
}
#doctor_suggest span {
    display: grid;
    align-items: center;
    gap: 10px;
    padding: 0;
    width: 100%;
}
#doctor_suggest span a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px;
}
#doctor_suggest span a strong{
    display:block;
    width:100%;
}
#doctor_suggest span a img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.mob-view {
    display: none;
}

.banner-img img {
    width: 100%;
}

@media (max-width: 600px) {
    .webpage-sec {
        text-align: center;
    }

    .dask-view {
        display: none;
    }

    .mob-view {
        display: block;
    }
    ul.listing-apps.foetal li {
     margin-bottom: 20px; 
}

   ul.listing-apps.foetal {
    display: block; 
}
ul.fotal_first li {
    list-style: none;
}


ul.navbar-nav-mobile li {

    list-style: none;
}

.navbar-nav {
    display: none;
}
.doctors-area .doctors-item {
    width: 296px !important;
    margin-right: 20px !important;
}


}

/*========== animation css start =========*/
.animatable {

    /* initially hide animatable objects */
    visibility: hidden;

    /* initially pause animatable objects their animations */
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -ms-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

/* show objects being animated */
.animated {
    visibility: visible;

    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;

    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;

    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -ms-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running;
}


@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    60% {
        opacity: 0;
    }

    20% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        -webkit-transform: translateX(20px);
    }

    80% {
        -webkit-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    60% {
        -moz-transform: translateX(20px);
    }

    80% {
        -moz-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

    80% {
        -o-transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    60% {
        transform: translateX(20px);
    }

    80% {
        transform: translateX(-5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        -webkit-transform: translateX(-20px);
    }

    80% {
        -webkit-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    60% {
        -moz-transform: translateX(-20px);
    }

    80% {
        -moz-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    60% {
        -o-transform: translateX(-20px);
    }

    80% {
        -o-transform: translateX(5px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        transform: translateX(-20px);
    }

    80% {
        transform: translateX(5px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(30px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        -webkit-transform: scale(1.05);
    }

    70% {
        -webkit-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3);
    }

    50% {
        -moz-transform: scale(1.05);
    }

    70% {
        -moz-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }

    50% {
        -o-transform: scale(1.05);
    }

    70% {
        -o-transform: scale(.9);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        transform: scale(1.05);
    }

    70% {
        transform: scale(.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@-webkit-keyframes moveUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes moveUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes moveUp {
    0% {
        opacity: 1;
        -o-transform: translateY(40px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes moveUp {
    0% {
        opacity: 1;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@-o-keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

@keyframes fadeBgColor {
    0% {
        background: none;
    }

    70% {
        background: none;
    }

    100% {
        background: #464646;
    }
}

.animated.animationDelay {
    animation-delay: .2s;
    -webkit-animation-delay: .2s;
}

.animated.animationDelayMed {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.animated.animationDelayLong {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
}

.animated.fadeBgColor {
    -webkit-animation-name: fadeBgColor;
    -moz-animation-name: fadeBgColor;
    -o-animation-name: fadeBgColor;
    animation-name: fadeBgColor;
}

.animated.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

.animated.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}

.animated.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}

.animated.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

.animated.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.animated.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.animated.moveUp {
    -webkit-animation-name: moveUp;
    -moz-animation-name: moveUp;
    -o-animation-name: moveUp;
    animation-name: moveUp;
}


/* expriece page */
.client-video-area .owl-dots {
    position: absolute;
    bottom: -15px;
    width: 100%;
}
.owl-dots .owl-dot.active span {
    background-color: var(--theme-color);
}
.owl-dots span {
    width: 10px;
    height: 10px;
    background: #bfbfbf;
    display: block;
    border-radius: 50%;
}
.owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}
.testi-page {
    text-align: center;
    margin-top: 100px;
    padding: 50px;
}
.testimonial-section.testi-page .owl-nav {
    position: relative;
    bottom: 70px;
}
.client-video .video-item {
    margin-bottom: 30px;
}
.blog-page-sec .custom-card{
    margin-bottom: 30px;
}
.research-area .oo1-item .text {
    display: -webkit-box;
    -webkit-line-clamp: 3;  /* limit to 3 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.grecaptcha-badge {
    display: none !important;
}
.logo-part .form-select {
    background-image: none;
}

.index-main .fixed .form-dropdown::before {
    background-color: var(--theme-color);
}
.sec00-doctor .owl-dots {
    margin-top: 0;
}
#women .about-card {
    min-height: 301px;
}
.date-wrapper .calendar-icon {
    position: absolute;
    right: 9px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #000;
    display:none;
}

@media only screen and (min-width:1280px) and (max-width:1380px){
    body {
    font-size: 14px;
}
  .call-box-area p {
    font-size: 14px;
} 
.home-banner-text h1 {
    font-size: 40px !important;
}
.banner-area p {
    font-size: 14px;
}
.about-card p {
    font-size: 13px;
    line-height: 18px;
}
.about-card h4 {
    font-size: 17px;
}
.about-card {
    padding: 25px 17px;
}
.feature-card p {
    font-size: 14px;
}
.doctor-content h5 {
    font-size: 18px;
}
.doctor-content a {
    font-size: 14px;
}
.book-app {
    font-size: 17px;
}
#women .about-card {
    min-height: 310px;
}
.panel p {
    font-size: 14px;
}
.listing-apps li p {
    font-size: 14px;
}
}
.modal-header {
    background: transparent;
}
.modal-title {
    color: #fff;
}

div#modal-body1 p {
    text-align: center;
    line-height: 24px;
}

div#enquiryModal .btn-close {
    filter: brightness(0) invert(1);
}


div#enquiryModal .modal-header {
    background: #f7941e;
}

.modal-header {
    border-bottom: none;
}


.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 40px;
    padding-bottom: 70px;
}

.btn-close {
    filter: none;
}

section.disclaimer p {
    padding: 6px 0px;
}

section.disclaimer {
    padding: 60px 0px;
}

.contact_area_content p, .contact_area_content li, contact_area_content a {
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 15px;
}

section.contact_scetion {
    padding: 60px 0px;
}

.contact_area_content {
/*    display: flex;
    flex-direction: column;
    justify-content: center;*/
    height: 100%;
}

section.media_coverage {
    padding-bottom: 50px;
}

.social-icons em {
    margin-left: 6px;
}


/* -----------------------------------
   Modern FAQ Section with Arrows
----------------------------------- */
.faq_section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  padding-top: 80px;
  padding-bottom: 80px;
}

.faq-title {
  color: #0d4e96;
  font-weight: 700;
  font-size: 2.5rem;
  position: relative;
}

.faq-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: #f7941e;
  margin: 15px auto 0;
  border-radius: 2px;
}

.faq-subtitle {
  color: #555;
  font-size: 1.05rem;
  margin-top: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 1px solid #ccccccad;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(13, 78, 150, 0.15);
}

.faq-question {
  width: 100%;
  background: #fff;
  color: #0d4e96;
  border: none;
  outline: none;
  padding: 18px 20px;
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-icon {
  font-size: 1.2rem;
  color: #f7941e;
}

.arrow-icon {
  font-size: 1rem;
  color: #0d4e96;
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-question:not(.collapsed) {
  background: #f7941e;
  color: #fff;
}

.faq-question:not(.collapsed) .faq-icon {
  color: #fff;
}

.faq-question:not(.collapsed) .arrow-icon {
  transform: rotate(180deg);
  color: #fff;
}

.faq-answer {
  padding: 18px 20px 20px;
  color: #444;
  border-top: 1px solid #eee;
  background: #fff;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-link {
  color: #0d4e96;
  font-weight: 500;
  text-decoration: underline;
}

.faq-link:hover {
  color: #f7941e;
  text-decoration: none;
}

.faq-item .collapse {
max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item .collapse.show {
  max-height: 500px; /* adjust if your FAQ answers are longer */
  opacity: 1;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-accordion .faq-question:not(.disabled) {
  cursor: pointer;
}
    /* Vertical Fixed Button */
    .callback-btn {
      position: fixed;
      right: 20px;
      top: 50%;
      transform: translateY(-50%) rotate(-90deg);
      transform-origin: right center;
      background-color: #1061af;
      color: #fff;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 500;
      border-radius: 8px 8px 0 0;
      text-decoration: none;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
      transition: all 0.3s ease;
      z-index: 1050;
    }

    .callback-btn:hover {
      background-color: #f7941e;
      color: #fff;
      text-decoration: none;
      padding-right: 25px;
    }

    /* Optional: mobile adjustment */
    @media (max-width: 600px) {
      .callback-btn {
display: none;
      }
    }

    /* ================================
   MAIN WRAPPER
================================ */
.mega-wrapper {
    position: relative;
    display: inline-block;
}

li.fadeInUp.speciality_banner_no.animated {
    background: #ffebd2;
    padding: 0px;
}

/* ================================
   MENU TRIGGER
================================ */
/*.mega-trigger {
    font-size: 18px;
    padding: 12px 18px;
    cursor: pointer;
    background: #0d4e96;
    color: #fff;
    border-radius: 4px;
    user-select: none;
}
*/
/* ================================
   FULL WIDTH PANEL
================================ */
.mega-panel {
    position: absolute;
    top: 100%;
    left: 58%;
    width: 100vw;
    max-width: 100vw;
    transform: translateX(-63%);
    background: #fff;
    padding: 35px 50px;
    box-shadow: 0 4px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 999;
    margin-top: 20px;
}
.mega-panel {
    position: fixed;
    left: 0;
    top: 100px; /* adjust to match your header height */
    width: 100vw;
    max-width: 100vw;
    transform: none;
    margin: 0;
}

/* Hover open */
.mega-wrapper:hover .mega-panel {
    opacity: 1;
    visibility: visible;
}

/* ================================
   GRID LAYOUT
================================ */
.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
}

/* ================================
   ITEM + ICON
================================ */
.mega-item {
    display: flex;
    align-items: center;
    padding: 8px 0;
    text-decoration: none;
    font-size: 18px;
    color: #000;
    transition: .5s;
}

.icon-box {
    width: 75px;
    height: 75px;
    background: #edf5f8;
    border-radius: 6px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    padding: 10px;
}

/* Hover effect */
.mega-item:hover {
    background: #edf5f8;
    color: #272e36;
    padding-left: 6px;
    border-radius: 4px;
     transition: .5s;
}

.mega-item:hover .icon-box {
    background: #fff;
     transition: .5s;
}

ul.navbar-nav-mobile {
   display: none;
}


.mega-panel li {
    list-style: none;
}
.doctors-area .doctors-item {
    width: 260px !important;   /* adjust based on your design */
    margin-right: 20px !important; /* SAME GAP ALWAYS */
}

.doctors-area .owl-item.active {
    width: 260px !important;   /* adjust based on your design */
    margin-right: 20px !important; /* SAME GAP ALWAYS */
}

/* Owl default margin ko override karo */
.doctors-area .owl-stage {
    margin-left: 0 !important;
}

/* Last item ka right margin hatana (optional clean look) */
.doctors-area .doctors-item:last-child {
    margin-right: 0 !important;
}

.read-more-btn {
    display: table;
    margin-top: 8px;
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    margin: auto;
    position: relative;
    color: #ebeff3;
}
div#readMore1 {
    text-align: center;
}
.footer_keyword {
    background: #f5faff;
}
.read-more-btn[aria-expanded="true"]::after {
  content: " Less";
}

.read-more-btn[aria-expanded="false"]::after {
  content: " More";
}
footer {
    padding-bottom: 20px;
}
div#readMore1 p {
    font-size: 10px;
    color: #666;
}

.sec00-doctorwp .owl-item.active {
    width: 352px !important;
}

/* ================================
   RESPONSIVE DESKTOP SIZES
================================ */

@media (max-width: 1400px) {
    .mega-grid {
        gap: 25px;
    }
}

@media (max-width: 1200px) {
    .mega-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }
     .doctors-area .doctors-item {
    width: 296px !important;
    margin-right: 20px !important;
}
.doctors-area .owl-item.active {
    width: 296px !important;   /* adjust based on your design */
    margin-right: 20px !important; /* SAME GAP ALWAYS */
}
}

@media (max-width: 768px) {
    .mega-grid {
        grid-template-columns: 1fr;
    }
    .mega-panel {
        padding: 20px;
    }

    .sec00-doctor .owl-dots {
    margin-top: 0;
    display: none;
}
.nav-link {
    border-right: 0 !important;
    font-size: 17px !important;
    color: #fff !important;
}
}


