html {
  scroll-behavior: smooth;
}


body{
    background-color: #000814;
}
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.service-image,
.service-content {
  width: 50%;
  padding: 1rem;
  box-sizing: border-box;
}

.service-card.reverse {
  flex-direction: row-reverse;
}


.service-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  height: 500px;
}

.service-content {
  flex: 1;
  color: #fff;
}

.service-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #fff;
}

.service-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #fff;
}

.contact-btn {
  display: inline-block;
  background-color: #f9c800;
  color: #000;
  padding: 0.7rem 1.5rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: background 0.3s ease;
}

.contact-btn:hover {
  background-color: #e0b700;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .service-image,
  .service-content {
    width: 100%;
    text-align: center;
  }

  .service-card,
  .service-card.reverse {
    flex-direction: column;
  }

  .service-image img {
    height: auto;
}

}


.service-summary {
  background: #f9c800;
  padding: 1rem 0.5rem;
  text-align: center;
}

.service-summary-grid {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 900px;
  margin: auto;
  gap: 1rem;
  flex-wrap: wrap;
}

.summary-box {
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.summary-box i {
  font-size: 1.2rem;
  color: #003566;
  margin-bottom: 0.2rem;
}

.summary-box p {
  font-size: 0.75rem;
  color: #003566;
  margin: 0;
}
