* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0D1F93; /* Dark blue background */
    color: #fff;
}

nav .logo h2 {
    margin-left: 20px;
}

nav .nav-links a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
}

nav .login-btn {
    background-color: white;
    color: #0D1F93;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

nav .login-btn:hover {
    background-color: #f0f4f8;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px;
    background-image: url('back.jpg'); /* Use the background image of the town/hills */
    background-size: cover;
    background-position: center;
    height: 100vh;
    color: white;
}

.hero-text h1 {
    font-size: 50px;
    color: #fff;
}

.hero-text p {
    font-size: 24px;
    margin-top: 10px;
    color: #fff;
}

.form-box {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    width: 450px;
}

.form-box h2 {
    font-size: 24px;
    color: #0D1F93;
    margin-bottom: 10px;
}

.form-box p {
    color: #99a3a4;
    margin-bottom: 20px;
}

.form-box label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.form-box select,
.form-box input {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-box button {
    width: 100%;
    background-color: #0D1F93;
    color: white;
    padding: 12px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-box button:hover {
    background-color: #0b1873;
}
/* TLO Activity Section */
.tlo-activity {
    margin: 50px 100px;
    padding: auto;
}

.tlo-activity h2 {
    font-size: 24px;
    color: #0D1F93;
}

.tlo-activity p {
    color: #99a3a4;
    margin-bottom: 20px;

}

.activity-cards {
    display: flex;
    gap: 50px;
}

.card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 250px;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.card h3 {
    font-size: 18px;
    margin-top: 10px;
    color: black;
}

.card p {
    font-size: 14px;
    color: #666;
}

/* Expenses Report and Upcoming Events Section */
.bottom-section {
    display: flex;
    justify-content: space-between;
    margin: 50px 100px;
}

.expenses-report, .upcoming-events {
    width: 48%;
}

.expenses-report h2, .upcoming-events h2 {
    font-size: 20px;
    color: #0D1F93;
}

.expenses-report p, .upcoming-events p {
    color: #99a3a4;
    margin-bottom: 20px;
}

.expense-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.expense-item .amount {
    font-size: 24px;
    color: #000;
}

.expense-item .description {
    font-size: 20px;
    color: #666;
    font-weight: bold;
    padding: 25px;
}
.upcoming-events .p{
    color: #99a3a4;
}

.upcoming-events .event-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.upcoming-events .event-date {
    font-size: 24px;
    color: #0D1F93;
    font-weight: bold;
}

.upcoming-events .event-description {
    font-size: 16px;
    color: #666;
    padding: 20px;
}

.upcoming-events .event-time {
    font-size: 14px;
    color: #888;
}
/* Footer Styles */
footer {
    background-color: #0D1F93;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 5px 0;
    color: #fffdfd;
    font-size: 16px;
}

footer .org-name {
    font-weight: bold;
    font-size: 18px;
    color: #cac8c8;
}

footer .location {
    font-size: 14px;
    color: #777;
}
/* blodd bank css elements starts here */
.blood-bank-paragraph h1{
    text-align: center;
    color:#0D1F93;
    margin-bottom: 20px;
}
.blood-bank-paragraph {
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
}

.blood-bank-paragraph em {
    font-style: italic;
    color: #555;
}
/* here is blood donar information in table form */
.blood-bank-table {
    margin: 40px auto;
    text-align: center;
}

.blood-bank-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.blood-bank-table th, .blood-bank-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.blood-bank-table th {
    background-color: #f4f4f4;
    font-weight: bold;
}
/* here is the next and previous buttons named 1,2,3,... */
.pagination {
    margin: 20px 0;
    text-align: center;
}

.pagination a {
    margin: 0 10px;
    text-decoration: none;
    color: #0D1F93; /* Customize this color */
}

.pagination span {
    margin: 0 10px;
}
/* Here is styles about contact us page */
.contact-us-paragraph h1{
    text-align: center;
    color:#0D1F93;
    margin-bottom: 20px;
}
.contact-us-paragraph {
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
}

.contact-us-paragraph em {
    font-style: italic;
    color: #555;
}
/* Here is contact us photoo and other details included */
.people-details {
    text-align: center;
    margin: 40px 0;
}
.people-details h1{
    color: #0D1F93;
}

.people-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.person {
    width: 200px; /* Adjust width as needed */
    margin: 20px;
    text-align: center;
}

.profile-photo {
    width: 100px; /* Adjust photo size as needed */
    height: 100px; /* Adjust photo size as needed */
    border-radius: 50%; /* Makes the photo circular */
    object-fit: cover; /* Ensures the image covers the circular area */
    margin-bottom: 10px;
}

.details h2 {
    font-size: 18px; /* Adjust font size as needed */
}

.details p {
    margin: 5px 0; /* Space between paragraphs */
}
/* This defines the google maps height and width in the screen */
.map-section h2{
    align-items: center;
    margin-bottom: 50px;
    text-align: center;
    color: #0b1873;
}
.map-section p{
    text-align: center;
    margin: 30px auto;
    max-width: 800px;
    font-size: 18px;
    line-height: 1.6;
}
.map-section Location-image{
    align-items: center;
}
#map {
    align-items: center;
    height: 400px; /* Adjust height as needed */
    width: 100%; /* Full width */
}
/* login page styles appear from here */
