body {
  font-family: 'Poppins', sans-serif;
}

.main-header {
  background: #111;
  padding: 12px 0;
}

.logo {
  color: #ffc107;
}

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

.nav-list a {
  color: #fff;
  text-decoration: none;
}

.hero-section {
  height: 100vh;
  background: url('../images/projects/project1.jpg') center/cover no-repeat;
  position: relative;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.section {
  padding: 80px 0;
}

.service-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.project-box {
  background: #f8f9fa;
  padding: 25px;
  border-left: 5px solid #ffc107;
}

.gallery-card img {
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-card img:hover {
  transform: scale(1.05);
}

.footer {
  background: #000;
  color: #aaa;
  padding: 20px 0;
}
