/* Base & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: 'Nunito', sans-serif;
  background-color: #fff;
  padding-top: 70px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}
.logo img {
  height: 40px;
}
.menu-icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
}
.navbar {
  display: flex;
  gap: 20px;
}
.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 10px;
}
.navbar a:hover {
  background: #333;
  border-radius: 5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 10px;
}
.hero-text h1 {
  font-size: 40px;
}
.hero-text p {
  font-size: 18px;
  margin: 10px 0;
}

/* About/Services Section */
.about-brief {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background: #f9f9f9;
}
.about-img, .about-content {
  flex: 1 1 50%;
  padding: 20px;
}
.about-img img {
  width: 100%;
  border-radius: 10px;
}
.about-content h2 {
  margin-bottom: 15px;
}
.about-content p {
  margin-bottom: 20px;
}

/* Get a Quote */
.quote-section {
  background: #111;
  text-align: center;
  padding: 40px 20px;
}
.quote-btn {
  background: #fff;
  color: #111;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.quote-btn:hover {
  background: #ddd;
}

/* Buttons */
.btn {
  background-color: #111;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
}
.btn:hover {
  background-color: #333;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .navbar {
    flex-direction: column;
    width: 100%;
    display: none;
    background-color: #111;
  }
  .navbar.show {
    display: flex;
  }
  .about-brief {
    flex-direction: column;
  }
  .about-img, .about-content {
    flex: 1 1 100%;
  }
  .hero-text h1 {
    font-size: 28px;
  }
}

