/* 🧊 White Glass Navbar */
.custom-navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Logo */
.logo-img {
    height: 42px;
    border-radius: 8px;
}

/* Brand */
.brand-text {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Links */
.nav-link {
    color: #555 !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

/* Smooth underline hover */
.nav-link::after {
    content: '';
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.nav-link:hover {
    color: #000 !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* 🔥 Premium Glow Button */
.btn-glow {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    border: none;
    color: #fff;
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
    transform: translateY(-2px);
}

/* Fix navbar overlap */
body {
    padding-top: 80px;
}