*{
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: Arial;
    background: #f5f7fa;
    font-family: 'Poppins', sans-serif;
}

header {
    background: red;
    color: white;
    padding: 15px;
    text-align: center;
}


/* Navbar */
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 20px;
    height: 70px;
box-sizing: border-box;
    position: fixed;
    top: 0;
    width: 100%;
background: linear-gradient(to right, rgba(10, 25, 80, 0.9), rgba(0, 123, 255, 0.3));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    z-index: 1000;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Logo Image */
.logo-img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Logo Text */
.logo-text h1 {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    color: white;
}

.logo-text p {
    margin: 0;
    font-size: 11px;
    color: #cfd8dc;
}

/* Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
    opacity: 0.9;
}

nav ul li a:hover {
    color: #4fc3f7;
    opacity: 1;
}
/* Hide toggle on desktop */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

/* MOBILE STYLE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        background: rgba(0,0,0,0.9);

        display: none;
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    nav.active {
        display: flex;
    }
}