.body{
    font-family: 'Poppins', sans-serif;
}

.footer {
  background-color:#082949;
  color: #cecece;
  padding: 20px 15px;
  
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1500px; /* adjust the width of footer column*/
  margin: auto;
}
.footer-container h3{
  color: #8dafce;
  font-weight: 300;
}

.footer-nav-logo{
  width: 100px;
  margin-left: 2rem;
  cursor: pointer;    
}

.footer-logo-container{
  margin-top: -10%;
  margin-left: 8%;
}

.footer-logo-title span{
    color: #d0e8ff;
}


.footer-container > div {
  flex: 1 1 220px; /* responsive columns */
}

.footer-logo, .footer-links, .footer-contact, .footer-social {
  flex: 1 1 200px;
  margin: 20px;
}

.footer-logo h2 {
  font-size: 28px;
  color: #0b3961;
  margin-bottom: -0.09rem;
}
.footer-logo p{
  font-size: .8rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #cecece;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
  &:hover{
    color: #a81c00;
  }
}

.footer-contact p {
  margin-bottom: 8px;
  font-size: .9rem;
  line-height: 1rem;
}
.footer-contact strong{
  color: #8dafce;
}
.footer-social h3{
  margin-bottom: .1rem;
}

.footer-social p{
  display: inline-block;
  margin-right: 15px;
  margin-bottom: .5rem;
}




/* Dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%; /* place below parent menu */
  left: 0;
  background-color: #f1f1f1;
  min-width: 280px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  border-radius: 5px;
  z-index: 100;
  list-style: none;
  transition: all .5s ease-in-out;
}

.dropdown-content li a {
  padding: 10px;
  color: #333;
 
  &:hover{
    background-color: #ddd;
  }
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optional arrow for dropdown */
.dropbtn::after {
  content: "▼";
  font-size: 0.7em;
}
/* =================================================== */



