/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: #ffffff;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e5e5e5;
}

/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

/* Image Hover Effects */
.img-scale {
    transition: transform 0.5s ease;
}

.img-scale:hover {
    transform: scale(1.03);
}

/* Section Transitions */
section {
    scroll-margin-top: 100px;
}

/* Form Input Styling */
input, textarea {
    transition: all 0.3s ease;
}

input:focus, textarea:focus {
    border-bottom-width: 2px;
}

/* Button Hover Effects */
.btn-hover {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-hover:after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-hover:hover:after {
    left: 0;
}