/* index.css */

/* Update Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: white;
  padding: 10px 5%;
  flex-wrap: wrap;
}
html {
  scroll-behavior: smooth;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #fff;
}

.Title {
  color: black;
  font-size: 24px;
  font-weight: 500;
  max-width: 200px;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: black;
  text-decoration: none;
  padding: 8px 16px;
  transition: background-color 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  background-color: #0055a5;
  border-radius: 4px;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

header {
  background-color: white;
  color: black;
  padding: 10px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  font-size: 48px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li {
  display: inline;
}
.nav-links a.active {
  color: #fff;
  background-color: #0d6efd; /* Example active style */
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffcc00;
}

main {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 20px;
}

section {
  margin-bottom: 50px;
}

h2 {
  text-align: center;
  color: #003366;
  margin-bottom: 20px;
}

p {
  font-size: 16px;
  color: #241212;
  line-height: 1.6;
  text-align: justify;
}

.hero {
  background: linear-gradient(135deg, #fff, #005599);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 8px;
}

.carousel img {
  height: 300px;
  object-fit:cover;
}

.carousel-caption h5 {
  background: rgba(0, 0, 0, 0.5);
  display: inline-block;
  padding: 5px 10px;
  border-radius: 8px;
}

  /* Footer */
  footer {
    background-color: #003366;
    color: #fff;
    padding: 30px 20px;
    font-size: 14px;
  }
  .footer-content h12 {
    color:white

  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .footer-section {
    flex: 1 1 200px;
    margin: 10px;
  }
  
  .footer-section h4 {
    margin-bottom: 10px;
    color: #00bcd4;
  }
  
  .footer-section ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-section ul li a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
  }
