 *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 }


      :root {
          --main-dark: #001f3f;
          --yellow: #ffc60c;
          --secondary: #e7bd02;
          --white: #fff;
            --gray: rgb(83, 83, 83);
            --black: #161616;
        }

 
 body{
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

 }
 
 
 .navbar {
      background: #161616f6;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      padding: 15px 20px;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }
    .logo img {
      width: 160px;
      height: auto;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .nav-link {
      color: #b0b0b0;
      font-size: 1rem;
      font-weight: 500;
      padding: 0.5rem 1rem;
      position: relative;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--white);
    }
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 0;
      bottom: -4px;
      left: 50%;
      background-color: var(--yellow);
      border-radius: 50%;
      transition: width 0.3s ease, height 0.3s ease, left 0.3s ease;
    }
    .nav-link:hover::after, .nav-link.active::after {
      width: 6px;
      height: 6px;
      left: calc(50% - 3px);
    }
    .dropdown {
      position: relative;
    }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: rgba(42, 42, 42, 0.9);
      backdrop-filter: blur(5px);
      min-width: 160px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      z-index: 1001;
      border-radius: 4px;
    }
    .dropdown:hover .dropdown-menu, .dropdown.active .dropdown-menu {
      display: block;
    }
    .dropdown-item {
      color: #e0e0e0;
      padding: 0.75rem 1rem;
      display: block;
      text-decoration: none;
      transition: background-color 0.2s ease;
    }
    .dropdown-item:hover {
      background-color: var(--yellow);
      color: var(--main-dark);
    }
    .cta-container {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .cta-button {
      background: linear-gradient(45deg, #ffd82b, #ff9900);
      color: #fff;
      font-size: 16px;
      font-weight: 600;
      padding: 8px 12px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .cta-button:hover {
      transform: scale(0.9);
      box-shadow: inset 0 8px 5px rgba(0, 0, 0, 0.7);
      border: 1px solid #ffffff6b;
    }
    .headphone-container {
      position: relative;
      display: flex;
      align-items: center;
    }
    .headphone-icon {
      color: var(--white);
      font-size: 1.5rem;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .headphone-icon:hover {
      color: var(--yellow);
      transform: scale(1.2);
    }
    .headphone-dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: -100px;
      background-color: rgba(42, 42, 42, 0.9);
      backdrop-filter: blur(5px);
      min-width: 160px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
      z-index: 1001;
      border-radius: 4px;
    }
    .headphone-container:hover .headphone-dropdown-menu,
    .headphone-container.active .headphone-dropdown-menu {
      display: block;
    }
    .headphone-dropdown-item {
      color: #e0e0e0;
      padding: 0.75rem 1rem;
      display: block;
      text-decoration: none;
      transition: background-color 0.3s ease;
    }
    .headphone-dropdown-item:hover {
      background-color: var(--yellow);
      color: var(--black)
    }
    .hamburger {
      display: none;
      color: #fff;
      font-size: 1.5rem;
      cursor: pointer;
      background: none;
      border: none;
    }
    .mobile-headphone-container {
      display: none;
      position: relative;
    }
    .mobile-headphone-icon {
      color: #fff;
      font-size: 1.5rem;
      text-decoration: none;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .mobile-headphone-icon:hover {
      color: var(--yellow);
      transform: scale(1.2);
    }
    @media (max-width: 768px) {
      .nav-links, .cta-container {
        display: none !important;
      }
      .hamburger, .mobile-headphone-container {
        display: block;
      }
      .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 35px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
      }
      .logo {
        flex-grow: 1;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
      }
      .mobile-headphone-container {
        position: absolute;
        left: 1rem;
      }
      .hamburger {
        position: absolute;
        right: 1rem;
      }
      .navbar.active {
        background: rgba(26, 26, 26, 1);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
      }
      .navbar.active .nav-links {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: rgba(26, 26, 26, 1);
        backdrop-filter: blur(10px);
        padding: 2rem;
        z-index: 999;
        transition: right 0.3s ease;
      }
      .navbar.active .nav-links.active {
        right: 0;
      }
      .navbar.active .nav-link {
        font-size: 1.2rem;
        padding: 1rem;
        width: 100%;
        text-align: left;
      }
      .navbar.active .dropdown {
        width: 100%;
      }
      .navbar.active .dropdown-menu {
        position: static;
        width: 100%;
        background: none;
        box-shadow: none;
        padding-left: 1rem;
      }
      .navbar.active .dropdown-item {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
      }
      /* .navbar.active .cta-container {
        display: flex !important;
        align-items: center;
        gap: 1rem;
        margin: 1rem 0;
        width: 100%;
      } */
      .navbar.active .headphone-container {
        width: 100%;
      }
      .navbar.active .headphone-dropdown-menu {
        position: static;
        left: auto;
        right: 0;
        background: none;
        box-shadow: none;
        padding-left: 1rem;
        width: 100%;
      }
      .mobile-headphone-container .headphone-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
        background-color: rgba(42, 42, 42, 0.9);
        backdrop-filter: blur(5px);
        min-width: 160px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
        z-index: 1001;
        border-radius: 4px;
      }
      .mobile-headphone-container:hover .headphone-dropdown-menu,
      .mobile-headphone-container.active .headphone-dropdown-menu {
        display: block;
      }
    }













