/* Banner Section */
.repair-hero {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  text-align: center;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  flex-direction: column;
}

.repair-hero .hero-img img {
  width: 100%;
  height: 60vh;
  object-fit: cover;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  filter: brightness(70%);
}

/* Content on Banner */
.hero-content {
  position: absolute;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-btn {
  background: #0077ff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #005fcc;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .repair-hero .hero-img img {
    height: 40vh;
    border-radius: 0 0 15px 15px;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* Section Titles */
.section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

/* Service Cards */
.services {
  padding: 60px 20px;
  background: #f8f9fa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  text-align: center;
  transition: 0.4s;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Showcase */
.showcase {
  padding: 60px 20px;
  text-align: center;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.img-box {
  position: relative;
}

.img-box img {
  border-radius: 12px;
  width: 100%;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.img-box span {
  display: block;
  margin-top: 10px;
  font-weight: 600;
}

/* Why Us */
.why-us {
  padding: 60px 20px;
  background: #eef5ff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 15px;
}

.why-box {
  background: white;
  padding: 16px;
  border-radius: 12px;
  font-size: 18px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* CTA */
.cta {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
}

.cta-btn {
  background: white;
  padding: 14px 30px;
  border-radius: 10px;
  color: #007bff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #e3e3e3;
}

/* Mobile */
@media (max-width: 600px) {
  .hero-content h1 { font-size: 28px; }
  .section-title { font-size: 24px; }
  .cta-btn { font-size: 16px; }
}
