/*--------------------------------------------------
    Index2 기본 스타일시트
    Index2 Main Stylesheet
---------------------------------------------------*/

/* 기본 리셋 및 변수 설정 */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --text-color: #333333;
    --bg-color: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

/* 헤더 스타일 */
header {
    background-color: #ffffff;
    box-shadow: var(--shadow);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 로고 스타일 */
.logo img {
    max-height: 50px;
    width: auto;
}

/* 모바일 헤더 액션 */
.mobile-header-actions {
    gap: 1rem;
}

/* 언어 선택 패널 */
.language-icon-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 100%;
}

.language-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, filter 0.2s ease;
    cursor: pointer;
    padding: 0;
}

.language-icon:hover {
    border-color: rgba(0, 0, 0, 0.2);
}

.language-icon .fi {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
    background-size: cover;
    filter: grayscale(1);
    opacity: 0.65;
    transition: inherit;
}

/* 선택된 언어 아이콘 - 컬러 표시 */
.language-icon.active {
    border-color: #F6961D;
    border-width: 1px;
}

.language-icon.active .fi,
.language-icon:hover .fi,
.language-icon:focus .fi {
    filter: none;
    opacity: 1;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* 햄버거 버튼 */
.navbar-toggler {
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 0.5rem 0.75rem;
    background-color: transparent;
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    outline: 0;
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}

/* PC 메뉴 스타일 */
.main-menu.d-lg-block nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
}

.main-menu.d-lg-block nav ul li {
    margin: 0;
}

.main-menu.d-lg-block nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
}

.main-menu.d-lg-block nav ul li a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

/* 모바일 메뉴 스타일 */
#mobile-menu.collapse:not(.show) {
    display: none;
}

#mobile-menu.collapse.show,
#mobile-menu.collapsing {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
}

/* 모바일 메뉴 컨테이너 위치 조정 */
.col-6.col-lg-10 {
    position: relative;
}

#mobile-menu nav.mobilemenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

#mobile-menu nav.mobilemenu ul li {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

#mobile-menu nav.mobilemenu ul li:last-child {
    border-bottom: none;
}

#mobile-menu nav.mobilemenu ul li a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

#mobile-menu nav.mobilemenu ul li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
}

/* 유틸리티 클래스 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

h1 {
	font-size: 40px;
	font-weight: 600;
}
h2 {
	font-size: 35px;
}
h3 {
	font-size: 28px;
}
h4 {
	font-size: 22px;
}
h5 {
	font-size: 18px;
}
h6 {
	font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
	color: #21222E;
	margin-top: 0px;
	font-style: normal;
	font-weight: 700;
	text-transform: normal;
}

/* 반응형 이미지 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    color: var(--paragraph-color);
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    margin-bottom: 10px;
  }
  
/* 링크 스타일 */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* 버튼 스타일 */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: #ffffff;
    text-decoration: none;
}

/* 섹션 스타일 */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 3rem;
}

/* 카드 스타일 */
.card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* 그리드 레이아웃 - Bootstrap 클래스와 충돌 방지를 위해 커스텀 클래스 사용 */
.custom-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.custom-col {
    flex: 1;
    padding: 0 15px;
}

.custom-col-12 { flex: 0 0 100%; max-width: 100%; }
.custom-col-6 { flex: 0 0 50%; max-width: 50%; }
.custom-col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.custom-col-3 { flex: 0 0 25%; max-width: 25%; }

/* 푸터 스타일 */
footer {
    background-color: #f8f9fa;
    padding: 1rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

/* 애니메이션 */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* 스크롤바 스타일 (웹킷 브라우저) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/*--------------------------------------------------
    Index2 섹션 스타일 (index.html 참고)
---------------------------------------------------*/

/* 유틸리티 클래스 */
.pd-top-120 {
    padding-top: 120px;
}

.pd-top-200 {
    padding-top: 200px;
}

.pd-bottom-90 {
    padding-bottom: 90px;
}

.bg-relative {
    position: relative;
}

.bg-cover {
    background-size: cover !important;
    background-position: center;
}

.bg-gray {
    background: #F8F9FC;
}

.border-radius-20 {
    border-radius: 20px;
}

/* 배너 영역 */
.banner-area {
    position: relative;
    overflow: hidden;
}

.banner-area-2 {
    padding-bottom: 0;
    padding-top: 80px; /* 헤더 높이만큼 여백 추가 */
    height: calc(100vh - 50px);
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

.banner-area-2 .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.banner-area-2 .row {
    width: 100%;
    align-items: center;
}

.banner-area-2 .bg-img-2 {
    position: absolute;
    right: -100px;
    top: 0;
    width: 660px;
    z-index: 0;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .banner-area-2 .bg-img-2 {
        right: -200px;
        opacity: 0.5;
    }
}

.banner-inner {
    position: relative;
    z-index: 2;
}

.banner-inner .subtitle {
    border-radius: 30px;
    -webkit-box-shadow: 0 4.4px 30px rgba(19, 16, 34, 0.05);
            box-shadow: 0 4.4px 30px rgba(19, 16, 34, 0.05);
    background: #fff;
    padding: 8px 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.banner-inner .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-inner .title span {
    color: var(--primary-color);
}

.banner-inner .content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #666;
}

.banner-buttons {
    margin-top: 30px;
}

.banner-buttons a,
.banner-buttons .banner-button {
    display: inline-block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.banner-buttons img {
    height: 60px;
    width: auto;
    display: block;
}

.banner-thumb-3 {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.banner-thumb-3 .main-img-wrap {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.banner-thumb-3 .banner-animate-img {
    position: absolute;
    z-index: 2;
}

.banner-thumb-3 .banner-animate-img-1 {
    left: 0px;
    top: 30%;
}

.banner-thumb-3 .banner-animate-img-2 {
    right: -5px;
    bottom: 40px;
}

.banner-thumb-3 .main-img {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    width: 90%;
}

.left_image_bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* 서비스 영역 */
.service-area {
    padding-top: 50px; /* 헤더 높이만큼 여백 추가 */
    position: relative;
    height: calc(100vh - 50px);
    align-items: center;
    scroll-margin-top: 80px;
}

.single-service-inner {
    background: #fff;
    padding: 40px 35px;
    border-radius: 24px;
    transition: 0.5s;
    box-shadow: 0px 6px 30px rgba(19, 16, 34, 0.08);
    width: 100%;
    position: relative;
}

.single-service-inner.style-3 {
    border-radius: 5px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.single-service-inner.style-3 .thumb {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    border: 1px solid #E3E3E3;
    margin: 0 0 25px 0;
    transition: 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.single-service-inner.style-3 .thumb img {
    max-width: 60px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: 0.5s;
    -webkit-transition: 0.5s;
}

.single-service-inner.style-3 .details h5 {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: left;
}

.single-service-inner.style-3 .details h5 a {
    color: var(--text-color);
    text-decoration: none;
}

.single-service-inner.style-3 .details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.single-service-inner.style-3 .details p {
    text-align: left;
    color: #666;
    line-height: 1.8;
}

.single-service-inner.style-3:hover {
    box-shadow: 0px 12px 40px rgba(19, 16, 34, 0.15);
}

.service-area,
.service-area .container,
.service-area .row {
    overflow: visible;
}
.service-area .row:nth-of-type(2) {
    margin: 20px 0;
}

.single-service-inner.style-3:hover .thumb {
    border: 1px solid var(--primary-color);
}

.single-service-inner.style-3:hover .thumb img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

/* HOW TO 섹션 (steps-section) */
/* HOW TO 섹션 (steps-section) */
.steps-section {
    position: relative;
    background-color: #eff3ff;
    scroll-margin-top: 80px;    
    padding-bottom: 0;
    padding-top: 80px; /* 헤더 높이만큼 여백 추가 */
    height: calc(100vh - 50px);
}

.steps-section .auto-container {
    min-height: calc(100vh - 50px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.steps-section .patern-layer-one,
.steps-section .patern-layer-two,
.steps-section .patern-layer-three {
    position: absolute;
    content: '';
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
}

.steps-section .patern-layer-one {
    left: 0;
    top: 0;
    bottom: 0;
    width: 34%;
}

.steps-section .patern-layer-two {
    right: 0;
    top: 0;
    width: 331px;
    height: 624px;
}

.steps-section .patern-layer-three {
    right: 0;
    bottom: 0;
    width: 623px;
    height: 824px;
}

.steps-section .carousel-column {
    position: relative;
    text-align: left;
}

.steps-section .carousel-column .carousel-inner {
    position: relative;
    width: 255px;
    height: 500px;
    margin: 0 auto;
    padding: 14px 19px 17px;
    background-size: contain !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.steps-section .carousel-column .carousel-inner:before {
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 17px;
    height: 22px;
    z-index: 1;
}

.steps-section .carousel-column .carousel-inner .slides {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.steps-section .carousel-column .carousel-inner .content img {
    border-radius: 20px;
}

.steps-section .blocks-column {
    position: relative;
}

.steps-section .blocks-column .inner-column {
    position: relative;
    padding-left: 30px;
}

.steps-section .blocks-column .inner-column .carousel-indicators {
    position: relative;
    margin: 0;
    display: block;
    overflow: hidden;
    list-style: none;
}

.steps-section .blocks-column .inner-column .carousel-indicators li {
    position: relative;
    display: block;
    padding-left: 170px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #373a5b;
    font-weight: 400;
    line-height: 24px;
    cursor: pointer;
    transition: all 500ms ease;
    background: none;
}

.steps-section .blocks-column .inner-column .carousel-indicators li:before {
    position: absolute;
    content: '';
    left: 85px;
    top: 0;
    width: 1px;
    height: 150%;
    background-color: #dce0fe;
}

.steps-section .blocks-column .inner-column .carousel-indicators li:last-child:before {
    display: none;
}

.steps-section .blocks-column .inner-column .carousel-indicators li .number {
    position: absolute;
    left: 0;
    top: 0;
    color: #daddf1;
    font-size: 72px;
    font-weight: 700;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.steps-section .blocks-column .inner-column .carousel-indicators li .icon {
    position: absolute;
    left: 45px;
    top: 0;
    width: 75px;
    height: 70px;
    border-radius: 8px;
    text-align: center;
    line-height: 70px;
    background-color: #ffffff;
    box-shadow: 0px 10px 15px rgba(0, 132, 253, 0.15);
    transition: all 600ms ease;
}

.steps-section .blocks-column .inner-column .carousel-indicators li .icon i {
    font-weight: 500;
    font-size: 32px;
    background: linear-gradient(90deg, #0084fd 0%, #41b7fe 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-section .blocks-column .inner-column .carousel-indicators li strong {
    color: #373a5b;
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.steps-section .blocks-column .inner-column .carousel-indicators li span {
    display: block;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(2) .icon {
    box-shadow: 0px 10px 15px rgba(147, 39, 213, 0.15);
}

.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(2) .icon i {
    background: linear-gradient(90deg, #9426d5 0%, #eb44dc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(3) .icon {
    box-shadow: 0px 10px 15px rgba(242, 66, 69, 0.15);
}

.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(3) .icon i {
    background: linear-gradient(90deg, #f24245 0%, #fc8b8b 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-section .blocks-column .inner-column .carousel-indicators li.active .icon,
.steps-section .blocks-column .inner-column .carousel-indicators li:hover .icon {
    background-image: linear-gradient(90deg, #0084fd 0%, #45b9fe 100%);
    box-shadow: none;
}

.steps-section .blocks-column .inner-column .carousel-indicators li.active .icon i,
.steps-section .blocks-column .inner-column .carousel-indicators li:hover .icon i {
    color: #fff;
    -webkit-text-fill-color: inherit;
}

.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(2).active .icon,
.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(2):hover .icon {
    background-image: linear-gradient(90deg, #9326d5 0%, #ec44dd 100%);
}

.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(3).active .icon,
.steps-section .blocks-column .inner-column .carousel-indicators li:nth-child(3):hover .icon {
    background-image: linear-gradient(90deg, #f24346 0%, #fc8b8b 100%);
}

/* BENEFIT 섹션 */
.price-process-area {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
    
}

.price-process-area > .row {
    width: 100%;
}

.contact-inner-1,
.contact-inner-2 {
    position: relative;
    width: 100%;
}

.contact-inner-1.contact-inner-2 .row{
    height: 100vh;
    padding-top: 60px;
}
.contact-inner-1 .row,
.contact-inner-2 .row {
    align-items: center;
}

.contact-inner-1 {
    margin-top: -120px;
    z-index: 2;
}

.contact-inner-1 .section-title,
.contact-inner-2 .section-title {
    background: #ffffff;
    padding: 50px;
    margin-left: -350px;
    margin-top: 0px;
    margin-bottom: 40px;
    border-radius: 5px;
    box-shadow: 0px 3px 20px rgba(0, 33, 71, 0.06);
}

.contact-inner-1 .section-title .title,
.contact-inner-2 .section-title .title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.price-process-area .section-title {
    text-align: left;
    margin-bottom: 0;
}

.price-process-area .section-title .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 4.4px 30px rgba(19, 16, 34, 0.1);
    margin-bottom: 15px;
}

.price-process-area .section-title .title {
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 40px;
}

.media {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.media-left {
    margin-right: 20px;
    flex-shrink: 0;
}

.media-left img {
    width: 50px;
    height: 50px;
}

.media-body h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-color);
}

.media-body p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* PROCESS 섹션 */
.work-process-area {
    height:calc(100vh - 50px);
    position: relative;
    display: flex;
    align-items: center;
    scroll-margin-top: 80px;
}

.work-process-area-inner {
    background: #F8F9FC;
    border-radius: 20px;
}

.single-work-process-inner-2 {
    text-align: center;
    padding: 25px;
   
}

.single-work-process-inner-2 .thumb {
    height: 120px;
    width: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 3px 20px rgba(0, 33, 71, 0.06);
    display: inline-block;
    position: relative;
    background: #fff;
}

.single-work-process-inner-2 .thumb img {
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

.single-work-process-inner-2 .thumb .process-count {
    height: 30px;
    width: 30px;
    color: #fff;
    background: var(--primary-color);
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    position: absolute;
    right: -15px;
    top: 45px;
    transition: 0.4s;
    -webkit-transition: 0.4s;
}

.single-work-process-inner-2:hover .thumb img {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}

.single-work-process-inner-2:hover .thumb .process-count {
    background: #21222E;
}

.single-work-process-inner-2 .details h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.single-work-process-inner-2 .details .content,
.single-work-process-inner-2 .details p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* COMPENSATION 섹션 */
.single-work-process-inner-3 {
    text-align: center;
    padding: 40px;
    padding-top: 0;
}

.single-work-process-inner-3 .process-count {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.single-work-process-inner-3 h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-color);
}

.single-work-process-inner-3 img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.color-base {
    color: var(--primary-color);
}

/* 푸터 영역 */
.footer-area {
    position: relative;
}

.footer-area-2 {
    background: #F8F9FC;
}

.footer-bottom a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom p {
    color: #666;
    margin: 0;
    font-size: 14px;
}

.footer-social-icons {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-left: 10px;
}

.footer-bottom .social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: #666;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-bottom .social-pill i {
    line-height: 1;
    color: inherit;
}

.footer-bottom .social-pill:hover {
    color: #fff;
    background: var(--primary-color);
    border-color: var(--primary-color);
}


/* 섹션 타이틀 공통 스타일 */
.section-title {
    margin-bottom: 50px;
}

.section-title .sub-title {
    border-radius: 30px;
    -webkit-box-shadow: 0 4.4px 30px rgba(19, 16, 34, 0.1);
    box-shadow: 0 4.4px 30px rgba(19, 16, 34, 0.1);
    background: #fff;
    padding: 8px 20px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
    position: relative;
    color: #21222E;
}

.section-title .title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.section-title .title span {
    color: var(--primary-color);
    font-weight: 700;
}

/* WOW.js 애니메이션 */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/*contents*/
.section-title h2 {
	font-size: 60px ;
	padding-bottom: 0;
	margin-bottom: 0px !important;
	position: relative;
    font-weight: 500;
}
.section-title .title{
	font-size: 60px !important;

}
.section-title .title2{
	font-size: 35px !important;

}
.section-title p{
    font-size: 18px;
    font-weight: 400;
}

.process_sub_title{
    
    font-size: 18px!important;
}
