body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa; /* Light theme color */
    color: #343a40;
    padding-top: 80px; /* Add padding to body to account for fixed navbar */
}

header {
    background-color: #ffffff;
    color: #007bff;
    padding: 1rem;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000; /* Ensure header is on top */
}

header img {
    border-radius: 50%;
    margin-right: 1rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
    margin-right: auto; /* Push nav to the right */
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: space-around;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start; /* Aligns nav items to the left */
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem;
    transition: color 0.3s ease, background-color 0.3s ease;
}

nav ul li a:hover {
    color: #ffffff;
    background-color: #007bff;
    border-radius: 4px;
}

.hero-section {
    background: url('Images/hero.jpg') no-repeat center center;
    background-size: cover;
    color: #ffffff;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 3rem;
    margin: 0;
}

.hero-content p {
    font-size: 1.5rem;
}

.button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

section {
    padding: 2rem;
    margin: 1rem auto;
    max-width: 1000px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

h1, h2 {
    color: #007bff;
}

ul {
    padding-left: 1.5rem;
}

form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}

form input, form textarea {
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

footer {
    background-color: #ffffff;
    color: #007bff;
    text-align: center;
    padding: 1rem;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}

footer p {
    margin: 0;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

#note {
    background-color: #e9ecef; /* Light gray background color for note section */
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    max-width: 1000px;
}

.note-text {
    color: #343a40; /* Darker text color for readability */
    font-size: 1rem;
}
