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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #FFFFFF; /* White background */
  color: #1C1C1C; /* Dark Gray text */
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Navbar */
header {
  background: #0D4032; /* Dark Green */
  color: #FFFFFF;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  float: left;
  height: 70px;
  width: 70px;
  border-radius: 2%;
}

nav {
  float: right;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a:hover,
.nav-links a.active {
  text-decoration: underline;
  color: #E47C1B; /* Orange hover */
}

/* Hero Section */
.hero {
  background: url('../images/work-in-progress.jpg') no-repeat center center/cover;
  color: #FFFFFF;
  padding: 150px 20px 100px 20px;
  text-align: center;
}

.hero h2 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #0D4032; /* Dark Green title */
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  background: #E47C1B; /* Orange button */
  color: #FFFFFF;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.btn:hover {
  background: #0D4032; /* Dark Green hover */
}

/* Services */
.services {
  padding: 50px 20px;
  text-align: center;
  background: #FFFFFF;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-card {
  background: #0D4032; /* Dark Green card */
  color: #FFFFFF;
  padding: 20px;
  border-radius: 8px;
}

.service-card:hover {
  background: #E47C1B; /* Orange hover */
  transition: 0.3s;
}

/* About Preview */
.about-preview {
  padding: 50px 20px;
  text-align: center;
  color: #1C1C1C; /* Dark Gray */
}

/* Footer */
footer {
  background: #0D4032; /* Dark Green */
  color: #FFFFFF;
  text-align: center;
  padding: 15px 0;
  margin-top: 30px;
}
