<style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
    }

    /* Header / Logo */
    .header {
      padding: 20px;
      text-align: center;
      background: #fff;
    }

    .logo img {
      max-width: 450px;
    }

    /* Slideshow */
   
.slideshow {
  position: relative;
  width: 100%;
  height: calc(100vh - 98px);
  background: #fff;
}


.slide {
  position: absolute;
  width: 100%;
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.6s ease;
}

.slide.active {
  opacity: 1;
}

   
.slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}


    /* Optional overlay text */
    .slide-content {
      position: absolute;
      bottom: 20%;
      left: 10%;
      color: #fff;
      font-size: 2rem;
      font-weight: bold;
    }

.navbar {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Inner layout */
.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center; 
}

/* Logo */
.logo img {
  height: 70px;
  width: auto;
  display: block;
}
  </style>

</body>
</html>
