/* =============================
   Title Section Styling
============================= */

.title h1,
.page-title h1 {
  margin: 0 0 10px;
  font-size: 32px;
  opacity: 0;
  transform: scale(0.8);
  animation: zoomIn 0.8s ease-out forwards;
}

.title,
.page-title {
  width: 100%;
  padding: 20px 0;
  background-color: #182249;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.title p,
.page-title p {
  max-width: 70%;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.6;
  text-align: justify;
  white-space: normal;
  color: white;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
}

/* =============================
   Animations
============================= */

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
