.image-container img {
  max-width: 100%;
  height: auto;
}

/* Sticky Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000; /* Ensures it stays above other elements */
    background-color: #f8f9fa; /* Ensure navbar background is visible */
}

/* Logo Styling */
.logo {
    max-width: 200px; /* Adjust the size as per your needs */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Navbar Toggler Button (Mobile Menu) */
.navbar-toggler {
    background-color: #007bff; /* Customize the color to fit your brand */
    border: none;
}

.navbar-toggler-icon {
    color: #fff; /* Change icon color */
}

/* Navbar Collapse Transition */
.collapse {
    transition: height 0.3s ease; /* Adds smooth height transition */
}

/* Call-to-Action Button in Navbar */
.btn-primary {
    background-color: #28a745; /* Use a green color for better visibility */
    border-color: #28a745;
    color: #fff;
}

.btn-primary:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Full-Screen Hero Section Styling */
.hero-section {
    height: 100vh; /* Full viewport height */
    background-size: cover;
    background-position: center;
    position: relative;
}

.overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay to make text readable */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-text {
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h1 {
    font-size: 48px; /* Larger font for hero text */
    font-weight: bold;
}

.hero-text p {
    font-size: 24px; /* Subtext size */
}

.hero-text a {
    margin-top: 20px;
    display: inline-block;
}

/* Back to Top Button */
.back-to-top {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}


/* Footer Styling */
.footer {
    background-color: #f8f9fa; /* Light gray background */
    padding: 20px 0;
    color: #6c757d; /* Gray text color */
}

.footer p {
    margin: 0;
    color: #6c757d;
}

.footer .line {
    border-top: 1px solid #6c757d;
    margin-bottom: 15px;
}

.footer a {
  
    text-decoration: none;
}

/* Social Media Icons */
.footer .fab {
    font-size: 20px;
    color: #6c757d; /* Gray color for icons */
    margin: 0 10px;
}

.footer .fab:hover {
    color: #007bff; /* Change icon color on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px; /* Adjust hero text size on smaller screens */
    }
}

.footer a {
    margin: 0 5px;
    text-decoration: none;
}


.hero-text p {
   font-size: 18px;
}

.logo {
    max-width: 150px; /* Resize logo on smaller screens */
}

.btn-primary {
    padding: 8px 16px;
    font-size: 14px;
}

/* Center the menu */
.navbar-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.navbar-nav li {
    margin: 0 15px;
}

/* Resize the top banner image */
.banner-image {
    max-height: 300px; /* Adjust the height as needed */
    overflow: hidden;
}

.banner-image img {
    width: 500px;
    height: auto;
    object-fit: cover; /* Ensures the image covers the container */
}

/* Optional: Reduce space above and below the image */
.header-container {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Change link color to match the green from the image */
a {
    color: rgb(118, 165, 110);
}

a:hover {
    color: rgb(98, 145, 90); /* Slightly darker for hover effect */
}