.hero-section {
  background: linear-gradient(to right, #000c67, #000c67);
  padding: 50px 20px 20px;
  text-align: center;
  color: #000000;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  animation: fadeIn 1s ease-in-out;
}

.hero-section p {
  font-size: 1.3rem;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-in-out;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #333;
  text-align: center;
}

.text-muted {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

.img-fluid {
  border-radius: 12px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease-in-out;
  height: 400px;
  width: 400px;
}

.img-fluid:hover {
  transform: scale(1.05);
}

.bg-light {
  background-color: #f9f9f9 !important;
}

.card {
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  border: none;
  background: #fff;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-7px);
  box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.card-body {
  text-align: center;
  padding: 25px;
}

.card img {
  max-width: 90px;
  margin: 20px auto;
  display: block;
}

.text-center {
  text-align: center;
  padding: 50px 0;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 14px 30px;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #0056b3;
  transform: scale(1.07);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero-section {
    padding: 80px 15px;
  }

  .hero-section h1 {
    font-size: 3rem;
  }

  .hero-section p {
    font-size: 1.1rem;
  }

  .card img {
    max-width: 75px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 10px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .text-muted {
    font-size: 1rem;
  }

  .btn-primary {
    font-size: 1.1rem;
    padding: 12px 25px;
  }
}