/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #1a4c9c, #0a2a66);
  color: white;
  padding: 15px;
  flex-wrap: wrap;
  text-align: center;
}

.header .logo img {
  width: 180px;
  max-width: 100%;
  height: 180px;
  border-radius: 36px;
}

.header-text {
  flex: 1;
  padding: 20px;
}

.header-text h1 {
  font-size: 35px;
  font-weight: bold;
  padding: 10px;
}

.header-text p {
  font-size: 20px;
}

/* Responsive Header */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }
  .header-text h1 {
    font-size: 32px;
  }
  .header-text p {
    font-size: 18px;
  }
}

/* Department Section */
.department {
  text-align: center;
  margin: 20px 0;
}

.department h2 {
  font-size: 22px;
  font-weight: bold;
  color: #0a2a66;
}

.department .tagline {
  font-style: italic;
  color: #333;
  margin-top: 5px;
}

/* Navbar */
.navbar {
  background: #0a2a66;
  border-radius: 5px;
  margin: 0 10px;
}

.navbar ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar li {
  margin: 5px;
}

.navbar a {
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  font-weight: bold;
}

.navbar a:hover {
  background: #1a4c9c;
  border-radius: 5px;
}

/* Slideshow */
.slideshow-container {
  position: relative;
  max-width: 100%;
  margin: 20px auto;
  overflow: hidden;
}

.slides {
  display: none;
}

.slides img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

/* Vision */
.vision {
  background: #f9f9f9;
  border: 2px solid #0e0d0d;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  text-align: center;
}

.vision h3 {
  color: #0a2a66;
  margin-bottom: 10px;
}

.vision blockquote {
  margin-top: 15px;
  font-style: italic;
  color: #1a4c9c;
  font-weight: bold;
}

/* Footer */
.footer {
  background: #0a2a66;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  border-radius: 5px 5px 0 0;
}
