/* FOOTER BASE */
.site-footer{
  background-color:#007bff;
  color:#fff;
  font-family: "poppins",Arial, Helvetica, sans-serif;
  padding:60px 20px 20px;
}

.footer-wrapper{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  align-items: center;
  gap:20px;
  max-width:1200px;
  margin:0 auto;
}
/* brand / about column */
.footer-brand{
  flex:1 1 300px;
  max-width: 350px;
}
.footer-logo{
  width:150px;
  object-fit: contain;
  
}
.footer-brand h2{
  font-size:0.8rem;
  margin-bottom:10px;
  font-weight:bolder;
  color:navy;
}
.footer-description{
  font-size:0.95rem;
  line-height:1.6rem;
  margin-bottom:20px;
  color:#f1f1f1
}
/* social icons */
.footer-social{
  display: flex;
  gap:25px;
}
.footer-social a{
  color:#fff;
  font-size:1.2rem;
  transition:all 0.3s ease;
}
.footer-social a:hover{
  color:#d4eeff;
  transform:translateY(-2px);
}
/* footer links */
.footer-links{
  display:flex;
  flex:2 1 500px;
  flex-wrap: wrap;
  justify-content:flex-end;
  gap:40px;
}

.footer-group h3{
  font-size: 1.1rem;
  font-weight:600px;
  border-bottom:2px solid #fff;
  display:inline-block;
  padding-bottom:5px;
  margin:8px 30px;
}
.footer-group ul{
  list-style:none;
  padding:0px;
  margin:0px;
}
.footer-group li{
  margin:8px 30px;

}
 .footer-group a{
  color:#f1f1f1;
  text-decoration:none;
  font-size:0.95rem;
  transition:color 0.3s ease;
 }
 .footer-group a:hover{
 color: #d4eeff;
 }
 

 /* footer botom */
 .footer-bottom{
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.3);
  font-size:0.9rem;
  color:#f1f1f1;
 }