.homeScreenImg{
    height: 100vh !important;
    width: 100vw;
    object-fit: cover;
    display: block;
}
body{
    overflow-y: hidden;
}

/* ── Home page navigation hover effect (desktop only) ───────────────────── */
.navigation a {
    position: relative;
    padding-bottom: 4px;
    transition: opacity 0.3s ease;
}

/* Animated underline bar — grows from centre outward */
.navigation a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: width 0.3s ease, left 0.3s ease;
}

.navigation a:hover {
    opacity: 0.85;
}

.navigation a:hover::after {
    width: 100%;
    left: 0;
}

/* Active page link */
.navigation a.active-menu::after {
    width: 100%;
    left: 0;
}

@media screen and (max-width: 768px) {
    .navigation{
        flex-direction: column !important;
        text-align: center !important;
    }

    /* Disable hover effects on mobile */
    .navigation a::after {
        display: none;
    }
}