html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  color: white;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.background {
  background: url('../images/background.jpg') no-repeat center center/cover;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: -2;
  animation: zoomBG 20s ease-in-out infinite alternate;
}

@keyframes zoomBG {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  box-sizing: border-box;
}

.nav-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-center {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-weight: 500;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-center span,
.nav-center a {
  cursor: pointer;
  transition: color 0.3s;
  color: white;
  text-decoration: none;
}

.nav-center span:hover,
.nav-center a:hover {
  color: #ffdf80;
  text-decoration: none;
}

.nav-icons {
  flex: 0 0 auto;
  display: flex;
  gap: 15px;
}

.nav-icons a {
  color: white;
  font-size: 1.1em;
  transition: color 0.3s;
  text-decoration: none;
}

.nav-icons a:hover {
  color: #ffdf80;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 10px;
}

.menu-toggle span {
  background: white;
  height: 3px;
  margin: 4px 0;
  width: 25px;
  border-radius: 2px;
  transition: all 0.3s;
}

.close-menu {
  font-size: 2em;
  font-weight: bold;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  color: #333;
  transition: color 0.3s ease;
}

.close-menu:hover {
  color: #999;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  padding: 70px 20px 20px 20px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 9999;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  height: auto;
}

.mobile-menu.show {
  transform: translateX(0);
}

.mobile-menu span,
.mobile-menu a {
  margin: 15px 0;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s;
  text-decoration: none;
  color: white;
}

.mobile-menu span:hover,
.mobile-menu a:hover {
  color: #ffdf80;
  text-decoration: none;
}

.content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.content h1 {
  font-size: 3em;
  margin: 0;
}

.content p {
  font-size: 1.3em;
  margin-top: 10px;
  max-width: 700px;
}

.email {
  margin-top: 20px;
  font-size: 1.1em;
  font-weight: 500;
  color: #ffefb7;
}

.slider {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #ffffffee, #f8f8f8ee);
  padding: 20px 0;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
  text-align: center;
}

.slider-title {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: 600;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.slider-track img {
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slider-track img:hover {
  transform: scale(1.1);
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .nav-center {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .slider-track img {
    height: 40px;
    margin: 0 10px;
  }

  .slider-title {
    font-size: 1em;
  }

  .nav-icons {
    gap: 10px;
  }
}

/* Universal Page Section Styling */
.section {
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: left;
}

.section h1,
.section h2 {
  font-size: 2em;
  margin-bottom: 15px;
  color: #ffdf80;
}

.section p {
  line-height: 1.6;
  font-size: 1.1em;
  color: #f0f0f0;
}

/* Banner Styling */
.banner {
  width: 100%;
  text-align: center;
  padding: 80px 20px;
  background: #333;
  color: white;
  font-size: 2.5em;
  font-weight: bold;
}

/* Footer Styling */
.page-footer {
  background: #111;
  color: #ccc;
  padding: 40px 20px 20px;
  font-size: 0.9em;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-container h4 {
  color: #ffdf80;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-social a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #ffdf80;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  color: #777;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  font-size: 1.2em;
  color: #ccc;
}

.social-icons a:hover {
  color: #ffdf80;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .section {
    text-align: center;
  }

  .section h1,
  .section h2 {
    font-size: 1.5em;
  }
}
