/*** Spinner Start ***/
h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
    font-family: "Open Sans", sans-serif;
}
/*** 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;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    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-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;    
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link, #top-menu > li {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 0px;
    padding: 22px 0;
    color: var(--bs-white) !important;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 80px;
    transition: .5s;
}

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

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .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;
    }
}

.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) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 1199.99px) {
    .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: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

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

@media (min-width: 1199.99px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light) !important;
    }

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

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

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

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }
 
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 100vh;
    /*margin-top: 95px;*/
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {
    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 100%;
    
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    /*background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/carousel-2.jpg);*/
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 160px 0 60px 0;
    position: relative;
}
.bg-breadcrumb:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1;
    pointer-events: none; /* Prevents blocking clicks */
}
.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}
/*** Single Page Hero Header End ***/


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

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

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

.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgba(21, 185, 217, .3);
}

.service .service-item .service-img:hover img {
    transform: scale(1.3);
}

.service .service-item .service-content {
    position: relative;
    z-index: 2;

}

.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: rgba(21, 135, 143, .9);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background: rgba(21, 135, 143, .9);
    height: 100%;
}

.service .service-item .service-content .service-content-inner {
    transition: 0.5s;
}


.service .service-item:hover .service-content .service-content-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 9;
}
.service .service-item:hover .service-content .service-content-inner h5 {
    color: var(--bs-white);
}

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0; 
    bottom: 0; 
    border: 10px solid; 
    border-color: var(--bs-white) var(--bs-white) var(--bs-white) var(--bs-white);
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px; 
    left: -125px; 
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}
/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(239, 162, 134, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;
    

}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}
/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 135, 143, 0.8), rgba(21, 135, 143, 0.8)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }
    
}

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

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

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.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;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
	max-height: 200px;
}

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

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

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

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 135, 143, .9);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
/*  border: 1px solid var(--bs-primary); */
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 135, 143, 0.8), rgba(21, 135, 143, 0.8)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url(../img/carousel-2.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.footer .footer-item a {
    line-height: 35px;
    color: #ffffff;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
    color: #FFFFFF;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
h1 span, h2 span, h3 span, h4 span, h5 span, h6 span{
    color: #15878f;
}
@media (min-width: 992px) {
    /*.nav-bg {
        background-color: rgba(0, 0, 0, .5);
    }*/
}
.service-carousel .owl-nav .owl-prev{
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-next{
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}
.service-carousel .owl-nav .owl-prev:hover, .service-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.opening-hours .list-group-item {
    padding: 1rem 1rem;
}

.service .service-item .service-content .service-content-inner p {
    min-height: 170px;
}

.treatments-section .card-body a {
    display: block;
    padding: 1rem 1rem;
    text-align: center;
}

.treatments-section .card-body {
    padding: 0;
}
.treatments-section .card-body a:hover {
    background-color: #15878f;
    display: block;
    color: #fff;
    border-radius: 10px;
}

input.wpcf7-submit {
    max-width: 200px;
}

.form-floating>.form-control, .form-floating>.form-select { height: auto;}

/* BreadCrumbs */
.breadcrumb-container { position: relative; left: 0px; bottom: 0px; padding: 0px 0px 0px; width: 100%; z-index: 1; }
.breadcrumb-container ul { margin: 0px; padding: 0px; list-style: none; display: flex; flex-wrap: wrap; align-items: center; flex-wrap: wrap;justify-content: center;}
.breadcrumb-container.center ul {justify-content: center; }
.breadcrumb-container li { display: inline-flex; padding: 2px 0px 2px 0px; color: var(--bs-white); font-weight: 400; line-height: 1.3; position: relative; align-items: center;}
.breadcrumb-container li a {color: var(--bs-white);position: relative;display: flex;align-items: center;opacity: 1;}
.breadcrumb-container li::before { color: var(--bs-white); position: relative; /*font-family: "Font Awesome 6 Free"; font-weight: 900; content: "\f101";*/ margin: 0px 10px 0px;  /*font-family: bootstrap-icons !important;content: "\F285";*/ line-height: 1;align-self: flex-start; margin-top: 4px; content:"/"; opacity: 1;}
.breadcrumb-container li:first-child:before{ display: none;}
.breadcrumb-container li:last-child:before{ }
.breadcrumb-container li a:hover {color: var(--primary);opacity: 1;}
.breadcrumb-container li strong,.breadcrumb-container li span>span { font-weight: 400 !important; color: #15878f !important; opacity: 1; }
.breadcrumb-container.alt { position: static; padding: 13px 0px; background-color: #FAFAFA;}
.breadcrumb-container.alt ul { justify-content: flex-start;}
.breadcrumb-container.alt li a { color: var(--black);}
.breadcrumb-container.alt li a:hover, .breadcrumb-container.alt li strong { color: #15878f; opacity: 1; }
.breadcrumb-container.alt li strong,.breadcrumb-container.alt li span>span { color: #15878f; opacity: 1; }
.breadcrumb-container.alt li::before{ color: #15878f;}

/* .breadcrumb-container.white li { color: var(--white);}
.breadcrumb-container.white li a { color: #DBDBDB;}
.breadcrumb-container.white li a:hover { color: var(--white); opacity: 1; }
.breadcrumb-container.white li strong,.breadcrumb-container.white li span>span {color: var(--white);} */

@media only screen and (max-width: 1599.98px) {
.breadcrumb-container.alt {padding: 15px 0px; }
}
@media only screen and (max-width: 575.98px) {
.breadcrumb-container{ padding-top: 0px;}
.breadcrumb-container.alt { padding: 15px 0px;}
}



/* Base Menu Styles */
#top-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  background-color: transparent;
  font-family: 'Segoe UI', sans-serif;
}

#top-menu > li {
  position: relative;
}

#top-menu > li > a {
  display: block;
  padding: 10px 10px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}

/* Active (Current Page) & Selected Item */
#top-menu > li.selected > a,
#top-menu > li.current-menu-item > a,
li.current_page_parent > a,
li.current-menu-item > a {
  color: #15878f !important;
}

/* Hover State */
#top-menu > li > a:hover {
  background-color: transparent;
  color: #15878f;
}

/* Sub-menu */
#top-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(0, 0, 0, 0.85);
  padding: 0;
  list-style: none;
  z-index: 999;
  min-width: 220px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#top-menu .sub-menu li a {
  padding: 12px 16px;
  display: block;
  color: #ffffff;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s, color 0.3s;
}

#top-menu .sub-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #15878f;
}

/* Show submenu on hover */
#top-menu li.menu-item-has-children:hover > .sub-menu {
  display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
  #top-menu {
    flex-direction: column;
  }

  #top-menu > li {
    width: 100%;
  }

  #top-menu .sub-menu {
    position: static;
    box-shadow: none;
  }
	.bg-breadcrumb { 
		padding: 40px 0 40px 0; 
	}
	.about .about-img {
		padding-left: 0 !important;
		padding-bottom: 20px !important;
	}
}
/* Hide toggle on desktop */
.menu-toggle {
  display: none;
}

/* Main menu default (desktop) */
.main-menu {
  display: flex;
  flex-direction: row;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Responsive behavior */
@media (max-width: 1199.99px) {
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    margin-bottom: 10px;
    color: #15878f;
  }

  .main-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    width: 100%;
    border: 1px solid #ccc;
  }

  .main-menu.active {
    display: flex;
  }

  .main-menu li {
    border-bottom: 1px solid #eee;
  }

  .main-menu li a {
    padding: 12px;
    display: block;
    color: #000;
  }

  .main-menu .current-menu-item a {
    color: #15878f;
    font-weight: bold;
  }

  /* Submenu */
  .main-menu li ul.sub-menu {
    display: none;
    flex-direction: column;
    background: #f9f9f9;
  }

  .main-menu li.open > ul.sub-menu {
    display: flex;
  }
}

.z-9{ z-index: 9; }
.breadcrumb-container li span>span.current-item { font-weight: bolder !important; }



.comment-respond {
    margin-top: 40px;
}

.comment-respond h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 10px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 0.375rem;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: inline-block;
    width: 31%;
    margin-right: 2%;
    vertical-align: top;
}

.comment-form-url {
    margin-right: 0; /* remove margin from the last field */
}

.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    box-sizing: border-box;
}


.comment-form input:focus,
.comment-form textarea:focus {
    border-color: #0d6efd;
    outline: none;
}

.comment-form .form-submit input {
    background-color: #0d6efd;
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.comment-form .form-submit input:hover {
    background-color: #0b5ed7;
}
.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left align */
    text-align: left;
    margin-top: 10px;
}

.comment-form-cookies-consent input[type="checkbox"] {
    margin: 10px;
    width: auto;
    vertical-align: bottom; 
}

.comment-form-cookies-consent span{
    vertical-align: bottom;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    display: inline-block;
    width: 31.5%;
    margin-right: 2%;
    vertical-align: top;
}

.comment-form-url {
    margin-right: 0;
}

/* Make input fields fill the container */
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    box-sizing: border-box;
}

/* Optional: Stack on small screens */
@media (max-width: 768px) {
    .comment-form-author,
    .comment-form-email,
    .comment-form-url {
        display: block;
        width: 100%;
        margin-right: 0;
    }
	
}
.list-group-item > span {
    width: 100%;
}

.list-group-item > span > span {
    float: right;
}
.sticky-top #top-menu > li > a { color: var(--bs-secondary); }
@media (max-width: 1199.99px) {
    .sticky-top #top-menu > li > a { color: var(--bs-secondary); }
    .section-title .sub-style::before,
    .section-title .sub-style::after,
    .sub-title::before,
    .sub-title::after{
        display: none;
    }
}
.sticky-top #top-menu > li.book-btn > a,
#top-menu > li.book-btn.current-menu-item > a {
    color: #FFF !important;
}
.sticky-top #top-menu > li.book-btn > a:hover,
#top-menu > li.book-btn.current-menu-item > a:hover{
    color: #15878f !important;
}

.main-menu .menu-item-has-children > a::after {
    content: "\25BC"; /* ▼ down arrow */
    font-size: 0.6em;
    margin-left: 6px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.main-menu .menu-item-has-children:hover > a::after {
    transform: rotate(180deg); /* Flip arrow on hover */
}
.footer-logo img {
    max-width: 150px;
    margin-bottom: 15px;
}
.footer-menu{
    padding-left: 0px;
}
.footer-menu li {
    list-style: none;
}
.footer-menu li a::before {
    font-family: 'Font Awesome 5 Free'; /* Or 'Font Awesome 6 Free' if using v6 */
    font-weight: 900; /* Required for solid icons */
    content: "\f105"; /* Right arrow icon */
    margin-right: 8px;
    display: inline-block;
}
.header-carousel-item h1 {
    color: #15878f;
	font-family: 'Open Sans', sans-serif;
	font-weight: bolder;
}

.header-carousel-item h1 span {
    color: #eb8078;
}
/* .header-carousel:before {
    content: '';
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #352d2d;
    opacity: 0.4;
    z-index: 1;
} */
.query-form {
    max-width: 350px;
    margin: 0 auto;
    background-color: #FFF;
    color: #000;
    padding: 55px 10px;
    border-radius: 75px 0;
}
p.query-heading {
    font-size: 24px;
    color: #15878f;
    font-weight: 800;
}
p.query-heading {
    font-size: 24px;
    color: #15878f;
    font-weight: 800;
}

.query-form input.wpcf7-form-control {
    border: 1px solid #15878f !important;
    max-width: 230px !important;
    margin: 0 auto !important;
    padding: 5px 10px !important;
    color: #000 !important;
	height: 40px;
}
.query-form span.wpcf7-spinner {
    display: block;
    margin: 10px auto;
}
.query-form input.wpcf7-form-control.wpcf7-submit {
    background-color: #15878f;
    color: #FFF !important;
    border: 0 !important;
    max-width: 150px !important;
    height: 40px !important;
}
.query-form .wpcf7-response-output {
    margin-top: 0 !important;
}
.query-form  input::placeholder {
  color: #15878f !important;
}
.blog-item.rounded {
    border: 1px solid var(--bs-primary);
}
.object-fit-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1199.99px) {
	.navbar-light .navbar-nav .nav-link, #top-menu > li {padding: 0;}

	#top-menu > li > a {
		color: #000;
	}
	.book-btn a.btn.btn-primary {
		background-color: transparent;
		border: 0;
		text-align: left;
	}
	#top-menu .sub-menu, .main-menu .menu-item-has-children > a::after {
		display: none !important;
	}
}