

.custom-navbar {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

/* .logo {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
} */

.navbar-nav .nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 12px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d6efd;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.contact-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  background: linear-gradient(135deg, #0066ff, #0066ff);
  color: white;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 102, 255, 0.4);
}

@media (max-width: 991px) {
  .navbar-nav {
    text-align: center;
    padding: 20px 0;
  }

  .contact-wrapper {
    text-align: center;
    margin-top: 15px;
  }
}
