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

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

/*** Back to Top Button ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    background: #50C878; /* Soft green */
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s;
    z-index: 99;
}

.back-to-top:hover {
    background: #2E8B57; /* Darker green */
    color: white;
}

/*** Button Styling ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
    border-radius: 6px;
    padding: 12px 20px;
}

.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 {
    background: #50C878 !important; /* Soft green */
    color: white !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
    border: none;
}

.btn.btn-primary:hover {
    background: #2E8B57 !important; /* Darker green */
    color: white;
    border: 1px solid #2E8B57;
}

.btn.btn-secondary {
    background: transparent;
    color: #50C878; /* Soft green */
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: 2px solid #50C878;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    background: #50C878;
    color: white !important;
}

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

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #50C878;
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid #2E8B57 !important;
}

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

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: #50C878;
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid #2E8B57 !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid #50C878 !important;
}


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

.topbar {
    padding: 5px 15px;
    background: #50C878 !important; /* Soft Green */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
}

.topbar a,
.topbar a i {
    color: white !important;
    transition: 0.4s ease-in-out;
}

.topbar a:hover,
.topbar a i:hover {
    color: #FFD700 !important; /* Gold Accent */
    transform: scale(1.1);
}

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


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 20px;
    padding: 30px 0;
    color: #2E8B57 !important; /* Dark Green */
    font-size: 17px;
    font-weight: 500;
    transition: 0.4s ease-in-out;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 18px 0;
    color: #2E8B57 !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #FFD700 !important; /* Gold Accent */
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

/*** Navbar Brand Logo ***/
.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.4s ease-in-out;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 50px;
    transform: scale(0.95);
}

/*** Dropdown Styling ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-80deg);
        transform-origin: top;
        border: 0;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        transition: 0.4s ease-in-out;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a {
    padding: 12px 20px;
    transition: 0.3s;
}

.dropdown .dropdown-menu a:hover {
    background: #50C878 !important; /* Soft Green */
    color: white !important;
    border-radius: 5px;
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: #F5F5F5 !important; /* Light Gray */
    transition: 0.4s ease-in-out;
    opacity: 1;
}

/*** Mobile Navbar ***/
@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: white;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 16px;
        border: 2px solid #50C878 !important;
        color: #50C878;
        border-radius: 5px;
        transition: 0.3s;
    }

    .navbar.navbar-expand-lg .navbar-toggler:hover {
        background: #50C878;
        color: white;
    }

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

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 12px 0;
        margin-left: 0;
        color: #2E8B57 !important; /* Dark Green */
    }

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

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: #F8F8F8 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}


/*** Navbar Border Animation - More Elegant ***/
.navbar-light .navbar-nav .nav-link::after,
.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 50%;
    width: 0%;
    height: 2px;
    background: var(--bs-primary);
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.navbar-light .navbar-nav .nav-link::before {
    top: 0;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link::after {
    bottom: 0;
    transform: translateX(-50%);
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    opacity: 1;
}

.navbar-light .navbar-nav .nav-link:hover::after,
.navbar-light .navbar-nav .nav-link.active::after {
    width: 100%;
    opacity: 1;
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header - More Depth & Visual Appeal ***/
.bg-breadcrumb {
    background: linear-gradient(to bottom, rgba(0, 58, 102, 0.85), rgba(0, 58, 102, 0.7)), url(../img/yoga.avif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 60px;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh 
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/

/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.85)), url(../img/yoga.avif);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 220px;
    min-height: 230px;
    padding: 15px 20px;
    margin: 0 auto;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    background: var(--bs-white);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-facts .counter:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 110px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 20px 20px 0 0;
    background-color: var(--bs-primary);
}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 130px;
    height: 110px;
    margin: 0 auto 10px;
    border-radius: 20px 20px 0 0;
    transform: translateY(-20px);
    font-size: 55px;
    line-height: 100px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.6);
    clip-path: polygon(0% 0%, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg) scale(1.1);
    transition: all 0.4s ease-in-out;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.counter-facts .counter .counter-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 50px;
    }
}
/*** Counter Facts End ***/


/*** Service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -120%;
    left: 0;
    margin: 30px;
    text-align: center;
    border-radius: 12px;
    background: var(--bs-primary);
    opacity: 0;
    padding: 15px;
    transition: 0.5s ease-in-out;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
}

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

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s ease-in-out;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.2);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.features .feature-item:hover {
    transform: translateY(-5px);
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background: rgba(0, 58, 102, 0.15);
    z-index: -1;
    transition: height 0.5s ease-in-out;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px; 
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: all 0.5s ease-in-out;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: transform 0.5s ease-in-out, color 0.5s ease-in-out;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
}
/*** Features End ***/

/*** Testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 12px;
    background: var(--bs-light);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item:hover .testimonial-content {
    transform: scale(1.05);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: color 0.3s ease-in-out;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** Testimonial End ***/

/*** Training Start ***/
.training .training-item {
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.training .training-item:hover {
    transform: scale(1.05);
}

.training .training-item .training-inner img {
    transition: transform 0.5s ease-in-out;
}

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

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: bottom 0.5s ease-in-out;
}

.training .training-item:hover .training-content {
    bottom: 0;
}
/*** Training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    background: var(--bs-light);
    padding: 20px;
    transition: all 0.4s ease-in-out;
}

.contact .office .office-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.contact .office .office-item .office-img img {
    transition: transform 0.4s ease-in-out, opacity 0.4s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.1);
    opacity: 0.9;
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: color 0.4s, transform 0.3s ease-in-out;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
    transform: scale(1.05);
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
    transform: scale(1.05);
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: #50C878;
    padding: 40px 0;
    text-align: center;
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: all 0.4s ease-in-out;
}

.footer .footer-item p {
    line-height: 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer .footer-item a:hover {
    letter-spacing: 1.5px;
    color: var(--bs-secondary);
    transform: scale(1.05);
}
/*** Footer End ***/


/*** Copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: green !important;
    padding: 15px 0;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.copyright p {
    margin: 0;
    transition: color 0.3s ease-in-out;
}

.copyright p:hover {
    color: var(--bs-white);
}
/*** Copyright End ***/
