.servicesxt {
  text-align: center;
  padding: 55px;
  background: linear-gradient(45deg, #3b82f6, #06b6d4);
  color: #fff;
}

.services {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  padding: 40px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px);
  overflow: hidden;
}

.image-box {
  border-radius: 15px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
  transition: transform 0.6s ease;
}

.service-card h3 {
  margin: 10px 0;
  color: #333;
}

.service-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.service-card:hover img {
  transform: scale(1.08);
}
@media (max-width: 768px) {
  .navbar {
    display: none;
  }
}
@media (max-width: 767px) {
  .servicesxt {
    text-align: center;
    padding: 60px;
    background: linear-gradient(45deg, #3b82f6, #06b6d4);
    color: #fff;
  }
}
