body {
      margin: 0;
      background-color: #121212;
      font-family: 'Poppins', sans-serif;
    }

    footer {
      background-color: #121212;
      color: white;
      padding: 30px 20px;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .footer-logo img {
      height: 40px;
      width: auto;
      max-width: 100%;
    }

    .social-icons {
      display: flex;
      gap: 15px;
    }

    .social-icons a {
      display: block;
      width: 24px;
      height: 24px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      text-indent: -9999px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .social-icons a:hover {
      transform: scale(1.1);
    }

    /* Update these paths to match your actual image locations */
    .social-icons .instagram { background-image: url('https://vidora.in/frontend/instagram.svg'); }
    .social-icons .facebook { background-image: url('https://vidora.in/frontend/facebook.svg'); }
    .social-icons .twitter { background-image: url('https://vidora.in/frontend/twitter.svg'); }
    .social-icons .linkedin { background-image: url('https://vidora.in/frontend/linkedin.svg'); }
    .social-icons .youtube { background-image: url('https://vidora.in/frontend/youtube.svg'); }

    .footer-links {
      display: flex;
      justify-content: center;
      gap: 40px;
      margin: 25px 0 15px;
      flex-wrap: wrap;
    }

    .footer-links a {
      color: white;
      text-decoration: underline;
      font-weight: 600;
      font-size: 14px;
      transition: color 0.3s ease;
    }

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

    .footer-bottom {
      text-align: center;
      font-size: 13px;
      color: #aaa;
      margin-top: 20px;
    }

    @media (max-width: 768px) {
      .footer-top {
        gap: 15px;
      }

      .footer-logo img {
        height: 35px;
      }

      .social-icons a {
        width: 22px;
        height: 22px;
      }

      .footer-links {
        gap: 20px;
      }
    }

    @media (max-width: 480px) {
      .footer-top {
        justify-content: space-between;
      }

      .footer-logo img {
        height: 30px;
      }

      .social-icons {
        gap: 10px;
      }

      .social-icons a {
        width: 20px;
        height: 20px;
      }

      .footer-links {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
      }

      .footer-links a {
        font-size: 12px;
      }
    }