.social-media .fa-brands{
    font-size: 17px;
}

 .service_content p {
        max-width: 100%;
    }

    .gallery {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        /* satır hizalaması */
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .gallery a {
        position: relative;
        width: calc(25% - 15px);
        /* 4 sütun düzeni */
        margin: 0 15px 15px 0;
        /* sağ + alt boşluk */
        border-radius: 6px;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    /* Her 4. elemanda sağ boşluk olmasın */
    .gallery a:nth-child(4n) {
        margin-right: 0;
    }

    /* Hover efekti */
    .gallery a:hover {
        transform: scale(1.03);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .gallery img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

    /* Büyüteç ikonu */
    .gallery .zoom-icon {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery .zoom-icon i {
        color: #fff;
        font-size: 28px;
    }

    .gallery a:hover .zoom-icon {
        opacity: 1;
    }

    /* Tablet (2 sütun) */
    @media (max-width: 991px) {
        .gallery a {
            width: calc(50% - 15px);
        }

        .gallery a:nth-child(2n) {
            margin-right: 0;
        }
    }

    /* Mobil (1 sütun) */
    @media (max-width: 575px) {
        .gallery a {
            width: 100%;
            margin-right: 0;
        }
          .gallery {
    margin-right: unset;
  }
    }