* {
	margin: 0;
	padding: 0;
}

body {
	background-color: #228b2200;
}

#header {
    top: 0%;
    left: 0%;
    height: 13%;
    position: fixed;
    width: 100%;
    background-color: rgba(255, 246, 246, 0.376);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

.header a:visited {
	color: white;
}

.header-image-container img {
	position: relative;
	width: 100%;
	height: 700px;
	overflow: hidden;
}

/* Main image */
.header-image {
	width: 100%;
	height: 100%;
	object-fit: cover; /* Keeps aspect ratio while filling the container */
}

/* Transparent overlay */
.header-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none; /* Prevents interaction blocking */
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(0, 0, 0, 0.0);
	color: rgb(0, 0, 0);
	border: none;
	padding: 0.5%;
	cursor: pointer;
	font-size: 300%;
}
.left {
	left: 0;
}
.right {
	right: 0;
}


/* Top bar for logo & menu */
.top-bar {
	position: absolute;
	top: 20%;
	left: 30%;
	right: 30%;
	display: flex;
	justify-content: space-between; /* Space between logo & menu */
	align-items: center;
}

#dona {
    display: inline-block;
    border-radius: 10px;
    padding: 10px 20px;
    color:white;
    background-color: rgb(203, 3, 3);
}

/* Logo */
.logo {
	display: flex;
	align-items: left;
}

.logo img {
	width: 10vw; /* Adjust this value to control the width */
	height: auto; /* Ensures the aspect ratio is maintained */
	margin-top: 1%;
	margin-left: 1%;
	margin-bottom: 1%;
	font-size: 5vw;
}


/* Navigation menu */
.menu {
	position: absolute;
	top: 30%;
	right: 1%;
	display: flex;
	gap: 18px;
}

.menu a {
	display: flex;
	color: rgb(5, 5, 5);
	text-decoration: none;
	font-size: 18px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	transition: color 0.3s; /* Smooth hover effect */
	justify-content: center;
	align-items: center;
	padding: 10px 5px;
}


.menu a:hover {
	color: lightgray; /* Change color on hover */
}

/* Dropdown menu */
.dropdown {
	position: relative;
}

.dropdown-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: rgba(255, 255, 255, 0.5); 
	padding: 10px 0;
	border-radius: 5px;
	min-width: 150px;
	z-index: 999;

}

.dropdown-menu a {
	display: block;
	padding: 8px 15px;
	color: rgb(0, 0, 0);
	font-size: 16px;
	text-align: left;
	white-space: nowrap;
}


.dropdown-menu a:hover {
	background: rgba(255, 255, 255, 0.2);
}


/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
	display: block;
}


/*project sector*/
.project-sectors{
	width: 30%;
	margin: auto;
	display: flex;
	gap: 20px;
	flex-direction: column;
}

.project-sectors img{
	margin-right: 25px;
	margin-top: 15px;
	margin-bottom: 15px;
	object-fit: cover;
	width: 8vw;
    height: auto;
	font-size: 5vw

}

.p1{
	display: flex;
	justify-content: center;
	gap: 20px;
}
.p2{
	display: flex;
	justify-content: center;
	gap: 20px;
}

/* Footer */
.footer {
	background-color: #147414;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 20px;
  }
  
  /* Logo */
  .logo_footer {
	width: 20%;
	height: auto;
	margin: 20px;
  }
  
  /* Info */
  .info {
	color: white;
	font-family: Arial, sans-serif;
	margin: 20px;
	max-width: 600px;
  }
  
  .info a {
	color: white;
	text-decoration: underline;
  }
  
  /* Social Icons */
  .social {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
	margin-top: 20px;
	flex-wrap: wrap;
  }
  
  .social img {
	width: 40px;
	height: auto;
	transition: transform 0.2s ease;
  }
  
  .social img:hover {
	transform: scale(1.1);
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
	.footer {
	  flex-direction: column;
	  align-items: center;
	  text-align: center;
	}
  
	.logo_footer {
	  width: 25%;
	  margin-bottom: 10px;
	}
  
	.info {
	  margin: 10px;
	}
  
	.social {
	  justify-content: center;
	}
  }