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

body {
  font-family: 'Poppins', sans-serif;
  background: #f6f6f6;
  color: #111;
  line-height: 1.6;
}

.main-wrapper {
  max-width: 960px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.logo {
  max-width: 200px;
  height: auto;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: #000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

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

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

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff0000;
}

.hero {
  background: linear-gradient(to right, #cc0000, #ff0000);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #cc0000;
}

section {
  padding: 60px 20px;
}

.services {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex: 1 1 30%;
  text-align: center;
  border-top: 4px solid #cc0000;
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

form input, form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form button {
  background: #cc0000;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

form button:hover {
  background: #a00000;
}

.project-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-img {
  width: 100%;
  max-width: 48%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .project-slider {
    flex-direction: column;
    align-items: center;
  }

  .project-img {
    max-width: 100%;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-wrapper {
    margin: 20px 10px;
    padding: 20px;
  }

  .hero {
    padding: 60px 10px;
  }

  section {
    padding: 40px 10px;
  }
}



