/* style.css */

.jumbotron {
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.testimonial {
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.service-image {
    width: 100%;
    height: 200px; /* Yüksekliği sabitliyoruz */
    object-fit: cover; /* Bu özellik, resmi bozmadan alanı kaplayacak şekilde kırpar */
}

.logo {
    max-height: 50px; /* Logonun maksimum yüksekliğini 50px olarak sınırlıyoruz */
    width: auto; /* Genişliğin otomatik ayarlanarak oranın korunmasını sağlar */
}

/* WhatsApp Button Styles */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    color: white;
}
