

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 15px;
}

.card-content p {
    color: #555;
    flex-grow: 1;
    margin-bottom: 20px;
}

.btn-detail {
    display: inline-block;
    align-self: flex-start;
    background-color: #3498db;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-detail:hover {
    background-color: #d44a3e;
    color: #ffffff;
    text-decoration: none; /* Altı çizgiyi kaldırır */
}


.no-results {
    text-align: center;
    grid-column: 1 / -1;
    font-size: 1.2rem;
    color: #95a5a6;
}