/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

/* Sticky Header */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url('header-bg.jpg') center/cover no-repeat;
    padding: 10px 0;
    z-index: 1000;
}

/* Ensure Header Overlay is Visible */
.header-overlay {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 10px;
}

/* Logo as Home Button */
.logo-img {
    height: 50px; /* Adjust size as needed */
    width: auto;
    cursor: pointer; /* Show pointer cursor */
}


/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

/* Ensure Navbar Text is Dark Green */
.navbar-nav .nav-link {
    color: #004d00 !important; /* Dark Green */
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}


/* Hover Effect */
.navbar-nav .nav-link:hover {
    color: #ff7b00 !important; /* Orange on hover */
}


/* Fix Navbar Background for Visibility */

/* Adjust Navbar Background for Contrast */
.navbar {
    background-color: rgba(255, 255, 255, 0.9) !important; /* Light Background */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
    padding: 100px 20px 20px;
    max-width: 1200px;
    margin: auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}


/* Ensure Full Page Height */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* Make Main Content Fill Remaining Space */
.container {
    flex: 1;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Sticky Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: white;
    position: relative;
    width: 100%;
    bottom: 0;
}







