.why-choose-us {
  background: linear-gradient(135deg, #fdf2f6, #fff8f9);
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #a70b3a;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #a70b3a;
  margin: 12px auto 0;
  border-radius: 3px;
  animation: slideLine 1.2s ease forwards;
}

@keyframes slideLine {
  from { width: 0; }
  to { width: 80px; }
}

/* Card Style */
.choose-card {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15), 0 0 10px rgba(167, 11, 58, 0.3);
}

/* Icon Circle */
.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #a70b3a, #d11e50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.choose-card:hover .icon-circle {
  transform: scale(1.1) rotate(10deg);
}

/* Headings & Text */
.choose-card h5 {
  font-weight: 700;
  font-size: 18px;
  color: #a70b3a;
  margin-bottom: 10px;
}

.choose-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Animation */
.choose-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s forwards;
}

.choose-card:nth-child(1) { animation-delay: 0.2s; }
.choose-card:nth-child(2) { animation-delay: 0.4s; }
.choose-card:nth-child(3) { animation-delay: 0.6s; }
.choose-card:nth-child(4) { animation-delay: 0.8s; }
.choose-card:nth-child(5) { animation-delay: 1s; }
.choose-card:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media(max-width:768px){
  .choose-card { padding: 20px; }
  .icon-circle { width: 65px; height: 65px; font-size: 22px; }
}
