/* Reset some default browser styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #004d40;
  padding: 1rem 2rem;
}

.logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  padding: 0.5rem 1rem;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: #00332c;
  border-radius: 4px;
}

/* Hero Section */
.hero {
  background: url('https://assets.zyrosite.com/cdn-cgi/image/format=auto,w=1776,h=1776,fit=crop/AVLJVLxpDGcxqD1r/dji_0619-mjE2EEkapbTyxeP6.JPG') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-content button {
  background-color: #00897b;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 4px;
}

.hero-content button:hover {
  background-color: #00695c;
}

/* Services Section */
#services {
  padding: 3rem 2rem;
  background-color: #f3f3f3;
}

#services h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.services-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.service-box {
  flex: 1 1 250px;
  background-color: #fff;
  margin: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-box h3 {
  margin-bottom: 1rem;
}

/* Projects Section */
#projects {
  padding: 3rem 2rem;
}

#projects h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.project-gallery {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.project-card {
  flex: 1 1 300px;
  margin: 1rem;
  text-align: center;
}

.project-card img {
  width: 100%;
  height: auto;
  margin-bottom: 0.5rem;
}

/* Contact Section */
#contact {
  background-color: #f3f3f3;
  padding: 3rem 2rem;
}

#contact h2 {
  text-align: center;
  margin-bottom: 2rem;
}

#contactForm {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#contactForm label {
  margin: 0.5rem 0 0.2rem;
}

#contactForm input,
#contactForm textarea {
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
}

#contactForm button {
  background-color: #004d40;
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
}

#contactForm button:hover {
  background-color: #00332c;
}

/* Footer */
footer {
  text-align: center;
  background-color: #004d40;
  color: #fff;
  padding: 1rem;
}

footer a {
  color: #fff;
  text-decoration: underline;
}
