/* Custom styles that can't be easily done with Tailwind */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}
/* Custom form styles */
.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s ease;
}

/* Custom form validation styles */
.form-group .validation-icon .feather-check {
    display: none;
}

.form-group .validation-icon .feather-x {
    display: none;
}

.form-group.success .validation-icon {
    display: flex;
}

.form-group.success .validation-icon .feather-check {
    display: block;
}

.form-group.error .validation-icon {
    display: flex;
}

.form-group.error .validation-icon .feather-x {
    display: block;
}

.form-group.success input {
    border-color: #10B981;
}

.form-group.error input {
    border-color: #EF4444;
}

/* Custom animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Custom carousel transition */
.carousel-slides {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

/* Custom footer styling */
footer a:hover {
    color: #3B82F6;
    transition: color 0.3s ease;
}