/* 글로벌 서비스 섹션 */
.global-section {
    position: relative;
    padding: 120px 0;
    background-image: url('../images/c_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    overflow: hidden;
}

.global-container {
    width: 1570px;
    max-width: 98%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.global-text {
    max-width: 600px;
    margin-bottom: 80px;
}

.global-subtitle {
    color: #ff6b00;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.global-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.global-description {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 20px;
}

.global-carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 30px;
}

.global-carousel {
    display: flex;
    width: max-content; /* 모든 슬라이드 아이템 포함할 수 있게 */
    transition: transform 1s ease; /* 부드러운 이동 효과 - 1초로 조정 */
    will-change: transform; /* 성능 향상 */
    backface-visibility: hidden; /* GPU 활성화 */
    transform: translateZ(0); /* GPU 활성화 */
}

.carousel-item {
    flex: 0 0 auto;
    width: 250px;
    height: 180px;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 반응형 스타일 */
@media (max-width: 1600px) {
    .global-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .global-title {
        font-size: 36px;
    }
    
    .global-text {
        max-width: 100%;
    }
    
    .carousel-item {
        width: 220px;
        height: 160px;
    }
}
