html,
body {
    margin: 0;
    padding: 0;
}
/* navbar */

.fa-house {
    color: red;
    font-size: 1.7rem;
}

.navbar-brand {
    margin-left: 2rem;
    font-family: "Lobster", sans-serif;
    font-weight: 400;
    font-size: 1.3rem;
    font-style: normal;
}

.navbar {
    height: 4.5rem;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-style: normal;
    border-bottom: 1px solid rgb(218, 212, 212)!important;
    background-color: rgba(240, 233, 233, 0.5) !important; /* Semi-transparent white background */
    backdrop-filter: blur(10px)!important; /* Apply a blur effect to the background */
}


.navbar-nav li {
    margin-left: 1rem;
    font-weight: 500;
}

.nav-link {
    color: rgb(19, 13, 13) !important;
}

@media (max-width: 767px) {
    .navbar-nav {
        text-align: center;
    }
    .navbar-nav li {
        margin-left: 0;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}
li:hover{
    font-weight: 500;
    transform: scale(1.02);
} */

/* footer */

.f-info {
    padding: 0rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.f-brandname h6 {
    font-size: 1rem;
}

.f-socials .fa-brands {
    font-size: 1rem;
}

/* index */

.listings {
    padding: 1rem;
    width: 100%;
    /* height: 100%; */
}

.listings a {
    text-decoration: none;
}

.listings img {
    margin: 1rem 1rem 1rem;
    height: 10rem;
    width: 18rem;
    border-radius: 1rem;

}

.listing {
    margin: 1rem;
    border-radius: 1rem;
    border: none;
}

.listing:hover {
    background-color: rgb(251, 251, 251);
    border: 0.5px solid rgb(240,240,240);
    transform: scale(1.03);
}

/* listing */
iframe
{
    width: 80%;
    height:300px;
}
.listing-image img {
    width: 100%;
    height: 20rem;
    border-radius: 1rem;
}

.listing-image {
    margin-bottom: 5rem;
}

/* icons */

.icons{
    margin: 2rem 1rem 0 2rem;
    display: flex;
    align-items: center;
    text-align: center;
}

.icon{
    font-size: 0.95rem;
    margin-right: 3rem;
    margin-left: 1.5rem;
    opacity: 0.7;
}

.cam{
    display: flex;
    align-items:flex-end;
    justify-content: space-around;
}

.fa-arrow-right{
    font-size: 1.4rem;
    opacity: 0.7;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.fa-arrow-left{
    font-size: 1.4rem;
    opacity: 0.7;
    padding-bottom: 0.5rem;
    padding-right: 0.7rem;
}

.icon:hover, .fa-arrow-left:hover,.fa-arrow-right:hover{
    opacity: 1;
    cursor: pointer;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #000 ; /* Change the color as needed */
    border-radius: 50%;
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
}
/* Optional: Add more custom styles for better visibility */
.carousel-control-prev, .carousel-control-next {
    filter: drop-shadow(0 0 5px #fff); /* Add shadow to make arrows stand out */
}
@media (max-width: 576px) {
    .navbar {
      height: 160px; /* Increased height for mobile */
      flex-direction: column; /* Stack items vertically */
      align-items: flex-start; /* Align items to the start */
    }
  
    .navbar-menu {
      flex-direction: column; /* Stack menu items vertically */
      width: 100%;
    }
  
    .navbar-item {
      margin: 0.5rem 0;
    }
  }
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important;
}