html {
    scroll-behavior: smooth;
}

/*** 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 ***/

@media (min-width: 1600px) {

    .container-xxl,
    .container-xl,
    .container-lg,
    .container-md,
    .container-sm,
    .container {
        max-width: 1470px;
    }
}

/*Heading style*/
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
p,
a {
    font-family: "Open Sans", sans-serif;
}


.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 140px;
    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;
    border-radius: 0px;
}

.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);
    border: 0px;
    color: var(--bs-white) !important;
}

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

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

.btn.btn-light:hover {
    box-shadow: inset 500px 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 {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 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(--bs-white) !important;
}

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

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

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

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

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;

        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: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 10px;
        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-light) !important;
    }

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

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 0px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-primary) !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: 700px;
    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: 75%;

}

/*** 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-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 50px 0;
}

.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);
    height: 100%;
}

.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;
    transition: 0.5s;
    z-index: 5;

}

/*.service .service-item:hover .service-img::before {
    height: 100%;
    background: rgb(185 28 34 / 31%);
}*/

/*.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 h4{
    min-height: 116px;
}*/

.service .service-item .service-content h4 {
    font-size: 25px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    height: 150px;
}

.service .service-item .service-content p {
    color: #333;
    font-weight: 300;
    font-size: .9375rem;
    line-height: 1.75rem;
}



.service .card-content {
    padding: 0;
    padding: 0px;
}

.service .card-footer {
    padding: 0;
    background-color: transparent;
    border-top: 0;
    position: relative;
    margin-top: auto;
    margin-bottom: 0px;
}


/* 
.service .service-item .service-content::before {
    width: 100%;
    height: 8px;
    position: absolute;
    content: "";
    bottom: 0;
    left: 0; 
    background: rgba(39, 39, 39, 0.5);
    transition: 0.5s;
    z-index: 3;
}

.service .service-item:hover .service-content::before {
    background:  rgba(39, 39, 39, 0.5);
    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-secondary);
} */

/*** Service End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;

}

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

    background: var(--bs-light);
    transition: 0.5s;

}

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

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

.feature .feature-item .feature-icon {
    display: inline-flex;

    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-light);
}

.feature .feature-item:hover .feature-content h3 {
    color: var(--bs-light);
}
/*** 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);
    color: var(--bs-white) !important;
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !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, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), 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;

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

.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, 185, 217, .5);
}

.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, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), 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: var(--bs-body);
    transition: 0.5s;
}

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

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

/*** Footer End ***/

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

/*** copyright end ***/

.util-nav__contact {
    color: #fff;
    margin-left: 50px;
}

.util-nav__number {
    color: #fff;
}

.util-nav__number a:hover {
    color: #fff;
    text-decoration: underline;
}

.util-nav__number i {
    display: inline-block;
}

.util-nav__contact span {
    display: block;
    width: 100%;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.1;
}

.tiles {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
    padding: 0px;
}

.tiles__item {
    list-style: none;
    width: 33.3333%;
    flex: 1;
}

.h-100 {
    height: 100% !important;
}

.tile__wrapper {
    display: grid;
    height: 0;
    padding-bottom: 100%;
}

.tiles figure {
    margin: 0px;
    position: relative;
}

.tiles figure:after {
    position: absolute;
    background: rgba(0, 0, 0, 0.49);
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    content: '';
}

.tiles .tile__title {
    font-family: "Open Sans", sans-serif;
}

.tiles .tile__description h4 {
    color: var(--bs-white);
}

/* ========== Customer Review CSS ========== */

.customer-review {
    background: none;
}

.customer-review .section-title .sub-style::before {
    border: 1px solid var(--bs-primary) !important;
}

.customer-review .section-title .sub-style::after {
    border: 1px solid var(--bs-primary) !important;
}

.testimonial .section-title .sub-title {
    color: var(--bs-primary) !important;
}

.customer-review .section-title .sub-title::before {
    border: 1px solid var(--bs-primary) !important;
}

.customer-review .section-title .sub-title::after {
    border: 1px solid var(--bs-primary) !important;
}

.customer-review .tp-widget-profile-link {
    display: block;
    color: #191919;
    text-decoration: none;
    text-align: center;
}

.customer-review .tp-widget-humanscore {
    font-size: 24px;
    margin: 0 0 12px;
    display: block;
    color: #191919;
}

.customer-review .tp-widget-stars {
    margin: 0 auto 12px;
    width: auto;
    display: block;
}

.customer-review .tp-widget-businessinfo {
    font-size: 13px;
    line-height: 16px;
    margin: 0 0 16px;
    display: block;
}

.customer-review .bold-underline {
    border-bottom: 1px solid rgba(25, 25, 25, .6);
    font-weight: 500;
}

.customer-review .tp-widget-logo {
    margin: 0 auto;
    width: 106px;
    display: block;
}

.customer-review .rating-box {
    position: relative;
}

.customer-review .rating {
    font-size: 40px;
    line-height: 30px;
    display: grid;
    grid-template: "full" 0fr / 0fr;
    text-align: center;
    margin: -5px auto 15px;
    justify-content: center;
    color: #b91c22;
}

.customer-review .rating::before {
    grid-area: full;
    width: calc((var(--rating, 0) / 5) * 100%);
    overflow: hidden;
    white-space: nowrap;
    content: "★★★★★";
}

.customer-review .rating::after {
    grid-area: full;
    white-space: nowrap;
    content: "☆☆☆☆☆";
}

.tp-widget-review {
    display: inline-block;
    height: 110px;
    margin: 0 15px 10px 0;
    padding: 0 0 0 30px;
    position: relative;
    vertical-align: top;
    white-space: normal;
}

.tp-widget-review .rating {
    font-size: 30px;
    line-height: 30px;
    margin: -5px auto 0px;
}

.verification-label {
    display: flex;
    align-items: center;
}

.verification-label .label-icon svg {
    width: 14px;
    margin: 0px 5px 0px 0px;
}

.tp-widget-review-link {
    font-size: 16px;
    color: #191919;
}

.tp-widget-review .header {
    font-size: 14px;
    font-weight: 700;
    height: 16px;
    margin: 0 0 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

.tp-widget-review .text {
    font-size: 13px;
    line-height: 16px;
    margin: 0 0 8px;
    max-height: 32px;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.tp-widget-review .date-and-user-info-wrapper {
    display: -ms-flexbox;
    display: flex;
    color: rgba(0, 0, 0, .6);
    align-items: center;
    font-size: 12px;
}

.tp-widget-review .date-and-user-info-wrapper .name {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 120%;
}

.tp-widget-review .date-and-user-info-wrapper .date {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-left: 3px;
}

.customer-review .customer-review-carousel.owl-carousel {
    position: relative;
}

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

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


.customer-review .customer-review-carousel .owl-nav .owl-prev:hover,
.customer-review .customer-review-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) {
    .customer-review .customer-review-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

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

}

/* ========== Customer Review CSS ========== */

.travel-footer {
    background: #000;
}

.footer-review {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.footer-review .tp-widget-humanscore {
    font-size: 16px;
}

.footer-review .tp-widget-businessinfo {
    font-size: 13px;
    line-height: 16px;
}

.footer-review .rating-box {
    position: relative;
    margin: 0px 10px;
}

.footer-review .rating {
    font-size: 20px;
    line-height: 20px;
    display: grid;
    grid-template: "full" 0fr / 0fr;
    text-align: center;
    margin: 0px auto 0px;
    justify-content: center;
    color: #fff;
}

.footer-review .rating::before {
    grid-area: full;
    width: calc((var(--rating, 0) / 5) * 100%);
    overflow: hidden;
    white-space: nowrap;
    content: "★★★★★";
}

.footer-review .rating::after {
    grid-area: full;
    white-space: nowrap;
    content: "☆☆☆☆☆";
}

.footer-review .tp-widget-logo svg {
    width: 80px;
    margin: -20px 0px 0px;
    fill: #fff;
}

.travel-footer-copyright {
    background-color: #595959 !important;
}

.back-to-top i {
    color: #fff;
}

.back-to-top:hover i {
    color: #fff;
}

/* ============== Video CSS ============== */

#big .item {
    padding: 0px 0px;
    margin: 0px;
}

#big video {
    width: 100%;
    height: 400px;
}

#thumbs .item {
    background: #C9C9C9;
    height: 70px;
    line-height: 70px;
    padding: 0px;
    margin: 2px;
    color: #FFF;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

#thumbs .item h1 {
    font-size: 18px;
}

#thumbs .current .item {
    background: #FF5722;
}

.owl-theme .owl-nav [class*='owl-'] {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.owl-theme .owl-nav [class*='owl-'].disabled:hover {
    background-color: #D6D6D6;
}

#big.owl-theme {
    position: relative;
}

#big.owl-theme .owl-next,
#big.owl-theme .owl-prev {
    background: #333;
    width: 22px;
    line-height: 40px;
    height: 40px;
    margin-top: -20px;
    position: absolute;
    text-align: center;
    top: 50%;
}

#big.owl-theme .owl-prev {
    left: 10px;
}

#big.owl-theme .owl-next {
    right: 10px;
}

#thumbs.owl-theme .owl-next,
#thumbs.owl-theme .owl-prev {
    background: #333;
}

/* ============== Video CSS ============== */
.counter-flag img {
    width: 20px;
}



.why-travels .service-item .service-content h4 {
    text-align: center;
}

.why-travels .service-item .service-content {
    text-align: center;
}

.offcanvas-start {
    width: 100%;
    max-width: 350px;
}

.offcanvas-body .list-unstyled li {
    color: #191919;
    border-bottom: #f1f1f1 solid 1px;
    padding: 10px 0px 10px 10px;
    position: relative;
}

/* .offcanvas-body .list-unstyled li a::before {
    line-height: normal;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    left: 0px;
    content: '';
    background: url(../img/arrow.svg) center center no-repeat;
    transition: transform .35s ease;
    transform-origin: .5em 50%;
}

.offcanvas-body .list-unstyled li a.collapsed::before {
    transform: rotate(90deg);
} */

.offcanvas-body .list-unstyled li a {
    color: #191919;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    cursor: pointer;
}

.offcanvas-body .list-unstyled li a i {
    width: 30px;
}

.offcanvas-body .list-unstyled li a:hover {
    color: #b91c22;
}

.offcanvas-body .list-unstyled li ul {
    margin: 10px 0px;
    background: #f9f9f9;
    padding: 10px;
    height: auto;
}

.offcanvas-body .list-unstyled li ul li a {
    font-weight: 500;
    font-size: 14px;
}

.btn-toggle::before {
    width: 1.25em;
    line-height: 0;
    content: '';
    transition: transform 0.35s ease;
    transform-origin: .5em 50%;
}

.border-radius-0 {
    border-radius: 0px;
}

.checkbox {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.checkbox input[type=checkbox] {
    width: 26px;
    height: 27px;
}

.checkbox input[type=checkbox]:checked+label::before {
    content: "";
    display: block;
    position: absolute;
    text-align: center;
    height: 27px;
    width: 26px;
    left: 0;
    top: 0px;
    background-color: #b91c22;
    font-family: "Montserrat";
    border-radius: 2px;
    border: 1px solid #b91c22;
}

.checkbox input[type=checkbox]:checked+label::after {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" fill="white" viewBox="0 0 24 24"><path d="M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z"/></svg>');
    display: block;
    position: absolute;
    left: 6px;
    top: 4px;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    padding: 10px;
}

/*Rating*/

.rate {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center
}

.rating>input {
    display: none
}

.rating>label {
    position: relative;
    width: 1em;
    font-size: 44px;
    font-weight: 300;
    color: #FFD600;
    cursor: pointer
}

.rating>label::before {
    content: "\2605";
    position: absolute;
    opacity: 0
}

.rating>label:hover:before,
.rating>label:hover~label:before {
    opacity: 1 !important
}

.rating>input:checked~label:before {
    opacity: 1
}

.rating:hover>input:checked~label:before {
    opacity: 0.4
}



.rating-submit {
    border-radius: 8px;
    color: #fff;
    height: auto
}

.rating-submit:hover {
    color: #fff
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: #000;

}

/*New style added sor sidebar design update */

.header-sidebar-button{margin-right: 20px;}
.sidebar-button a {
    width: 25%;
    padding: 8px 0px;
}

.sidebar-button a:hover {
    color: #fff;
}


@media (max-width:767px) {
    .navbar-nav {
        justify-content: center;
        align-items: center;
        padding: 30px 0px !important;
        gap: 20px;
    }

    .navbar-nav .ms-auto {
        margin-left: unset !important;
    }
}

.accordion-button:focus {
    z-index: 3;
    border-color: #b91c22;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(255 233 232);
}

.accordion-button:not(.collapsed) {
    color: #b91c22;
    background-color: #fff8f8;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .125);
}

.accordion-button:not(.collapsed)::after {
    filter: grayscale(100%);
}

a:hover {
    color: #b91c22;
}

.blog-img {
    height: 300px;
    overflow: hidden;
 
}

.blog-img img{height: 100%; object-fit: cover;}

::-webkit-scrollbar{-webkit-appearance:none;width:6px}
::-webkit-scrollbar-thumb{border-radius:4px;background-color:rgba(0, 0, 0, 0.5);box-shadow:0 0 1px rgba(255,255,255,.5);-webkit-box-shadow:0 0 1px rgba(255,255,255,.5)}






/*18-12-2025 css*/
.navbar-light .navbar-nav .nav-link{
    font-size: 20px;
}
.header-sidebar-button{
    position: absolute;
    left: 30px;
    top: 20px;
}
.tp-widget-review .header{
    line-height: 16px;
}
.header-sidebar-button{
    color: #fff;
    font-size: 30px;
    background: transparent !important;
}
.header-sidebar-button:hover{
     color: #fff;
}
.header-sidebar-button:focus{
    box-shadow: none;
}
.testimonial-item .rating::before{
    width: calc((var(--rating, 0) / 6) * 100%);
}
.owl-item:nth-child(even) .testimonial-item .rating::before{
    width: calc((var(--rating, 0) / 5) * 100%);
}
.navbar .nav-item .dropdown-menu{
    background: #fff;
}
.navbar .dropdown-item{
    background: #fff;
}

.sticky-top .header-sidebar-button{
        top: 6px;
}
#offcanvasExample .btn-close:focus{
    box-shadow: none;
}

@media (max-width: 1600px){
    .header-sidebar-button{
        left: 15px;
    }
}
@media (max-width: 992px){
    .navbar-light .navbar-brand{
        margin-left: 40px;
    }  
    .header-sidebar-button {
        top: 7px;
    }
    .navbar-nav .dropdown-menu {
        position: absolute;
    }
}
@media (max-width: 767px) {
    .navbar-light .navbar-brand {
        margin-left: 60px;
    }
    .header-sidebar-button {
        left: 5px;
    }
}







/* ============================================
   COSMOS SIDEBAR - Fully Scoped to #offcanvasExample
   ============================================ */

/* Main Container */
#offcanvasExample {
  width: 340px;
  max-width: 100%;
  background: #ffffff;
  border: none;
  box-shadow: 8px 0 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: absolute;
}

#offcanvasExample::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.06) 0%, transparent 70%);
  animation: cosmosFloatOrb 15s ease-in-out infinite;
  pointer-events: none;
}

#offcanvasExample::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
  animation: cosmosFloatOrb 12s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes cosmosFloatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Header */
#offcanvasExample .offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 24px 20px;
  background: transparent;
  border-bottom: none;
  position: relative;
  z-index: 10;
}

#offcanvasExample .offcanvas-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  margin: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #b91c1c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

#offcanvasExample .btn-close {
  width: 36px;
  height: 36px;
  background: #f8f8f8;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  opacity: 1;
  padding: 0;
}

#offcanvasExample .btn-close::before {
  content: '×';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  line-height: 1;
}

#offcanvasExample .btn-close:hover {
  background: #fee2e2;
  border-color: #fecaca;
  color: #dc2626;
  transform: rotate(90deg);
}

/* Body */
#offcanvasExample .offcanvas-body {
  padding: 0;
  overflow-y: auto;
  position: relative;
  z-index: 10;
}

#offcanvasExample .offcanvas-body.border-top {
  border-top: 1px solid #f0f0f0 !important;
}

#offcanvasExample .offcanvas-body::-webkit-scrollbar {
  width: 4px;
}

#offcanvasExample .offcanvas-body::-webkit-scrollbar-track {
  background: #f5f5f5;
}

#offcanvasExample .offcanvas-body::-webkit-scrollbar-thumb {
  background: #dc2626;
  border-radius: 10px;
}

#offcanvasExample .flex-shrink-0 {
  background: transparent !important;
}

#offcanvasExample .bg-white {
  background: transparent !important;
}

/* User Card */
#offcanvasExample .card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  margin: 20px;
  padding: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

#offcanvasExample .card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.03), transparent);
  transition: left 0.6s ease;
}

#offcanvasExample .card:hover::before {
  left: 100%;
}

#offcanvasExample .card:hover {
  transform: translateY(-3px);
  border-color: #fecaca;
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.08);
}

#offcanvasExample .card .d-flex {
  display: flex;
}

#offcanvasExample .card .align-items-center {
  align-items: center;
}

#offcanvasExample .card .p-2 {
  padding: 20px !important;
}

#offcanvasExample .card .px-1 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#offcanvasExample .card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px !important;
}

#offcanvasExample .card .mb-0 {
  margin-bottom: 0 !important;
}

#offcanvasExample #referralCode {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
}

#offcanvasExample #copyButton {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 6px 10px;
  margin-left: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #2563eb;
}

#offcanvasExample #copyButton:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

#offcanvasExample #copyButton i {
  font-size: 12px;
}

/* Balance Section */
#offcanvasExample .bg-primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%) !important;
  margin: 0 20px;
  border-radius: 20px;
  padding: 24px !important;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(220, 38, 38, 0.25);
}

#offcanvasExample .bg-primary::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

#offcanvasExample .bg-primary .d-flex {
  display: flex;
}

#offcanvasExample .bg-primary .flex-column {
  flex-direction: column;
}

#offcanvasExample .bg-primary .justify-content-between {
  justify-content: space-between;
}

#offcanvasExample .bg-primary .text-center {
  text-align: center;
}

#offcanvasExample .bg-primary .text-white {
  color: #fff !important;
}

#offcanvasExample .bg-primary .d-flex.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

#offcanvasExample .bg-primary .number1,
#offcanvasExample .bg-primary .number2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

#offcanvasExample .bg-primary .fw-bold {
  font-weight: 700;
}

#offcanvasExample .bg-primary .articles,
#offcanvasExample .bg-primary .followers {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

#offcanvasExample .mt-2 {
  margin-top: 0.5rem;
}

/* Quick Action Buttons */
#offcanvasExample .sidebar-button {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  margin: 24px 0 !important;
}

#offcanvasExample .sidebar-button.my-3 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

#offcanvasExample .sidebar-button.d-flex {
  display: flex;
}

#offcanvasExample .sidebar-button.align-items-center {
  align-items: center;
}

#offcanvasExample .sidebar-button .btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 8px;
  background: #fff;
  border: 2px solid #fecaca;
  border-radius: 16px;
  color: #dc2626;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

#offcanvasExample .sidebar-button .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

#offcanvasExample .sidebar-button .btn:hover::before {
  opacity: 1;
}

#offcanvasExample .sidebar-button .btn:hover {
  color: #fff;
  border-color: #dc2626;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.25);
}

#offcanvasExample .sidebar-button .btn.btn-sm {
  padding: 12px 8px;
}

#offcanvasExample .sidebar-button .btn.btn-outline-primary {
  border-color: #fecaca;
  color: #dc2626;
  background: #fff;
}
#offcanvasExample .sidebar-button .btn.btn-outline-primary:hover{
    color: #fff;
}

#offcanvasExample .sidebar-button .btn i {
  font-size: 18px;
  margin-bottom: 8px;
  display: block !important;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

#offcanvasExample .sidebar-button .btn i.d-block {
  display: block !important;
}

#offcanvasExample .sidebar-button .btn:hover i {
  transform: scale(1.2);
}

/* Divider */
#offcanvasExample hr {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e5e5e5, transparent);
  margin: 16px 20px;
}

/* Navigation List */
#offcanvasExample .list-unstyled {
  list-style: none;
  padding: 0 12px !important;
  margin: 0;
}

#offcanvasExample .list-unstyled.ps-0 {
  padding-left: 12px !important;
}

#offcanvasExample .list-unstyled li {
  margin-bottom: 4px !important;
}

#offcanvasExample .list-unstyled li.mb-1 {
  margin-bottom: 4px !important;
}

#offcanvasExample .list-unstyled li a {
  display: flex;
  align-items: center;
  padding: 9px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 14px;
  transition: all 0.3s ease;
  position: relative;
}

#offcanvasExample .list-unstyled li a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #dc2626, #b91c1c);
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

#offcanvasExample .list-unstyled li a:hover::before {
  height: 60%;
}

#offcanvasExample .list-unstyled li a:hover {
  background: #fef2f2;
  color: #dc2626;
  padding-left: 24px;
}

#offcanvasExample .list-unstyled li a i {
  width: 28px;
  margin-right: 16px;
  font-size: 16px;
  color: #9ca3af;
  text-align: center;
  transition: all 0.3s ease;
}

#offcanvasExample .list-unstyled li a:hover i {
  color: #dc2626;
  transform: scale(1.15);
}

/* Logout Link */
#offcanvasExample .list-unstyled li a.text-primary {
  color: #dc2626 !important;
}

#offcanvasExample .list-unstyled li a.text-primary i {
  color: #dc2626;
}

#offcanvasExample .list-unstyled li a.text-primary:hover {
  background: #fee2e2;
}

#offcanvasExample #logout-form {
  display: none;
}

/* Animations */
@keyframes cosmosFadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

#offcanvasExample.show .card { 
  animation: cosmosFadeInUp 0.5s ease 0.1s both; 
}

#offcanvasExample.show .bg-primary { 
  animation: cosmosFadeInUp 0.5s ease 0.2s both; 
}

#offcanvasExample.show .sidebar-button { 
  animation: cosmosFadeInUp 0.5s ease 0.3s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(1) { 
  animation: cosmosFadeInUp 0.4s ease 0.35s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(2) { 
  animation: cosmosFadeInUp 0.4s ease 0.4s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(3) { 
  animation: cosmosFadeInUp 0.4s ease 0.45s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(4) { 
  animation: cosmosFadeInUp 0.4s ease 0.5s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(5) { 
  animation: cosmosFadeInUp 0.4s ease 0.55s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(6) { 
  animation: cosmosFadeInUp 0.4s ease 0.6s both; 
}

#offcanvasExample.show .list-unstyled li:nth-child(7) { 
  animation: cosmosFadeInUp 0.4s ease 0.65s both; 
}

/* Responsive */
@media (max-width: 380px) {
  #offcanvasExample { 
    width: 100%; 
  }
  
  #offcanvasExample .sidebar-button .btn { 
    padding: 12px 6px; 
    font-size: 10px; 
  }
  
  #offcanvasExample .bg-primary .number1,
  #offcanvasExample .bg-primary .number2 { 
    font-size: 20px; 
  }
}
