/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.header {
  background-color: #0d2c42;
  padding: 20px 0;
  color: white;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Hero Section */
.hero-section {
  padding: 80px 0;
  text-align: center;
  position: relative;
	background: linear-gradient(rgba(13, 44, 66, 0.7),rgba(13, 44, 66, 0.7)),url('../images/beautiful-view-construction-site-city-sunset.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	min-height: 100vh;
	padding: 230px 0 315px;
	margin-top: -99px;
}

.hero-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.hero-section p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: auto;
  color: #fff;
}

/* Services Section */
.services {
  padding: 60px 0;
  background-color: #fff;
}

.services h3 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card {
  background-color: #f2f2f2;
  padding: 25px;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h4 {
  margin-bottom: 10px;
  color: #0d2c42;
}

