.card {
  background: #bef0ff;
  transition: all 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
  color: #0d6efd;
}

.form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

button.btn-primary {
  background: linear-gradient(135deg, #0d6efd, #0b5ed7);
  border: none;
}

button.btn-primary:hover {
  background: linear-gradient(135deg, #0b5ed7, #0a58ca);
}

textarea {
  resize: none;
}

/*Service Page project life circle*/
.lifecycle-card {
  transition: all 0.4s ease-in-out;
  border: 1px solid #f1f1f1;
}

.lifecycle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.icon-circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.lifecycle-card:hover .icon-circle {
  transform: scale(1.1);
}

/*footer widget*/
.footer-widget-box {
  padding: 10px 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-link {
  color: #ccc;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}
.footer-link:hover {
  color: #fff;
  transform: translateX(6px);
}
.footer-link i {
  transition: color 0.3s ease, transform 0.3s ease;
}
.footer-link:hover i {
  transform: scale(1.2);
}
.widget-title {
  position: relative;
  display: inline-block;
}
.widget-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #f26728, #ffae42);
  border-radius: 5px;
}