body {
    margin: 0;
    font-family: Arial, sans-serif;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
}

header .logo {
    font-size: 24px;
    font-weight: bold;
	color: #000;
}

header nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #000;
	display: inline;
}


header .donate {
    background: #ff5722;
    color: #fff;
    padding: 2px 10px;

}

header .action {
    background: #ff9800;
    color: #fff;
    padding: 2px 10px;

}

header .menu {
    background: #000;
    color: #fff;
    padding: 2px 10px;

}

p1 {
    color: #ff5722;
	font-size: 26px;
	margin: 10;
	padding: 5px 50px;
	text-align: center;
}

.hero {
    background: url("./docs/assets/images/C3.JPG") no-repeat center center/cover;
    color: #000;
    text-align: center;
    padding: 100px 20px;
	    background-size: cover; /* Ensures the image covers the entire section */
    background-attachment: fixed; /* Keeps the image fixed while scrolling */
}

.hero h1 {
    font-size: 48px;
    margin: 0;
}

.hero h1 span {
    color: #ff5722;
}

.hero p {
    max-width: 600px;
    margin: 20px auto;
    font-size: 18px;
}

.hero button {
    background: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
}

.statistics {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background: #fff;
}

.statistics .stat {
    text-align: center;
}

.statistics .stat h2 {
    font-size: 36px;
    color: #ff5722;
}

.statistics .stat p {
    font-size: 16px;
}


.about {
    display: flex;
    padding: 50px 20px;
    background: #f4f4f4;
}

.about .about-content {
    flex: 1;
    padding: 20px;
}

.about .about-content h3 {
    font-size: 24px;
}

.about .about-content p {
    font-size: 16px;
    margin: 20px 0;
}

.about .about-content button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button1 {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	    text-decoration: none;
}

.about .about-image {
    flex: 1;
    background: url('./docs/assets/images/C1.JPG') no-repeat center center/cover;
		    background-size: cover; /* Ensures the image covers the entire section */

}
.about .about-image img {
    display: block; /* Ensures the image is displayed as a block */
    width: 100%; /* Ensures the image takes up the full width of its container */
    height: auto; /* Maintains the aspect ratio of the image */
}
.about .about-content2 {
    flex: 1;
    padding: 20px;
    background: #fff;
}
.about .about-content2 button {
    background: #4caf50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}
.about .about-image2 {
    flex: 1;
    background: url('./docs/assets/images/C2.JPG') no-repeat center center/cover;
	color: #fff;
    text-align: center-left;
		    background-size: cover; /* Ensures the image covers the entire section */
}
.button2 {
    background: #000;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
	font-size: 12px;
	    text-decoration: none;
}


.projects {
    text-align: center;
    padding: 50px 20px;
    background: #90caf9;
}

.projects h3 {
    font-size: 24px;
}

.projects p {
    font-size: 16px;
    max-width: 600px;
    margin: 20px auto;
}


.projects .button {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 7px 15px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}


label {
            display: block;
            margin-bottom: 2px;
			    color: #ff5722;
}
input {
            width: 50%;
            padding: 8px;
            margin-bottom: 2px;
            box-sizing: border-box;

}
