/* Core Navigation Skeleton */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    height: 80px; /* Slightly increased to fit your 50px logo icon comfortably */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #667eea;
}

.btn-nav {
    background: #667eea;
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
    transition: background 0.3s;
}

/* RTL Support for Urdu */
body.rtl {
    direction: rtl;
    text-align: right;
}

body.rtl .nav-content {
    flex-direction: row; /* Keeps logo right, links left in RTL */
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #667eea;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

/* Responsive Logic */
@media (max-width: 968px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 30px 0;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { left: 0; }
    body.rtl .nav-links { left: auto; right: -100%; }
    body.rtl .nav-links.active { right: 0; }
}