/* HERO */
/* BASE HERO */
.services-hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: url('photos/WhatsApp\ Image\ 2026-03-27\ at\ 12.56.07\ PM.jpeg') center/cover no-repeat;
}

.services-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 204, 113, 0.2); /* semi-transparent green */
  z-index: 0;
  animation: floatOverlay 10s ease-in-out infinite;
}

/* HERO CONTENT */
.services-hero .hero-content {
  position: relative;
  z-index: 2;
}

.services-hero h1,
.services-hero p {
  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

/* STAGGERED DELAYS */
.services-hero h1 {
  animation-delay: 0.2s;
  font-size: 3rem;
}

.services-hero p {
  animation-delay: 0.5s;
  font-size: 1.2rem;
  margin-top: 20px;
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FLOATING OVERLAY */
@keyframes floatOverlay {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .services-hero h1 { font-size: 2.5rem; }
  .services-hero p { font-size: 1.1rem; }
}

@media screen and (max-width: 500px) {
  .services-hero h1 { font-size: 1.8rem; }
  .services-hero p { font-size: 1rem; }
}

/* SERVICES LIST */
.services-list {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.services-list .service {
  flex: 1 1 350px;
  background: rgba(46, 204, 113, 0.1); /* green transparent background */
  padding: 25px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  opacity: 1;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.services-list .service:nth-child(1) { animation-delay: 0.2s; }
.services-list .service:nth-child(2) { animation-delay: 0.4s; }
.services-list .service:nth-child(3) { animation-delay: 0.6s; }
.services-list .service:nth-child(4) { animation-delay: 0.8s; }
.services-list .service:nth-child(5) { animation-delay: 1s; }
.services-list .service:nth-child(6) { animation-delay: 1.2s; }
.services-list .service:nth-child(7) { animation-delay: 1.4s; }

.services-list .service h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.services-list .service p {
  font-size: 1.3rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.services-list .service .service-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #2ecc71;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.services-list .service .service-btn:hover {
  background: #27ae60;
  transform: scale(1.05);
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .services-list {
    flex-direction: column;
  }

  .services-list .service {
    flex: 1 1 100%;
  }
}

@media screen and (max-width: 500px) {
  .services-list .service h2 {
    font-size: 1.4rem;
  }

  .services-list .service p {
    font-size: 1,3rem;
  }

  .services-list .service .service-btn {
    padding: 8px 15px;
  }
}

/* SERVICES CTA */
.services-cta {
  text-align: center;
  padding: 80px 20px;
  background: rgba(48, 119, 226, 0.1); /* green transparent background */
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.services-cta h2,
.services-cta p,
.services-cta .cta-btn {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.services-cta h2 {
  animation-delay: 0.2s;
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2e80cc;
}

.services-cta p {
  animation-delay: 0.5s;
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.services-cta .cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #2e80cc;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
  animation-delay: 0.8s;
}

.services-cta .cta-btn:hover {
  background: #27ae60;
  transform: scale(1.05);
}

/* FADE UP ANIMATION */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
  .services-cta h2 { font-size: 2rem; }
  .services-cta p { font-size: 1.1rem; }
}

@media screen and (max-width: 500px) {
  .services-cta h2 { font-size: 1.5rem; }
  .services-cta p { font-size: 1rem; }
  .services-cta .cta-btn { padding: 10px 20px; }
}