.logo{
    width: 8rem;
    margin-left: 4rem;
}
@media (max-width: 767.98px) { /* Adjust the breakpoints as needed */
    .logo{
        margin-left: 2rem;
    }
}
nav{
    background-color: black;
}

.navbar-nav .nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
  }
  
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    left: 0;
    bottom: 0;
    background: linear-gradient(to right, #fd9f06, #f99e0d, #f49d12, #f09c16, #ec9b1a, #e8991a, #e5971a, #e1951a, #de9117, #da8e14, #d78a11, #d3870e); /* Change this to the color of the underline */
    transition: width 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover::after {
    width: 100%;
  }
  

 /* image overlay */
 .image-container-jsv {
    position: relative;
    text-align: center;
    color: white;
}
.image-container-jsv img {
    width: 100%;
    max-height: 35rem;
    object-fit: cover;
}
.overlay-content-jsv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.overlay-content-jsv h1, .overlay-content-jsv h2, .overlay-content-jsv button {
    margin: 0.5rem 0;
}
@media (max-width: 767.98px) { /* Adjust the breakpoints as needed */
    .overlay-content-jsv h1 {
        font-size: 15px;
    }
    .overlay-content-jsv h2 {
        font-size: 1rem;
    }
    .overlay-content-jsv button {
        margin-top: 20px;
    }
}

.shadow{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  }

.values{
    background-color: #0B3140;
}

.social-link{
    text-decoration: none;
  }
.phone-icon{
    width: 3rem;
    height: 3rem;
  }

  .image-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.image-container img {
    transition: transform 0.3s ease;
    cursor: pointer;
    max-width: 100%; /* Ensure the image doesn't exceed container width */
}

.image-container:hover img {
    transform: scale(1.1);
}

.image-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-align: center;
}

.card-details{
    background-color:#8598A0;
    
}

.house-icons{
    width: 2rem;
}

.bookme-button{
    background-color: #f5f5f5;
    border:none;
    border-radius: 4px;
    padding: 0.5rem;
    margin-bottom: 1rem;
}
.bookme-button:hover{
    background-color: #0B3140;
    color: white;
}

.mobile-icon{
  width: 1rem;
}





.logo-slider {
    overflow: hidden;
    padding: 30px 0 0 0;
    white-space: nowrap;
    position: relative;
}

.logo-slider:hover .logos-slide {
    animation-play-state: paused;
}

.logos-slide {
    display: inline-block;
    animation: 30s slide infinite linear;
}

.logos-slide .slide {
    display: inline-block;
}

.logos-slide img {
    max-width: 400px;
    max-width: 300px;
    margin: 5px 0;
}

.slide h2 {
   font-size: 16px;
   text-align: left;
   font-family:'Arial';
   font-style: normal;
   margin: 5px 0;
}

@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}