.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:#002244;
  }
  
  .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;
 }
.contact-info-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.contact-form .form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25);
}
.hero-section {
    color: #003673;
    padding: 8rem 0;
    position: relative; 
}
.hero-section {
    background-image: url('./bg5.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 50vh; /* Adjust this value to control the height of your hero section */
    position: relative;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* This creates a dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .container {
    color: white; /* This ensures text is visible on the dark background */
}

.hero-section h1 {
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-section p {
    font-size: 1.25rem;
}
#map {
  position: relative;
  padding-bottom:25.25%; /* 16:9 aspect ratio */
  height: 0;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  overflow: hidden;
}

#map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.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;
  position: relative;
  bottom: 0;
  height:80px;
  width: 100%;
  }