
/*** 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 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}


.btn.btn-dark{
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-dark:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-dark);
      font-weight: 700;
       font-size: 2rem;
}

.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-white{
     background-color: #ffffff;
    border-radius: 50px;
    padding: 10px 10px; /* 20px top and bottom, 40px left and right */
    box-shadow: 0 25px 20px -20px rgba(0,0,0,0.4);
    margin-right: 10px;
}
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    padding: 4px 15px;
   
    color: var(--bs-dark) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;

}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 4px 15px;
    color: var(--bs-dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-dark) !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: 40px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.nav-box {  
    display: inline-block;
    list-style: none;
    padding: 5px 10px;                   /* Adjust padding to reduce height */
              
    margin: 0 5px;                       /* Spacing between boxes */
    color: #777; /* Semi-transparent background */
    line-height: 1;  
    cursor: pointer;                    /* Set line height to reduce height */
    font-size: 14px;                     /* Adjust font size if necessary */
    transition: color 0.5s;   /* Smooth background transition */

   position: relative;
   z-index: 2;
}
.nav-box::after{
    content: '';
    background: #8c8888;
    width: 100%;
    height: 100%;
    border-radius: 30px; 
    position: absolute;  
    top:100%;
    left:50%; 
    transform: translate(-50%, -50%);
    z-index: -1;
    opacity: 0;
    transition: top 0.5s, opacity 0.5s;
   
}

.nav-box:hover {
   color:#fff;

}     


.nav-box:hover::after {
top:50%;
opacity: 1;
}  






@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: 8px;
        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-white) !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: 1px solid rgba(91, 14, 14, 0.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;
        border-radius: 8px;
    } */

    .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;
    }
}


/* Logo Box styling */
.logo-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    z-index: 1;
}

.logo-box img {
    display: block;
    height: 60px;
    transition: .5s;
}

/* Slanted Right Edge Background */
.logo-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 110%;
    height: 100%;
    background: linear-gradient(180deg, #ffffff, #807777);
    clip-path: polygon(0 0, 90% 0 , 100% 100%, 0 100%); 
    z-index: -1;
}

/* Medium screen adjustments */
@media (max-width: 991.98px) {
    

    .logo-box::after {
        width:300px;
        margin-left:-50px;
      
      
    }
}

/* Small screen adjustments */
@media (max-width: 767.98px) {
    

    .logo-box::after {
        margin-left:-50px;
     
    }
}

/* Extra-small screen adjustments */
@media (max-width: 575.98px) {
    .logo-box img {
        max-height: 30px;
    }

    .logo-box::after {
        width: 300px;
        margin-left:-50px;
    }
}

/* Navbar link styling for desktop and mobile */
.navbar .nav-item {
    margin: 0 10px;
}

.navbar .nav-link {
    font-size: 1rem;
    font-weight: 500;
}

.navbar-toggler {
    border: none;
}

/* Active link styling */


/* Navbar adjustments for mobile display */
@media (max-width: 991.98px) {
    .navbar {
        display: flex;
        align-items: center;
        padding: 10px 20px;
    }

    .navbar-white{
     background-color:#c6bebe;
    border-radius: 10px;
    padding: 10px 20px; 
    box-shadow: 0 25px 20px -20px rgba(0,0,0,0.4);
    margin-top: 10px;
    justify-content: center;
        align-items: center; 
        text-align: center;
   
   
}
.nav-box {
   width: 100px;
   padding: 70px;
   margin-left: -70px;


}  
    .navbar .navbar-brand {
        flex: 1; /* Ensures logo-box doesn't shrink */
    }
}


/*** Carousel Hero Header Start ***/
.carousel-header {
    height: 100vh; 
    /* You can adjust the percentage based on how much of the viewport you want the carousel to occupy */
}

.carousel-inner {
    height: 100vh;
    display: flex;
    align-items: center; /* Vertically centers content */
}
.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: 100vh;
      
       
    }
    .carousel-word-start{
        margin-top: -150px;
    }
   
.carousel-header {
    height: 100vh;
 
}

.carousel-inner {
    height: 100vh; /* Matches the height of the header */
    display: flex;
    align-items: center; /* Vertically centers content */
   
}

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        opacity: 0;
    }
    
  
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: white;
                
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding: 50px 0 0 0 ;
}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-secondary) !important;
}
/*** Single Page Hero Header End ***/


/*** About Start ***/
/* .bg-breadcrumb {
    background: linear-gradient(rgba(111, 137, 188, 0.5), rgba(140, 162, 205, 0.5),url('frontend_assets/img/ab.jpeg'));
    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;
}
.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 ***/


/**cities**/
.cities .cities-carousel {
    position: relative;
}

.cities .cities-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;
}

.cities .cities-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;
}

.cities .cities-carousel .owl-nav .owl-prev i,
.cities .cities-carousel .owl-nav .owl-next i {
    color: var(--bs-primary);
    font-size: 17px;
    transition: 0.5s;
}

.cities .cities-carousel .owl-nav .owl-prev:hover,
.cities .cities-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
}

.cities .cities-carousel .owl-nav .owl-prev:hover i,
.cities .cities-carousel .owl-nav .owl-next:hover i {
    color: var(--bs-white);
}


/*** 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;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
   flex: 1 1 20%;
    max-width: 20%;
    padding: 0 0 20px 0;
}
.tab-class .nav-item:nth-child(6),
.tab-class .nav-item:nth-child(7),
.tab-class .nav-item:nth-child(8),
.tab-class .nav-item:nth-child(9) {
    flex: 1 1 20%;
    max-width: 20%;
}
.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(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.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-item {
    height: 250px; /* Fixed height for all images */
    width: 100%;   /* Full width for the container */
    position: relative;
    overflow: hidden;
}

.packages-img {
    height: 100%;
    width: 100%;
}

.packages-img img {
    height: 100%;
    width: 100%;
    object-fit: cover; /* Ensures the image fills the container without distortion */
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}


.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;
    width: 100%;  
    height:200px;
}

.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 Mobile Responsive Start ***/

/* For small devices like phones */
@media (max-width: 575.98px) {
    .gallery .gallery-item {
        margin-bottom: 15px; /* Adds some space between items */
    }

    .gallery .gallery-item img {
        min-height: 200px; /* Adjust the image size for smaller screens */
        object-fit: cover;
    }

    .gallery .gallery-item .gallery-content {
        padding: 10px; /* Smaller padding for smaller screens */
        background: rgba(0, 0, 0, 0.5); /* Adjust background transparency */
    }

    .gallery .gallery-item .gallery-plus-icon {
        top: 40%; /* Adjust positioning for better visibility */
        left: 40%;
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.05); /* Less zoom effect on smaller screens */
    }

    .gallery .gallery-item:hover .gallery-content {
        background: rgba(19, 53, 123, 0.6); /* Slightly lighter background on hover */
    }
    
    /* Make sure images stack in a single column on small screens */
    .gallery .row.g-2 {
        display: flex;
        flex-wrap: wrap;
    }

    .gallery .col-sm-6, .gallery .col-md-6, .gallery .col-lg-4, .gallery .col-xl-2 {
        width: 100%; /* Full width on small screens */
        margin-bottom: 15px; /* Space between items */
    }
}

/* For medium devices like tablets */
@media (min-width: 576px) and (max-width: 767.98px) {
    .gallery .gallery-item img {
        min-height: 250px; /* Slightly larger image for tablets */
    }

    .gallery .gallery-item:hover img {
        transform: scale(1.1); /* Moderate zoom effect for tablets */
    }

    /* Allow 2 columns on medium-sized devices */
    .gallery .col-sm-6, .gallery .col-md-6 {
        width: 50%; /* Two columns on medium screens */
        margin-bottom: 15px;
    }
}

/* For larger devices (above tablets) */
@media (min-width: 768px) {
    .gallery .gallery-item img {
        min-height: 300px; /* Maintain the larger height for larger screens */
    }

    /* Three or more columns for larger devices */
    .gallery .col-sm-6, .gallery .col-md-6, .gallery .col-lg-4 {
        width: 33.33%; /* Three columns for larger screens */
    }

    .gallery .col-xl-2 {
        width: 20%; /* Five columns for extra-large screens */
    }
}

/*** 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: 1px;
    border-top-left-radius: 1px;
}

.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: white;
    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);
}
/*** 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:  url(../img/footer.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-dark);
}

.subscribe .subscribe-title::before {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-right: -50px;
    border: 1px solid var(--bs-dark) !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-dark) !important;
}
/*** Subscribe End ***/

/*** Footer Start ***/
.footer {
    height:200px;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 2px solid #bfc1c5; /* Line above the footer */
    border-bottom: 2px solid #a8aaae; /* Line below the footer */
    margin-top: 30px;
    margin-bottom: 60px;
   
}
.footer-links {
    display: flex;
    flex-direction: row;
    gap: 40px; /* Adjust spacing between links as needed */
    flex-wrap: nowrap; /* Prevents wrapping to a new line */
    padding:30px;
    margin-left: -80px;
   
}

.footer-links a {
    color: var(--bs-dark);
    text-decoration: none;
    white-space: nowrap; /* Prevents text from breaking onto multiple lines */
}

.footer-links a:hover {
    text-decoration: underline;
}


.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-dark);
    transition: 0.5s;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-dark);
}


.copyright {
 
    margin-top: -50px;
   

}
/* General Responsiveness for Footer Elements */
@media (max-width: 768px) {
    /* Container for subscribe section */
    .subscribe .container {
        padding: 15px; /* Reduce padding for subscribe section */
    }

    /* Subscribe Title and Description */
    .subscribe-title {
        font-size: 1.25rem; /* Adjust title font size */
    }
    .subscribe h1 {
        font-size: 1.5rem; /* Reduce header size */
        margin-bottom: 20px; /* Adjust spacing */
    }
    .subscribe p {
        font-size: 0.9rem; /* Reduce paragraph size */
        margin-bottom: 20px; /* Adjust spacing */
    }

    /* Email Input and Button */
    .subscribe .position-relative {
        max-width: 100%;
    }
    .subscribe .form-control {
        padding: 10px; /* Reduce input height */
        font-size: 0.9rem; /* Smaller font size */
    }
    .subscribe .btn {
        padding: 8px 16px; /* Smaller button */
        font-size: 0.9rem;
        margin-top: 5px; /* Adjust button position */
    }

    /* Footer Links and Social Icons */
    .footer-item p {
        font-size: 1rem; /* Adjust title font size */
    }


.footer-links {
    font-size: 1rem; /* Adjust link font size */
    display: flex; /* Use flexbox layout */
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align all links to the start */
    margin: 10px; /* Remove margin for the parent container */
    padding: 30px; /* Remove padding for the parent container */
    gap:0;
    margin-top: -40px;
}

.footer-links a {
    display: block; /* Ensures each link takes up full width */
    margin-bottom: 5px; /* Reduce spacing between links (previously 10px) */
    text-decoration: none; /* Remove underline from links */
}

.footer-links a:hover {
    text-decoration: underline; /* Optional: add underline on hover for better visibility */
}   

    /* Social Icons */
    .footer-item .btn-square {
        width: 30px;
        height: 30px;
        font-size: 0.8rem; /* Smaller icon size */
        margin: 0 4px; /* Adjust spacing */
    }

    /* Copyright Section */
    .copyright .text-body {
        font-size: 0.85rem;
    }
    .copyright .text-ash {
        font-size: 0.9rem;
    }
}
/* Responsive Code for Screen Size < 576px */
@media (max-width: 576px) {
    /* Subscribe Section */
    .subscribe .container {
        padding: 10px;
    }

    .subscribe-title {
        font-size: 1.1rem; /* Smaller title size */
    }

    .subscribe h1 {
        font-size: 1.25rem; /* Reduce header size */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .subscribe p {
        font-size: 0.8rem; /* Smaller paragraph size */
        margin-bottom: 15px; /* Adjust spacing */
    }

    .subscribe .position-relative {
        max-width: 100%;
    }

    .subscribe .form-control {
        padding: 8px; /* Reduce input height */
        font-size: 0.8rem; /* Smaller font size */
    }

    .subscribe .btn {
        padding: 6px 12px; /* Smaller button */
        font-size: 0.8rem;
        margin-top: 4px;
    }

    /* Footer Section */
    .footer {
        height: auto; /* Adjust height */
        padding-top: 20px;
        padding-bottom: 20px;
        margin-top: 20px;
        margin-bottom: 40px;
    }

    .footer-links {
        font-size: 0.9rem; /* Smaller link font size */
        display: flex;
        flex-direction: column; /* Stack items vertically */
        align-items: flex-start;
        gap: 5px;
        margin: 5px; /* Reduce margin for smaller screens */
        padding: 15px; /* Reduce padding for smaller screens */
        margin-top: -30px;
    }

    .footer-links a {
        display: block;
        margin-bottom: 3px; /* Smaller spacing between links */
        text-decoration: none;
    }

    .footer-links a:hover {
        text-decoration: underline;
    }

    .footer .footer-item p {
        font-size: 0.9rem; /* Smaller title font size */
    }

    /* Social Icons */
    .footer-item .btn-square {
        width: 25px;
        height: 25px;
        font-size: 0.7rem; /* Smaller icon size */
        margin: 0 2px; /* Adjust spacing */
    }

    /* Copyright Section */
    .copyright .text-body {
        font-size: 0.75rem; /* Smaller font size */
    }

    .copyright .text-ash {
        font-size: 0.8rem; /* Smaller font size */
    }
}











.equal-width {
   width: 150px; /* Adjust as needed */
    text-align: center;
    word-wrap: break-word; 
}
.custom-link {
    display: inline-block; 
    transform: translateY(-40%);
    background: rgba(166, 169, 176, 0.8); 
    color: white; 
    padding: 5px 10px; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
  
}

/* Hover Effect */
.custom-link:hover {
    background-color: #787a7d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}


/*** copyright end ***/






.topic-border {
    border-bottom: 5px solid #3f3f48;
    margin-bottom: 30px;
    padding-bottom: 10px;
}

.topic-box-lg {
    font-size: 1.5em;
    font-weight: bold;
}
.topic-box{
    background-color: rgb(30, 104, 115);

}
.topic-box-top-xs {
	position: absolute;
	top: 10px;
	left: 10px;
}
.topic-box-sm {
    background-color: #061a19; /* Adjust the background color as needed */
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
}
.ne-sidebar {
	margin-bottom: 30px;
}
.ne-sidebar .sidebar-box {
	margin-bottom: 2rem;
}
.ne-sidebar .sidebar-box:last-child {
	margin-bottom: 0 !important;
}
.mb30-list {
	margin-bottom: 30px;
}
.bg-body {
	background-color: #fff;
}
.bg-body-color {
	background-color: #444;
}
.position-relative {
	position: relative;
}

h1.title-medium-dark {
	font-weight: 500;
	color: #111;
}
h1.title-medium-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h1.title-medium-dark a:hover {
	color: #e53935;
}
h1.title-medium-light {
	font-weight: 500;
	color: #fff;
}
h1.title-medium-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h1.title-medium-light a:hover {
	color: #e53935;
}
h2.title-light-dark {
	font-weight: 300;
}
h2.title-light-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-light-dark a:hover,
h2.title-light-dark span {
	color: #e53935;
}
h2.title-regular-dark {
	font-weight: 400;
}
h2.title-regular-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-regular-dark a:hover,
h2.title-regular-dark span {
	color: #e53935;
}
h2.title-medium-dark {
	font-weight: 500;
}
h2.title-medium-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-medium-dark a:hover,
h2.title-medium-dark span {
	color: #e53935;
}
h2.title-semibold-dark {
	font-weight: 600;
}
h2.title-semibold-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
.media {
	margin-top: 0;
}
.media .media-body {
	margin-left: 15px;
}
.media .media-body.media-margin30 {
	margin-left: 30px;
}
.media .media-padding15 {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
}
.media .media-body.media-padding30 {
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 15px;
	margin-left: 30px;
}
.media .media-padding10 {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}
.media .media-padding8 {
	padding-top: 8px;
	padding-right: 8px;
	padding-bottom: 8px;
}
.media .media-padding5 {
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
}

@media (min-width: 992px) and (max-width: 1199px) {
	.media-none-lg {
		display: block;
	}
	.media-none-lg > div {
		width: 100%;
	}
	.media-none-lg .media-padding15 {
		padding-left: 15px;
	}
	.media-none-lg .media-padding10 {
		padding-left: 10px;
	}}
	.media-none-lg .media-body.media-margin30 {
		margin-left: 0;
		margin-top: 15px;
	}
    @media only screen and (max-width: 1199px) {
	h2 {
		font-size: 19px;
	}
	h2.size-sm {
		font-size: 17px;
	}
	h2.size-lg {
		font-size: 21px;
	}
	h2.size-xl {
		font-size: 23px;
	}
	h3 {
		font-size: 15px;
	}
	h3.size-sm {
		font-size: 13px;
	}
	h3.size-md {
		font-size: 14px;
	}
	h3.size-lg {
		font-size: 17px;
	}
	.media-none--lg {
		display: block;
	}
	.media-none--lg > div {
		width: 100%;
	}
	.media-none--lg .media-padding15 {
		padding-left: 15px;
	}
	.media-none--lg .media-padding10 {
		padding-left: 10px;
	}
	.media-none--lg .media-body.media-margin30 {
		margin-left: 0;
		margin-top: 15px;
	}
	.width80--lg {
		width: 80%;
	}
	.sidebar-break-lg {
		margin-top: 4rem;
	}
}

	.media-none--md {
		display: block;
	}
	.media-none--md > div {
		width: 100%;
	}
	.media-none--md .media-padding15 {
		padding-left: 15px;
	}
	.media-none--md .media-padding10 {
		padding-left: 10px;
	}
	.media-none--md .media-body {
		margin-left: 0;
	}
	.media-none--md .media-body.media-margin30 {
		margin-left: 0;
		margin-top: 15px;
	}
    .media-none--sm {
		display: block;
	}
	.media-none--sm > div {
		width: 100%;
	}
	.media-none--sm .media-padding15 {
		padding-left: 15px;
	}
	.media-none--sm .media-padding10 {
		padding-left: 10px;
	}
	.media-none--sm .media-body.media-padding30 {
		padding-left: 15px;
		margin-left: 0;
	}
	.media-none--sm .media-body {
		display: inline-block;
		margin-left: 0;
	}
	.media-none--sm .media-body.media-margin30 {
		margin-left: 0;
		margin-top: 15px;
	}
h2.title-semibold-dark a:hover,
h2.title-semibold-dark span {
	color: #e53935;
}
h2.title-bold-dark {
	font-weight: 700;
}
h2.title-bold-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-bold-dark a:hover,
h2.title-bold-dark span {
	color: #e53935;
}
h2.title-light-light {
	font-weight: 300;
	color: #fff;
}
h2.title-light-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-light-light a:hover,
h2.title-light-light span {
	color: #e53935;
}
h2.title-regular-light {
	font-weight: 400;
	color: #fff;
}
h2.title-regular-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-regular-light a:hover,
h2.title-regular-light span {
	color: #e53935;
}
h2.title-medium-light {
	font-weight: 500;
	color: #fff;
}
h2.title-medium-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-medium-light a:hover,
h2.title-medium-light span {
	color: #e53935;
}
h2.title-semibold-light {
	font-weight: 600;
	color: #fff;
}
h2.title-semibold-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-semibold-light a:hover,
h2.title-semibold-light span {
	color: #e53935;
}
h2.title-bold-light {
	font-weight: 700;
	color: #fff;
}
h2.title-bold-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h2.title-bold-light a:hover,
h2.title-bold-light span {
	color: #e53935;
}
h3.title-light-dark {
	font-weight: 300;
}
h3.title-light-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-light-dark a:hover,
h3.title-light-dark span {
	color: #e53935;
}
h3.title-regular-dark {
	font-weight: 400;
}
h3.title-regular-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-regular-dark a:hover,
h3.title-regular-dark span {
	color: #e53935;
}
h3.title-medium-dark {
	font-weight: 500;
}
h3.title-medium-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-medium-dark a:hover,
h3.title-medium-dark span {
	color: #e53935;
}
h3.title-semibold-dark {
	font-weight: 600;
}
h3.title-semibold-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-semibold-dark a:hover,
h3.title-semibold-dark span {
	color: #e53935;
}
h3.title-bold-dark {
	font-weight: 700;
}
h3.title-bold-dark a {
	color: #111;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-bold-dark a:hover,
h3.title-bold-dark span {
	color: #e53935;
}
h3.title-light-light {
	font-weight: 300;
	color: #fff;
}
h3.title-light-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-light-light a:hover,
h3.title-light-light span {
	color: #e53935;
}
h3.title-regular-light {
	font-weight: 400;
	color: #fff;
}
h3.title-regular-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-regular-light a:hover,
h3.title-regular-light span {
	color: #e53935;
}
h3.title-medium-light {
	font-weight: 500;
	color: #fff;
}
h3.title-medium-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-medium-light a:hover,
h3.title-medium-light span {
	color: #e53935;
}
h3.title-semibold-light {
	font-weight: 600;
	color: #fff;
}
h3.title-semibold-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-semibold-light a:hover,
h3.title-semibold-light span {
	color: #e53935;
}
h3.title-bold-light {
	font-weight: 700;
	color: #fff;
}
h3.title-bold-light a {
	color: #fff;
	-webkit-transition: all 0.5s ease-out;
	-moz-transition: all 0.5s ease-out;
	-ms-transition: all 0.5s ease-out;
	-o-transition: all 0.5s ease-out;
	transition: all 0.5s ease-out;
}
h3.title-bold-light a:hover,
h3.title-bold-light span {
	color: #e53935;
}
.mb-none {
	margin-bottom: 0 !important;
}
.h3-mb-none-child h3,
.p-mb-none-child p {
	margin-bottom: 0;
}




.container-newpost {
padding-top: 15px;
	padding-right: 15px;
	padding-left: 15px;
    max-width:max-content;

}
@media (min-width: 576px) {
	.container {
		max-width: 540px;
	}
}
@media (min-width: 768px) {
	.container {
		max-width: 720px;
	}
}
@media (min-width: 992px) {
	.container {
		max-width: 960px;
	}
}
@media (min-width: 1200px) {
	.container {
		max-width: 1140px;
	}
}
.container-fluid {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
	width: 100%;
   
  
}
.size-c26 {
	font-size: 96px;
}
h3 {
	font-size: 96px;
}

.bg-acbcent {
    
  
}

.section-space-less30 {
    padding: 30px 0;
}



.CartContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: -90px;
    margin-top: 30px;
   
}

.rowCart {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px; /* Margin between items */
    flex: 0 0 calc(25% - 20px); /* 4 items per row with margins */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.raw3 {
    width: 100%;
    position: relative;
}

.raw3 img.cart {
    width: 100%;
    height: 500px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.raw3:hover img.cart {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}




.content {
    padding: 20px;
}

.content1 ul {
    list-style-type: none;
    padding: 0;
}

.content1 li {
    margin-bottom: 10px;
}

.content1 a {
    text-decoration: none;
    color: #007BFF;
}

.content1 a:hover {
    text-decoration: underline;
}

.title01 a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.title01 a:hover {
    text-decoration: underline;
}

p {
    color: #595454;
}
.btnexp {
    display: flex;
    justify-content: center;
    margin-top: 100px; /* Adjust margin as needed */
}

/* .explorebtn {
    padding: 10px 20px;
    background-color: #e1522e;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.explorebtn:hover {
    background-color: #bd9618;
} */
/* Province_details */
  .row {
    display: flex;
    flex-wrap: wrap;
 
 
  }
.guide-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px none #ddd; 
    border-radius: 5px; 
    overflow: hidden; 
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);}

.guide-img {
    flex: 1 0 auto;
}

.guide-img-efects {
    height: 200px; 
    overflow: hidden; 
}

.guide-img-efects img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.guide-title {
    flex: 0 0 auto; 
    padding: 15px; 
    background-color: #ffffff; 
    height: 100px; 
    box-sizing: border-box;
}

.guide-title-inner h4 {
    margin: 0;
    font-size: 1.25rem; 
    line-height: 1.5; 
    margin-bottom: 10px; /
}

.guide-title-inner p {
    margin:0; 
    font-size: 1rem; 
    line-height: 1.5; 
}

/* slideshow */
.slideshow-container {
    /* margin-top: 60px; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    height: auto; /* Allows the height to adjust based on image aspect ratio */
}

.header-image img {
    width: 100%; /* Full width */
    height: auto; /* Auto height to maintain the aspect ratio */
    display: block;
    margin: 0 auto;
}


    
 /* slideshow */
/* .slideshow-container {
    margin-top: 60px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
   
} */


    /* .mySlides {
        display: none;
    } */

  /* .slideshow-container img {
    vertical-align: middle;
    object-fit: cover;
} */
.position-relative {
    position: relative;
}

    .text-overlay {
         position: absolute;
        bottom: 200px; 
         left: 450px; 
         padding: 10px;
        font-size: 56px; 
        border-radius: 5px;
    }  


    /* .text-overlay {
    display: flex;
    justify-content: center; Centers horizontally */
    /* align-items: center; /* Centers vertically */
    /* text-align: center;
    padding: 10px;
    font-size: 56px;
    border-radius: 5px;

    top: 50%;
    left: 50%; */
    /* transform: translate(-50%, -50%); Perfectly centers it
} */ */

.tab-class {
    display: flex;
   justify-content: center;
}


/* //cities */

            
/* features section */

/* district-carousel */
.container_dis{
    padding: 10px;
    max-width: 1200px;
    max-height: 400px;
     position: relative; /* Ensure the correct stacking order */

   
}




.featurescontainer {
    padding: 10px;
    margin: auto;
    max-width: 1200px;
}

/* District and city card styles */
.places {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px; 
    margin: 10px auto;
    text-align: center;
  
}

.places img {
    width: 120px;
    height: 120px; 
    border-radius: 50%; 
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
}

.places img:hover {
    transform: scale(1.05);
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.3);
}

.media01-body {
    margin-top: 10px;
    padding: 5px;
    text-align: center;
}

.media01-body h2 {
    font-size: 16px;
    color: #464242;
    transition: color 0.3s ease;
}

.media01-body h2:hover {
    color: red;
}

/* Ensure center alignment and responsiveness */
.cities-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .places {
        width: 90px;
    }
    .places img {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 576px) {
    .places {
        width: 70px;
    }
    .places img {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 425px) {
    .places {
        width: 60px;
    }
    .places img {
        width: 60px;
        height: 60px;
    }
}


/* district_details */



.guide-img {
    flex: 1 0 auto;
}

.guide-img-efects {
    height: 200px; 
    overflow: hidden; 
}

.guide-img-efects img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}

.guide-title {
    flex: 0 0 auto; 
    padding: 15px; 
    background-color: #f8f9fa; 
    height: 180px; 
    box-sizing: border-box;
}

/* .guide-title-inner h4 {
    margin: 0;
    font-size: 1.25rem; 
    line-height: 1.5; 
    margin-bottom: 10px; /
} */

.guide-title-inner p {
    margin: 0; 
    font-size: 0.7rem; 
    line-height: 1.5; 
}

  

    .mySlides {
        display: none;
    }

.position-relative {
    position: relative;
}

.text-overlay {
    position: absolute;
    bottom: 200px;
    left: 450px;   
  
    padding: 10px;
    font-size: 56px; 
    border-radius: 5px;
}






.rowCart {
    margin-bottom: 30px;
}

.raw3 {
  
    width: 100%; 
    height: 200px; 
    overflow: hidden; 
    display: flex;
    align-items: center; 
    justify-content: center; 
}

/* Ensure images cover the area */
.raw3 img {
    width: 100%;
    height: 100%; 
    object-fit: cover; 
}
.raw4{
   
    width: 100%;
    overflow: hidden; 
    display: flex;
    align-items: center; 
    justify-content: center; 
}
.rowCart_home{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 10px; 
    flex: 0 0 calc(25% - 20px); 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    
}


/* homepage */


.province_containter {
    background-image: url('../img/pro11.jpg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
     padding: 5rem 0; 
     box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
     margin-top:-60px;
}  




.province-link {
    text-decoration: none;
       margin: 15px;

     box-shadow: 0 40px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(to right, rgb(227, 197, 138), rgb(255, 255, 255), rgb(193, 178, 98)); 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

.province-link:hover {
    background: var(--bs-primary);
    color: #ffffff; 
        animation: float 2s ease-in-out infinite; 

}

.province-link:hover .province-text {
    color: #fff !important; 
   
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0); 
    }
}


#categories-section{
    margin-top: -100px;
}

/* Container styling */
.national-item-province {
    position: relative;
    overflow: hidden;
    width: 100%;
    height:100px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.9);
}
.national-item{
    position: relative;
    overflow: hidden;
    width: 100%;
    height:100px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.9);
}

/* Image styling with transition */
.national-item-province img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 15px;
    transition: transform 0.3s ease;
}

/* Hover effect for image */
.national-item-province:hover img {
    transform: scale(1.05);
}

/* Content inside each province card */
.national-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

/* Text styling for province name and link */
.national-info a {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Hover effect for text link */
.national-info a:hover {
    color: #f8f9fa;
}

/* Media Queries for Responsive Design */

/* Tablets and Medium Devices (768px and below) */
@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 50%; 
        max-width: 50%;
    }
    
    .national-item-province img {
        height: 200px; 
    }

    .national-info a {
        font-size: 18px; 
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
    .col-md-6, .col-lg-4 {
        flex: 0 0 100%; 
        max-width: 100%;
    }
    
    .national-item-province img {
        height: 180px; 
    }

    .national-info a {
        font-size: 16px; 
    }
}

/* Small Devices (425px and below) */
@media (max-width: 425px) {
    .national-item-province {
        margin-bottom: 15px; 
    }
    
    .national-info a {
        font-size: 14px; 
    }
}




.most-viewed-posts {
    padding: 20px;
    background-color: #e7e1e1;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-card {
    display: flex; /* Aligns children in a row */
    align-items: center; /* Vertically centers children */
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
    transition: transform 0.3s;
    width: 100%; 
    box-sizing: border-box; }

.post-card:hover {
    transform: scale(1.05);
}

.post-card img {
    width: 80px;
    height: 60px; 
    object-fit: cover; 
    border-radius: 10px; 
    margin-right: 15px; 
    flex-shrink: 0; 
}

.post-details {
    flex-grow: 1; /* Allows text to take up remaining space */
}

.post-card h4 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
    color: #333;
}

.post-card p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #777;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .post-card {
        flex-direction: column; 
        align-items: flex-start;
    }
    
    .post-card img {
        margin-bottom: 10px;
        width: 100%;
        height: auto;
    }
}



p {
  text-align:justify;
}

/* Search Bar Container */
.search-bar {
    background: rgba(166, 169, 176, 0.6); /* Semi-transparent background */
    padding: 15px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    transform: translateY(-50%);
    margin-top: -80px;
}

/* Dropdowns and Button */
.search-bar select,
.search-bar button {
    padding: 10px 15px;
    font-size: 1rem;
    box-shadow: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-bar select:focus,
.search-bar button:focus {
    outline: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

/* Button Style */
.search-bar button {
    background: #031028;
    color: #fff;
    border: none;
    font-weight: bold;
}

/* Hover Effect */
.search-bar button:hover {
    background: #0a2045;
    transform: translateY(-2px);
}

/* Custom arrow color for Webkit browsers */
.search-bar select {
    appearance: none; /* Removes the default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='rgb(166, 169, 176)'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px; /* Space for the custom arrow */
}
/* Optionally change color for each option when hovered */
.search-bar select option:hover {
    background-color: #e0e0e0; /* Ash color when hovering options (not fully supported in all browsers) */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .search-bar {
        background: transparent; /* Remove background color */
        max-width: 80%; /* Decrease width */
        margin: 0 auto; /* Center align on the screen */
        margin-top: -90px;
        gap:10px;
    }

    .search-row {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center items within search bar */
       
    }

    .search-row > div {
        width: 100%; /* Full width for dropdowns and button */
        margin-bottom: 10px;
     
    }
     .search-bar select,
    .search-bar button {
        height: 35px; 
        padding: 5px 10px; 
        font-size: 0.9rem; 
    }
    .search-bar button {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .search-row {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}


.equal-width {
   width: 150px; /* Adjust as needed */
    text-align: center;
    word-wrap: break-word; 
}
.custom-link {
    display: inline-block; 
    transform: translateY(-40%);
    background: rgba(166, 169, 176, 0.8); 
    color: white; 
    padding: 5px 10px; 
    border-radius: 10px; 
    text-decoration: none; 
    transition: background-color 0.3s ease, box-shadow 0.3s ease; 
  
}

/* Hover Effect */
.custom-link:hover {
    background-color: #787a7d;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
}

/* contact page */
.contact-container {
    display: flex;
    align-items: stretch;
    margin-top: 50px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.contact-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-image {
    background-size: cover;
    background-position: center;
    flex-grow: 1; /* Allow the image container to grow based on available space */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ensure the image container takes up available space but doesn't get cropped */
    min-width: 200px; /* Prevent container from becoming too small */
}

/* Ensure the image fits well and maintains its aspect ratio */
.contact-image img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
   
    max-height: 100%;
}

.social-media {
    margin-top: 30px;
    text-align: center;
}

.social-media h5 {
    font-weight: bold;
}

.social-icons {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: gray;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.social-icons a:hover {
    background-color: #ddd;
}

.social-icons img {
    width: 25px;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column; 
       
    }

    .contact-form {
        padding: 20px; 
    }

    .contact-image {
        width: 100%; 
        height: auto;
        
    }

    .social-media {
        margin-top: 20px;
    }

    .social-icons a {
        width: 50px;
        height: 50px;
    }

    .social-icons img {
        width: 10px; 
    }
}

@media (max-width: 576px) {
    .contact-form {
        margin-top: -50px;
    }
    .contact-form h1 {
        font-size: 40px;
    }

    .contact-image {
        height: auto; 
    }

    .social-icons a {
        width: 45px;
        height: 45px;
    }

    .social-icons img {
        width: 16px; 
    }
}



/* time and temperature */
    .box-style {
    padding: 4px 5px;           
    border-radius: 8px;   
    border: #031028;       
    background-color: rgba(255, 255, 255, 0.2); 
    display: inline-flex;
    align-items: center;
}





/* 
category-list */
.sidebar-tags {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.category-box {
    display: flex;
    align-items: center; 
    gap: 8px; 
    width: 100%; 
    padding: 10px 16px;
    background-color: #e7e1e1; 
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s, transform 0.3s;
}

.category-box i {
    color: #333;
}

.category-box a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: block; 
}

.category-box:hover {
    background-color: #e0e0e0; 
    transform: scale(1.02); 
}
    

.category-box:hover {
    background-color: #e0e0e0; 
    transform: scale(1.05); 
}




.about-image-card{
   
    border-radius: 10px;
  
    padding: 2px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    width: 50%;
}


/* Home page place serch bar */

.search-button {
            width: 50px;
            height: 50px;
            border-radius: 50%; 
            display: flex;
            align-items: center;
            justify-content: center;
           background-color: var(--bs-dark);  
            color: white;
            border: none;
            cursor: pointer;
        }
        .search-button:hover {
            background-color: #6d706c; 
        }