    header::before{
        background-image: url("./Assets/Images/ocean_view.jpg");
        background-size: cover; /* Default for larger screens */
        background-position: center center;
        background-repeat: no-repeat;
    }
.hero-header {
    background-image: url("./Assets/Images/ocean_view.jpg");
    background-size: cover; /* Default for larger screens */
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    min-height: 300px; /* Base height */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Overlay for text visibility - this already exists, good for contrast */
.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Keep the existing overlay for general text readability */
    z-index: 1;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

/* Text Enhancements for better visibility */

.hero-header .text-muted {
    color: rgba(255, 255, 255, 0.9) !important; /* Make the small text whiter for better contrast */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7); /* Shadow for tagline */
}

/* Navbar text visibility */
.hero-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important; /* Ensure nav links are visible */
    font-weight: bold; /* Make nav links bolder */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6); /* Add a subtle shadow to nav links */
}

.hero-header .navbar-nav .nav-link:hover {
    color: #e0e0e0 !important; /* Lighter hover state for nav links */
}




@keyframes backgroundZoom {
    0% {
        background-size: cover;
    }
    50% {
        background-size: 110%;
    }
    100% {
        background-size: cover;
    }
}

/* Responsive header height and background zoom */
@media (max-width: 991px) { /* Applies to screens smaller than 992px (Bootstrap's lg breakpoint) */
    .hero-header {
        min-height: 250px; /* Reduced height for tablets and mobiles */
        padding-top: 30px; /* Adjust padding for better spacing */
        padding-bottom: 30px;
        background-size: 115%; /* Zoom out slightly on medium screens */
    }
}

@media (max-width: 767px) { /* Further reduce for smaller mobile screens */
    .hero-header {
        min-height: 200px;
        padding-top: 20px;
        padding-bottom: 20px;
        background-size: 125%; /* Zoom out more on small screens */
    }
    .hero-header h1 {
        font-size: 2.5rem; /* Adjust font size for smaller screens */
    }
    .hero-header .text-muted {
        font-size: 0.9rem !important; /* Adjust font size for smaller screens */
    }
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

html {
    scroll-behavior: smooth;
}

.btn-dark {
    background-color: #343a40;
    border-color: #343a40;
}

.btn-dark:hover {
    background-color: #1d2124;
    border-color: #1d2124;
}

.btn-lg i {
    font-size: 1.5rem;
}