
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.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: 48px;
    height: 48px;
}

.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);
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #fff;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-light .navbar-brand img {
    max-height: 125px;
    transition: .5s;
    width: 100%;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.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: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}
@media (max-width: 768px) {
.footer .col-md-6.col-lg-6.col-xl-3 {
    padding: 24px !important;
}
}
@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: #ffffff;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #ffffff;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}
.accordion-item:first-of-type{
    border-radius: none;
}
.nav-tabs .nav-link h5 {
    font-size: 17px !important;
}
.nav-link {
    display: block;
    padding: .5rem 8px  9px;
    color: #f9941e;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}
.nav-tabs .nav-link {
    margin-bottom: 1px;
    border: 1px solid rgb(225 225 225);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    background: #FF9800 !important;
}
.text-body {
    color: #e3e3e3 !important;
}
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: relative;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
        background: #000000;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #000000;
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent #f8931e transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-orange);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgb(242 147 36 / 15%), rgb(0 0 0 / 49%));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 20px;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgb(242 147 36 / 15%), rgb(0 0 0 / 49%));
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(0 20 66 / 0%), rgb(99 53 0 / 64%)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/
.text-primary {
    color: #fb941e !important;
}
/*** About Start ***/
.container-fluid.dignity.py-5 {
    background: #fff9e2;
}
.about {
    background:linear-gradient(rgb(255 255 255 / 70%), rgb(255 255 255 / 14%)), url(../img/bg.png);
    background-size: contain;
}
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}
.about .about-img {
    position: relative
}
.service .tab-pane{
    background: #fff9e2;
    border: none;
    padding: 57px 0;
}
.accordion-item {
    background-color: #f6f6f6;
    border: 0px solid rgba(0, 0, 0, .125);
    padding: 20px;
}
nav.navbar {
    background: #000;
}
.service .nav-tabs {
    border: none;
}
.inner li h3 {
    font-size: 24px;
}
.nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link {
    color: #ffffff;
    background:  #ffb700e6 !important;
    border: 1px solid rgba(0, 0, 0, 0);
border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.footer-item img {
    width: 60%;
}
.footer .col-md-6.col-lg-6.col-xl-3 {
    padding: 10px;
}
.about .about-img .about-font-img {
    position: absolute;
    z-index: 0;
    left: 0
}
.about .about-img .about-back-img img {
    border: 10px solid #f2f2f2;
}
.about .about-img .about-back-img {
    position: absolute;
    top: 60px;
    right: -180px;
    z-index: 1
}
@media (max-width: 991px) {
    .tab-content>.tab-pane {
      display: block;
      opacity: 1;
      padding: 0;
    }
    .accordion-header img {
        margin-right: 17px;
    }
    .accordion-body .col-md-6 {
        margin-bottom: 31px;
    }
  }
.about-item {
    margin-top: 3rem;
}
.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    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 span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background-image: linear-gradient(to right, #000000, #000000);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.footer:after {
    z-index: -1;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(../img/bgfooter.png) no-repeat center;
    background-size: cover;
    opacity: 0.03;

}
.bg-light {
    background-color: #ffffff !important;
}
.footer .footer-item a {
    line-height: 30px;
    color: #fff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 21px;
    font-size: 14px;
    color: #fff;
}
.text-muted {
    color: #c8c8c8 !important;
}

.footer .footer-item a:hover {
    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 #e87d00;
    background: #e87d00;
}
/*** copyright end ***/


.why-hridaya {
    background: #f9f9f9;
    padding: 60px 0;
  }
  .why-hridaya h2 {
    font-weight: 700;
    color: #174c64;
    margin-bottom: 40px;
  }
  .why-hridaya .icon-box {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 30px;
    transition: 0.3s;
    text-align: center;
  }
  .why-hridaya .icon-box:hover {
    transform: translateY(-5px);
  }
  .why-hridaya .icon-box i {
    font-size: 36px;
    color: #f9941e;
    margin-bottom: 15px;
  }
  .why-hridaya .icon-box h5 {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  .container-fluid.testimonial.pb-5 {
    padding-top: 4rem;
}
img.whatsapp-img.img-fluid {
    max-width: 48px;
}
.whatsapp-main {
    position: fixed;
    bottom: 160px;
    right: 28px;
    text-align: right;
    z-index: 10;
}
.whatsapp-main1 {
    position: fixed;
    bottom: 95px;
    right: 28px;
    text-align: right;
    z-index: 10;
}
.senior-care-section {
    background-color: #f8f9fa;
    padding: 60px 20px;
  }
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  .section-title h2 {
    color: #174c64;
    font-weight: 700;
  }
  .service-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
  }
  .service-box:hover {
    transform: translateY(-5px);
  }
  .service-box h5 {
    font-weight: 600;
    color: #f9941e;
    margin-bottom: 15px;
  }
  .service-box ul {
    list-style: none;
    padding: 0;
  }
  .service-box ul li::before {
    content: "✅";
    margin-right: 10px;
    color: #28a745;
  }
  section.cta {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgb(255 193 7 / 79%), rgb(249 197 30 / 68%)), url(../img/breadcrumbsc.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}
h3.site_title {
    color: #fff;
    font-size: 33px;
    text-align: center;
    margin-bottom: 4rem;
}
.wht_ap a {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: #fff;
    font-weight: 700;
}
.wht_ap a span {
    display: block;
    font-size: 15px;
    margin-bottom: 7px;
    font-weight: 400;
    color: #FFF;
}
.sf_buttons {
    width: 100%;
    justify-content: center;
    display: flex
;
}
.sf_box .sf_buttons ul li {
    display: inline-block;
    margin-right: 20px;
}

.care-plans-section {
    background-color: #f5f9fc;
    padding: 60px 20px;
  }
  .care-plans-section h2 {
    text-align: center;
    font-weight: 700;
    color: #174c64;
    margin-bottom: 40px;
  }
  .care-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease-in-out;
  }
  .care-card:hover {
    transform: translateY(-5px);
  }
  .care-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #f9941e;
  }
  .care-card p {
    color: #444;
    margin-bottom: 15px;
  }
  .care-card ul {
    padding-left: 20px;
  }
  .care-card ul li {
    margin-bottom: 8px;
    position: relative;
  }
  .care-card ul li::before {
    content: "✔️";
    position: absolute;
    left: -20px;
  }
  section.palliative {
    background: #f7f7f7;
    padding: 5rem 0;
}
section.rehabilitation {
    padding: 5rem 0;
}
.physio-section {
    background: linear-gradient(rgb(0 209 249 / 0%), rgb(250 253 244 / 0%)), url(../img/Physiotherapy1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
    background-attachment: fixed;
}
  .physio-section h2 {
    text-align: center;
    font-weight: 700;
    color: #1c5d79;
    margin-bottom: 40px;
  }
  .physio-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  .physio-box ul {
    padding-left: 20px;
  }
  .physio-box ul li {
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
  }
  .physio-box ul li::before {
    content: "✅";
    position: absolute;
    left: -25px;
    top: 0;
  }
  .maternity-section {
    background-color: #fff5f7;
    padding: 60px 20px;
  }
  .maternity-section h2 {
    text-align: center;
    font-weight: 700;
    color: #ff7926;
    margin-bottom: 40px;
  }
  .service-box {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  .service-title {
    font-size: 18px;
    font-weight: 600;
    color: #ff8c00;
    margin-bottom: 10px;
  }

  section.maternity-section .col-md-6 {
    margin-bottom: 20px;
}
.counseling-section {
    background-color: #f7f9fc;
    padding: 60px 20px;
  }
  .counseling-section h2 {
    text-align: center;
    font-weight: 700;
    color: #3c6382;
    margin-bottom: 40px;
  }
  .counseling-box {
    background: #ffffff;
    border-left: 5px solid #ffb300;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(255, 174, 0, 0.231);
    transition: transform 0.3s ease;
    height: 100%;
  }
  .counseling-box:hover {
    transform: translateY(-5px);
  }
  .counseling-title {
    font-size: 20px;
    font-weight: 600;
    color: #3c6382;
    margin-bottom: 10px;
  }

  @media (min-width: 1440px) {

.nav-tabs .nav-link h5 {
    font-size: 1.3rem !important;
}
  }

  .container-fluid.servicedetail a {
    margin-bottom: 12px;
}