/* =======================
   Ultra-Modern Features Section
======================= */
.features-section {
  position: relative;
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0faff 0%, #e3f7ff 100%);
  overflow: hidden;
  border-bottom: 1px solid #dfe6e9;
}

/* Feature Card */
.feature-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.2);
}

/* Feature Image */
.feature-img {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, box-shadow 0.4s ease;
}

.feature-card:hover .feature-img img {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255, 125, 0, 0.15);
}

/* Category Badge */
.category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: linear-gradient(45deg, #ff7d00, #ff9a33);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,123,255,0.15);
  transition: all 0.3s ease;
}

.feature-card:hover .category {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,125,0,0.25);
}

/* Feature Content */
.feature-content {
  padding: 14px 16px 18px;
  text-align: center;
}

.feature-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.feature-title:hover {
  color: #ff7d00;
  text-shadow: 0 0 4px rgba(255,125,0,0.4);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .feature-img {
    height: 110px;
  }

  .feature-title {
    font-size: 13px;
  }

  .category {
    font-size: 10px;
    padding: 3px 10px;
  }
}

@media (max-width: 576px) {
  .features-section .row > .col-12 {
    padding: 8px 0;
  }

  .feature-img {
    height: 100px;
  }

  .feature-title {
    font-size: 12px;
  }
}