

.bg-image {

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-theme{
  background-color: #128ac7;
}

/* Modal Animation */
.modal-fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Hide scrollbar when modal is open */
body.modal-open {
  overflow: hidden;
}