body {
    background-color: black;
    margin: 0;
}
.container {
  background-color: #2a5fca;
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center; /* Centers vertically */
  flex-direction: column; /* Stack logo above nav */
}

.logo {
height: 60px;
width: 60px;
margin-bottom: 2px; /* Space between logo and nav */

}
.cat-icon {
height: 50px;
width: 50px;
margin-bottom: -45px;
margin-top: -15px;
   z-index: 1000;
   visibility: hidden;
   opacity: 0;
  transition: opacity 0.4s ease;
}
@media only screen and (max-width: 768px) {
  .cat-icon {
  display: none;
  }
}
/* Base nav styles */
.nav-menu ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #2a5fca;
  justify-content: center;
  align-items: center;
}

.nav-menu li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 20px;
  font-family: sans-serif;
}

.nav-menu li a:hover {
  background-color: #013cb4;
  border-radius: 25px;
}

/* Hide checkbox */
.menu-checkbox {
  display: none;
}

/* Hamburger icon */
.menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.menu-icon .bar {
  height: 4px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  margin: 4px 0;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  .menu-icon {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #2a5fca;
    width: 100%;
    z-index: 1000;
  }

  .menu-checkbox:checked ~ .nav-menu {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
  }

  .nav-menu li a {
    padding: 12px 16px;
    font-size: 18px;
  }
}
img {
  max-width: 100%; /* Ensure images don’t overflow */
  height: auto;
}

h1 {
  text-align: center;
  font-family: sans-serif;
  font-size: 4rem;
  color: white;
  padding: 20px;
  border-radius: 15px;
  background-color:  #2a5fca;
  display: block;
  margin: 0 auto;
  width: 600px; /* Optional: You can control the width */
  height: auto;
  margin-bottom: 20px;
  margin-top: 50px;
  box-sizing: border-box;
  background-size: contain;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for contrast */
}
@media (max-width: 768px) {
  h1 {
    width: 300px;
    font-size: 2.5rem;
  }
}
@media (max-width: 480px) {
  h1 {
      font-size: 2rem;
  }
}
.navbar {
position: relative;
top: 0;
width: 100%;
background-color: #2a5fca;
z-index: 1000;
font-family: sans-serif;
text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for contrast */
}

.navbar nav ul {
display: flex;
justify-content: center;
list-style: none;
}

.navbar nav ul li {
margin: 10px;
}

.navbar nav ul li a {
text-decoration: none;
color: white;
font-size: 40px;
padding: 10px 40px;
background-color 0.3s;
border-radius: 50px;
}

.navbar nav ul li a:hover {
background-color: #013cb4;
border-radius: 50px;
}
.email-link {
  color: white;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .email-link {
  font-size: 1.5rem;
  }
}
@media (max-width: 480px) {
  .email-link {
font-size: 1rem;
  }
}

h2 {
    font-size: 30px;
    margin-top: 5px;
    text-align: center;
    color: white;
    font-family: sans-serif;
    border: none;
    padding-top: 1px;
    padding-bottom: 30px;
    cursor: pointer;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for contrast */
  }
p {
  font-size: 30px;
  margin-top: 5px;
  text-align: center;
  color: white;
  font-family: sans-serif;
  border: none;
  padding-top: 20px;
  cursor: pointer;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Added text shadow for contrast */
}
@media (max-width: 768px) {
  p {
font-size: 20px;
  }
}
.copyright-watermark {
  position: static;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5); /* Use correct RGB values for white */
  font-family: sans-serif;
  z-index: 9999;
  text-align: center;
  padding-bottom: 20px;
}
