/* Atlastek Çözüm ve Hizmetlerimiz Slider Styles */
.services-section {
    background-color: #F5F7F6;
    padding: 100px 0;
}

.services-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 128px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
}

.services-card {
    transition: transform 0.3s ease;
}

.services-image-container {
    position: relative;
    border-radius: 20px;
    height: 300px;
    display: block;
    clip-path: polygon(6.726% 0%, 93.274% 0%, 93.274% 0%, 94.364% 0.119%, 95.399% 0.464%, 96.364% 1.015%, 97.245% 1.755%, 98.029% 2.664%, 98.701% 3.723%, 99.249% 4.915%, 99.657% 6.219%, 99.912% 7.617%, 100% 9.091%, 100% 66.97%, 100% 66.97%, 99.732% 70.984%, 98.988% 73.969%, 97.863% 76.111%, 96.447% 77.599%, 94.835% 78.618%, 93.119% 79.355%, 91.39% 79.998%, 89.742% 80.733%, 88.268% 81.747%, 87.061% 83.227%, 87.061% 83.227%, 86.147% 85.185%, 85.483% 87.323%, 84.946% 89.551%, 84.409% 91.777%, 83.749% 93.91%, 82.839% 95.86%, 81.556% 97.535%, 79.775% 98.844%, 77.369% 99.696%, 74.215% 100%, 6.726% 100%, 6.726% 100%, 5.636% 99.881%, 4.601% 99.536%, 3.636% 98.985%, 2.755% 98.245%, 1.971% 97.336%, 1.299% 96.277%, 0.751% 95.085%, 0.343% 93.781%, 0.088% 92.383%, 0% 90.909%, 0% 9.091%, 0% 9.091%, 0.088% 7.617%, 0.343% 6.219%, 0.751% 4.915%, 1.299% 3.723%, 1.971% 2.664%, 2.755% 1.755%, 3.636% 1.015%, 4.601% 0.464%, 5.636% 0.119%, 6.726% 0%);
}

.services-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.services-card:hover .services-image {
    transform: scale(1.1);
}

.services-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 60px 20px 20px;
}

.services-logo {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: bold;
}

.services-logo-text-red {
    color: #e74c3c;
}

.services-logo-text-black {
    color: #333;
}

.services-action-button {
    position: absolute;
    bottom: 5px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #02617e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.services-card:hover .services-action-button {
    background: #d9e506;
}

.services-action-icon {
    width: 16px;
    height: 16px;
    color: white;
    transform: rotate(45deg);
}

.services-content {
    padding: 25px;
}

.services-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
}

.services-date-icon {
    width: 18px;
    height: 21px;
    color: #888;
}

.services-title {
    color: #333;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
    transition: color 0.3s ease;
}

.services-card:hover .services-title {
    color: #02617e;
}

/* Çözüm ve Hizmetler Slider Header */
.services-slider-header {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 40px;
}

.services-slider-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #231F20;
    margin: 0;
}

/* Navigasyon Butonları */
.services-slider-nav {
    display: flex;
    gap: 15px;
}

.services-slider-prev,
.services-slider-next {
    width: 50px;
    height: 50px;
    background: #02617e;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 16px;
    position: relative;
    z-index: 10;
    user-select: none;
    outline: none;
    box-shadow: 0 2px 8px rgba(2, 97, 126, 0.3);
}

.services-slider-prev:focus,
.services-slider-next:focus {
    outline: 2px solid #02617e;
    outline-offset: 2px;
}

.services-slider-prev:hover,
.services-slider-next:hover {
    background: #014d5f;
    transform: scale(1.1);
}

.services-slider-prev:disabled,
.services-slider-next:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    transform: none !important;
    opacity: 0.5 !important;
    pointer-events: none;
}

.services-slider-prev:disabled:hover,
.services-slider-next:disabled:hover {
    background: #ccc !important;
    transform: none !important;
    opacity: 0.5 !important;
}

.services-slider-prev i,
.services-slider-next i {
    font-size: 14px;
}

/* Swiper Container */
.services-swiper {
    overflow: hidden;
    padding: 20px 0;
}


.services-swiper .swiper-slide {
    height: auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-container {
        padding: 0 60px;
    }
    
    .services-grid {
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-container {
        padding: 0 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-slider-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-image-container {
        height: 220px;
    }
    
    .services-content {
        padding: 20px;
    }
    
    .services-title {
        font-size: 23px;
    }

    .services-action-button {
        position: absolute;
        bottom: 0px;
        right: 6px;
        width: 40px;
        height: 40px;
    }
    
    .services-slider-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .services-slider-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        padding: 0 20px;
    }
    
    .services-image-container {
        height: 200px;
    }
    
    .services-content {
        padding: 15px;
    }
    
    .services-title {
        font-size: 21px;
    }
    
    .services-slider-title {
        font-size: 1.5rem;
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) { 
    .services-action-button {
        right: 0px !important;
    }
}
