body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #000;
  color: #fff;
}
@keyframes slideLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero-text {
  animation: slideLeft 1s ease forwards;
}

.hero-image {
  animation: slideRight 1s ease forwards;
}

.about {
  animation: fadeIn 1.5s ease forwards;
}

.services {
  animation: fadeIn 2s ease forwards;
}

.contact {
  animation: fadeIn 2.5s ease forwards;
}

.testimonials {
  animation: fadeIn 3s ease forwards;
}
/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 40px;
}

.hire-btn {
  display: inline-block;
  padding: 12px 25px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 20px;
  transition: all 0.3s ease;
}

/* HOVER */
.hire-btn:hover {
  background: #25D366; /* WhatsApp green */
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* CLICK */
.hire-btn:active {
  transform: scale(0.95);
}

/* HOVER */
.hero-text button:hover {
  background: #ff4d5a;
  color: white;
  transform: translateY(-3px);
}

.hero-image img {
  width: 300px;
  border-radius: 12px;
}

/* ABOUT */
.about {
  padding: 40px;
  text-align: center;
}

/* SERVICES */
.services {
  padding: 40px;
  text-align: center;
}

.service-box {
  background: #111;
  margin: 15px;
  padding: 20px;
  border-radius: 10px;
}
/* TESTIMONIALS */
.testimonials {
  padding: 50px;
  text-align: center;
}

.testimonial-box {
  background: #111;
  margin: 20px auto;
  padding: 20px;
  max-width: 500px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.testimonial-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.testimonial-box p {
  font-style: italic;
}

.testimonial-box h4 {
  margin-top: 10px;
  color: #aaa;
}

/* CONTACT */
.contact {
  padding: 40px;
  text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-image img {
    margin-top: 20px;
  }
}