/* ================= NAVBAR ================= */ 

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 60px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
}
.logo-box{
    width:50px;
    height:50px;
    border-radius:50%;
    border:2px solid #28a745;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    background:#fff;
        /* ✨ glow effect */
    box-shadow: 0 0 12px rgba(40,167,69,0.5);
    /* box-shadow: 0 0 10px rgba(40,167,69,0.4); */
}
/* .logo-box:hover{
    transform: scale(1.05);
    box-shadow: 
        0 0 8px rgba(0,0,0,0.08),
        0 0 15px rgba(40,167,69,0.3),
        0 0 25px rgba(255,255,255,0.8);
    transition:0.3s ease;
} */
 
.logo-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
}
.logo-text{
    font-weight:600;
    color:#28a745;
}

.nav-links{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav-links a.login-link {
    margin-left: 100px; /* adds extra space from Contact */
}
.nav-links a{
    text-decoration:none;
    color:#6b7280;
    font-size:14px;
    font-weight:500;
}
.nav-links a:hover {
    color: #28a745;
    transition: all 0.3s;
}
.register-btn-top{
    background:#28a745;
    color:#fff !important;
    padding:8px 18px;
    border-radius:25px;
    box-shadow: 
        0 6px 12px rgba(40, 167, 69, 0.4),  /* main green glow below */
        0 12px 20px rgba(40, 167, 69, 0.3), /* softer larger spread below */
        0 16px 30px rgba(0,0,0,0.08);       /* subtle soft shadow for depth */
}

.register-btn-top:hover{
        background:#218838;
}


/* responsivee nav */
.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    color: #28a745;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle .material-icons-outlined {
    font-size: 32px;
}

/* tab */

@media (max-width: 991px) {
.navbar{
    padding: 12px 30px;
}

.nav-links{
        gap: 18px;
    }
.nav-links a{
        font-size: 13px;
    }
.nav-links a.login-link {
        margin-left: 20px;
    }

}
@media (max-width: 767px) {
.navbar {
        position: sticky;
        top: 0;
        padding: 10px 15px;
        flex-wrap: wrap;
    }

.logo {
        gap: 8px;
    }
.logo-box {
        width: 42px;
        height: 42px;
    }
.logo-text {
        font-size: 13px;
    }
.menu-toggle {
        display: block;
    }
.nav-links {
        display: none;
         width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding-top: 15px;
    }

.nav-links.active {
        display: flex;
    }
.nav-links a {
        width: 100%;
        text-align: center;
        padding: 12px 10px;
        font-size: 14px;
        border-bottom: 1px solid #eee;
    }

.nav-links a.login-link {
        margin-left: 0;
    }

.register-btn-top {
        margin-top: 10px;
        margin-bottom: 5px;
    }

}