/* Fixed navbar styles */
.navbar {
  transition: all 0.3s ease;
  background-color: white !important;
}

.nav-logo {
    height: 150px;
    transition: height 0.3s ease;
}

/* Shadow appears when collapsed */
.navbar-collapsed {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Collapsed navbar state (desktop only) */
@media (min-width: 1200px) {
  .navbar-collapsed {
    padding: 5px 0 !important;
  }
  
  .navbar-collapsed .navbar-container {
    padding: 5px 0 !important;
  }
  
  .navbar-collapsed .nav-logo {
    height: 70px !important;
  }
  
  .navbar-collapsed .nav-options {
    padding: 5px 15px;
  }
}

/* Responsive logo sizes */
@media (max-width: 1794px) and (min-width: 1200px) {
    .nav-logo {
        height: 120px;
    }
    .navbar-collapsed .nav-logo {
        height: 50px !important;
    }
}

@media (max-width: 1655px) and (min-width: 1200px) {
    .nav-logo {
        height: 90px;
    }
    .navbar-collapsed .nav-logo {
        height: 50px !important;
    }
}

@media (max-width: 1330px) and (min-width: 1200px) {
    .nav-logo {
        height: 65px;
    }
    .navbar-collapsed .nav-logo {
        height: 50px !important;
    }
}

/* Mobile styles - unchanged */
@media (max-width: 576px) {
    .nav-logo {
        height: 90px;
    }
}

@media (max-width: 500px) {
    .nav-logo {
        height: 70px;
    }
}

@media (max-width: 410px) {
    .nav-logo {
        height: 55px;
    }
}

/* Navbar container styling */
.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  transition: padding 0.3s ease;
}

/* White container for nav options */
.nav-options {
  background-color: white;
  border-radius: 30px;
  padding: 8px 20px;
  transition: padding 0.3s ease;
}

.nav-item {
  margin: auto 20px;
}

@media (max-width: 1530px) {
    .nav-item {
      margin: auto 10px;
    }
}

/* Hover effects for nav items */
.nav-options .nav-link:hover {
  color: #71a9f7 !important;
  transition: color 0.3s ease;
}

/* Hover effect for the button (Book a Demo) */
.nav-options .btn-primary:hover {
  background: #71a9f7 !important;
  color: #fff !important;
  transition: background 0.3s ease;
}

/* Optional: smooth transition for all nav links */
.nav-options .nav-link {
  transition: color 0.3s ease;
}

/* Full-screen menu (for mobile) */
.full-screen-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
}

.full-screen-menu.show {
  display: flex;
}

.full-screen-menu .nav-link {
  color: #002644 !important;
  font-size: 24px;
  margin: 10px 0;
}

.full-screen-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #002644;
  font-size: 60px;
  background: none;
  border: none;
}