﻿.animated-image {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 20px;
}

    .animated-image:hover {
        transform: scale(1.01);
    }

.slider-image {
    height: 750px; /* Sabit bir yükseklik belirledik */
    object-fit: cover; /* Resmin kapsadığı alanı doldurmasını sağladık */
    border-radius: 10px;
}

.service-title {
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 20px;
    position: relative;
    animation: fadeIn 1s ease-in-out;
}

    .service-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -10px;
        height: 4px;
        width: 50px;
        background-color: #2980b9;
        border-radius: 2px;
        transition: width 0.3s ease;
    }

    .service-title:hover::after {
        width: 100px;
    }

.service-description {
    color: #34495e;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
}


.button-group {
    display: flex;
    gap: 10px;
}


.contact-btn, .whatsapp-btn {
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-btn {
    background-color: #E67E22;
    color: white;
}

    .contact-btn:hover {
        background-color: #D35400;
        transform: scale(1.05);
    }

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

    .whatsapp-btn:hover {
        background-color: #1EBE5C;
        transform: scale(1.05);
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
