/* General page styling */
body {
  font-family: sans-serif;
  margin: 0;
  background: #f4f4f4;
}

/* Header */
header {
  background: #003366;
  color: #fff;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-weight: bold;
}

/* Slider section */
.slider-section {
  padding: 5px 20px;
  text-align: center;
}

/* Outer slider container */
.slider-container {
  width: 90%;
  max-width: 800px;
  height: 400px;
  overflow: hidden;
  margin: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
  position: relative;
}

/* Inner slider track (scrolling content) */
.slider-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
  height: 100%;
}

/* Each slide */
.slide {
  flex: 0 0 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Image inside slide - no zoom, centered, fully visible */
.slide img {
  max-width: 100%;
  max-height: 90%;
  object-fit: contain;
  display: block;
  margin: auto;
  border-radius: 6px;
}

/* Caption under image */
.caption {
  margin-top: 10px;
  padding: 10px;
  background: #003366;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  width: 100%;
  text-align: center;
}

/* Navigation dots */
.dots {
  margin-top: 15px;
}

.dot {
  height: 14px;
  width: 14px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #003366;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: #003366;
  color: white;
}
