/* ===== FEATURES SECTION ===== */
#features {
  padding: 5rem 0;
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Title + Subtitle --- */
.feature-title {
  font-weight: 700;
  font-size: 48px;
  color: #203147;
  margin-bottom: 0.5rem;
  text-shadow: rgba(128, 128, 128, 0.4) 2px 2px 4px;
  margin-top: 4rem;
  text-align: center;
}

.feature-title span {
  color: #f7a600;
}

.feature-subtitle {
  font-size: 1.1rem;
  color: #555;
  text-align: center;
  margin-bottom: 3rem;
}

/* --- Layout --- */
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.col-md-4 {
  flex: 0 0 30%;
  max-width: 30%;
}

.text-center {
  text-align: center;
}

/* --- Feature Cards --- */
.feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
  min-height: 310px;
  position: relative;
}

/* --- Hover Effects --- */
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 166, 0, 0.5);
  box-shadow: 0 8px 20px rgba(247, 166, 0, 0.2);
}

/* --- Icon Animation --- */
.feature-icon {
  font-size: 3rem;
  color: #f7a600;
  margin-bottom: 1.3rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

/* --- Text --- */
.feature-card h4 {
  font-weight: 700;
  color: #203147;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.feature-card:hover h4 {
  color: #f7a600;
}

.feature-card p {
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ===== Responsive ===== */
/* Tablet */
@media (max-width: 992px) {
  .col-md-4 {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  #features {
    padding: 4rem 0;
  }

  .feature-card {
    min-height: auto;
    padding: 1.8rem;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .feature-title {
    font-size: 2rem;
  }
  .feature-subtitle {
    font-size: 0.95rem;
  }
  .feature-card {
    padding: 1.5rem;
  }
}