:root {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px; /* adjust to your navbar height */
  overflow-x: hidden;
}

.navbar {
    height: 70px;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .navbar-brand img {
    height: 100px;
    position: absolute;
    top: -1px;
    border-radius: 50px;
    left: 100px;
    z-index: 10;
  }
  
  .navbar-nav {
    align-items: center;
    padding-right: 200px;
  }
  
  .navbar-nav .nav-link {
    font-weight: bold;
    color: #667;
    transition: color 0.2s ease;
  }
  
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-link:hover {
    color: #007bff;
  }
  
  .navbar .btn-primary {
    background-color: #007bff;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    padding: 6px 16px;
  }
  
  #mobileMenuOverlay .nav-link {
    font-weight: bold;
    color: #333;
    transition: color 0.2s ease;
  }
  
  #mobileMenuOverlay .nav-link:hover {
    color: #007bff;
  }
  
  .hero-carousel .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .hero-img {
    width: 100%;
    object-fit: contain;
    display: block;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    padding: 10px;
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: white;
    opacity: 1;
    margin: 0 6px;
  }
  
  .carousel-indicators .active {
    background-color: #007bff;
  }
  
  .carousel-indicators {
    bottom: 20px;
  }

  .review-carousel-indicators {
    margin-bottom: -100px;
  }

  .review-carousel-indicators [data-bs-target] {
    background-color: lightgray;
  }

  .review-carousel-indicators .active {
    background-color: #007bff;
  }

  .about-container {
    padding-left: 10%;
    padding-right: 5%;
  }

  .about-card-container {
    padding-right: 5%;
  }

  .boat-container {
    padding-left: 5%;
    padding-right: 10%;
  }

  .boat-card-container {
    padding-left: 5%;
  }
  

  #trusted-by {
    background-color: white !important;
    position: relative;
    z-index: 1;
  }

  .client-container {
    overflow: hidden;
    position: relative;
    margin-top: 40px;
    width: 100%;
  }

  .client-logo {
    margin: 0 50px; /* Adjust spacing as needed */
    flex-shrink: 0.2; /* Prevents logos from shrinking */
  }

  #scroller {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200%;
  }

  .carousel-item-container{
    padding-left: 150px;
    padding-right: 150px;
    width: 100%;
    height: 100px;
  }

  .send-message-button-container {
    text-align: center;
  }

  @media screen and (max-width: 600px) {
    .client-container {
      margin-top: 20px; 
    }

    .hero-carousel-indicators {
      margin-bottom: -15px;
    }

    .review-carousel-indicators {
      margin-bottom: -30px;
    }

    .review-container {
      height: 250px;
    }

    .carousel-item-container{
      padding-left: 25px;
      padding-right: 25px;
      height: 200px;
    }

    .contact-form {
      margin-top: 25px;
    }

    .hero-img {
      margin-top: 35px;
    }

    .mobile-padding-20 {
      margin-top: 20px;
    }
  }
  
  @media screen and (max-width: 600px) {
    .client-logo {
      margin: 0 40px; /* Adjust spacing as needed */
      flex-shrink: 0.1; /* Prevents logos from shrinking */
    }
    .client-container {
      width: 900%;
    }
    #scroller {
      width: 80%;
    }
  }
    .img-fluid {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0;
        padding: 0;
      }   
  
  @media (max-width: 768px) {
    .navbar-brand img {
        top: 0px;
        height: 70px;
        border-radius: 35px;
        left: 25px;
      }
    .carousel-caption {
      bottom: 20px;
    }
  
    .carousel-control-prev,
    .carousel-control-next {
      visibility: hidden;
    }

    .about-container {
        padding-left: 10%;
        padding-right: 10%;
      }
    
      .about-card-container {
        padding-right: 2%;
      }

      .boat-container {
        padding-left: 10%;
        padding-right: 10%;
      }
    
      .boat-card-container {
        padding-left: 2%;
      }
  }

  .contact-icon-btn {
    background-color: black;
    border-color: black;
    width: 48px;
    height: 48px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
  }

  .contact-icon-btn:hover {
    background-color: black;
  }
  
  #float-book-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #007bff;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    text-decoration: none;
    z-index: 9999;
    visibility: hidden;
    display: none;
    transition: all 0.3s ease;
  }
  
  
  #float-book-btn:hover {
    background-color: #007bff;
    text-decoration: none;
  }
  