body {
  font-family: 'Poppins', sans-serif;
}

.down-icon {
  font-size: 2rem;
  color: #eee;
  cursor: pointer;
}

.fixed-down-icon {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  color: #eee;
  cursor: pointer;
  z-index: 1000;
  display: block; /* Display the icon initially */
}
.hidden {
  display: none; /* Hide the icon when necessary */
}


.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 50px;
  color: #fff; /* Ensure text is readable over background images */
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media only screen and (max-device-width: 1366px) {
  .parallax {
	background-attachment: scroll;
  }
}

.section-content {
  background-color: rgba(0, 0, 0, 0.6); /* Transparent black background */
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  width: 50%;
}

/* Responsive Adjustment for Screens 1366px and Smaller */
@media (max-width: 1366px) {
  .section-content {
	width: 100%; /* Full width on smaller screens */
	margin-left: 0;
	margin-right: 0;
  }
}

.content-left {
  margin-right: auto;
}

.content-right {
  margin-left: auto;
}

/* Custom dark background color for navbar */
.bg-dark-custom {
  background-color: #000 !important;
}

/* Sticky navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}