.footer {
  z-index: 9999;
  bottom: 0%;
  background-color: #000000;
  font-size: 14px;
  width: 100%;
}
.footer h5 {
  font-size: 14px;
  color: #fff;
  margin-bottom: 15px;
}

.footer p {
  color: #ccc;
  margin-bottom: 10px;
}

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

.footer-link {
  color: #ccc;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: #fff;
}

.footer .socials a {
  color: #ccc;
  margin: 0 5px;
  text-decoration: none;
}

.footer .socials a:hover {
  color: #fff;
}

  h5{
    font-size: 14px;
    font-weight: 600;
    margin:0px !important;
  }
  a{
    font-weight: 100;
  }

  /* Social Media Icon Animations */
  .social-icon {
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .social-icon:hover {
    transform: scale(1.2) rotate(5deg) !important;
    box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
    background: rgba(255, 153, 0, 0.2);
  }

  .social-icon.facebook:hover {
    color: #1877f2;
    background: rgba(24, 119, 242, 0.2);
    box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4);
  }

  .social-icon.twitter:hover {
    color: #000000;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
  }

  .social-icon.instagram:hover {
    color: #e4405f;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(228, 64, 95, 0.4);
  }

  .social-icon.linkedin:hover {
    color: #0077b5;
    background: rgba(0, 119, 181, 0.2);
    box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
  }

  .social-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
  }

  .social-icon:hover::before {
    width: 100%;
    height: 100%;
  }

  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  .social-icon:active {
    animation: pulse 0.3s ease;
  }

  /* Blinking color-changing animation for footer subscribe button */
  @keyframes colorBlink {
    0% {
      background-color: #ff9900;
      color: black;
      box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
    }
    50% {
      background-color: #ff6600;
      color: white;
      box-shadow: 0 0 15px rgba(255, 102, 0, 0.8);
    }
    100% {
      background-color: #ff9900;
      color: black;
      box-shadow: 0 0 5px rgba(255, 153, 0, 0.5);
    }
  }

  .footer-subscribe-btn {
    animation: colorBlink 2s infinite ease-in-out;
    transition: all 0.3s ease;
  }

  .footer-subscribe-btn:hover {
    animation-play-state: paused;
    background-color: #ffaa00 !important;
    color: black !important;
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.9) !important;
    transform: scale(1.05);
  }

  @media (min-width: 2560px) {
  p, li{
    font-size: 20px;
  }
  h5{
    font-size: 20px;
  }
  .footer-subscribe-btn {
    font-size: 20px !important;
    padding: 0px 12px !important;
  }
}