/* Reset + Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Highlight Banner */
.highlight {
  background: #f39c12;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: bold;
}
.highlight strong {
  text-transform: uppercase;
}

/* Navbar */
.navbar {
  background: #111;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar .logo {
  float: left;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f39c12;
}
.navbar nav ul {
  list-style: none;
  float: right;
}
.navbar nav ul li {
  display: inline-block;
  margin-left: 30px;
}
.navbar nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  padding-bottom: 3px;
}
.navbar nav ul li a:hover {
  color: #f39c12;
  border-bottom: 2px solid #f39c12;
}

/* Hero */
.hero {
  color: #fff;
  text-align: center;
  height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: opacity 1s ease-in-out;
  opacity: 1;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6); /* overlay for readability */
  z-index: 0;
}
.hero h2 {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 20px auto;
}
.btn {
  background: #f39c12;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn:hover {
  background: #d35400;
}

/* Sections */
.section {
  padding: 60px 20px;
}
.section h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}
.section p {
  text-align: center;
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
}
.alt-bg {
  background: #f4f4f4;
}

/* Services Grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
}
.card h3 {
  margin-bottom: 15px;
  color: #f39c12;
}

/* Footer */
.footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

/* Responsive */
@media(max-width: 768px) {
  .navbar .logo,
  .navbar nav ul {
    float: none;
    text-align: center;
  }
  .navbar nav ul li {
    display: block;
    margin: 10px 0;
  }
  .hero h2 {
    font-size: 2rem;
  }
}
