/* Custom Styles */

/* Pulsating Arrow Animation */
@keyframes pulse-down {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
}

.animate-pulse-down {
    animation: pulse-down 2s infinite;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom classes for the split layout */
.desktop-image-container {
    height: 100vh;
    width: 60%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.desktop-content-container {
    margin-left: 60%;
    width: 40%;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    background-color: white;
}

@media (max-width: 768px) {
    .desktop-image-container {
        position: relative;
        width: 100%;
        height: 60vh;
        z-index: 0;
    }
    
    .desktop-content-container {
        margin-left: 0;
        width: 100%;
    }
}
