/* General Styles */
    .fixed-social-icons a {
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .fixed-social-icons a:hover {
      transform: scale(1.15);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

    @keyframes pulse-glow {

      0%,
      100% {
        opacity: 0.75;
      }

      50% {
        opacity: 0.9;
      }
    }

    @keyframes gradient {
      0% {
        background-position: 0% 50%;
      }

      50% {
        background-position: 100% 50%;
      }

      100% {
        background-position: 0% 50%;
      }
    }

    /* For modern browsers */
    ::-webkit-scrollbar {
      display: none;
      /* Chrome, Safari, Edge */
    }

    html {
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }

    html {
      scroll-behavior: smooth;
    }

    .gradient-text {
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    #vanta-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      opacity: 0.15;
    }

    /* Custom styles for better spacing */
    .footer-section {
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .footer-section {
        margin-bottom: 0;
      }
    }