.inner-footer {
  padding: 70px 0 0;
  background: #010103;
}

/* Phone Number Animation Styles */
.phone-number-animated {
  display: inline-flex;
  gap: 1.5px;
  align-items: center;
  vertical-align: middle;
}

.phone-number-animated .digit-container {
  position: relative;
  width: 1ch;
  height: 1.2em;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  line-height: 1.2em;
}

.phone-number-animated .digit-strip {
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 1.5s ease-out;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.phone-number-animated .digit {
  height: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.2em;
  width: 1ch;
  flex-shrink: 0;
}

.phone-number-animated .static-char {
  display: inline-flex;
  align-items: center;
  height: 1.2em;
  line-height: 1.2em;
  vertical-align: middle;
}

.footer-logo img {
  width: 250px;
  padding-bottom: 20px;
  border-bottom: 1px solid #fff;
}

.footer-content {
  padding-top: 65px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 500;
  color: #fff;
  padding-bottom: 10px;
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(
    90deg,
    #7100b5 0%,
    #cd0063 39.42%,
    #f20f07 71.15%,
    #ff4000 100%
  );
}

.footermenu {
  display: flex;
  column-gap: 25px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-service {
  display: grid;
}

.footer-about {
  display: grid;
}

.footer-column a {
    color: #dadada;
    font-size: 0.8rem;
    line-height: 2.5rem;
}

.footer-column a:hover {
  color: #fff;
}

.social-icons {
  display: flex;
  gap: 15px;
  align-self: flex-end;
  justify-content: flex-end;
}

.social-icons a {
  color: #ccc;
  font-size: 20px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #fff;
}

.social-icons img {
  width: 35px;
}

.footer-bottom {
    margin-top: 25px;
    border-top: 1px solid #a5a5a5;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #9f9f9f;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 3px;
}

.footer-links a {
  margin: 0 7px;
  color: #999;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.inner-copyright {
  text-align: right;
  color: #9f9f9f;
}

/* Contact Details */
.footer-column .contact-details {
  padding-top: 20px;
  padding-bottom: 20px;
}

.footer-column .contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column .contact-details ul li {
  gap: 20px;
  display: flex;
  align-items: center;
}

.footer-column .contact-details img {
  width: 20px;
}

.contact-details ul li a {
  color: #dadada;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details ul li a:hover {
  color: #fff;
}

/* Social Media */
.footer-column .social-media {
  padding-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-column .social-media img {
  width: 40px;
}

/* Responsive */
@media (max-width: 991px) {
  .footer-content {
    padding-top: 40px;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .footer-all-menu {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .footer-links {
    justify-content: center;
  }

  .inner-copyright {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .inner-footer {
    padding: 50px 0 0;
  }

  .footer-logo img {
    width: 200px;
  }

  .footer-column h4 {
    font-size: 1rem;
  }

  .footer-column a,
  .contact-details ul li a {
    font-size: 0.85rem;
  }

  .social-media {
    gap: 12px;
  }

  .social-media a {
    width: 28px;
    height: 28px;
  }

  /* .social-media img {
    width: 14px;
    height: 14px;
  } */

  .footer-bottom {
    font-size: 0.75rem;
  }
}