
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Roboto", sans-serif; */
    font-family:"Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif
}

body {
    background: linear-gradient(135deg, #071a52, #0a1540, #091634);
    /* background: linear-gradient(135deg, #031f75, #031e73, #031d6f); */
    color: #fff;
    overflow-x: hidden;
}

/* NAVBAR */
nav {
    width: 100%;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 12px rgb(171 166 166 / 15%);
    height: 65px;

}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
}

.logo-circle {
    width: 45px;
    height: 45px;
    background: #4e6bff;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 22px;
    box-shadow: 0 0 12px rgba(78, 107, 255, 0.6);
}

nav ul {
    display: flex;
    gap: 35px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
}

nav ul li a:hover {
    color: #ff4d6d;
}


/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        padding: 20px;
    }

    nav ul {
        gap: 18px;
        font-size: 14px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 6%;
    }

    .hero-text h1 {
        font-size: 34px;
    }

    .hero-img img {
        width: 240px;
    }
}

/* FOOTER */
footer {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    font-size: 14px;
    color: #cfcfcf;
}

::-webkit-scrollbar {
    width: 5px;
    height: 4px;
}

::-webkit-scrollbar-thumb {
   background: linear-gradient(-225deg, #db4252 0%, #b6d2ff 100%);
    border-radius: 10px;
}


a.active {
    color: #f00; /* Example: red for active page */
    font-weight: bold;
}