/* === Top Banner === */
.top-banner {
  background: url('../images/banner1.png') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.top-banner h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.top-banner p {
  font-size: 1.2em;
  font-weight: 300;
}

/* === Intro Section === */
.intro-section {
  text-align: center;
  padding: 40px 20px;
  background: #fff3e0;
}

.intro-section h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

/* === Image Gallery === */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.image-gallery img {
  width: 30%;
  max-width: 400px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* === Featured Services === */
.featured-services {
  text-align: center;
  padding: 40px 20px;
  background: #f5f5f5;
}

.featured-services h2 {
  font-size: 2em;
  margin-bottom: 30px;
}

.service-card {
  background: white;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  margin: 10px auto;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* === About Us Block === */
.about-us-block {
  display: flex;
  flex-wrap: wrap;
  padding: 40px;
  align-items: center;
  gap: 20px;
  background: #ffffff;
}

.about-img img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}