.navbar {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 15px;
}
@media (max-width: 1199.98px) {
  .navbar {
    background-color: #171717 !important;
  }
}
.navbar .container-fluid {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}
.navbar .navbar-toggler {
  display: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  background: transparent;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  position: relative;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler .navbar-toggler-icon::before, .navbar .navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}
.navbar .navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
  left: 0;
}
.navbar .navbar-toggler .navbar-toggler-icon::after {
  bottom: -8px;
  left: 0;
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background: transparent;
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}
.navbar .navbar-toggler[aria-expanded=true] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  bottom: 0;
}
.navbar .navbar-toggler:hover .navbar-toggler-icon {
  background: #0F19DD;
}
.navbar .navbar-toggler:hover .navbar-toggler-icon::before, .navbar .navbar-toggler:hover .navbar-toggler-icon::after {
  background: #0F19DD;
}
@media (max-width: 1199.98px) {
  .navbar .navbar-toggler {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .navbar .navbar-toggler {
    display: none !important;
  }
}

.navbar-brand {
  text-decoration: none;
  transition: transform 0.3s ease;
}
.navbar-brand:hover {
  transform: scale(1.05);
}
.navbar-brand .logo-container {
  position: relative;
}
.navbar-brand .logo-container .logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-brand .logo-container .logo-circle svg {
  width: 136px;
  height: auto;
  transition: filter 0.3s ease;
}
.navbar-brand .logo-container .logo-circle:hover svg {
  filter: drop-shadow(0 4px 8px rgba(15, 25, 221, 0.3));
}

@media (max-width: 1199.98px) {
  .navbar-brand .logo-container .logo-circle svg {
    filter: brightness(0) invert(1);
  }
}
@media (max-width: 1199.98px) and (max-width: 767.98px) {
  .navbar-brand .logo-container .logo-circle svg {
    width: 90px;
  }
}
.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199.98px) {
  .navbar-nav {
    display: none !important;
  }
}
.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  padding: 0.75rem 0.6rem !important;
  font-weight: 500;
}
.navbar-nav .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #0F19DD, #4A90E2);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar-nav .nav-link:hover {
  color: #0F19DD !important;
  background: rgba(15, 25, 221, 0.05);
  transform: translateY(-2px);
}
.navbar-nav .nav-link:hover::before {
  width: 80%;
}
.navbar-nav .nav-link.active {
  color: #0F19DD !important;
  background: rgba(15, 25, 221, 0.1);
}
.navbar-nav .nav-link.active::before {
  width: 80%;
}

.btn-call {
  background: #CEF753;
  color: #000000;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  border: none;
  padding: 20px 24px;
  border-radius: 25px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-call:hover {
  transform: translateY(-3px);
  background: #171717;
  color: white !important;
}
.btn-call:active {
  transform: translateY(-1px);
}
@media (max-width: 1199.98px) {
  .btn-call {
    display: none !important;
  }
}

.mobile-navbar {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgb(20, 20, 20);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgb(255, 255, 255);
  padding: 2rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  z-index: 999;
}
.mobile-navbar.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-navbar.show .mobile-nav-link {
  animation: slideInLeft 0.4s ease forwards;
}
.mobile-navbar.show .mobile-nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(4) {
  animation-delay: 0.4s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(5) {
  animation-delay: 0.5s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(6) {
  animation-delay: 0.6s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(7) {
  animation-delay: 0.7s;
}
.mobile-navbar.show .mobile-nav-link:nth-child(8) {
  animation-delay: 0.8s;
}
.mobile-navbar .mobile-nav-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
}
.mobile-navbar .mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.mobile-navbar .mobile-nav-links .mobile-nav-link {
  color: white;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.mobile-navbar .mobile-nav-links .mobile-nav-link:hover {
  color: #CEF753;
  padding-left: 1rem;
}
.mobile-navbar .mobile-nav-links .mobile-nav-link:last-child {
  border-bottom: none;
}
.mobile-navbar .mobile-nav-footer {
  text-align: center;
}
.mobile-navbar .mobile-nav-footer .btn-call-mobile {
  background: #CEF753;
  color: #000000;
  font-family: "Unbounded", "Inter", "Roboto", system-ui, -apple-system, sans-serif;
  border: none;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}
.mobile-navbar .mobile-nav-footer .btn-call-mobile:hover {
  background: white;
  transform: scale(1.05);
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 0.5rem 1rem;
  }
  .navbar .container-fluid {
    padding: 0;
  }
  .navbar-nav {
    margin: 1rem 0;
  }
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem !important;
    margin: 0.25rem 0;
    text-align: center;
    border-radius: 8px;
  }
  .navbar-nav .nav-link:hover {
    transform: none;
  }
  .btn-call {
    width: 100%;
    justify-content: center;
    margin: 1rem 0;
  }
}
@media (max-width: 767.98px) {
  .navbar-nav .nav-link {
    font-size: 13px;
    padding: 0.5rem 0.75rem !important;
  }
  .btn-call {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.navbar-nav .nav-link {
  animation: slideDown 0.5s ease forwards;
}
.navbar-nav .nav-link:nth-child(1) {
  animation-delay: 0.1s;
}
.navbar-nav .nav-link:nth-child(2) {
  animation-delay: 0.2s;
}
.navbar-nav .nav-link:nth-child(3) {
  animation-delay: 0.3s;
}
.navbar-nav .nav-link:nth-child(4) {
  animation-delay: 0.4s;
}
.navbar-nav .nav-link:nth-child(5) {
  animation-delay: 0.5s;
}
.navbar-nav .nav-link:nth-child(6) {
  animation-delay: 0.6s;
}
.navbar-nav .nav-link:nth-child(7) {
  animation-delay: 0.7s;
}
.navbar-nav .nav-link:nth-child(8) {
  animation-delay: 0.8s;
}

.navbar.scrolled .nav-link {
  padding: 0.5rem 1rem !important;
}
.navbar.scrolled .logo-container .logo-circle svg {
  max-height: 45px;
}

@media (prefers-color-scheme: dark) {
  .navbar {
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .navbar.scrolled {
    background: rgba(20, 20, 20, 0.98);
  }
  .navbar-nav .nav-link {
    color: #e0e0e0 !important;
  }
  .navbar-nav .nav-link:hover {
    background: rgba(15, 25, 221, 0.15);
  }
  .navbar-nav .nav-link.active {
    background: rgba(15, 25, 221, 0.2);
  }
}
