.why-choose-us {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  padding: 80px 0;
  overflow: hidden;
}

.why-choose-us .section-title {
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 2rem;
  text-shadow: 2px 2px 5px rgba(0, 123, 255, 0.3);
  color: #00bfff;
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}

.why-choose-us .section-title::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #00bfff;
  margin: 8px auto 0;
  border-radius: 50px;
  animation: pulseBar 2s infinite ease-in-out;
}

@keyframes pulseBar {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.5); opacity: 0.6; }
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px 25px;
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 187, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  perspective: 1000px;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.1), transparent 70%);
  transform: rotate(25deg);
  transition: all 0.4s ease;
}

.feature-card:hover::before {
  top: -20%;
  left: -20%;
  background: radial-gradient(circle, rgba(0, 123, 255, 0.2), transparent 60%);
}

.feature-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 187, 255, 0.35);
  background: rgba(0, 123, 255, 0.15);
}

.feature-card i {
  font-size: 3rem;
  color: #00bfff;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.feature-card:hover i {
  color: #fff;
  transform: scale(1.1);
}

.feature-card h5 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #ffffff;
}

.feature-card p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}
