* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body,
    html {
      height: 100%;
      overflow: hidden;
      font-family: Arial, sans-serif;
      background-color: black;
    }

    .video-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    .video-desktop,
    .video-mobile {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }

    .video-mobile {
      display: none;
    }

    .image-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2;
      width: 80%;
      max-width: 600px;
    }

    .image-content-wrapper {
      position: relative;
      width: 100%;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .image-content-wrapper.visible {
      opacity: 1;
    }

    .image-overlay img {
      width: 100%;
      height: auto;
      display: block;
    }

    .content-container {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 3;
      color: black;
      text-align: center;
      padding: 20px;
    }

    .footer-bar {
      display: flex;
      margin-top: 85px;
      align-items: center;
      gap: 5px;
    }

    .social-icons {
      display: flex;
      gap: 1px;
    }

    .social-icons a {
      color: black;
      margin: 0 8px;
      font-size: 15px;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.4);
      /* color: #e60794; */
    }

    .footer-links {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .footer-links a {
      color: black;
      text-decoration: none;
    }

    /* Removed all underline effects */
    .footer-links a:hover {
      text-decoration: none;
      /* color: #e60794; */
    }

    .founder-link {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      font-size: 12px;
      text-decoration: none;
      color: black;
    }

    .founder-link:hover {
      text-decoration: none;
      /* color: #e60794; */
    }

    .vertical-bar {
      display: inline-block;
      width: 1px;
      height: 20px;
      background-color: #000;
      vertical-align: middle;
    }

        /* Scale up effect for Contact Us */
    .footer-links a[href="contact.html"]:hover {
      transform: scale(1.1);
      /* color: #e60794; */
    }

    /* Scale up effect for Founder link */
    .founder-link:hover {
      transform: scale(1.1);
      /* color: #e60794; */
    }

     /* Hide the actual link from screen */
  .founder-link[data-mobile-src] {
    position: relative;
  }
  .founder-link[data-mobile-src]::after {
    content: '';
    position: absolute;
    inset: 0;
  }

    @media (max-width: 768px) {
      .video-desktop {
        display: none;
      }

      .video-mobile {
        display: block;
      }

      .image-overlay {
        width: 55%;
      }

      .footer-bar {
        flex-direction: column;
        margin-top: 170px;
        gap: 0px;
      }

      .social-icons a {
        font-size: 18px;
      }

      .footer-links {
        text-align: center;
        font-size: 13px;
      }

      .founder-link {
        align-items: center;
      }
    }