.custom-hero-section-yedek {
    position: relative;
    background-image: url('/img/dükkan3.JPG'); 
    background-size: cover;
    background-position: center;
    height: 600px; 
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-top: 10px;
}

.custom-hero-section-yedek::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 1;
}

.custom-hero-section-yedek h1 {
    position: relative;
    z-index: 2;
    font-size: 48px;
    font-weight: bold;
    margin: 0;
    opacity: 0; 
    transform: translateY(100px); 
    transition: all 0.8s ease-out; 
}

.custom-hero-section-yedek.animate h1 {
    opacity: 1;
    transform: translateY(0);
}





/* hero responsive start */

@media (max-width: 768px) {
    .custom-hero-section-yedek {
        height: 400px; 
    }

    .custom-hero-section-yedek h1 {
        font-size: 36px; 
    }
}

@media (max-width: 480px) {
    .custom-hero-section-yedek {
        height: 300px; 
        padding: 20px; 
    }

    .custom-hero-section-yedek h1 {
        font-size: 28px; 
    }
}

.maintenance-support {
    padding: 60px 0;
}

.maintenance-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    opacity: 0; 
    transform: translateY(150px); 
    transition: transform 1.5s ease-out, opacity 1.5s ease-out; 
}

.maintenance-img {
    flex: 1;
    max-width: 400px;
}

.maintenance-img img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.maintenance-text {
    flex: 2;
    transform: translateY(150px); 
    transition: transform 1.5s ease-out, opacity 1.5s ease-out; 
}

.maintenance-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.maintenance-text h3::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #4b8800;
    transition: width 0.3s ease;
    position: absolute;
    bottom: -5px;
    left: 0;
}

.maintenance-item:hover h3::after {
    width: 100%;
}

.maintenance-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.maintenance-item.show {
    opacity: 1; 
    transform: translateY(0); 
}

.maintenance-item.show .maintenance-img {
    transform: translateX(0); 
    opacity: 1; 
}

.maintenance-item.show .maintenance-text {
    transform: translateY(0); 
    opacity: 1; 
}



@media (max-width: 768px) {
    .maintenance-item {
        flex-direction: column;
        text-align: center;
    }

    .maintenance-img {
        max-width: 100%;
    }

    .maintenance-text h3 {
        font-size: 24px;
    }

    .maintenance-text p {
        font-size: 16px;
    }
}

.intro-text {
    opacity: 0; 
    transform: translateY(150px); 
    transition: transform 1.5s ease-out, opacity 1.5s ease-out; 
}

.intro-text.show {
    opacity: 1; 
    transform: translateY(0); 
}
