body {
  font-family: "Roboto", sans-serif;
}

.res-nav.navbar {
  background-color: rgb(1 21 137);
}

.res-nav  .nav-item a {
  color: var(--bs-nav-link-hover-color);
}

.res-nav  .nav-item a:hover {
  color: #fff;
}

.res-nav .navbar-nav {
  margin-top: 2em;
}

.res-nav .navbar-brand {
  position: relative;
}

.res-nav  .navbar-brand img {
  height: auto;
  width: 100px;
  position: absolute;
  top: -20px;
}

/* Footer Container */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  background-color: rgb(0, 0, 153);
  flex-wrap: wrap;
}

/* Footer Info */
.footer-info {
  display: flex;
  align-items: center;
  max-width: 1000px;
  width: 100%;
  padding: 10px 20px;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

/* Footer Logo */
.footer-logo-container {
  flex-shrink: 0;
}

.footer-logo {
  width: 150px;
  height: auto;
}

/* Footer Details */
.footer-details {
  text-align: left;
  color: white;
}

.footer-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.footer-address,
.footer-contact {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* Footer Bar */
.footer-bar {
  background-color: #d7292f;
  padding: 10px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-link {
  color: white;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #ffc107;
}

.footer-copy {
  font-size: 14px;
  color: white;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .res-nav  .navbar-brand img {
    width: 80px;
  }

  .footer-info {
    text-align: center;
    flex-direction: column;
  }

  .footer-details {
    text-align: center;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}
