/* features.css */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #0d1117;
  color: #e5e7eb;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.features-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.features-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid #333;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, border 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  border: 1px solid #ff9800;
}

.feature-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.95rem;
  color: #d1d5db;
  line-height: 1.6;
}
