/* 커스텀 애니메이션 및 특수 효과만 유지 */

/* 히어로 섹션 애니메이션 */
.split {
    transition: transform 1s ease;
}

.open-left {
    transform: translateX(-100%);
}

.open-right {
    transform: translateX(100%);
}

.hero-zoom {
    opacity: 0;
    transform: scale(1.2);
    transition: all 5s ease-in-out;
}

.hero-zoom.show {
    opacity: 1;
    transform: scale(1);
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

/* 파트너 애니메이션 키프레임 */
@keyframes slideLeft {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

@keyframes slideRight {
    0% { transform: translateX(0%); }
    100% { transform: translateX(100%); }
}

/* 파트너 애니메이션 클래스 */
.animate-slide-left {
    animation: slideLeft 300s linear infinite;
}

.animate-slide-right {
    animation: slideRight 300s linear infinite;
}

/* 스크롤바 숨김 */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

/* 모바일 스크롤바 숨김 */
@media (max-width: 768px) {
    .service-grid::-webkit-scrollbar,
    .workflow-grid::-webkit-scrollbar {
        display: none;
    }
    
    .service-grid,
    .workflow-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* 뉴스티커 스타일 */
.news-ticker-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff; /* 배경색 흰색으로 변경 */
    border-radius: 0;
    overflow: hidden;
    height: 33px !important; /* 높이 10% 증가 (30px -> 33px) */
    padding: 0 !important;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border: 1px solid #e5e7eb; /* 흰색 배경이므로 테두리 추가 */
}
.news-ticker-track {
    display: flex;
    width: fit-content;
    animation: ticker-slide 60s linear infinite;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    perspective: 1000px;
}
.news-ticker-content {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    color: #1f2937; /* 글자색 변경 */
    font-weight: 500;
    font-size: 16.5px; /* 글자 크기 미세 조정 (17px -> 16.5px) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    height: 100%;
    line-height: 33px; /* 줄 높이도 박스 높이에 맞춰 변경 */
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    margin-right: 3rem;
    white-space: nowrap;
}
.ticker-item i {
    color: #1f2937; /* 아이콘색 변경 */
    margin-right: 8px;
    font-size: 0.9rem;
}
@keyframes ticker-slide {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}
.news-ticker-wrap:hover .news-ticker-track {
    animation-play-state: paused;
}