
/*** 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 {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 #ed1b24 !important;
    color: white !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -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: 'Roboto', sans-serif;
    position: relative;
    padding: 35px 15px;
    color: var(--bs-white) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-white) !important;
}

.navbar-light .navbar-brand h1 {
    color: var(--bs-white);
}

.sticky-top.navbar-light .navbar-brand h1 {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    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: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar-light .navbar-brand h1 {
        color: var(--bs-primary);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-nav .nav-link:hover,
    .navbar-light .navbar-nav .nav-link.active  {
        color: var(--bs-primary) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 87px;
    }
}
@media (max-width: 468px) {

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 6px 12px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
    .navbar-light .navbar-brand img {
        width: 180px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 0;
        bottom: -1px;
        left: 0;
        background: var(--bs-primary);
        transition: .5s;
        z-index: -1;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        height: calc(100% + 1px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
    .navbar-light .navbar-brand img {
        max-height: 87px;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev,
.carousel-header .carousel-control-next {
    background: transparent;
}

.carousel-header .carousel-control-prev .carousel-control-prev-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;
    background-size: 60% 60%;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 25px 30px;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60% 60%;

}

.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    opacity: 0;
}

.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;
    padding-top: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5)); */
    background-size: cover;
}

@media (max-width: 768px) {
    .carousel-header .carousel-inner .carousel-item img,
    .carousel-header .carousel-inner .carousel-item .carousel-caption {
        height: 700px;
        margin-top: -100px;
    }

    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
    .search-bar {
        margin-top: -100px;
        transition: 0.5s;
    }
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(19, 53, 123, 0.5), rgba(19, 53, 123, 0.5)), url(../img/breadcrumb-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 150px 0 50px 0;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}


/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .container .section-about-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.about .container .section-about-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
/*** About End ***/


/*** Services Start ***/
.service .service-content-inner {
    transition: 0.5s;
}
.service .service-content-inner:hover {
    position: relative;
    background: var(--bs-primary) !important;
}

.service .service-content-inner .service-content h5,
.service .service-content-inner .service-content p,
.service .service-content-inner .service-icon i {
    transition: 0.5s;
}

.service .service-content-inner:hover .service-content h5,
.service .service-content-inner:hover .service-content p,
.service .service-content-inner:hover .service-icon i {
    color: var(--bs-white) !important;
}
/*** Service End ***/


/*** Destination Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;
    top: 50%;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.destination .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(30, 77, 173, 0.4);
}

/* .destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
} */
.destination-img {
    position: relative;
    
}

/* Container to ensure images fit properly */
.destination-img1 {
    position: relative;
    overflow: hidden;
    width: 100%; /* Ensure the container takes full width of its parent */
    padding-top: 75%; /* Set aspect ratio for the container (adjust as needed) */
    cursor: pointer; /* Changes cursor to pointer on hover */
}

/* Image styles to ensure it covers the container */
.destination-img1 img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure image covers the container */
    transition: transform 0.5s ease; /* Smooth transition for hover effect */
    transform: translate(-50%, -50%);
}

/* Hover effect for scaling the image */
.destination-img1:hover img {
    transform: translate(-50%, -50%) scale(1.1); /* Adjust scale factor as needed */
}

/* Optional: Add styles for text overlay if needed */
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    /* Add more styling as needed */
}


.text-main {
    font-size: 1.4rem; /* Adjust font size as needed */
    font-family: "Audiowide", sans-serif;
    font-weight: bold; /* Optional: make text bold */
    margin-bottom: 0.1rem; /* Space between title and link */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Optional: add shadow for better visibility */
}

.text-link {
    font-size: 1rem; /* Adjust font size for the link */
    font-style: italic;
    color: white; /* Adjust color for the link */
    text-decoration: underline; /* Underline link */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); /* Optional: add shadow for better visibility */
}

.text-link:hover {
    color: #ffd700; /* Optional: Change color on hover */
}



.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** Destination End ***/


/*** Packages Start ***/
.packages .packages-item .packages-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    z-index: 1;
}

.packages .packages-item .packages-img .packages-info {
    background: rgba(0, 0, 0, .3);
}

.packages .packages-item .packages-img .packages-info small,
.packages .packages-item .packages-img .packages-info small i {
    color: var(--bs-white);
    transition: 0.5s;
}

.packages .packages-item .packages-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 0px solid;
    border-radius: 10px !important;
    visibility: hidden;
    transition: 0.7s;
    z-index: 3;
}

.packages .packages-item .packages-img:hover.packages-img::after {
    width: 100%;
    height: 100%;
    border: 300px solid;
    border-color: rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6) rgba(19, 53, 123, 0.6);
    visibility: visible;
}

.packages .packages-item .packages-img small,
.packages .packages-item .packages-img small i {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover small,
.packages .packages-item .packages-img:hover small i {
    color: var(--bs-white) !important;

}

.packages .packages-item .packages-img img {
    transition: 0.5s;
}

.packages .packages-item .packages-img:hover img {
    transform: scale(1.3);
}

.packages .packages-item .packages-img .packages-price {
    position: absolute;
    width: 100px; 
    top: 0; 
    left: 50%; 
    transform: translateX(-50%);
    display: inline-block;
    background: var(--bs-primary);
    color: var(--bs-white);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px; 
    z-index: 5;
}

.packages .packages-carousel {
    position: relative;
}

.packages .packages-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -50px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-next {
    position: absolute;
    top: -50px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev i,
.packages .packages-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.packages .packages-carousel .owl-nav .owl-prev:hover,
.packages .packages-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.packages .packages-carousel .owl-nav .owl-prev:hover i,
.packages .packages-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}
/*** Packages End ***/


/*** Explore Tour Start ***/
.ExploreTour .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.ExploreTour .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.ExploreTour .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}


/* National Tour Start */
.ExploreTour #NationalTab-1 .national-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #NationalTab-1 .national-item img {
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #NationalTab-1 .national-item .national-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #NationalTab-1 .national-item .national-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #NationalTab-1 .national-item:hover .national-plus-icon {
    opacity: 1;
}

.ExploreTour #NationalTab-1 .national-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 40px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

/* International Tour Start */
.ExploreTour #InternationalTab-2 .international-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .international-item img {
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover img {
    transform: scale(1.2);
}

.ExploreTour #InternationalTab-2 .international-item .tour-offer {
    position: absolute;
    top: -1px;
    left: -1px;
    padding: 20px;
    border-top-right-radius: 30px;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 80px;
    background: var(--bs-primary);
    color: var(--bs-white);
}

.ExploreTour #InternationalTab-2 .international-item .international-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    padding: 20px;
    background: rgba(0, 0, 0, .3);
    display: flex;
    align-items: end;
    justify-content: center;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-content {
    background: rgba(19, 53, 123, .6);
}

.ExploreTour #InternationalTab-2 .international-item .international-content .international-info a {
    font-size: 14px;
}

.ExploreTour #InternationalTab-2 .international-item .international-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.ExploreTour #InternationalTab-2 .international-item:hover .international-plus-icon {
    opacity: 1;
}

/* carousel Start */
.ExploreTour #InternationalTab-2 .InternationalTour-carousel .international-item {
    position: relative;
    overflow: hidden;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.ExploreTour #InternationalTab-2 .InternationalTour-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}
/*** Explore Tour End ***/


/*** Gallery Start ***/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    min-height: 300px;
    object-fit: cover;
}

.gallery .gallery-item .gallery-content {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-content .gallery-info {
    position: relative;
    margin-bottom: -100%;
    opacity: 0;
    transition: 0.5s;
}

.gallery .gallery-item .gallery-plus-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
}

.gallery .gallery-item:hover .gallery-content .gallery-info,
.gallery .gallery-item:hover .gallery-plus-icon {
   opacity: 1;
   margin: 0;
}

.gallery .gallery-item img {
    transition: 0.5s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.2);
}

.gallery .gallery-item:hover .gallery-content {
    background: rgba(19, 53, 123, 0.8);
}

.gallery .tab-class .nav-item {
    padding: 0 0 20px 0;
}
.gallery .tab-class .nav-item a.active {
    background: var(--bs-primary) !important;
}

.gallery .tab-class .nav-item a.active span {
    color: var(--bs-white) !important;
}

/*** Gallery End ***/

/*** Tour Booking Start ***/
.booking {
    background: linear-gradient(rgba(19, 53, 123, .8), rgba(19, 53, 123, .8)), url(../img/tour-booking-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
}


.booking .container .section-booking-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.booking .container .section-booking-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.booking .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.booking .container form .btn.btn-primary:hover {
    box-shadow: inset 800px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}



/*** Tour Booking end ***/

/*** Travel Guide Start ***/
.guide .guide-item .guide-img {
    position: relative;
}

.guide .guide-item .guide-img .guide-icon {
    position: absolute;
    bottom: 0; 
    left: 50%; 
    transform: translate(-50%, -50%);
    margin-bottom: -50px;
    display: flex;
    justify-content: center;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
    z-index: 9;
}

.guide .guide-item .guide-img .guide-img-efects {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.guide .guide-item .guide-img .guide-img-efects::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-img-efects::after {
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    background: rgba(19, 53, 123, .5);
}

.guide .guide-item .guide-img-efects img {
    transition: 0.5s;
}
.guide .guide-item:hover .guide-img-efects img {
    transform: scale(1.1);
}

.guide .guide-item .guide-title {
    position: relative;
    background: var(--bs-light);
    transition: 0.5s;
}

.guide .guide-item .guide-title::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title::after {
    height: 100%;
    background: var(--bs-primary) !important;
    color: var(--bs-white);
}

.guide .guide-item .guide-title .guide-title-inner,
.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    transition: 0.5s;
}

.guide .guide-item:hover .guide-title .guide-title-inner {
    position: relative;
    color: var(--bs-white) !important;
    z-index: 2;
}

.guide .guide-item:hover .guide-title .guide-title-inner h4 {
    color: var(--bs-white);
}
/* Optional: Media Query for specific range adjustments */
@media (min-width: 992px) and (max-width: 1285px) {
    .guide .guide-item .guide-img {
        height: 250px; /* Ensure the height is consistent within this range */
    }
}
/*** Travel Guide End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
}

.blog .blog-item .blog-img .blog-info {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    display: flex;
    background: rgba(255, 255, 255, .2);
    color: var(--bs-white);
}

.blog .blog-item .blog-img .blog-img-inner {
    position: relative;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon {
    position: absolute;
    width: 100%;
    height: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.blog .blog-item .blog-img .blog-img-inner .blog-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon a {
    opacity: 1;
}

.blog .blog-item .blog-img:hover .blog-img-inner .blog-icon {
    height: 100%;
    background: rgba(19, 53, 123, .6);
    opacity: 1;
}

.blog .blog-item .blog-img .blog-img-inner {
    overflow: hidden;
}

.blog .blog-item .blog-img .blog-img-inner img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover .blog-img-inner img {
    transform: scale(1.2);
}
/*** Blog End ***/

/*** Testimonial Start ***/
.testimonial .testimonial-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-img {
    position: relative;
    width: 100px; 
    height: 100px; 
    top: 0; left: 50%; 
    transform: translate(-50%, -50%);
    border: 3px solid var(--bs-primary); 
    border-style: dotted;
    border-radius: 50%;
}

.testimonial .testimonial-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-dot.active {
    width: 40px;
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: -55px;
    left: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: -55px;
    right: 0;
    padding: 5px 30px;
    border: 1px solid var(--bs-primary);
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev i,
.testimonial .testimonial-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.testimonial .testimonial-carousel .owl-nav .owl-prev:hover i,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-comment {
    background: var(--bs-primary) !important;
    color: var(--bs-white);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-item.center .testimonial-item .testimonial-img {
    border: 3px solid var(--bs-white); 
    border-style: dotted;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact .container form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .container form .btn.btn-primary:hover {
    box-shadow: inset 1000px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}
/*** Contact End ***/

/*** Subscribe Start ***/
.subscribe {
    background: linear-gradient(rgba(19, 53, 123, .6), rgba(19, 53, 123, .6)), url(../img/subscribe-img.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.subscribe .subscribe-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-white);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

.subscribe .subscribe-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark) !important;
}
/*** copyright end ***/

.logoimage{
    background-color: rgba(255, 255, 255, 0.3); /* Adjust the last value (opacity) as needed */
    border-radius: 12px;
    padding: 2px 0px;   
}

.logo-container {
    width: 240px; /* Set the container width */
    height: auto; /* Height adjusts according to the content */
}

.logoimage {
    width: 100%; /* Image takes the full width of the container */
    height: auto; /* Maintain aspect ratio */
}


.phone-number {
    margin: 5px 0; /* Adjust margin as needed to control spacing between paragraphs */
}

.navbar {
    border-bottom: none; /* Add this line to remove the bottom border */
}

/* Apply Flexbox to .row to distribute columns */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Ensure each .service-content-inner stretches to the same height */
.service-content-inner {
    display: flex;
    align-items: stretch; /* Ensures all child items (content and icon) stretch equally */
    background: #fff;
    border: 1px solid #007bff; /* Primary color border */
    border-radius: .25rem; /* Rounded corners */
    padding: 1rem;
    box-sizing: border-box;
    flex: 1 1 100%; /* Allow the item to grow and take full width in the row */
    min-height: 300px; /* Optional: Ensure a minimum height for better visual consistency */
}

/* Ensure the content section expands to fill available space */
.service-content {
    flex: 1; /* Allows this section to grow and fill available space */
}

/* Ensure the icon section doesn't shrink */
.service-icon {
    flex-shrink: 0; /* Prevents icon area from shrinking */
    padding: 1rem; /* Consistent padding */
}


@media (max-width: 468px) {
    .img {
        max-height: 780px !important;    
    }
}

html {
    scroll-behavior: smooth;
  }
   
.categories{
    font-size: 19px;
    font-weight: bolder;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.round{
    border-radius: 14px;
}

.icon-container {
    position: absolute;
    top: 10px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px; /* Adjust spacing between icons */
    z-index: 10; /* Ensure icons are above other content */
}


/* Hide icon container for larger screens */
@media (min-width: 992px) {
    .icon-container {
        display: none;
    }
}

.container {
    overflow-x: hidden;
}

.container-fluid.copyright {
    padding: 0;
    margin: 0;
}

/* Default styles for larger screens */
.image-fluid {
    width: 100%;
    max-height: 310px;
    height: auto;
    object-fit: cover; /* Ensures the image maintains its aspect ratio */
  }
  
  /* Styles for screens smaller than 768px */
  @media (max-width: 768px) {
    .image-fluid {
      max-height: none; /* Removes the max-height restriction */
    }
  }
  
  /* Initial state */
.animated-title {
    transform: translateY(-50px); /* Move the title up initially */
    opacity: 0; /* Make it invisible initially */
    transition: transform 2s ease-out, opacity 0.6s ease-out; /* Animation effect */
}

/* Animated state */
.animated-title.animate {
    transform: translateY(0); /* Move the title to its original position */
    opacity: 1; /* Make it visible */
}

/* Initial state for the h5 */
.animated-subtitle {
    transform: translateY(-50px); /* Move the subtitle up initially */
    opacity: 0; /* Make it invisible initially */
    transition: transform 2s ease-out, opacity 0.6s ease-out; /* Animation effect */
}

/* Animated state for the h5 */
.animated-subtitle.animate {
    transform: translateY(0); /* Move the subtitle to its original position */
    opacity: 1; /* Make it visible */
}



/* Define the keyframes for the scaling animation */
@keyframes scaleUp {
    from {
        transform: scale(0.3); /* Start with a smaller size */
        opacity: 0.1; /* Optional: Start with reduced opacity */
    }
    to {
        transform: scale(1); /* End with the original size */
        opacity: 1; /* Optional: End with full opacity */
    }
}

/* Class to initially hide the element and apply animation */
.nav-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item.show {
    animation: scaleUp 2s forwards;
}

@keyframes shake {
    0% { transform: translateY(0); }
    25% { transform: translateY(-15px); }
    50% { transform: translateY(10px); }
    75% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.shake {
    animation: shake 2s ease forwards;
}


 /* Media query for screens smaller than 500px */
 @media (max-width: 500px) {
    .py-5 {
        padding-top: 0.3rem !important; /* Override padding-top */
        
    }
}

@keyframes slideIn {
    0% { transform: translateY(-50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

.slide-in {
    animation: slideIn 1s ease-out forwards;
}

 /* Container for the map and overlay */
 #map-container {
    position: relative;
    width: 100%;
    height: 75vh; /* Full viewport height for responsiveness */
}
/* The map iframe */
#map {
    width: 100%;
    height: 100%;
    border: 0; /* Remove default border */
}
/* The overlay box */
.overlay {
    position: absolute;
    top: 1%; /* Adjust these values for responsiveness */
    left: 0.5%;
    width: 80%; /* Responsive width */
    max-width: 305px; /* Maximum width for larger screens */
    min-height: 121px; /* Minimum height to accommodate content */
    background: rgba(255, 255, 255, 2); /* Semi-transparent background */
    padding: 10px;
    border: 2px solid #0e0d0d;
    border-radius: 5px;
    z-index: 1; /* Ensure the overlay is on top of the map */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Optional shadow for better visibility */
    box-sizing: border-box; /* Include padding and border in width and height */
}
/* Optional media query for extra fine-tuning on different devices */
@media (max-width: 700px) {
    .overlay {
        top: 2%;
        left: 1%;
        width: 80%;
        
    }
}
@media (max-width: 460px) {
    .overlay {
        top: 1%;
        left: 1%;
        min-height: 10px;  /* Minimum height to accommodate content */
    }
}

    /* Media query for screen widths between 700px and 460px */
    @media (max-width: 700px) and (min-width: 461px) {
        .overlay {
            top: 1%; /* Adjusted positioning */
            left: 1%;
            width: 70%; /* Adjusted width for better fit on smaller screens */
            
        }
    }

    .para1{
        font-size: small;
        color: #0e0d0d;
    }

/* Parent container with Flexbox */
.modal-wrapper {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    position: fixed;         /* Ensure it covers the viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional: semi-transparent background */
    z-index: 1050; /* Ensure it is on top of other content */
}

/* Modal Dialog: Control width, height, and center it */
.modal-dialog1 {
    width: 80%; /* Adjust width as needed */
    max-width: 700px; /* Maximum width */
    max-height: 85vh; /* Maximum height */
    margin: 0; /* Remove default margin */
    background: #fff; /* Background color for visibility */
    border-radius: 0.5rem; /* Optional: border-radius for rounded corners */
}


/* Ensure modal content has border-radius */
.modal-content1 {
    border-radius: 0.5rem;
}

/* Remove border from modal header */
.modal-header1 {
    border-bottom: none;
}

/* Style modal title */
.modal-title1 {
    font-size: 1.5rem; /* Adjust font size as needed */
}

/* Remove border from modal footer */
.modal-footer1 {
    border-top: none;
}

/* Ensure image scales properly */
.modal-body img {
    max-width: 100%; /* Image scales to fit within the modal */
    height: auto;    /* Maintain aspect ratio */
    display: block;  /* Center image horizontally */
    margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-dialog1 {
        width: 90%; /* Wider on smaller screens */
        max-width: none; /* Remove maximum width constraint */
    }
}

@media (max-width: 576px) {
    .modal-dialog1 {
        width: 100%; /* Full width on extra small screens */
        max-width: none; /* Remove maximum width constraint */
    }
}

.mainheading {
    background-color: rgba(229, 226, 226, 0.31); /* Adjust alpha (opacity) value as needed */
    border-radius: 20px;
    padding: 6px;
}
.mainheading2 {
    background-color: rgba(229, 226, 226, 0.31); /* Adjust alpha (opacity) value as needed */
    border-radius: 6px;
    padding: 4px;
}
.mainheading2, .mainheading {
    display: block; /* Ensure the headings are treated as block elements */
}
.carousel-caption {
    display: flex;
    flex-direction: column; /* Stacks child elements vertically */
    align-items: center; /* Center-aligns child elements horizontally */
}

.section-title2 {
    font-size: 1rem; /* Start size */
    transform: scale(0.5); /* Start scaled down */
    opacity: 0; /* Start invisible */
    animation: scaleUp 1s forwards; /* Apply the animation */
  }
  
  @keyframes scaleUp {
    0% {
      transform: scale(0.3);
      opacity: 0;
    }
    100% {
      transform: scale(1); /* Original size */
      opacity: 1; /* Fully visible */
    }
  }
  
/* WhatsApp Icon Styling */
.whatsapp-icon {
    position: fixed;
    bottom: 100px;
    right: 33px;
    width: 40px; /* Set width */
    height: 40px; /* Set height */
    background-color: #25D366; /* WhatsApp green color */
    color: white;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9); /* Adjusted shadow for better visibility */
    z-index: 9999;
    text-decoration: none;
    animation: pulse 1.5s infinite; /* Apply scaling animation */
}

.whatsapp-icon:hover {
    background-color: #3bf43b; /* Darker WhatsApp green color */
}

/* Define the scaling animation */
@keyframes pulse {
    0% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.2); /* Scale up */
    }
    100% {
        transform: scale(1); /* Back to original size */
    }
}

@media (max-width: 478px) {
    .whatsapp-icon {       
        bottom: 100px;
        right: 33px;
        width: 38px; /* Set width */
        height: 38px; /* Set height */
        font-size: 20px;
    }
}
.call-icon {
    position: fixed; /* Fixed position to keep it in the same place on the screen */
    bottom: 153px;
    right: 33px;
    width: 41px; /* Set width */
    height: 41px; /* Set height */
    background-color: #d32525; /* Background color (similar to WhatsApp) */
    color: white;
    border-radius: 30%; /* Ensure it's round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 5px 4px 8px rgba(0, 0, 0, 0.9); /* Adjusted shadow for better visibility */
    z-index: 9999;
    font-size: 18px; /* Icon size */
    z-index: 1000; /* Ensure it is above other content */
    transition: background-color 0.3s ease; /* Smooth background color transition */
}

.call-icon:hover {
    background-color: #ff1d1d; /* Darker background on hover */
}

.footer-bank-card {
    display: flex;
    align-items: center; /* Vertically align items */
    justify-content: center; /* Center items horizontally if needed */
}

.footer-bank-card img {
    display: block; /* Remove bottom space */
    margin-top: 0; /* Default margin, adjust if needed */
    margin-bottom: 0; /* Default margin, adjust if needed */
    transform: translateY(-3px); /* Adjust the vertical position */
    
}
@media (max-width: 768px) {
    .footer-bank-card {
        display: flex;
        align-items: center; /* Vertically align items */
        justify-content: left; /* Center items horizontally if needed */
    }
    .footer-item{
        text-align: left !important;
    }
}
@media (min-width: 1200px) {
    .footer-item1{
        padding-left: 380px;
    }
}

.maketoleft {
    text-align: left; /* Align heading to the left */
}


/* Modal styles */
.modal2 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    
}

.modal-content2 {
    background-color: #fefefe;
    margin: 13% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 25%; /* Could be more or less, depending on screen size */
    min-height: 30vh; /* Minimum height */
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-box i {
    font-size: 30px; /* Adjust size as needed */
    margin-right: 10px; /* Adjust the space between icon and text */
}

.modal-box {
    border: 2px solid transparent; /* Default border */
    transition: border 0.3s ease;  /* Smooth transition for border change */
    padding: 5px; /* Optional: Add padding for better spacing */
    margin: 10px;  /* Optional: Add margin for spacing between boxes */
}

.modal-box:hover {
    border-color: black; /* Border color on hover */
}

@media (max-width: 1268px) {
    .modal-content2 {
        background-color: #fefefe;
        margin: 20% auto; /* 15% from the top and centered */
        padding: 20px;
        width: 40%; /* Could be more or less, depending on screen size */
        min-height: 20vh; /* Minimum height */
    }  
}
@media (max-width: 768px) {
    .modal-content2 {
        margin: 32% auto; 
        padding: 10px;
        width: 50%; /* Could be more or less, depending on screen size */
    }  
    .modal-box i {
        font-size: 25px; /* Adjust size as needed */
    }
}
@media (max-width: 500px) {
    .modal-content2 {
        margin: 43% auto; 
        padding: 5px;
        width: 64%; /* Could be more or less, depending on screen size */
    }  
    .modal-box i {
        font-size: 22px; /* Adjust size as needed */
    }
}
.inbox1{
    border: 1px solid black;
    padding: 10px;
    margin: 10px; /* Adjust the margin as needed */ 
    border-radius: 10px;
}

.hotels{
    font-size: medium;
    color: #0e0d0d;
    font-weight: 600;
}

.inbox2{
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    margin: 10px; /* Adjust the margin as needed */
}


.search-icon1 {
    position: absolute;
    top: 20%;
    left: 10%;
    transform: translate(-50%, -50%);
    z-index: 10; /* Ensures it appears on top of other elements */
}


/* Modal Styles */
.modal3 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content3 {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    width: 80%;
    max-width: 600px;
    text-align: center;
    position: relative; /* Ensure close button is positioned relative to modal content */
    margin: 14.75rem auto;
}

/* Close button styling */
.modal-content3 .close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* OK button styling */
#okButton {
    margin-top: 15px;
}

.blue-bg-white-text {
    background-color: rgba(19, 53, 123);
    color: white;
    padding: 5px; /* Optional padding for better spacing */
    border-radius: 5px; /* Optional rounded corners */
}

.custom-width {
    max-width: 360px; /* Set your desired maximum width */

}

.slider {
    position: relative;
    overflow: hidden;
    width: 100%; /* Full width */
    height: 80vh; /* Set height to 50% of the viewport height, adjust as needed */
}

.slider img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto; /* Maintain aspect ratio */
    height: 100%; /* Fill height of the container */
    min-width: 100%; /* Ensure it covers the container */
    min-height: 100%; /* Ensure it covers the container */
    transform: translate(-50%, -50%); /* Center the image */
    opacity: 0; /* Start hidden */
    transition: opacity 1s ease-in-out; /* Smooth transition */
}

.slider img.active {
    opacity: 1; /* Visible when active */
}
/* Media query for mobile screens */
@media (max-width: 575px) {
    .slider {
        height: 55vh; /* Reduced height for mobile screens */
    }
}

.modal4 {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

.modal-content4 {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
}

.close4 {
    position: absolute;
    top: 5px;
    right: 15px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

@media (max-width: 768px) {
    .close4 {
        top: 10%;
        right: 18px;
    }
}

@media (max-width: 575px) {
    .close4 {
        top: 22%;
        right: 15px;
    }
}

@media (max-width: 992px) {
    .hide-on-mobile .container {
        padding: 0px 0 0px 0 !important; /* Adjust padding for smaller screens */
    }
}

@media (max-width: 576px) {
    .hide-on-mobile {
        display: none;
    }
}
