html {
  scroll-behavior: smooth;
}


.subpage {
    background-color:#f3f5fa;
}


.top-bar {
    background: #0a1b3b;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
  }
  .top-bar a {
    color: #fff;
    margin-right: 15px;
    text-decoration: none;
  }
  .navbar {
    padding: 1rem 0;
    font-family: Raleway;
  }
 


  /* Center the menu items */
.navbar-nav {
    margin: 0 auto;
    text-align: center;
  }
  
  .navbar-nav .nav-item {
    margin: 0 10px;
  }
  
  /* Light blue color for active and hover */
  .navbar-nav .nav-link {
    color: #0a1b3b; /* default navy */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #00BFFF;
  }
  
  /* Optional: blue + sign next to active link */
  .navbar-nav .nav-link.active::after {
    content: '+';
    color: #00BFFF;
    font-size: 1rem;
    margin-left: 4px;
    position: relative;
    top: -2px;
  }


  .hero {
    color: #fff;
    position: relative;
    padding: 100px 0;
  }
  .hero h1 {
    font-size: 3rem;
    font-weight: bold;
  }
  .hero .form-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    color: #000;
  }


  .hero {
   /* background-image: url('../images/hero02.jpg');*/
    background-position:  center center;
    background-size:cover;
    
    position: relative;
    color: white;
    background-color:rgb(232, 242, 255);
  }

  
  .hero h5 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
  }
  
  .hero p {
    font-size: 1.125rem;
    line-height: 1.6;
  }
  
  .form-box {
    margin-top:100px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    color: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  }
  
  .form-box h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
  }

  @media (max-width: 767.98px) {
    .form-box {
      margin-top: 30px;
      margin-bottom:30px;
    }
    .hero {
       text-align:center;
      }
  }



  .section-title {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: #00BFFF;
    margin-bottom: 0.5rem;
  }
  
  .section-heading {
    font-family:Raleway;
    font-weight: 800;
    font-size: 3rem;
    color: #0a1b3b;
  }
  
  .feature-text {
    max-width: 700px;
    line-height:2rem;
    margin: 0 auto 3rem;
    color: #555;
  }
  .feature-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 150%; /* 2:3 aspect ratio (height = 1.5 x width) */
    border-radius: 8px;
    transition: transform 0.3s ease;
  }
  
  .feature-image:hover {
    transform: scale(1.02);
  }
  
  /* Optional: remove margin from row on small screens */
  @media (max-width: 575.98px) {
    .row.g-4 {
      margin-left: 0;
      margin-right: 0;
    }
  }
  
  .feature-image:hover {
    transform: scale(1.02);
  }
  
  .feature-image img {
    width: 100%;
    height: auto;
    display: block;
  }


  .yacht-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
  }
  
  .yacht-card:hover {
    transform: translateY(-5px);
  }
  
  .yacht-image {
    background-size: cover;
    background-position: center;
    width: 100%;
    padding-top: 66.66%; /* 3:2 ratio */
    transition: transform 0.5s ease;
  }
  
  .yacht-card:hover .yacht-image {
    transform: scale(1.1);
  }
  
  .card-labels {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: flex;
    gap: 5px;
  }
  
  .price-line {
    border-top: 1px solid #eee;
    padding: 10px 20px;
    font-size: 0.9rem;
    color: #666;
  }
  
  .price-line span {
    color: #00BFFF;
    font-weight: 600;
    margin-left: 5px;
  }

  .image-tile {
    width: 100%;
    padding-top: 75%; /* 4:3 ratio */
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    transition: transform 0.3s;
  }
  
  .image-tile:hover {
    transform: scale(1.02);
  }
  
  .btn-light {
    border-radius: 6px;
    font-weight: 500;
  }

  .bigcard {
    background-color:#fff;
    padding:30px;
    border-radius:6px;
  }



  .breadcrumb {
    background-color: transparent;
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top:20px;
    margin-bottom:0px;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #aaa;
    padding: 0 8px;
  }
  
  .breadcrumb a {
    color: #888;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    color: #00BFFF;
  }


  .crew-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
  }