*{
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
}

.footer{
      background: #101820;
      color: #fff;
      padding: 60px 10%;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 30px;
      margin-top: 20px;
}

.footer-box {
      flex: 1 1 220px;
      min-width: 220px;
      transition: transform 0.3s ease, background 0.3s ease;
}

.footer-box:hover {
      transform: translateY(-5px);
}

.footer-box h3 {
      color: #f2aa4c;
      margin-bottom: 15px;
      font-size: 20px;
}

.footer-box p, .footer-box a, .footer-box li {
      color: #bbb;
      font-size: 15px;
      line-height: 1.8;
      text-decoration: none;
}

.footer-box a:hover {
      color: #f2aa4c;
}

.footer ul {
      list-style: none;
}

.social-icons a {
      color: #fff;
      margin-right: 10px;
      font-size: 20px;
      transition: color 0.3s ease;
}

.social-icons a:hover {
      color: #f2aa4c;
}

.footer-bottom {
      text-align: center;
      color: #ccc;
      border-top: 1px solid #333;
      padding: 15px;
      font-size: 14px;
      background: #0d141a;
}

@media(max-width: 768px) {
.footer {
        text-align: left;
        flex-direction: column;
}
.social-icons a {
        margin: 5px;
}
}

#social-icons, .footer-box i{
      color: whitesmoke;
}