/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #eaf8fa;
}

header {
    background-color: #0d602a;
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center; /* Vertically center the content */
    justify-content: space-between; /* Space between logo and navigation */
}

header img {
    height: 160px; /* Increased logo size */
}

header h1 {
    font-size: 3rem; /* Increase font size */
    margin: 0;
    margin-left: 2rem ;
}

nav {
    margin-left: auto; /* Push navigation to the right */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center; /* Align navigation links vertically */
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem; /* Adjust font size for navigation links */
}

header a:hover {
    text-decoration: underline;
}

section {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}

.hero {
    text-align: center;
    margin-bottom: 2rem;
}

.hero h2 {
    color: #0d602a;
}

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

.initiative {
    background: #ffffff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.initiative h3 {
    color: #0d602a;
}

.initiative ul {
    list-style: none;
    padding: 0;
}

.initiative ul li {
    margin: 0.5rem 0;
}

.service-options {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
}

.service {
    background: #fff;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    margin: 0 1rem;
}

.service h3 {
    color: #0d602a;
}

.button {
    display: inline-block;
    background-color: #0d602a;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
}

.button:hover {
    background-color: #0d602a;
}

form {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: auto;
}

form label {
    display: block;
    margin: 0.5rem 0;
}

form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1rem;
}

form button {
    background-color: #0d602a;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
}

form button:hover {
    background-color: #0d602a;
}

.team {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 2rem;
}

.team-member {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    text-align: center;
    margin: 1rem;
    flex: 1 1 calc(33% - 2rem); /* Adjusts the width of each team member card */
    max-width: calc(33% - 2rem); /* Ensures that team members are spaced evenly */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effects */
}

.team-member:hover {
    transform: translateY(-10px); /* Lift effect on hover */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.team-member img {
    border-radius: 50%;
    width: 120px; /* Adjusted size for better proportion */
    height: 120px; /* Ensure image maintains a circular shape */
    object-fit: cover; /* Ensures image fits well inside the circle */
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #0d602a;
    margin: 0.5rem 0;
}

.team-member p {
    color: #666;
}

#chat-button {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: #007bff;
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#chat-box {
    display: none;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    width: 300px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#chat-messages {
    max-height: 200px;
    overflow-y: auto;
    padding: 1rem;
    border-bottom: 1px solid #ccc;
}

#chat-input {
    width: calc(100% - 90px);
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#send-chat {
    width: 80px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 0.5rem;
}

#send-chat:hover {
    background-color: #0056b3;
}

/* Awareness Page Specific Styles */
.awareness-page {
    background-color: #f0f3bd;
    padding: 2rem;
    text-align: center;
}

.awareness-page h2 {
    color: #05668d;
    margin-bottom: 1rem;
    font-size: 2rem; /* Increase font size for heading */
}

.awareness-page img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.awareness-page p {
    color: #333;
    margin-bottom: 1rem;
}

.awareness-page .cta {
    background-color: #028090;
    color: #fff;
    padding: 1rem;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none;
    margin-top: 1rem;
}

.awareness-page .cta:hover {
    background-color: #00a896;
}

.awareness-page .social {
    margin-top: 2rem;
}

.awareness-page .social a {
    color: #028090;
    text-decoration: none;
    font-size: 1.5rem;
    margin: 0 1rem;
}

.awareness-page .social a:hover {
    color: #034431;
}
