
body {
  /* font-family: Arial, sans-serif; */
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
  background: #f9f9f9;
  font-family: 'Poppins', sans-serif;
}

header {
  background-color: #002b5c;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  align-items: center;
}

.fade-in {
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero {
  background: linear-gradient(to right, #005aa7, #00b4db);
}

section p {
  margin-bottom: 1.2em;
  font-size: 1.05em;
}
.logo-container {
  display: flex;
  align-items: center;
}

.logo-img-large {
  height: 80px;
  margin-right: 10px;
  background-color: #ffffff;
  padding: 5px;
  border-radius: 5px;
}

.logo-text {
  font-size: 1.8em;
  font-weight: bold;
  color: #00b4f0;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 1.5em;
  font-weight: 500;
}

.hero {
  background: #004080;
  color: white;
  text-align: center;
  padding: 4em 1em;
}

section {
  padding: 2em 2em;
  max-width: 1000px;
  margin: auto;
}

ul {
  list-style-type: square;
  padding-left: 2em;
}

footer {
  background-color: #002b5c;
  color: white;
  text-align: center;
  padding: 1em;
}

section {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 2em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1em;
  }

  .logo-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .logo-img-large {
    height: 60px;
    margin-right: 0;
    margin-bottom: 0.5em;
  }

  .logo-text {
    font-size: 1.4em;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-top: 1em;
  }

  nav a {
    margin: 0.5em 1em;
    font-size: 0.95em;
  }

  .hero {
    padding: 3em 1em;
  }

  section {
    padding: 1.5em 1em;
  }

  ul {
    padding-left: 1.2em;
  }
}

/* BUTTONS */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75em 1.5em;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary {
  background-color: #00b4f0;
  color: white;
}

.btn-primary:hover {
  background-color: #009cd1;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: #ffffff;
  color: #002b5c;
  border: 2px solid #002b5c;
}

.btn-secondary:hover {
  background-color: #002b5c;
  color: white;
}

/* HEADINGS */
h1, h2 {
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #002b5c;
}

/* Fade-in sections smoothly */
section.fade-in {
  animation: fadeIn 1.2s ease-out;
}

@media (max-width: 480px) {
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 1em;
  }

  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.4em;
  }
}

.hero {
  position: relative;
  background-image: url('Images/bg1.jpg'); 
  background-size: cover;
  background-position: center;
  color: white;
  padding: 4em 1em;
  text-align: center;
  min-height: 300px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 43, 92, 0.6); 
  z-index: 1;
}
.hero h1 {
  color: #ffffff;
  font-size: 2.5em;
  font-weight: 600;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.4); 
}

.hero .overlay {
  position: relative;
  z-index: 2;
}