/* ===== NAVBAR ===== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
}

/* ===== MAIN NAVBAR ===== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;

  width: 100%;
  height: 78px;

  background: rgba(0, 0, 0, 0.95);

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 0 3%;

  z-index: 9999;

  backdrop-filter: blur(10px);
}

/* ===== LOGO AREA ===== */

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;

  cursor: pointer;

  flex-shrink: 0;
}

/* ===== LOGO IMAGE ===== */

.nav-logo img {
  width: 46px;
  object-fit: contain;
}

/* ===== LOGO TEXT ===== */

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;

  line-height: 1.1;
}

.logo-text span {
  color: #ffffff;

  font-size: 15px;
  font-weight: 700;

  letter-spacing: 0.5px;
}

.logo-text small {
  color: #0a6cff;

  font-size: 10px;
  font-weight: 600;

  letter-spacing: 2px;

  text-transform: uppercase;
}

/* ===== LOGO LINK ===== */

.logo-link {
  text-decoration: none;

  display: flex;
  align-items: center;
}

/* ===== MENU ===== */

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 28px;

  flex: 1;

  margin: 0 24px;
}

/* ===== MENU LINKS ===== */

.nav-menu a {
  position: relative;

  color: #fff;
  text-decoration: none;

  font-size: 15px;
  font-weight: 500;

  padding: 10px 0;

  transition: 0.4s ease;

  overflow: hidden;

  white-space: nowrap;
}

/* TEXT COLOR HOVER */

.nav-menu a:hover {
  color: #0a6cff;
}

/* ===== UNIQUE HOVER EFFECT ===== */

/* TOP GLOW LINE */

.nav-menu a::before {
  content: "";

  position: absolute;

  left: 50%;
  bottom: -8px;

  width: 0%;
  height: 3px;

  background: linear-gradient(90deg, #0a6cff, #4da3ff);

  border-radius: 50px;

  transform: translateX(-50%);

  transition: 0.4s ease;

  box-shadow: 0 0 12px rgba(10, 108, 255, 0.8);
}

/* BLUE LIGHT EFFECT */

.nav-menu a::after {
  content: "";

  position: absolute;

  left: 50%;
  top: 50%;

  width: 0px;
  height: 0px;

  background: rgba(10, 108, 255, 0.15);

  border-radius: 50%;

  transform: translate(-50%, -50%);

  transition: 0.5s ease;

  z-index: -1;
}

/* HOVER ANIMATION */

.nav-menu a:hover::before {
  width: 100%;
}

.nav-menu a:hover::after {
  width: 80px;
  height: 80px;
}

/* ===== ACTIVE LINK ===== */

.nav-menu a.active {
  color: #0a6cff;
}

.nav-menu a.active::before {
  width: 100%;
}

/* ===== RIGHT ICONS ===== */

.nav-icons {
  display: flex;
  align-items: center;

  gap: 14px;

  flex-shrink: 0;
}

/* ===== ICON BUTTON ===== */

.icon-btn {
  width: 42px;
  height: 42px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  text-decoration: none;

  transition: 0.35s ease;
}

.icon-btn:hover {
  background: #0a6cff;

  border-color: #0a6cff;

  color: #fff;

  transform: translateY(-3px);

  box-shadow: 0 0 25px rgba(0, 102, 255, 0.35);
}

/* ===== MOBILE MENU ===== */

.menu-toggle {
  display: none;

  color: #fff;

  font-size: 24px;

  cursor: pointer;
}

/* ========================================= */
/* ===== LARGE LAPTOP ====================== */
/* ========================================= */

@media (max-width: 1350px) {
  .nav-menu {
    gap: 20px;
  }

  .nav-menu a {
    font-size: 14px;
  }
}

/* ========================================= */
/* ===== SMALL LAPTOP ====================== */
/* ========================================= */

@media (max-width: 1150px) {
  .nav-menu {
    gap: 14px;

    margin: 0 16px;
  }

  .nav-menu a {
    font-size: 13px;
  }

  .logo-text span {
    font-size: 14px;
  }
}

/* ========================================= */
/* ===== TABLET / MOBILE =================== */
/* ========================================= */

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
    z-index: 10000;
  }

  .nav-menu {
    position: absolute;

    top: 78px;
    left: 0;

    width: 100%;

    background: rgba(0, 0, 0, 0.98);

    flex-direction: column;

    align-items: flex-start;

    padding: 35px 7%;

    gap: 24px;

    transform: translateY(-120%);

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    margin: 0;
  }

  .nav-menu.active {
    transform: translateY(0);

    opacity: 1;
    visibility: visible;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .nav-menu a::after {
    display: none;
  }

  .small-logo {
    display: none;
  }
}

/* ========================================= */
/* ===== MOBILE MENU ======================= */
/* ========================================= */

@media (max-width: 992px) {
  .menu-toggle {
    display: block;

    z-index: 10000;
  }

  .nav-menu {
    position: fixed;

    top: 78px;

    left: 0;

    width: 100vw;

    height: calc(100vh - 78px);

    background: rgba(0, 0, 0, 0.98);

    flex-direction: column;

    align-items: flex-start;

    padding: 35px 24px;

    gap: 24px;

    margin: 0;

    transform: translateY(-120%);

    opacity: 0;

    visibility: hidden;

    transition: 0.4s ease;

    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateY(0);

    opacity: 1;

    visibility: visible;
  }

  .nav-menu a {
    font-size: 16px;
  }
}
/* ========================================= */
/* ===== SMALL MOBILE ====================== */
/* ========================================= */

@media (max-width: 480px) {
  .navbar {
    height: 74px;
  }

  .nav-menu {
    top: 74px;
  }

  .logo-text span {
    font-size: 12px;
  }

  .logo-text small {
    font-size: 8px;
  }

  .menu-toggle {
    font-size: 22px;
  }
}
