* {
  font-family: "Vazir", "Tahoma", sans-serif;
}


body {
  background: #f0f4fa;
}
.hero {
  background: linear-gradient(130deg, #0b2b5e, #1e4a76);
  color: white;
  border-radius: 0 0 40px 40px;
  padding: 60px 0;
}
.section-title {
  border-right: 6px solid #ff9800;
  padding-right: 15px;
  margin: 40px 0 25px;
  font-weight: bold;
}
.card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 20px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}
footer {
  background: #0a1c2f;
  color: #ccc;
  padding: 30px 0;
  margin-top: 50px;
}
.btn-custom {
  background: #ff9800;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  padding: 8px 25px;
}
.btn-custom:hover {
  background: #ffb74d;
  color: #000;
}
