* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.menu {
  background-color: white;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* optional */
}

.menu .logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  position: relative;
}


.nav-links a {
  color: #333; /* Changed from white to dark text */
  text-decoration: none;
}

.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  padding: 10px;
  list-style: none;
  z-index: 10;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 220px;
}

.submenu li {
  margin-bottom: 10px;
}

.submenu li:last-child {
  margin-bottom: 0;
}

.submenu li a {
  display: block;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  color: #333;
  background-color: #f9f9f9;
  transition: background-color 0.3s, border-color 0.3s;
  text-decoration: none;
}

.submenu li a:hover {
  background-color: #e0f0ff;
  border-color: #007BFF;
  color: #007BFF;
}

.nav-links a:hover {
  color: #007BFF; /* Bootstrap blue or any accent color */
}

.dropdown:hover .submenu {
  display: block;
}

.submenu li a {
  color: #333;
}

/* ✅ Fullscreen Marquee Styling */
.full-marquee {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  position: relative;
}

.marquee-track {
  display: flex;
  width: calc(100vw * 3); /* Adjust if more images */
  animation: slide 15s linear infinite;
}

.marquee-track img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-200vw); } /* (num of images - 1) * 100vw */
}
.slideshow {
  position: relative;
  width: 100%;
  height: 100vh; /* Fullscreen */
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlide 28s infinite;
}

.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: 4s;
}
.slide:nth-child(3) {
  animation-delay: 8s;
}
.slide:nth-child(4) {
  animation-delay: 12s;
}
.slide:nth-child(5) {
  animation-delay: 16s;
}
.slide:nth-child(6) {
  animation-delay: 20s;
}

@keyframes fadeSlide {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.horizontal-container {
      display: flex;
      align-items: top;   /* Vertically center the items */
      justify-content: start; /* Align items to the left */
      height: 100vh;         /* Full screen height */
      padding-left: 20px;    /* Optional left padding */
	  padding-top: 50px;
    }

    .horizontal-container img {
    max-height: 600px;     /* Limit image height */
    margin-right: 119px;
    margin-bottom: 10px;
    margin-left: 119px;
    }

.center-container {
      display: flex;
      justify-content: center; /* Horizontal center */
      align-items: center;     /* Vertical center */
      height: 100vh;           /* Full viewport height */
    }

    .center-container img {
      max-width: 100%;
      height: auto;
    }

li {
    margin-bottom: 10px;
  }
