﻿.overlay {
    position: static; /* absolute yerine normal akışta olsun */
    width: 100%;
    height: auto;
    background: none; /* arka plan karartması kalksın */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1; /* her zaman görünsün */
    margin-top: 10px; /* resim ile buton arasında boşluk */
    transition: none; /* hover geçişine gerek yok */
}

.service-item:hover .overlay {
    opacity: 1; /* hover olunca değişmesin */
}

.overlay button {
    background: #ff9800;
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

    .overlay button:hover {
        background: #e68900;
    }
