/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

/* Header styling */
.header {
  background:  #007a3d;
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.logo {
  width: 80px;
  height: 80px;
  margin-right: 10px;
}

.logo-name {
  font-size: 1.8rem;
  font-weight: bold;
}

/* Navigation menu */
.nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
  font-size: 1rem;
}

.nav a:hover {
  text-decoration: underline;
}

/* Our Work Section */
.our-work {
  padding: 50px 20px;
  text-align: center;
}

.our-work h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #004080;
}

.our-work p {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

/* Grid for work items */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.work-item {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.work-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.work-item h3 {
  margin-bottom: 10px;
  color: #004080;
}

.work-item p {
  font-size: 1rem;
}

/* Hover effect */
.work-item:hover {
  transform: translateY(-10px);
}
footer {
  text-align: center;
  padding: 1rem;
  background: #004d26;
  color: #fff;
}
/* CSS Document */

