.nav-link {
    @apply text-gray-600 hover:text-teal-600 transition duration-300;
}

.section-title {
    @apply text-3xl font-bold text-gray-800 mb-8 text-center;
}

.skill-card {
    @apply bg-white rounded-lg shadow-lg p-6 transform hover:scale-105 transition duration-300;
}

.skill-card h3 {
    @apply text-xl font-semibold text-teal-600 mb-3;
}

.skill-card p {
    @apply text-gray-600;
}

.project-card {
    @apply bg-white rounded-lg shadow-lg overflow-hidden transform hover:scale-105 transition duration-300;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

header, section {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Mobile menu animation */
.mobile-menu {
    transition: all 0.3s ease-in-out;
    transform-origin: top;
    transform: scaleY(0);
}

.mobile-menu.show {
    transform: scaleY(1);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #38b2ac;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #319795;
}