body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow-x: hidden; /* Prevent horizontal scrolling */
    overflow-y: scroll; /* Keep scrolling enabled */
    scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.hero img {
    max-width: 100%;
    max-height: 100%;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.arrow {
    position: fixed;
    bottom: 20px;
    right: 20px;
    cursor: pointer;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 14px;
    z-index: 1000; /* Ensure it's above other elements */
}

.arrow span {
    margin: 5px 0;
}

.contact-form {
    visibility: hidden; /* Hidden but still takes up space */
    opacity: 0; /* Fully transparent */
    padding: 50px;
    background-color: #f4f4f4;
    text-align: center;
    position: relative;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s ease; /* Smooth fade-in */
}

.contact-form.visible {
    visibility: visible; /* Show the form */
    opacity: 1; /* Fully visible */
}

.contact-form h2 {
    margin-bottom: 20px;
}

.contact-form input {
    padding: 10px;
    width: 300px;
    max-width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    padding: 10px 20px;
	background-color: #333;
	color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .arrow {
        font-size: 12px;
    }

    .contact-form input {
        width: 100%;
    }
}