.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

.btn.btn-light {
    color: var(--bs-primary);
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Icon Animation Start ***/
@keyframes icon-animat {
    0% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }

    25% {
        border-radius: 69% 31% 19% 81% / 43% 37% 63% 57%;
    }

    50% {
        border-radius: 67% 33% 16% 84% / 57% 37% 63% 43%;
    }

    75% {
        border-radius: 77% 23% 61% 39% / 36% 61% 39% 64%;
    }

    100% {
        border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    }
}

/*** Icon Animation End ***/


/*** Navbar Start ***/
.nav-bar {
    background: var(--bs-white);
}

.sticky-top {
    transition: 1s;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    letter-spacing: 1px;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 500;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 0;
    color: var(--bs-dark);
}

/* .navbar-light .navbar-nav .nav-link:hover { */
.underline-hover {
    display: inline-block;
    position: relative;
    cursor: pointer;
    color: #2c2c2c;
}

.underline-hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background-color: #d77a10;
    /* underline color */
    transition: width 0.3s ease-in-out;
}

.underline-hover:hover::after {
    width: 100%;
}


/* } */

.navbar-light .navbar-nav .nav-link.active {
    color: #000;
    font-weight: 600;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 84px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    /* margin-left: 8px; */
}

.dropdown .dropdown-menu a:hover {
    background: #398380c7;
    color: #000;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    margin-top: 8px !important;
    background: linear-gradient(to left, #278BB1, #69B360);
    color: #fff !important;
    transition: .5s;
    opacity: 1;
}



@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        left: -145px;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        /* margin-top: 8px !important; */
        transition: .5s;
        opacity: 0;
    }
}

@media (max-width: 991px) {
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
    }
}

/*** Navbar End ***/

/*** Carousel Header Start ***/
.carousel .carousel-item img {
    object-fit: cover;
}

.carousel .carousel-item,
.carousel .carousel-item img {
    height: 700px;
}

.carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .6);
    display: flex;
    align-items: center;
}

.carousel .carousel-indicators {
    left: 75%;
    top: 50%;
    margin-right: 25%;
    transform: translateY(-50%);
    flex-direction: column;
}

.carousel-indicators [data-bs-target] {
    display: flex;
    width: 15px;
    height: 15px;
    border: 6px solid var(--bs-white);
    border-radius: 15px;
    padding: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    background-color: var(--bs-secondary);
    opacity: 1;
    transition: 0.5s;
}

.carousel-indicators [data-bs-target].active {
    background-color: var(--bs-primary);
}

@media (max-width: 992px) {
    .carousel-indicators [data-bs-target] {
        display: none;
    }
}

/*** Carousel Header End ***/

/*** Single Page Hero Header Start ***/
/* .bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(#6157354f, #b0b88556), url('baner2.jpg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
} */
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-image: linear-gradient(#2c2b2569, #00000069), url('./breadcrumb.png') !important;
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
    background-color: transparent;
    /* Optional: no white bg */
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: #000000;
    text-decoration: none;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    content: var(--bs-breadcrumb-divider, "/");
}

/*** Single Page Hero Header End ***/





/*** Banner Start ***/
.banner .banner-item {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.banner .banner-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
}

.banner .banner-item .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    margin-left: 0;
    margin-bottom: 0;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    z-index: 5;
}

@media (min-width: 992px) {
    .banner .banner-item .banner-content h2 {
        font-size: 45px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content h1 {
        font-size: 72px;
        margin-bottom: 20px;
    }

    .banner .banner-item .banner-content p {
        font-size: 40px;
        margin-bottom: 20px;
    }
}

/*** Banner End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    text-align: center;
    border-radius: 10px;
    margin-top: 100px;
    background: var(--bs-light);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: var(--bs-secondary);
    z-index: 2;
    transition: 0.5s;
}

.team .team-item:hover::after {
    height: 100%;
}

.team .team-item .team-content {
    position: relative;
    z-index: 5;
}

.team .team-item .team-content h4,
.team .team-item .team-content p {
    transition: 0.5s;
}

.team .team-item:hover .team-content h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-content p {
    color: var(--bs-white);
}

.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    top: -100px;
    margin-bottom: -100px;
    border-radius: 10px;
    z-index: 3;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .3);
    z-index: 4;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    border-radius: 70px;
    color: var(--bs-white);
    background: var(--bs-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-light);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 4px solid var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    margin: 20px 10px 0 10px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--bs-secondary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-primary);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact .contact-add-item {
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
}

.contact .contact-add-item .contact-icon {
    width: 90px;
    height: 90px;
    border-radius: 67% 33% 29% 71% / 39% 46% 54% 61%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-secondary);
    background: var(--bs-primary);
    animation-name: icon-animat;
    animation-duration: 5s;
    animation-delay: 1s;
    animation-direction: alternate;
    animation-iteration-count: infinite;
    transition: 0.5s;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    /* background: #f8f4ec; */
    background: linear-gradient(to left, #1a6b95, #2683B2);
    color: white;
}

.footer .footer-item a {
    line-height: 35px;
    color: #e5e7eb;
    transition: 0.5s;
}

.footer .footer-item p {
    color: #e5e7eb;
    font-size: 16px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #15567a;
}

/*** copyright end ***/



/* new-css */
.read-btn {
    /* border: 2px solid black; */
    background: transparent;
    padding: 6px 16px;
    color: white;
    font-size: 16px;
    font-weight: 500;
    /* background-color: #3e9a9b; */
    background: linear-gradient(to right #278BB1, #69B360);

}

.read-btn a {
    text-decoration: none !important;
}

.read-btn:hover {
    background-color: black;
    color: white;
}

.appointment-btn {
    border: transparent;
    padding: 6px 16px;
    color: white;
    font-size: 18px;
    font-weight: 500;
    background: linear-gradient(to right, #278BB1, #69B360);
    border-radius: 0.5rem;
}

.appointment-btn a {
    text-decoration: none !important;
}

.appointment-btn svg {
    margin-bottom: 0.25rem;
}

.appointment-btn:hover {
    transition: all 0.3s ease;
    background-color: black;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: white;
    transform: scale(1.05);
}

.appointment-btn:active {
    background-color: #0056b3;
}

/* new-css */


/* onnn */

.dyn-cod {
    background: #f8f4ec;
}

.dyn-cod .text-center .sub-head {
    color: #000 !important;
}

.i-col {
    color: #9bde7d;
    font-size: 1.25em;
    margin-right: 0.25em;

}

.i-col-dot {
    color: #9bde7d;
    font-size: .5em;
    margin-right: 0.25em;

}

.i-col-con {
    color: #9bde7d;
    font-size: 1em;
    margin-right: 0.25em;

}

.icon-container {
    background-color: transparent;
    /* display: inline-flex; */
}

.location-icon {
    height: 35px;
    width: 21px;
    stroke: #9BDE7D;
    /* Light green stroke */
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.top-header {
    background: linear-gradient(to left, #278BB1, #69B360);
    font-size: 0.9rem;
    padding: 6px 0;
}

.top-header a {
    color: #fff;
    text-decoration: none;
    margin-right: 1.5rem;
}

.top-header a:hover {
    color: #fff;
    text-decoration: underline;
}


.doctor-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.doctor-card:hover {
    transform: translateY(-5px);
}

.doctor-img {
    width: 300px;
    height: auto;
    object-fit: cover;
    margin-bottom: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.share-icon {
    font-size: 1.2rem;
    color: white;
    margin-left: 5px;
}

@media (max-width: 576px) {
    .doctor-card {
        text-align: center;
    }

    .doctor-img {
        margin: 0 auto 15px;
    }
}

.appointment-card {
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 20px;
    background: #fff;
    max-width: 400px;
    margin: 30px auto;
}

.section-title {
    background-color: #007C99;
    color: white;
    padding: 10px;
    font-weight: bold;
    font-size: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.card-title {
    font-weight: 600;
}

.list-group-item {
    font-size: 0.95rem;
}

.text-justify {
    text-align: justify !important;
}

.nav-item.mega-dropdown {
    position: relative;
}

.nav-item.mega-dropdown:hover .mega-menu {
    display: block;
}

/* .mega-menu {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  background: #fff;
  padding: 25px;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: none;
  min-width: 900px;
  z-index: 999;
} */
.mega-menu {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 900px;
    max-width: 95%;
    /* responsive */
    z-index: 9999;
}

.navbar-nav .mega-dropdown:last-child .mega-menu {
    position: absolute;
    top: 100%;
    left: 10%;
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: none;
    min-width: 900px;
    max-width: 95%;
    /* responsive */
    z-index: 9999;
}

.mega-menu .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.mega-menu .col {
    flex: 1 1 20%;
    min-width: 180px;
}

.mega-menu h5 {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-menu a {
    display: block;
    margin: 6px 0;
    font-size: 14px;
    text-decoration: none;
    color: #464646;
    position: relative;
    transition: all 0.3s ease;
}

.mega-menu a:hover {
    padding-left: 8px;
}

.mega-menu a:hover::before {
    width: 100%;
}

/* Add an underline sliding effect */
.mega-menu a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    /* background: #007bff; */
    /* Change color as per your theme */
    transition: width 0.3s ease;
}

.hover-shadow-do-de {
    transition: all 0.3s ease;
}

.hover-shadow-do-de:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.hover-shadow-do-de {
    transition: all 0.3s ease;
}

.hover-shadow-do-de:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.text-justify {
    text-align: justify !important;
}

/* Chat bot */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.chat-widget-header {
    background: linear-gradient(to right, #278BB1, #69B360);
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-widget-body {
    background-color: #f1f1f1;
    flex: 1;
    padding: 10px;
    overflow-y: auto;
}

.chat-widget-footer {
    padding: 10px;
    background-color: white;
    border-top: 1px solid #ddd;
}

.chat-widget-minimized {
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(to right, #278BB1, #69B360);

    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.message-bubble {
    padding: 8px 12px;
    margin-bottom: 8px;
    border-radius: 15px;
    max-width: 75%;
    word-wrap: break-word;
}

.bubble-user {
    background-color: #1a73e8;
    color: white;
    align-self: flex-end;
}

.bubble-agent {
    background-color: white;
    color: #333;
    border: 1px solid #ddd;
    align-self: flex-start;
}

/* Chat bot */