
/* Custom styles to enhance Tailwind */
@media (max-width: 640px) {
    .hero-section {
        background-position: 65% center;
    }
}
.portfolio-item {
    position: relative;
    transition: all 0.3s ease;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 200, 83, 0);
    transition: background 0.3s ease;
    z-index: 1;
}

.portfolio-item:hover::after {
    background: rgba(0, 200, 83, 0.1);
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Custom underline for headings */
.section-heading {
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00C853;
}

/* Form input focus styles */
input:focus, textarea:focus, select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(138, 154, 91, 0.2);
}