.header.navbar {
    background-color: #43591c
 !important;
}

.header.navbar .navbar-brand,
.header.navbar .nav-link {
    color: #ffffff !important;
}

.header.navbar .nav-link:hover {
    color: #fcbf49 !important;
}

/* FIX: Prevent horizontal scroll */
html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* FIX: Force hamburger menu visibility */
.navbar-toggler {
    border-color: transparent !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* for the hero section */
/* HERO SECTION */
/* Hero Section */


.main-hero {
    margin-top: 80px; /* height of sticky header */
}

.main-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    color: #fff;
}

/* Background Images */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Content Container */
.main-hero__container {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Text */
.main-hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.main-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 2rem;
}

/* Buttons */
.main-hero__btns li {
    display: inline-block;
    margin-right: 1rem;
}

.button--primary {
    background-color: #007bff;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button--primary:hover {
    background-color: #0056b3;
}

.button--navy-outline {
    border: 2px solid #001f3f;
    color: #001f3f;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: transparent;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button--navy-outline:hover {
    background-color: #001f3f;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .main-hero__title {
        font-size: 2rem;
    }
    .main-hero__subtitle {
        font-size: 1rem;
    }
    .main-hero__container {
        padding: 1rem;
    }
}







