/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fc;
  color: #333;
}
a {
  color: #004080;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Top Header */
.top-header {
  background-color: #004080;
  color: white;
  padding: 10px 0;
  font-size: 0.9rem;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-header .contact-info span {
  margin-right: 15px;
}

/* Header and Navigation */
.main-header {
  background-color: #0073e6;
  padding: 15px 0;
}
.main-header .flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 60px;
}
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.main-nav ul li {
  position: relative;
}
.main-nav ul li a {
  color: white;
  font-weight: bold;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #0073e6;
  top: 30px;
  left: 0;
  z-index: 999;
  min-width: 180px;
}
.dropdown-content li {
  width: 100%;
}
.dropdown-content a {
  display: block;
  padding: 10px;
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}

/* SLIDER STYLING (AUTO-ROTATING) */
.slider-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  height: 400px;
}
.slider {
  display: flex;
  width: 400%;
  animation: slideAnimation 20s infinite;
}
.slide {
  width: 100%;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@keyframes slideAnimation {
  0%   { transform: translateX(0%); }
  20%  { transform: translateX(0%); }
  25%  { transform: translateX(-100%); }
  45%  { transform: translateX(-100%); }
  50%  { transform: translateX(-200%); }
  70%  { transform: translateX(-200%); }
  75%  { transform: translateX(-300%); }
  95%  { transform: translateX(-300%); }
  100% { transform: translateX(0%); }
}

/* News Section */
.news-section {
  background: #fff;
  padding: 60px 20px;
}
.news-section h2 {
  text-align: center;
  color: #004080;
  margin-bottom: 30px;
}
.news-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.news-card {
  background: #eaf1f8;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
}
.news-card h3 {
  color: #0073e6;
}
.news-card p {
  margin: 10px 0;
}

/* Footer */
footer {
  background-color: #004080;
  color: white;
}
.footer-columns {
  display: flex;
  justify-content: space-between;
  padding: 40px 20px;
  flex-wrap: wrap;
}
.footer-left, .footer-right {
  flex: 1 1 45%;
}
.footer-left ul {
  list-style: none;
}
.footer-left ul li {
  margin-bottom: 10px;
}
.footer-bottom {
  text-align: center;
  padding: 15px 0;
  background-color: #003366;
}
.social-icons a {
  margin-right: 15px;
  color: white;
}
