
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #111;
  color: #fff;
}

/******** HEADER BAR ********/
.top-bar {
  background: linear-gradient(to right, #000, #222);
  text-align: center;
  padding: 6px 0;
  font-size: 14px;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #000;
  border-bottom: 2px solid #c9a227;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-weight: bold;
  color: #c9a227;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

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

.call-now {
  background: #c9a227;
  color: #000 !important;
  padding: 6px 10px;
  border-radius: 6px;
}

/******** HERO ********/
.hero {
  background: radial-gradient(circle at top, #c9a22755, #000);
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 34px;
  font-weight: bold;
  color: #c9a227;
  text-transform: uppercase;
}

.hero p {
  max-width: 600px;
  margin: 15px auto;
  color: #ccc;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  background: #c9a227;
  color: #000;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: bold;
}
/******** SERVICES ********/
.services {
  padding: 60px 20px;
  text-align: center;
}

h2 {
  color: #c9a227;
  font-size: 28px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.service-card {
  background: #1a1a1a;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 10px;
  color: #ccc;
}

/******** PROJECTS ********/
.projects {
  padding: 60px 20px;
  border-top: 3px solid #c9a227;
}

.project-item {
  margin-top: 25px;
}

.project-item img {
  width: 100%;
  border-radius: 12px;
  border: 3px solid #c9a227;
  display: block;
  margin-bottom: 10px;
}

.project-item h3 {
  color: #fff;
  text-align: center;
  font-size: 20px;
}
/******** CONTACT ********/
.contact {
  padding: 60px 20px;
  text-align: center;
  border-top: 3px solid #c9a227;
}

.contact-methods {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-methods a {
  display: inline-block;
  background: #c9a227;
  color: #000;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

/******** FOOTER ********/
.footer {
  background: #000;
  padding: 25px 10px;
  text-align: center;
  font-size: 14px;
  color: #888;
  border-top: 2px solid #c9a227;
}

/******** RESPONSIVE ********/
@media (min-width: 768px) {
  .contact-methods {
    flex-direction: row;
    justify-content: center;
  }
  .cta-btn {
    font-size: 18px;
  }
  .hero h1 {
    font-size: 46px;
  }
}
