/* Custom Styles for DIGYTECH Landing Page */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #0f172a;
}
::-webkit-scrollbar-thumb {
    background: #b81d24;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #991b1b;
}

/* Interactive Gallery Hover Effects */
.interactive-gallery img {
    cursor: pointer;
    transition: transform 0.25s ease-in-out, opacity 0.2s ease-in-out, box-shadow 0.25s ease-in-out;
}

.interactive-gallery img:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

/* Custom Focus Ring for Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible {
    outline: 2px solid #b81d24;
    outline-offset: 2px;
}
