.banner-area {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-area img {
    object-fit: cover;
}


.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.arrow-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: blink 1.5s infinite;
}

html {
    scroll-behavior: smooth;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

@media (max-width: 576px) {
    .arrow-down {
        bottom: 120px;
    }

    /* Move banner content up */
    .banner-content{
        position: relative;
        transform: translateY(-100px);
    }
}