#why-choose-us {
  background: #f8f9fa;
}

.tab-btn {
  text-align: left;
  padding: 1.25rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: white;
}

.tab-btn.active {
  background: rgba(227, 35, 41, 0.08);
  border-color: #E32329;
  box-shadow: 0 10px 25px rgba(227, 35, 41, 0.12);
}

.tab-btn:hover:not(.active) {
  border-color: rgba(227, 35, 41, 0.25);
  transform: translateY(-4px);
}

.icon-wrapper {
  width: 52px;
  height: 52px;
  background: rgba(227, 35, 41, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper i {
  color: #E32329 !important;
}

.overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}

#image-container {
  transition: all 0.5s ease;
}

/* Scroll Animation */
.hidden {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}