.hizmetler-section {
    background-color: #001326;
    padding: 120px 0;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    width: 85%;
    max-width: 1300px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 40px;
    font-weight: 600;
    color: white;
    margin-bottom: 100px;
    position: relative;
}
.hizmetler-section {
    position: relative;
    overflow: hidden;
}


    /* Arka plan zoom animasyonu */
    .hizmetler-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('/img/bg.jpg') no-repeat center center;
        background-size: cover;
        z-index: -1;
        animation: zoomBackground 8s ease-in-out infinite alternate;
    }

    /* Hafif karartma efekti */
    .hizmetler-section::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(10, 29, 55, 0.35);
        z-index: -1;
    }

/* Zoom animasyonu */
@keyframes zoomBackground {
    0% {
        transform: scale(2);
    }

    50% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}


    .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: #0074E8;
        border-radius: 2px;
    }

.service-box {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 120px;
    position: relative;
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s ease;
}

    .service-box.reverse {
        flex-direction: row-reverse;
    }

    .service-box.show {
        opacity: 1;
        transform: translateY(0);
    }

.service-image {
    position: relative;
    flex: 1;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.15);
}

    .service-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        transition: transform 0.8s ease;
    }

.service-box:hover img {
    transform: scale(1.08);
}

.service-image .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-box:hover .overlay {
    opacity: 1;
}

.service-text {
    flex: 1;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    padding: 40px 45px;
    border-radius: 20px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

.service-box:hover .service-text {
    transform: translateY(0);
}

.service-text h3 {
    font-size: 24px;
    color: #001224;
    margin-bottom: 15px;
}

.service-text p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

/* Fade yönleri */
.fade-right {
    transform: translateX(-100px);
}

.fade-left {
    transform: translateX(100px);
}

    .fade-right.show,
    .fade-left.show {
        opacity: 1;
        transform: translateX(0);
    }

/* Responsive */
@media (max-width: 992px) {
    .service-box {
        flex-direction: column !important;
        text-align: center;
    }

    .service-text {
        padding: 30px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }