/*** 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;
    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 {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-primary) !important;
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !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;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !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 var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-secondary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !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 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: 768px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    transition: .5s;
}

.logo1 {
    max-height: 100px;
}

.logo2 {
    max-height: 60px;
}

.sticky-top .navbar-light .navbar-brand .logo1 {
    max-height: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

/* Desktop Hover Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px) rotateX(-75deg);
        transform-origin: top;
        transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s;
        border-radius: 10px;
        max-height: 500px;
        min-width: 500px;
        right: 0;
        overflow: auto;
    }

    .navbar .nav-item:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) rotateX(0deg);
        background: var(--bs-light) !important;
       
    }
    
}

/* Mobile - Default Bootstrap Click Behavior */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        border-radius: 10px;
        max-height: unset;
        overflow: visible;
    }
}

/* Optional Scrollbar Styling */
.navbar .dropdown-menu::-webkit-scrollbar {
    width: 7px;
}
.navbar .dropdown-menu::-webkit-scrollbar-track {
    background: #eee;
    border-radius: 10px;
}
.navbar .dropdown-menu::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 10px;
}
.navbar .dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #888;
}


.dropdown .dropdown-menu a {
    /*background: var(--bs-primary);*/
    /*color: #fff;*/
    text-wrap: auto;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: #fff;
    text-wrap: auto;
}



@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        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: 991.98px) {
    .sticky-top .navbar-light {
        /* background: var(--bs-light) !important; */
        border-bottom: 1px solid #ddd;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}

/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.7), rgba(0, 58, 102, 0.7)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}

/*** 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, .4), rgba(0, 0, 0, 0.4));
    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 {
        display: none;
        padding: 0;
    }
}

/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}

.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}

.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}

/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.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: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
    color: #fff;
}

.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, .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: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    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;
    height: auto;
    object-fit: cover;
    min-height: 250px;
    height: 250px;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}

/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}

/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
    height: 300px;
    overflow: scroll;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 10px;
    transform: rotate(45deg);
    background: #fff;
    z-index: -1;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    border: 1px solid #dee2e6 !important;
}

.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 {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.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 .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}

/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}

/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-primary);
}

.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-warning);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}

/*** copyright end ***/


.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.664);
    font-size: 2rem;
    z-index: 9;
}

.floating-icon:nth-child(1) {
    top: 37%;
    left: 24%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 70%;
    right: 15%;
    animation-delay: 1s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slideInRight {
    animation: slideInRight 0.8s ease-out;
}

.float-animation {
    animation: float 3s ease-in-out infinite;
}

.service-content .btn.btn.btn-primary:hover {
    border: 1px solid var(--bs-secondary) !important;
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #f0f5fb;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.swiper {
    width: 100%;
    padding: 30px 10px 60px;
}

.swiper-slide {
    background: transparent;
    height: auto;
}

.package-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-image {
    width: 100%;
    max-height: 250px;
    height: 250px;
    object-fit: cover;
    display: block;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-content h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.package-content .text-muted {
    color: #6c757d;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 20px;
}

.old-price {
    font-size: 1.1rem;
    color: #6c757d;
    text-decoration: line-through;
    margin-left: 10px;
    font-weight: 500;
}

.btn-outline-success {
    color: var(--bs-primary);
    border-color: var(--bs-primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: auto;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-success:hover {
    background-color: var(--bs-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--bs-primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--bs-primary);
    color: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ddd;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary);
}

@media (max-width: 576px) {
    .package-content h5 {
        font-size: 1.2rem;
    }
}

.video-card {
    /*background: white;*/
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 76.25%;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px 15px 0 0;
}


.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    text-decoration: none;
    position: relative;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

.whatsapp-button i {
    font-size: 36px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #075E54;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 8px;
    border-style: solid;
    border-color: transparent transparent transparent #075E54;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* .notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF3333;
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    animation: bounce 1.5s infinite;
} */

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-5deg);
    }

    20% {
        transform: rotateZ(5deg);
    }

    25% {
        transform: rotateZ(-5deg);
    }

    30% {
        transform: rotateZ(3deg);
    }

    35% {
        transform: rotateZ(-3deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}

@media (max-width: 768px) {
    .whatsapp-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-button i {
        font-size: 30px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
    }

    .whatsapp-button i {
        font-size: 28px;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
}

/* Footer */
.footer {
    background: var(--bs-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--bs-secondary);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--bs-secondary);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    border: 1px solid var(--bs-secondary);
}

.footer-logo2 {
    width: 350px;
    filter: brightness(0) invert(1);
}

.carousel-caption h3.custom-heading {
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    background: #e024549e;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
}

.package-banner-section {
    background-color: var(--bs-light-green);
    padding: 30px 0;
}

.banner {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 40px;
}

.banner h2 {
    color: var(--bs-primary);
    font-weight: bold;
    font-size: 36px;
}

.banner-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    height: 350px;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.banner-card:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.banner-card:hover:after {
    opacity: 1;
}

.banner-card .location-name {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
    z-index: 3;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.banner-card:hover .location-name {
    opacity: 1;
    transform: translateY(0);
}


/* Custom Badge Classes */
.custom-secondary-badge {
    background-color: var(--bs-secondary) !important;
    color: #fff !important;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

.custom-warning-badge {
    background-color: var(--bs-warning) !important;
    color: #fff !important;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.375rem;
}

/* Primary Border */
.border-primary {
    border-color: var(--bs-primary) !important;
}

/* Logo Circle */
.logo-circle {
    width: 50px;
    height: 50px;
}


/* Inclusion/Exclusion Items */
.inclusion-item,
.exclusion-item {
    display: flex;
    align-items: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .timeline-item::before,
    .timeline-item::after {
        display: none;
    }
}

.plan-images {
    height: 250px;
    width: 100%;
    object-fit: cover;
}

.package-details-header {
    padding: 20px;
    background: var(--bs-primary);
}

.package-details-header h4 {
    color: #fff;
}

.inclusion-card .card-body,
.exclusion-card .card-body {
    background: var(--bs-light-green);
}

.timeline-item h5 {
    font-size: 20px;
    font-weight: 600;
}

.bg-sub-title {
    background: linear-gradient(135deg, var(--bs-primary), var(--light-green));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.2rem;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 15px;
}

.special-care-section {
    background: #f9fbfd;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.special-care-section h3 {
    font-weight: 600;
    color: #0d6efd;
    /* Bootstrap primary */
    display: flex;
    align-items: center;
    font-size: 1.4rem;
}

.special-care-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.special-care-list li {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #eaeaea;
}

.special-care-list li:last-child {
    border-bottom: none;
}

.special-care-list i {
    color: #28a745;
    /* Green tick */
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1580651315530-69c8e0026377?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-card {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.contact-info {
    background: linear-gradient(135deg, var(--bs-primary), var(--dark-green));
    color: white;
    padding: 30px;
    border-radius: 15px 0 0 15px;
    height: 100%;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: all 0.3s;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 0.25rem rgba(2, 120, 3, 0.25);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-message {
    display: none;
    background-color: var(--bs-light-green);
    border-left: 4px solid var(--bs-primary);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.badge.bg-primary {
    background-color: var(--bs-primary) !important;
}

@media (max-width: 768px) {
    .contact-info {
        border-radius: 15px 15px 0 0;
    }
}

.contact-info h2,
.contact-info h5 {
    color: #fff;
}

.dropdown-item {
    padding: 0.5rem 1rem;
}

.about-area {
    background: var(--bs-light);
    position: relative;
}

.about-left {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.about-left::before {
    content: "";
    position: absolute;
    width: 50%;
    height: 70%;
    border-radius: 200px;
    border: 10px double #02780370;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.about-img {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    align-items: center;
}

.about-img .img-1 {
    width: 100%;
    border-radius: 150px;
    box-shadow: 0 10px 30px rgba(2, 120, 3, 0.1);
    transition: transform 0.3s ease;
    min-height: 500px;
    object-fit: cover;

}

.about-img .img-2 {
    width: 100%;
    border-radius: 150px;
    margin-top: 100px;
    box-shadow: 0 10px 30px rgba(2, 120, 3, 0.1);
    transition: transform 0.3s ease;
    min-height: 500px;
    object-fit: cover;
}

.about-img .img-1:hover,
.about-img .img-2:hover {
    transform: translateY(-5px);
}

.about-experience {
    position: absolute;
    bottom: 14rem;
    left: 13rem;
    background: var(--bs-primary);
    color: white;
    padding: 30px 25px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(2, 120, 3, 0.3);
    z-index: 2;
    height: 160px;
    width: 160px;
    border: 8px solid #fff;
}

.about-experience h5 {
    font-size: 42px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
    color: white;
}

.about-experience h5 span {
    color: var(--bs-light-green);
}

.about-experience p {
    margin: 5px 0 0 0;
    font-size: 16px;
    font-weight: 500;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--bs-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(2, 120, 3, 0.15);
}

.service-service-icon {
    width: 80px;
    height: 80px;
    background: var(--bs-light-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--bs-primary);
    transform: scale(1.1);
}

.service-service-icon img {
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--bs-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bs-primary);
    font-weight: bold;
}

@media (min-width: 992px) and (max-width: 1099px) {
    .logo1 {
        max-height: 50px;
    }

    .logo2 {
        max-height: 40px;
    }

    .about-experience {
        left: 24rem;
    }

}

@media (max-width: 991px) {
    .video-card {
        margin-bottom: 30px;
    }

    .footer-logo2 {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    /*.about-section {*/
    /*    margin-top: 10rem;*/
    /*}*/

    .video-card {
        margin-bottom: 30px;
    }
     .navbar-light .navbar-brand img {
        max-height: 40px;
    }
    .footer-logo2 {
        max-width: 180px;
    }
}

@media (max-width: 360px) {
    .navbar-light .navbar-brand img {
        max-height: 31px;
    }

    .about-section {
        margin-top: 0rem !important;
        padding-top: 0.4rem !important;
        padding-bottom: 0.4rem !important; /* Reduce bottom padding on mobile */
        /*padding-top: 20px !important;*/
    }
    
    
    .service {
        padding-top: 0.4rem !important; /* reduce top padding on mobile */
        padding-bottom: 0.4rem !important; /* reduce bottom padding on mobile */
    }
    .service .container {
        /*padding-top: 1.1rem !important;*/
        padding-bottom: 1.1rem !important;
    }
}


    
@media (min-width: 992px) and (max-width: 1026px) {
    .text-light {
        display: contents !important;
        color: #f0f5fb !important;
    }
}

@media (min-width: 320px) and (max-width: 500px) {
    .gap-2 {
        display: block !important;
        gap: .5rem !important;
    }

    .text-white {
        font-size: 1.1rem;
        color: #fff !important;
    }
}

@media (min-width: 320px) and (max-width: 400px) {
    .about-experience {
        position: absolute;
        bottom: 14rem;
        left: 8rem;
        background: var(--bs-primary);
        color: white;
        padding: 30px 25px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 10px 30px rgba(2, 120, 3, 0.3);
        z-index: 3;
        height: 160px;
        width: 160px;
        border: 8px solid #fff;
    }
}

@media (min-width: 400px) and (max-width: 600px) {
    .about-experience {
        position: absolute;
        bottom: 14rem;
        left: 8rem;
        background: var(--bs-primary);
        color: white;
        padding: 30px 25px;
        border-radius: 50%;
        text-align: center;
        box-shadow: 0 10px 30px rgba(2, 120, 3, 0.3);
        z-index: 3;
        height: 160px;
        width: 160px;
        border: 8px solid #fff;
    }
}

@media (max-width: 400px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 15px;
        text-align: center;
    }

    .service-service-icon img {
        width: 50px;
        height: 50px;
    }

    .training .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}



/*navbar scroll*/
.scrollable-dropdown {
    max-height: 300px; /* Adjust as needed */
    overflow-y: auto;
    overflow-x: hidden;
}

/*navbar scroll in footer */
.footer-scroll-wrapper {
    max-height: 300px;      /* height before scroll starts */
    overflow-y: auto;       /* enable vertical scroll */
    overflow-x: hidden;     /* disable horizontal scroll */
    padding-right: 6px;
}

/* Thin clean vertical scrollbar */
.footer-scroll-wrapper::-webkit-scrollbar {
    width: 6px;
}

.footer-scroll-wrapper::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.footer-scroll-wrapper::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.footer-scroll-wrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
}



