.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}


.logo-text {
    display: flex;
    align-items: center;
    font-size: 48px;
    font-weight: 600;
    color: #1C2F69;
    text-decoration: none;
    margin-left: 120px;
    position: absolute;
}


.logo-png {
    height: 80px;
    width: auto;
    object-fit: contain;
    cursor: pointer;
    position: relative;
    margin-left: 30px;
}


.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-right: 70px;
}


.links {
    color: #1C2F69;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: 
        background-color 0.3s ease,
        color 0.3s ease,
        transform 0.2s ease;
}


.links:hover {
    background-color: #1C2F69;
    color: #ffffff;
    transform: translateY(-2px);
}


.links.active {
    background-color: rgba(28, 47, 105, 0.1);
    color: #1C2F69;
}


/* Media */


@media (max-width: 1024px) {
    .navbar {
        height: 90px;       
    }

    .logo-text {
        font-size: 40px;
        margin-left: 80px;
    }

    .logo-png {
        height: 70px;
        margin-left: 20px;
    }

    .nav-links {
        margin-right: 40px;
        gap: 18px;
    }

    .links {
        font-size: 1rem;
        padding: 8px 14px;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 80px;
       
    }

    .logo-text {
        font-size: 34px;
        margin-left: 60px;
    }

    .logo-png {
        height: 60px;
        margin-left: 15px;
    }

    .nav-links {
        margin-right: 25px;
        gap: 14px;
    }

    .links {
        font-size: 0.95rem;
        padding: 7px 12px;
    }
}

@media (max-width: 480px) {
    .navbar {
        height: 70px;
       
    }

    .logo-text {
        font-size: 28px;
        margin-left: 40px;
    }

    .logo-png {
        height: 52px;
        margin-left: 10px;
        max-width: 5px;
        
    }

    .nav-links {
        margin-right: 15px;
        gap: 10px;
    }

    .links {
        font-size: 0.9rem;
        padding: 6px 10px;
    }
}