
/* CONTAINER STYLES */
    .azure-boating-container  {
        margin-top: 25px;

    }
/* CONTAINER STYLES */

.bg-white-opacity {
    background-color: rgba(255, 255, 255, 0.25); /* white with 85% opacity */
    backdrop-filter: blur(6px); /* optional: adds subtle blur behind */
  }
   .glass-breadcrumb {
    background: rgba(0, 0, 0, 0.35); /* semi-transparent dark */
    backdrop-filter: blur(10px);     /* blur background */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    border: 1px solid rgba(255, 255, 255, 0.25); /* white border with transparency */
    border-radius: 1rem;             /* rounded corners */
    padding: 1rem 1.5rem;
    color: #fff;
  }
  .glass-breadcrumb .breadcrumb-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .glass-breadcrumb .breadcrumb-item.active {
    color: #fff;
    font-weight: 600;
  }
  
    .social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  }

  .social-icon:hover {
    transform: scale(1.1);
  }

  .social-icon.inactive {
    opacity: 0.4;
    pointer-events: none;
    cursor: default;
  }

  .social-icon.facebook { color: #1877f2; }
  .social-icon.linkedin { color: #0077b5; }
  .social-icon.youtube { color: #ff0000; }
  .social-icon.website { color: #0d6efd; }
  
  /* Fullscreen mobile overlay menu */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  z-index: 1050;
  transition: all 0.4s ease-in-out;
  overflow-y: auto;
  display: none;
}

.mobile-overlay.show {
  display: flex !important;
}

/* Inner content with animation */
.overlay-inner {
  padding: 2rem;
  width: 100%;
  animation: slideDownFade 0.4s ease;
}

/* Slide-down and fade animation */
@keyframes slideDownFade {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* CONTAINER FORM STYLES */
    .input-group:last-child {
        margin-bottom: 0 !important;
    }
    
    /* Optional: disable scroll wheel increment for number inputs */
    .no-wheel::-webkit-outer-spin-button,
    .no-wheel::-webkit-inner-spin-button {
      -webkit-appearance: none;
      margin: 0;
    }
    .no-wheel {
      -moz-appearance: textfield;
    }
    
    @keyframes fadeOut {
        from {
          opacity: 1;
          transform: translateY(0);
        }
        to {
          opacity: 0;
          transform: translateY(-10px);
        }
    }
    
    .terms-box {
      border: 1px solid #dee2e6;
      border-radius: 0.25rem;
      padding: 1rem;
      height: 200px;
      overflow-y: scroll;
      background-color: #f8f9fa;
    }
    

/* CONTAINER FORM STYLES */

/* SYSTEM FORM STYLES */
  input.is-invalid {
    border-color: #dc3545;
  }
/* SYSTEM FORM STYLES */

/* LISTING CATEGORY PAGE STYLES */
  .top-banner {
    background-color: #000;
    color: #fff;
    padding: 10px 0;
  }
  .top-banner .highlight {
    color: #ffc107;
  }
  .top-banner img {
    height: 25px;
    margin-right: 10px;
  }
  .video-section {
    color: white;
    padding: 30px 20px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  .breadcrumb-nav {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
    padding: 12px 20px;
    border-radius: 12px;
    display: inline-block;
  }
  .breadcrumb {
    margin-bottom: 0;
    background: transparent;
  }
  .breadcrumb .breadcrumb-item a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s;
  }
  .breadcrumb .breadcrumb-item a:hover {
    color: #ffc107;
  }
  .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105"; /* Font Awesome angle-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ccc;
    padding: 0 8px;
  }
  .breadcrumb .breadcrumb-item.active {
    color: #adb5bd;
    font-weight: 500;
  }
  
  .list-group-item-action:hover {
  background-color: #e9ecef;
  transition: background-color 0.2s;
}

select.form-select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}

.mid-dark-bg {
    background-color: #2c2f33;
  }
  .product-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: border-color 0.2s, background-color 0.2s;
  }
  .product-card:hover {
    border-color: #ffc107;
    background-color: #35383d;
  }

  /* LISTING CATEGORY PAGE STYLES */