  @media only screen and (min-width: 300px) and (max-width: 767px) {
      .menu-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          width: 50px;
          height: 50px;
          border: 1px solid #AC1929;
          border-radius: 12px;
          margin-left: auto;
          margin-right: 10px;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 0;
      }

      .menu-btn  {
          font-size: 24px;
      }

      .navbar {
          padding: 10px 10px;
          height: 100px;
          display: flex;
          flex-direction: row;
          background: black;
          box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
      }

      .sidebar-menu {
          position: fixed;
          top: 0;
          left: -1000%;
          width: 100%;
          background: var(--bg-color);
          z-index: 9999;
          transition: 0.3s ease all;
          display: flex;
          padding: 45px 30px;
          height: 100vh;
      }

      .sidebar-menu.sidebar-toggle {
          left: 0;
      }

      .sidebar-menu .navbar-list li {
          margin: 10px 0;
      }

      .sidebar-menu .navbar-list li a {
          color: var(--text-color);
      }

      .navbar .navbar-list {
          display: none;
      }


      .navbar.toggle-class {
          height: 80px;
      }

      .navbar.toggle-class img {
          height: 100px;
      }
    }



  @media (max-width: 768px) {
    .hero {
      padding-top: 1rem;
    }
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero p {
      font-size: 0.9rem;
    }
  }

  @media (max-width: 600px) {
    .menu-btn {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          width: 50px;
          height: 50px;
          border: 1px solid #AC1929;
          border-radius: 12px;
          margin-left: auto;
      }

      .close-btn {
          position: absolute;
          top: 20px;
          right: 0;
      }

      .menu-btn  {
          font-size: 24px;
      }

      .navbar {
          padding: 10px 0;
          height: 100px;
          display: flex;
          flex-direction: row;
          background: black;
          box-shadow: rgba(0, 0, 0, 0.1) 0 20px 25px -5px, rgba(0, 0, 0, 0.04) 0 10px 10px -5px;
      }
    .navbar {
      padding: 0rem 2rem;
      align-items: center;
    }
    .navbar .navbar-list {
          display: none;
      }
    .nav-links {
      flex-direction: column;
      gap: 1rem;
    }
    .video-container {
      padding-top: 40px;
    }
    .contact-styling{
      flex-direction: column;

    }
  }


  @media (max-width: 400px) {
    .hero h1 {
      font-size: 2rem;
    }
    .hero p {
      font-size: 0.8rem;
    }
    .hero {
        padding: 1rem 0.75rem;
    }
  }