/* Light Blue Background for the Entire Page */
.homepage-container {
  background-color: rgba(0,19,38, 0.1);
  padding-top: 20px;
  padding-bottom: 20px;
  flex-direction: column;
  min-height: 100vh;
}
/* Card Styling */
.homepage-card {
  opacity: 0; 
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
  border-radius: 20px !important; /* Rounded corners */
  overflow: hidden; /* Ensure contents follow rounded border */
}
.homepage-card-body {
  padding: 20px;
  border-color: transparent;
  background-color: transparent;
}
.homepage-card-title {
  font-size: 1.5rem;
  color: #FF9929 !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  font-weight: bold;
}
.homepage-card-text {
  font-size: 1rem;
  color: #103E5B;
  font-weight: bold;
  text-align: center;
}
.orange-text:hover {
  text-decoration: underline;
  transform: scale(1.1);
}
/* Footer Styling */
.footer {
  margin-top: auto;
  padding: 10px;
  font-size: 14px;
  color: rgba(16, 62, 91);
  text-align: center;
  font-weight: bold;
  background-color: transparent;
}
.footer-link {
  color: #FF9929;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
  color: #FF9929;
}
/* Carousel Styling */
.carouselImage {
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: cover;
  border-radius: 20px; /* Rounded corners for images */
}
/* Overlay Container */
.homepage-container-overlay {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 100vh;
  border-radius: 20px; /* Rounded corners */
  overflow: hidden; /* Prevents overflow from ruining rounded effect */
}
/* Dark overlay effect */
.homepage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 20px; /* Rounded corners */
}
/* Centered Welcome Text */
.WelcomeText {
  font-size: 3rem;
  color: #FF9929;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  margin: 0;
  padding: 20px;
  border-radius: 20px; /* Rounded background */
}
/* Fullscreen View */
@media (min-width: 992px) { 
  .carouselImage {
    object-fit: cover;
  }
  .center-content {
    margin-top: 60px;
  }
  .text-style {
    margin-top: 45px;
    font-size: 25px;
  }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
  .homepage-container-overlay {
    height: auto;
  }
  .text-style {
    font-size: 18px;
  }
  .carouselImage {
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 20px;
  }

  .WelcomeText {
    font-size: 2rem;
  }
}