.why-choose-us::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(204, 46, 46, 0.1);
  z-index: 0;
}

.why-choose-us::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(219, 52, 52, 0.1);
  z-index: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(to bottom, #db3434, #2d2d2e);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-item:hover {
  background: #f8f9fa;
  transform: translateX(5px);
}

.feature-item:hover::before {
  opacity: 1;
}

.feature-item:hover .checkmark {
  transform: scale(1.2);
  color: #2d2d2e;
}

.checkmark {
  color: #c62222;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.creative-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
  height: calc(100% - 1rem);
}

.creative-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(219, 52, 52, 0.1) 0%, rgba(59, 62, 61, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.creative-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.creative-card:hover::before {
  opacity: 1;
}

.creative-card .card-body {
  padding: 30px 25px;
  position: relative;
  z-index: 2;
}

.icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.card-icon {
  height: 70px;
  width: auto;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.icon-hover-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,rgba(219, 52, 52, 0.5));
  border-radius: 50%;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 1;
}

.creative-card:hover .icon-hover-effect {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.creative-card h3 {
  color: #1c1f22;
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.creative-card:hover h3 {
  color: #db3434;
}

.creative-card p {
  color: #1b1c1c;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}



/* Responsive Design */
@media (max-width: 991px) {
  .why-choose-us {
    padding: 60px 0;
  }
  
  .features-list {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 2rem;
  }
  
  .section-title p {
    font-size: 1rem;
  }
  
  .creative-card {
    margin-bottom: 20px;
  }
}