footer {
  background-color: rgb(18, 24, 62);
  height: auto;
}
.footer-title {
  text-align: center;
  padding: 10px;
  border-bottom: 2px solid #ffffff;
  /* border-top: 2px solid #ffffff; */
}
.footer-title img{
  height: 25px;
}
.footer-content {
  padding: 10px;
}
.footer-content h3 {
  text-align: center;
  text-transform: uppercase;
  color: #ffffff;
  font-family: 'Ashtak';
  font-weight:100;
}
.social-icon {
  float: left;
  align-items: center;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  background-color: #ff0000;
  color: #ffffff;
  border-radius: 8px;
  font-size: 25px;
}
.social-icon a{
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.3s, color 0.3s;  /* Smooth transition on hover */
}

.social-icon i:hover{
    transform: scale(1.08);
}
.social-icon-container {
  display: flex;
  justify-content: center;
  margin: 10px;
}
.footer-dev {
  border-top: 1px solid #ffffff;
  display: flex;
  justify-content: center;
  padding: 10px 0 15px 0;
}
.footer-dev p {
  color: #ffffff;
  align-items: center;
  text-align: center;
  padding: 10px 10px 0 10px;
}
.footer-dev .dev-credit{
  font-weight: normal; 
  font-size: 18px; 
  color: #ffffff; 
  font-family: 'Ashtak'; 
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .footer-title {
    font-size: 25px;
  }
  .footer-content h3 {
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    margin-top: 10px;
  }
  .footer-dev  {
    padding: 10px 0 20px 0;
  }
  .footer-dev .dev-credit{
    font-size: 14px;    
  }
}