body, html {
      height: 100%;
      margin: 0;
      padding: 0;
      font-family: "Inter", sans-serif;
      scroll-behavior: smooth;
    }
    .bg-image {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: url('/Images/Logo-Banner.png') center center/cover no-repeat;
      z-index: 1;
    }
    .overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100vw; height: 100vh;
      background: rgba(0, 0, 0, 0.5); /* Black with 50% opacity */
      z-index: 2;
    }
    .content {
      position: relative;
      z-index: 3;
      color: #fff;
      text-align: center;
      top: 30vh;
      font-size: 2rem;
    }

    
    .social-icons {
      margin-top: 30px;
    }
    .social-icons a {
      text-decoration: none;
      margin: 0 10px;
    }
    .icon-bg {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      width: 50px;
      height: 50px;
      transition: background 0.3s, box-shadow 0.3s;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .icon-bg i {
      color: #fff;
      font-size: 1.5rem;
      transition: color 0.3s;
    }
    .social-icons a:hover .icon-bg {
      background: #fff;
      box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    }
    .social-icons a:hover .icon-bg i {
      color: #1877f3; /* Facebook blue as default hover color */
    }
    .social-icons a:nth-child(2):hover .icon-bg i {
      color: #e4405f; /* Instagram pink */
    }
    .social-icons a:nth-child(3):hover .icon-bg i {
      color: #fffc00; /* Snapchat yellow */
    }

    @media (max-width: 800px) {
      .content {
        top: 30vh;
        font-size: 1.5rem;
      }
      .icon-bg {
        width: 40px;
        height: 40px;
      }
      .icon-bg i {
        font-size: 1.2rem;
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(40px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .content > * {
      opacity: 0;
      animation: fadeUp 1s ease-out forwards;
      animation-delay: 0.3s;
    }

    .content > *:nth-child(2) {
      animation-delay: 0.5s;
    }
    .content > *:nth-child(3) {
      animation-delay: 0.7s;
    }