body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.heros {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(255, 255, 255);
  text-shadow: 1px 1px 5px black;
}

.hero {
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay for text readability */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 15px;
  line-height: 1.6;
}

.hero-nav {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.nav-home,
.nav-logo {
  color: white;
  font-weight: bold;
  text-decoration: none;
  font-size: 1.1em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.nav-home:hover,
.nav-logo:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.section {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

.section img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.about {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 50px;
}
.mission {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}

.about img {
  width: 490px;
  height: auto;
}

.mission img {
  width: 490px;
  height: auto;
}

.reverse {
  flex-direction: row-reverse;
}

.text {
  flex: 1;
  font-size: large;
}

.text h2 {
  font-size: xx-large;
  font-weight: bold;
}

.what-we-do {
  background-image: url(what-we-do.jpg);
  background-size: cover;
  height: 90vh;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.what-we-do h2 {
  font-size: xx-large;
  font-weight: bold;
  color: aliceblue;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}


.service-box {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

.service-box:hover {
  transform: translateY(-5px);
}


.join-us {
  padding: 50px 20px 50px;
  background-color: #fefefe;
  text-align: center;
  position: relative;
  z-index: 0;
}

.join-us h2 {
  font-size: 2em;
  margin-bottom: 30px;
  color: #333;
}

.join-content {
  max-width: 800px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1em;
}

.join-content p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.icon {
  font-size: 40px;
  /* adjust size here */
  color: hsl(329, 76%, 48%);
}


footer {
  background-color: #222;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

footer a {
  color: #4fc3f7;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

.footer-content h3 {
  margin-bottom: 10px;
  font-size: 1.4em;
}

.footer-content p {
  margin-bottom: 20px;
  font-size: 1em;
}

footer .copyright {
  font-size: 0.9em;
  color: #aaa;
}


@media (max-width: 750) {

  .about,
  .mission {
    flex-direction: column;
  }

  .reverse {
    flex-direction: column;
  }

  .about img,
  .mission img {
    width: 100%;
  }
}