.section-padding {
  padding: 80px 0;
}

.service-item {
  background: #fff;
  padding: 16px;
  margin: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
  position: relative;
  overflow: hidden;
}

.service-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

.service-item:hover::after {
  transform: scaleX(1);
}

/* Unique color coding for each service */
.service-reports::after { background: #3498db; }
.service-reports .service-icon { background: #3498db; }

.service-visa::after { background: #2ecc71; }
.service-visa .service-icon { background: #2ecc71; }

.service-video::after { background: #9b59b6; }
.service-video .service-icon { background: #9b59b6; }

.service-airport::after { background: #e67e22; }
.service-airport .service-icon { background: #e67e22; }

.service-assistance::after { background: #e74c3c; }
.service-assistance .service-icon { background: #e74c3c; }

.service-icon {
  font-size: 3.5rem;
  color: #89c543;
  padding: 25px;
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
}

.service-item:hover .service-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-icon {
  color: #89c543; /* Simple green color */
  /* Ya */
  color: #00FF00; /* Bright green */
  /* Ya */
  color: #228B22; /* Forest green */
}
h5 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.service-item:hover h5 {
  color: inherit;
}

/*p {
  color: #7f8c8d;
  font-size: 0.95rem;
  line-height: 1.5;
}*/

p {
    color: #192021;
    font-size: 0.95rem;
    line-height: 1.5;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .service-item {
    margin: 10px;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .service-item {
    margin: 10px 0;
    max-width: 280px;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    font-size: 3.5rem;
  }
}

@media (max-width: 576px) {
  .service-item {
    padding: 20px;
  }
  
  h5 {
    font-size: 1.1rem;
  }
  
  p {
    font-size: 0.9rem;
  }
}