.footer{
  background:  rgb(61, 50, 46); 
  color:#fff;
  padding-top:60px;
  font-family:'Poppins', sans-serif;
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(220px,1fr));
  gap:40px;
  padding:0 20px 40px;
}

.footer-col h4{
  margin-bottom:18px;
  position:relative;
}


.footer-col p{
  line-height:1.7;
  color:#d4d4d4;
}

.footer-col ul{
  list-style:none;
  padding:0;
}

.footer-col ul li{
  margin:8px 0;
}

.footer-col ul li a{
  color:#d4d4d4;
  text-decoration:none;
  transition:0.3s;
}

.footer-col ul li a:hover{
  color:#f4b400;
  padding-left:4px;
}

.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  width:36px;
  color:#000;              
  margin-right:12px;
  text-decoration:none;
  transition:0.3s ease;
  border-radius:50%;
}

.social-icons a:hover{
  background:#000;         
  color:#fff;              
}

.footer-col i{
  margin-right:8px;
  color:rgb(255, 255, 255);
}
.footer-bottom {
    background-color: #111;
    padding: 15px 10px;
    text-align: center;
}

.footer-link {
    text-decoration: none;
    color: #bbb;
    font-size: 16px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #fff;
}

.dev-name {
    color: #00bcd4;
    font-weight: 600;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.footer-link:hover .dev-name {
    color: #ff9800;
}
.footer-bottom{
  background:  rgb(36, 30, 28);
  text-align:center;
  padding:14px 10px;
  border-top:none;
}

.dev-name{
  color:#f4b400;
  font-weight:600;
}
@media (max-width:768px){

  .footer{
    padding-top:40px;
  }

  .footer-container{
    text-align:center;
    gap:30px;
  }

  .footer-col{
    margin-bottom:10px;
  }

  .footer-col ul li a:hover{
    padding-left:0;
  }

  .social-icons a{
    margin:0 6px;
  }

}