body {
  background: linear-gradient(180deg, rgba(56, 73, 87, 1) 0%, rgba(12, 16, 19, 1) 100%) no-repeat;
  background-attachment: fixed;
  /*edit*/
  overflow-x: hidden !important;
}
  /* Off-centered column styles */
  .off-centered-column {
    position: relative;
  }

  .card-body {
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
        .carousel-inner img {
            width: 100%;
            height: 400px; /* Set your preferred height */
            object-fit: cover;
        }

  /* Off-centered image styles */
  .off-centered-image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%; /* Adjust the width to cover the entire container */
    height: 100%;
    background-image: url('/img/1.jpg') !important;
    background-size: cover;
    background-position: center center;
    filter: vignette(50% 80%); /* Adjust vignette values as needed */
    filter: blur(3px) opacity(0.55); /* Adjust blur and opacity values as needed */
    z-index: -1 ;/* Ensure the image is positioned behind the text */
  }
  .bgi2 {
    width: 100%;
    height: 100%;
    background-image:linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), url('/img/peaks.svg') !important;
    background-size: cover 100% 100%;
    background-position: center bottom;
    z-index: -1 ;/* Ensure the image is positioned behind the text */
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
  .text-with-outline {
    color: white; /* Set text color */
    text-shadow: -1px -1px 1px black, 1px -1px 1px black, -1px 1px 1px black, 1px 1px 1px black; /* Add outline */
  }
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated2 {
  animation-duration: 2s;

}
.fadeInUp {
  animation-name: fadeInUp;
}
/* Custom styles for the navbar */
.navbar-nav {
  display: inline-block;
  justify-content: center;
  align-items: center;
  gap: 320px;
  /* Set the desired space between each button */
  text-align: center;
}

.infobox {
  background-color: white;
  text-align: center;
}

.RBY {
  background-color: #eeb51c !important;
}

.Maven {
  font-family: 'Maven Pro', sans-serif;
}


.ripple-btn {
  position: relative;
  overflow: hidden;
  font-size: 15px !important;
}

footer {
  background-color: rgba(12, 16, 19, 1);
  color: #fff;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.ripple-btn:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: linear-gradient(180deg, rgba(56, 73, 87, 0.3) 0%, rgba(12, 16, 19, 0.3) 100%) no-repeat;
  /* Change the color here */
  border-radius: 50%;
  animation: ripple 0.6s linear;
  pointer-events: none;
}

@keyframes ripple {
  from {
    transform: scale(0);
    opacity: 0.6;
  }

  to {
    transform: scale(5);
    opacity: 0;
  }
}

/* Additional Styles */
.inquiries-container {
  background-color: #f0f0f0;
  /* Set your desired background color */
  padding: 20px;
  /* Add padding for spacing */
  top: 0;
  left: 0;
  width: 100vh;
  z-index: 9999;
  /* Set a higher z-index to overlay other content */
  overflow: auto;
  /* Enable scrolling if the content exceeds the viewport */
}


/* Custom animation for fadeIn effect */
.fade-in-left {
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInLeft 1s forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(20px);
  animation: fadeInRight 1s forwards;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-below {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInBelow 1s forwards;
}

@keyframes fadeInBelow {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.responsive-img {
  max-width: 75% !important;
  /* Ensure the image does not exceed its container */
  height: auto;
}

/* Responsive styling for smaller screens */
@media (max-width: 767px) {
  .responsive-img {
    /* Set a smaller width for screens smaller than 768px */
    max-width: 100% !important;
  }
  .navbar-nav {
    display: inline-block;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* Set the desired space between each button */
    text-align: center;
  }
}
