body{
    margin: 0;
    padding: 0;
    font-family: 'robot' sans-serif;
}
.content-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
  }
  
  .navbar {
    background-color: #002244;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 0.3rem;
    padding-bottom: 0.3rem;
  }
  
  .navbar-brand {
    font-size: 1.2rem;
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .navbar-brand img {
    height: 30px;
    width: auto;
  }
  
  .navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
  }
  
  .navbar ul li a::after {
    content: '';
    width: 0%;
    height: 2px;
    background: whitesmoke;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.5s;
  }
  
  .navbar ul li a:hover::after {
    width: 100%;
  }
  
  .navbar-sticky {
    background-color: rgba(0, 54, 115, 0.9);
  }
  
  .dropdown-menu {
    background-color: #003673;
    border: none;
    border-radius: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    margin-top: 0.2rem;
  }
  
  .dropdown-item {
    color: #fff;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
  }
  
  .dropdown-item:hover, .dropdown-item:focus {
    background-color: #004d99;
    color: #fff;
  }
  
  .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
    display: block;
  }
 .navbar-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    animation: slideDown 0.5s;
 }
.hero-section {
    color: #003673;
    padding: 8rem 0;
    position: relative;
}
.bg-image {
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px;
  
}

.gallery-item {
    transition: transform 0.3s ease-in-out;
}
.gallery-item:hover {
    transform: scale(1.05);
}
.modal-fullscreen img {
    max-height: 90vh;
    object-fit: contain;
}
.footer {
    background-color: #002244;
    color: white;
    padding: 3rem 0;
}
.footer a {
    color: #ffffff;
    text-decoration: none;
}
.footer a:hover {
    text-decoration: underline;
}
.footer .copyright {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1rem 0;
  margin-top: 3rem;
  height: 80px;
  width: 100%;
  position: relative;
  }