.technology-card {
    position: relative;
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.technology-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.technology-card .relative {
    overflow: hidden;
}

.technology-card img {
    transition: transform 0.5s ease-in-out;
}

.technology-card:hover img {
    transform: scale(1.05);
}

.technology-card .p-6 {
    position: relative;
    z-index: 1;
}

.technology-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.technology-card:hover::after {
    opacity: 1;
} 