/* Simple Numbered Cards with Icons */

.simple-cards-wrapper {
  padding: 60px 0;
}

.simple-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.simple-card {
  background: #fff;
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.simple-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Colored bar at top */
.simple-card__bar {
  position: absolute;
  top: 0;
  right: 20px;
  width: 4px;
  height: 40px;
  border-radius: 0 0 4px 4px;
}

/* Number badge */
.simple-card__number {
  font-size: 72px;
  font-weight: 800;
  color: #f5f5f5;
  line-height: 1;
  margin-bottom: -20px;
  position: relative;
  z-index: 1;
}

/* Icon */
.simple-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  position: relative;
  z-index: 2;
}

.simple-card__icon i {
  font-size: 48px;
  color: #555;
  line-height: 80px;
}

/* Title */
.simple-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
  text-transform: capitalize;
}

/* Description */
.simple-card__description {
  font-size: 14px;
  line-height: 1.7;
  color: #777;
  margin-bottom: 25px;
}

/* Button */
.simple-card__btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.simple-card__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: #fff;
}

/* Color variants */
.simple-card--pink .simple-card__bar {
  background: linear-gradient(180deg, #ff2d7f 0%, #ff5e9d 100%);
}

.simple-card--pink .simple-card__btn {
  background: linear-gradient(135deg, #ff2d7f 0%, #ff5e9d 100%);
}

.simple-card--pink .simple-card__btn:hover {
  background: linear-gradient(135deg, #ff1a6c 0%, #ff4d8d 100%);
}

.simple-card--blue .simple-card__bar {
  background: linear-gradient(180deg, #00bcd4 0%, #4dd0e1 100%);
}

.simple-card--blue .simple-card__btn {
  background: linear-gradient(135deg, #00bcd4 0%, #4dd0e1 100%);
}

.simple-card--blue .simple-card__btn:hover {
  background: linear-gradient(135deg, #00acc1 0%, #26c6da 100%);
}

.simple-card--yellow .simple-card__bar {
  background: linear-gradient(180deg, #ffc107 0%, #ffd54f 100%);
}

.simple-card--yellow .simple-card__btn {
  background: linear-gradient(135deg, #ffc107 0%, #ffd54f 100%);
}

.simple-card--yellow .simple-card__btn:hover {
  background: linear-gradient(135deg, #ffb300 0%, #ffca28 100%);
}

.simple-card--green .simple-card__bar {
  background: linear-gradient(180deg, #4caf50 0%, #81c784 100%);
}

.simple-card--green .simple-card__btn {
  background: linear-gradient(135deg, #4caf50 0%, #81c784 100%);
}

.simple-card--green .simple-card__btn:hover {
  background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%);
}

.simple-card--purple .simple-card__bar {
  background: linear-gradient(180deg, #9c27b0 0%, #ba68c8 100%);
}

.simple-card--purple .simple-card__btn {
  background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
}

.simple-card--purple .simple-card__btn:hover {
  background: linear-gradient(135deg, #8e24aa 0%, #ab47bc 100%);
}

.simple-card--red .simple-card__bar {
  background: linear-gradient(180deg, #f44336 0%, #ef5350 100%);
}

.simple-card--red .simple-card__btn {
  background: linear-gradient(135deg, #f44336 0%, #ef5350 100%);
}

.simple-card--red .simple-card__btn:hover {
  background: linear-gradient(135deg, #e53935 0%, #ef5350 100%);
}

/* Responsive */
@media (max-width: 768px) {
  .simple-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .simple-card {
    padding: 30px 20px;
  }
  
  .simple-card__number {
    font-size: 60px;
  }
  
  .simple-card__icon {
    width: 70px;
    height: 70px;
  }
  
  .simple-card__icon i {
    font-size: 40px;
    line-height: 70px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .simple-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .simple-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Animation on scroll */
.simple-card.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.simple-card.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Section title styles */
.simple-cards-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.simple-cards-section-title .sub-heading {
  display: block;
  font-size: 14px;
  color: #ff2d7f;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.simple-cards-section-title .heading {
  font-size: 36px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 15px;
}

.simple-cards-section-title .text {
  font-size: 16px;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
