.bg-custom{
    background-color: whitesmoke;
}

body{
    background-color: black;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-family: sans-serif;
}

/* .custom-w{
    width: 1350px;
    height: 1px;
    align-items: center;
    align-content: center;
} */

.navbar .nav-link {
    position: relative;
    padding: 5px 15px;
    border-radius: 10px;
    color: white;
    transition: color 0.3s ease;
    overflow: hidden;
    z-index: 1;
}

/* Background box animation */
.navbar .nav-link::before {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(9, 84, 245, 0.911);
    backdrop-filter: blur(5px);
    transition: left 0.4s ease;
    z-index: -1;
    border-radius: 6px;
}

/* On hover: slide in background */
.navbar .nav-link:hover::before {
    left: 0;
}

/* On hover: zoom and glow effect */
.navbar .nav-link:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
    color: #fff;
}

.custom-align{
    text-align: center;
}

.custom-m{
    margin-top: 250px;
}