/* Additional Custom Styles */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Glassmorphic effect enhancement */
.glassmorphic {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Hover effects for cards */
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Animation for testimonials */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial {
    opacity: 0;
    animation: fadeIn 0.6s ease-out forwards;
}

.testimonial:nth-child(1) {
    animation-delay: 0.2s;
}

.testimonial:nth-child(2) {
    animation-delay: 0.4s;
}

.testimonial:nth-child(3) {
    animation-delay: 0.6s;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #1a1a1a;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff8c00;
}

.logo {
    max-width: 150px;
    height: auto;
    margin: 10px 0;
}