footer {
  background-color: rgb(18, 24, 62);
  height: auto;
  margin-top: 50px;
}
.footer-title {
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  padding: 10px;
  border-bottom: 2px solid #ffff;
  color: orangered;
  text-transform: uppercase;
  animation: tirangaAnimation 9s infinite;
}

@keyframes tirangaAnimation {
  0% {
    color: orangered; /* Saffron */
  }
  40% {
    color: white; /* White */
  }
  70% {
    color: green; /* Green */
  }
  100% {
    color: orangered; /* Back to Saffron */
  }
}

.footer-content {
  padding: 10px;
}
.footer-content h3 {
  text-align: center;
  text-transform: uppercase;
  color: #ffff;
}
.social-icon-container {
  display: flex;
  justify-content: center;
  margin: 10px;
  gap: 15px; 

}
.social-icon {
  /* float: left; */
  /* margin-left: 15px; */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: green;
  color: #ffff;
  border-radius: 8px;
  font-size: 25px;
  transition: background-color 0.3s, color 0.3s;
}
.social-icon a{
    text-decoration: none;
    color: #ffff;
    transition: background-color 0.3s, color 0.3s;  /* Smooth transition on hover */
}
.social-icon:hover{
    background-color: orangered;
}
.footer-dev {
  border-top: 1px solid #ffff;
  display: flex;
  justify-content: center;
  padding: 10px 0 20px 0; /* Adjusted padding for better spacing */
}
.footer-dev p {
  color: #ffff;
  align-items: center;
  text-align: center;
  padding: 10px 10px 0 10px;
}

@media (max-width: 768px) {
  /* footer {
    height: 36vh;
  } */
  .footer-title {
    font-size: 25px;
  }

  .footer-content h3 {
    text-align: center;
    text-transform: uppercase;
    color: #ffff;
    margin-top: 10px;
  }
  .footer-dev  {
    padding: 10px 0 20px 0;
  }
}