        /* Hizmet box resim hover efekti */
        .ccServicePageBox img {
            transition: transform 0.5s ease;
            /* animasyon süresini biraz uzattık */
            display: block;
            width: 100%;
            border-radius: 8px;
        }

        .ccServicePageBox:hover img {
            transform: scale(1.15) rotate(8deg);
            /* %15 büyüt ve 8 derece döndür */
        }