.header-content {
	max-width: 680px !important;
}

.section-heading {
	margin-bottom: 0px !important;
}

#modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it is above other elements */
}

.parallax {
	background-image: url('../img/mobile-en/hero.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: white;
	position: relative;
}

/* Center the modal properly */
.modal-dialog {
  margin: auto; /* Center vertically and horizontally */
  max-width: 600px; /* Optional: Set a maximum width for the modal */
}

.modal-content {
  border-radius: 8px; /* Add rounded corners */
  overflow: hidden; /* Ensure no content spills out */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

.modal-body {
  padding: 20px; /* Add padding for better content spacing */
  max-height: 70vh; /* Prevent overflow by limiting height to 70% of the viewport */
  overflow-y: auto; /* Enable vertical scrolling if content overflows */
}

/* Ensure modal header is styled properly */
.modal-header {
  padding: 15px 20px;
  border-bottom: 1px solid #dee2e6;
  background-color: #f8f9fa; /* Optional: Light background for header */
}

.modal-title {
  font-size: 20px;
  font-weight: bold;
}

/* Adjust modal footer */
.modal-footer {
  padding: 15px 20px;
  border-top: 1px solid #dee2e6;
  background-color: #f8f9fa; /* Optional: Light background for footer */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .modal-dialog {
    max-width: 90%; /* Expand modal width on smaller screens */
  }

  .modal-body {
    max-height: 60vh; /* Adjust height for smaller screens */
  }
}

.modal {
  padding: 10px;
  border-radius: 8px;
}

.modal-content {
  margin: 20px 0;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}

.spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 0.25rem;
}

body.loading {
  overflow: hidden; /* Prevent scrolling while loading */
}