@charset "UTF-8";

/* 새로 추가한 컨테이너 */
.tab-menu-container {
	display: flex;
	justify-content: center;
	margin-top: 51px; /* 배경과 자연스럽게 연결되도록 위로 당김 */
	z-index: 10;
	position: relative;
}

/* 탭 메뉴 */
.tab-menu {
	/* background: rgba(255, 255, 255, 0.2); */ /* 반투명 흰색 */
	/* backdrop-filter: blur(6px); */
	/* border-radius: 32px; */
	padding: 8px 16px;
	display: flex;
	gap: 56px;
	/* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
	/* max-width: 960px; */
	/* width: fit-content; */
}

.tab-button {
	background: transparent;
	border: none;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
	color: #ffffff;
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #000000;
}

.tab-button.active {
	/* background: #000; */
	color: #0084FF;
	border-bottom: 3px solid #0084FF;
	padding-bottom: 10px;
}

.solution-description {
	margin-top: 15px;
	font-size: 18px;
	opacity: 0.9;
}

.guide-section {
	padding: 50px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.guide-list {
	list-style: disc;
	padding-left: 20px;
	background: #f5f0ff;
	padding: 20px;
	border-radius: 8px;
}

.upload-section {
	padding: 40px 20px;
	background: #f9f9f9;
	text-align: center;
}

.upload-tabs {
	margin-bottom: 20px;
}

.upload-tabs .tab {
	background: #eee;
	padding: 10px 20px;
	margin-right: 10px;
	border: none;
	cursor: pointer;
}

.upload-tabs .tab.active {
	background: #7f5af0;
	color: white;
}

.upload-box {
	border: 2px dashed #ccc;
	padding: 40px;
	border-radius: 10px;
	background: white;
	display: inline-block;
}

.upload-placeholder img {
	width: 50px;
	margin-bottom: 10px;
}

.result-section {
	padding: 50px 20px;
	max-width: 1000px;
	margin: 0 auto;
}

.result-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
}

.result-table {
	width: 100%;
	border-collapse: collapse;
}

.result-table th, .result-table td {
	border: 1px solid #ccc;
	padding: 10px;
	text-align: center;
}

.status.success {
	color: green;
}

/*tab content*/
.tab-content {
	width: 100%;
	display: none;
}

.section-block {
    padding: 3rem 10rem;
}



.section-title {
	font-weight: 700;
	color: #000;
}

.section-sub-title {
	font-size: 1.4rem;
	margin-top: 2rem;
}

.section-sub-info {
	font-size: 1.3rem;
	color: #505050;
}

.image-box.image-2 img {
	width: 45%; /* 760 / 2, 두 개 나란히 */
	height: auto; /* 비율 유지 */
	max-width: 100%;
	border-radius: 30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.image-box img.hover-img {
	width: 45%; /* 760 / 2, 두 개 나란히 */
	height: auto; /* 비율 유지 */
	max-width: 100%;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.image-box img.hover-img:hover {
	/* 	transform: scale(1.03); */
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

@media ( max-width : 800px) {
	.image-box {
		flex-direction: column;
		gap: 30px;
	}
	.image-box img.hover-img {
		width: 90%;
	}
}

.section-description {
	padding: 1rem 3rem;
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #111111;
}

.animate-on-scroll {
	opacity: 0;
	transform: translateY(100px);
	transition: opacity 1.4s ease-out, transform 1.4s ease-out;
}

/* fade-in만 적용되는 경우: 천천히 부드럽게 나옴 */
.animate-on-scroll.fade-in {
	transition: opacity 2s ease-in; /* 더 천천히 페이드인 */
}

.animate-on-scroll.visible {
	opacity: 1;
	transform: translateY(0);
}

.image-box {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin: 4rem auto;
	flex-wrap: wrap;
}
.certification-section {
	background-image: url('/images/personal/demo-back.svg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.certification-content {
	display: flex;
	gap: 3rem;
	margin: 0 auto;
/* 	flex-wrap: wrap; 반응형 대응 */
flex-wrap:nowrap;
	align-items: center;
}

.certi-text {
	flex: 1 1 45%;
}

.certi-image {
	display: flex;
	padding: 1rem;
	flex: 1 1 45%;
	text-align: center;
	border-radius: 20px;
	align-items: center;
	justify-content: center;
}

.certi-image img, .certi-image video {
	max-width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.certi-icon {
	margin-bottom: 1rem;
}

.certi-subtitle {
	font-size: 2rem;
	font-weight: 600;
	margin-top: 1rem;
	margin-bottom: 1rem;
	color: #ffffff;
}

.certi-description {
	font-size: 1.2rem;
	line-height: 1.8;
	margin-top: 1rem;
	font-weight: 500;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #000;
}

.certi-title {
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	/* identical to box height, or 34px */
	letter-spacing: -0.025em;
	color: #83D6FF;
}



@media (max-width: 1280px) {
	.section-block{
		padding:5rem 3rem;
	}
}



/* 반응형 대응 */
@media screen and (max-width: 768px) {
	.section-block {
		padding: 4rem 1rem;
	}
	.certification-content {
		flex-direction: column;
		text-align: left;
	}
	.certi-text, .certi-image {
		flex: 1 1 100%;
	}
}

.anim-effect-left, .anim-effect-right {
	opacity: 0;
	transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

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

.anim-effect-right {
	transform: translateX(100px);
}

.anim-effect-left.visible, .anim-effect-right.visible {
	opacity: 1;
	transform: translateX(0);
}

.logo-marquee-container {
	width: 100%;
	overflow: hidden;
	padding: 10px 0;
	box-sizing: border-box;
}

.marquee-row {
	display: flex;
	gap: 20px;
	width: max-content;
	/* 이미지 크기 조절 */
}

.marquee-row img {
	height: auto;
}


/* 좌→우 흐름 애니메이션 */
@keyframes marquee-left-to-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* 우→좌 흐름 애니메이션 */
@keyframes marquee-right-to-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


.left-to-right {
	animation: marquee-left-to-right 50s linear infinite;
	white-space: nowrap;
}

.right-to-left {
	animation: marquee-right-to-left 50s linear infinite;
	white-space: nowrap;
		margin-top:40px;
}

.feature-section {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.feature-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}

.feature-text {
	flex: 1;
}

.feature-text h2 {
	font-weight: 700;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #111111;
}

.feature-text ul {
	list-style: disc;
	padding-left: 1.5rem;
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #505050;
}

.feature-image {
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.feature-image img, .feature-image video {
	max-width: 100%;
	height: auto;
	object-fit: contain;
	border-radius:20px;
}

/* 반응형 처리 */
@media ( max-width : 992px) {
	.feature-row {
		flex-direction: column;
		text-align: center;
	}
	.feature-text ul {
		padding-left: 0;
		list-style: none;
	}
}

/* your-custom-styles.css 또는 <style> 태그 안에 추가 */
.horizontal-scroll-section .owl-stage-outer {
	overflow: visible; /* 양옆 아이템이 보이도록 오버플로우 설정 */
}

/* Owl Carousel 아이템의 기본 스케일 설정 */
.horizontal-scroll-section .owl-item {
	transition: transform 0.4s ease-in-out; /* 부드러운 스케일 전환 효과 */
	transform: scale(0.8); /* 기본적으로 작게 보이도록 설정 */
	opacity: 0.7; /* 양옆 아이템의 투명도 조절 */
}

.owl-item .item * {
	text-align: center;
}

.owl-item .gradient-title {
	font-size: 1.5rem;
}

.owl-item .section-subtitle {
	font-size: 2rem;
	margin-bottom: 1rem;
}

/* 현재 활성화된 중앙 아이템을 원래 크기로 표시 */
.horizontal-scroll-section .owl-item.active.center {
	transform: scale(1);
	opacity: 1;
}

/* 네비게이션 버튼 (좌우 화살표) 스타일링 */
.horizontal-scroll-section .owl-nav button {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.5);
	color: white;
	font-size: 2em;
	padding: 10px 15px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 10;
}

.horizontal-scroll-section .owl-nav .owl-prev {
	left: -50px; /* 적절히 조절 */
}

.horizontal-scroll-section .owl-nav .owl-next {
	right: -50px; /* 적절히 조절 */
}

.horizontal-scroll-section .owl-nav button:hover {
	background: rgba(0, 0, 0, 0.7);
}

/* 페이지네이션 (점) 스타일링 */
.horizontal-scroll-section .owl-dots {
	text-align: center;
	margin-top: 20px;
}

.horizontal-scroll-section .owl-dots .owl-dot span {
	background: #ccc;
	width: 12px;
	height: 12px;
	margin: 5px;
	border-radius: 50%;
	display: inline-block;
	transition: background 0.3s ease;
}

.horizontal-scroll-section .owl-dots .owl-dot.active span {
	background: #555; /* 활성화된 점 색상 */
}

/* 비디오 컨테이너 비율 유지 (기존 HTML에 inline style로 되어있으나 CSS로 분리 가능) */
.video-container {
	position: relative;
	width: 100%;
	padding-bottom: 40.25%;
	height: 0;
	overflow: hidden;
	max-width:1092px;
	max-height:615px;
	min-height:270px;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.demo-section {
	padding: 5rem 0rem 10rem 0rem;
}

.horizontal-scroll-section .owl-item.active.center {
	transform: scale(1.2) !important; /* !important 추가 */
	opacity: 1 !important; /* !important 추가 */
}


.slide-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
/* 	background: linear-gradient(135deg, #2196F3, #3AD4FF); */
background:#DBEEFF;
	border-radius: 24px;
	padding: 55px;
	overflow: hidden;
	color: white;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
	margin-top: 2rem;
}

.slide-container {
	width: 400%; /* 4개 슬라이드니까 100% * 4 */
	display: flex;
	transition: none; /* JS에서 animate 처리하므로 여기선 제거 */
	
		position: relative;
	width: 100%;
	height: 100%;
}

.slide {
		position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: space-between;
	
}

.slide-left {
	width: 50%;
}


.slide-right {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide-right img, .slide-right video {
	width: 100%;
	border-radius: 16px;
}



.slide.active {
	opacity: 1;
	z-index: 1;
	position: relative;
}


.title-sub {
	font-size: 1rem;
	margin-bottom: 8px;
	font-weight: bold;
	opacity: 0.9;
	color:#0084FF;
}

.title-main {
	font-size: 2rem;
	font-weight: 800;
	margin-bottom: 20px;
	color:#111111;
	word-break:keep-all;
	
}

.function-list {
	list-style: none;
	padding: 0;
	margin: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.3);
	padding-top: 16px;
}

.function-list li {
font-weight: 500;
font-size: 20px;
line-height: 140%;
letter-spacing: -0.025em;
color: #505050;
    padding-left: 1em;
    
}

.function-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #505050;
}


.slide-right {
	width: 45%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.slide-right img, .slide-right video{
	width: 100%;
	border-radius: 16px;
}

.slide-controls {
	transform: translateY(-50%);
	right: 60px;
	display: flex;
	gap: 1rem;
}

.slide-controls button {
/* 	background-color: rgba(255, 255, 255, 0.2); */
background-color:#fff;
	border: none;
	border-radius: 50%;
	width: 44px;
	height: 44px;
	font-size: 1.2rem;
	color: #0084FF;
	cursor: pointer;
	transition: background-color 0.3s;
}

.slide-controls button:hover {
	background-color:#fff;
		color: #0084FF;
}

.enterprise-box {
	padding: 1rem;
height:100%;
}

.enterprise-box img {
	margin-bottom: 2rem;
	width:100%;
}

.enterprise-box h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #111111;
}

.enterprise-box li, .text-secondary{
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	letter-spacing: -0.025em;
	color: #505050;
}

@media(max-width:768px){

	.enterprise-box h3{
		font-size:18px;
	}
	
	.enterprise-box li,.text-secondary{
		font-size:16px;
	}
}

.scrollable-panel {
	max-height: 720px;
	overflow-y: auto;
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.scrollable-panel::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera */
}

.icp-img {
	width: 100px;
	height: auto;
	flex-shrink: 0;
}

.icp-item ul {
	padding-left: 1rem;
	list-style-type: disc;
}

.integrated-control-panel-section {
	background-color: #0084FF;
	color: white;
	overflow-x: hidden;
}


.icp-img {
	width: 100px;
	height: auto;
	flex-shrink: 0;
}

.icp-item ul {
	padding-left: 1rem;
	list-style-type: disc;
}

.icp-subtitle {
	font-style: normal;
	font-weight: 600;
	font-size: 20px;
}

.icp-title {
	font-weight: 700;
	font-size: 38px;
	line-height: 140%;
	/* or 53px */
	letter-spacing: -0.025em;
}

.icp-description {
	font-weight: 500;
	font-size: 20px;
	line-height: 140%;
	/* or 28px */
	letter-spacing: -0.025em;
	margin-top:1rem;
	
}

.icp-item {
	background-color: white;
	color: black;
	display: flex;
	align-content: center;
	gap: 20px;
	padding: 1rem;
	margin-bottom: 1rem;
	border-radius: 20px;
	min-height: 150px;
}


.icp-item:last-child{
	margin-bottom:0px;
}

.icp-item img {
	width: 30%;
}

.icp-card {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.icp-card-title {
	font-weight: 600;
	font-size: 20px;
	line-height: 140%;
	/* identical to box height, or 28px */
	letter-spacing: -0.025em;
	color: #0084FF;
}

.icp-list {
	font-weight: 400;
	font-size: 18px;
	line-height: 140%;
	/* or 25px */
	letter-spacing: -0.025em;
	color: #505050;
}

.icp-frame {
	margin-top: 10rem;
}

/* usecases*/
/* 전체 영역 */
.use-cases-section {
	background-image: url('/images/personal/areas_bg.png');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	height: auto;
	/* padding: 4rem 2rem; */
	box-sizing: border-box;
	overflow: hidden;
padding-right:0;
}

/* 헤더 */
.use-cases-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2rem;
	gap: 2rem;
	flex-wrap: wrap;
	padding-right:150px;
}

/* 제목 */
.use-cases-title-wrapper {
	flex: 1 1 60%;
	min-width: 280px;
}

/* 버튼 */
.use-cases-inquiry-wrapper {
	min-width: 200px;
	text-align: right;
}

.use-cases-inquiry-btn {
	border: 1px solid white;
	/* Component 128 */
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	padding: 0px 14px 0px 20px;
	gap: 10px;
	margin: 0 auto;
	width: 211px;
	height: 56px;
	background: #0084FF;
	backdrop-filter: blur(5px);
	/* Note: backdrop-filter has minimal browser support */
	border-radius: 50px;
	font-weight: 700;
	font-size: 20px;
	line-height: 140%;
	/* identical to box height, or 28px */
	letter-spacing: -0.025em;
	color: #FFFFFF;
}

/* 카드 영역: 2행 구조로 수평 스크롤 */
/* 드래그 지원 및 기본 스크롤 설정 */
.use-cases-grid {
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(2, auto);
	gap: 1.5rem;
	overflow-x: auto;
	overflow-y: hidden;
	padding: 1rem;
	cursor: grab;
	height: 500px;
	scroll-behavior: smooth;
	padding-bottom: 20px;
	scrollbar-width: thin; /* Firefox */
	scrollbar-color: #3787FF white; /* Firefox */
}





@media(max-width:780px){
	.use-cases-grid {
	grid-template-rows: repeat(20, auto);
	}

	.slide-wrapper{
		padding:20px 12px;
	}

	.function-list li{
		font-size:16px;
	}

	
}


/* Webkit 브라우저용 */
.use-cases-grid::-webkit-scrollbar {
	height: 10px;
}

.use-cases-grid::-webkit-scrollbar-track {
	background: white;
	border-radius: 5px;
}

.use-cases-grid::-webkit-scrollbar-thumb {
	background-color: #3787FF;
	border-radius: 5px;
}

/* 스크롤바 숨김 */
.use-cases-grid::-webkit-scrollbar {
	display: none;
}

.use-cases-grid {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

/* 마우스 드래그 지원 */
.draggable-scroll {
	overflow: auto;
	scroll-behavior: smooth;
	user-select: none;
}

/* 카드 */
.use-case-card {
	padding: 1rem;
	max-width: 100%;
	min-width: 460px;
	height: auto;
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 8px;
}

.case-title {
	font-weight: 700;
	margin-bottom: 0.5rem;
	font-size: 1.2rem;
}

.case-subtitle {
	margin-bottom: 0.3rem;
	font-family: 'Pretendard';
	font-style: normal;
	font-weight: 700;
	font-size: 24px;
	line-height: 140%;
	/* or 39px */
	letter-spacing: -0.025em;
	color: #111111;
}

.case-info {
	font-family: 'Pretendard';
	font-style: normal;
	font-weight: 400;
	font-size: 20px;
	line-height: 140%;
	/* identical to box height, or 28px */
	letter-spacing: -0.025em;
	color: #505050;
}

/* 기본: 현재 데스크톱/태블릿 동작은 유지 (수정 없음) */

@media (max-width:1280px){
	
	.use-case-card{
		min-width:320px;
		padding:1rem ;
	}

	.use-cases-section{
	height:auto ;
		padding-right:0rem;
	}

	.use-cases-header{
		padding-right:3rem;
	}

	.use-cases-section{
	height:auto ; 
	}
	
	.case-title{
		font-size:1rem ;
	}
	.case-subtitle{
		font-size:1.4rem ;
	}

	.case-info{
	font-size:1rem ;	
	}
	
}
/* 모바일: 768px 이하에서는 1열 N행로 세로 배치 */
@media (max-width: 768px) {
  .use-cases-grid {
    display: grid;              /* 실제로 1열 그리드가 적용되도록 */
    grid-template-columns: 1fr; /* 1열 */
    gap: 12px;                  /* 카드 간 간격 (원하시는 값으로 조정) */
    overflow-x: hidden;         /* 가로 스크롤 방지 */
    -ms-overflow-style: auto;
    scrollbar-width: auto;
    padding: 5px;
  }

  .draggable-scroll {
    /* 모바일에서는 드래그 스크롤 불필요하므로 가로 스크롤 해제 */
    overflow-x: hidden;
    overflow-y: visible;
    user-select: auto;
    scroll-behavior: auto;
  }

  .use-case-card {
    min-width: 0px;   /* 데스크톱에서 쓰던 560px 최소폭 해제 */
    width: 100%;    /* 뷰포트 너비에 맞게 꽉 차게 */
  }


	.case-title{
		font-size:14px;
	}
	
	.case-subtitle{
		font-size:18px;
		
	}

	
	.case-info{
	font-size:14px ;	
	}

}


.solution-video-container{
	display:flex;
	align-items: center;
}

.video-title-wrapper{
	width:40%;
	
}


.intro-item{
	width:50%;
}

.intro-item img, 
.intro-item video{
	width:100%;
	border-radius:20px;
}


