/* ! Banner Section */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

/* Banner */
.service-hero-banner {
  background-image: url("/assets/banner-95.png");
  background-size: cover;
  background-position: initial;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.service-hero-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

.service-hero-title {
  font-size: 3rem;
  margin-top: 1.5rem;
  font-weight: 300;
  z-index: 1;
}

.service-hero-subtitle {
  font-size: 1.2rem;
  margin-top: 0.8rem;
  z-index: 1;
  color: white;
}

/* ! Service Section */
.services-section {
  max-width: 1700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.subtitle {
  text-align: center;
  color: black;
  font-size: 1.2rem;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 5px 20px rgb(209, 29, 35, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-color-gradient);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgb(209, 29, 35, 0.5);
}

.service-card img {
  width: auto;
  height: 40px;
  margin-bottom: 10px;
}

h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

p {
  color: black;
  line-height: 1.8;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1250px) {
  /* Service Section */
  .services-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* Banner Section */
  .service-hero-title {
    font-size: 1.6rem;
  }
  .service-hero-subtitle {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  /* Service Section */
  h1 {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
