/* 기본 레이아웃 설정 */
body {
    overflow-x: hidden;
    margin: 0; /* 기본 마진 제거 */
    padding-top: 70px; /* 헤더 높이만큼 상단 패딩 추가 */
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* 현대적이고 깔끔한 폰트 패밀리 */
    background-color: #f8f9fa; /* 부드러운 그레이톤 배경 */
}

/* 네비게이션 바 */
.fixed-top {
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100%;
    z-index: 1030;
    left: 0;
    background-color: rgba(255, 255, 255, 0.95); /* 배경색을 더 투명하게 조정 */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* 그림자 감소하여 심플함 강조 */
    transition: background-color 0.3s, box-shadow 0.3s;
    font-weight: 700;
}

.fixed-top.scrolled {
    background-color: #0056b3; /* 스크롤 시 진한 블루 색상 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); /* 스크롤 시 그림자 강화 */
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #0056b3; /* 브랜드 이름 색상을 진한 블루로 변경 */
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s;
}

.logo {
    height: 40px;
    margin-right: 10px;
    transition: transform 0.3s;
}

.navbar-brand:hover .logo {
    transform: scale(1.1);
    transition: transform 0.3s ease-in-out;
}

.navbar-brand:hover .brand-name {
    color: #007bff; /* 브랜드 이름 호버 시 밝은 블루 색상 */
}

.nav-link {
    margin-right: 15px; /* 여백 조정 */
    font-weight: 500;
    color: #007bff;
    transform: scale(1.05);
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #007bff; /* 호버 시 밝은 블루 색상 */
    transform: scale(1.05); /* 링크 확대 */
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230056b3' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); /* 아이콘 색상 조정 */
    width: 30px;
    height: 30px;
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }

    .nav-link {
        font-size: 1rem;
    }
}

/* 기본 섹션 설정 */
.section {
    position: relative;
    z-index: 1; /* 기본 섹션 z-index */
    max-width: 1200px; /* 최대 너비 설정 */
    margin: 0 auto; /* 중앙 정렬 */
    padding: 60px 20px; /* 여백 조정 */
    box-sizing: border-box;
}

/* 히어로 섹션 */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0056b3, #004080); /* 신뢰감 있는 블루 그라데이션 */
    z-index: 1;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px); /* 블러 효과 감소 */
    opacity: 0.7; /* 투명도 조정 */
    transition: opacity 0.3s ease;
}

.video-slide video:hover {
    opacity: 0.9; /* 호버 시 투명도 증가 */
}

/* 비디오 오버레이 설정 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 오버레이 투명도 조정 */
    z-index: 1;
}

/* 히어로 콘텐츠 */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #ffffff; /* 텍스트 색상 유지 */
    animation: fadeIn 2s ease-in-out; /* 페이드 인 애니메이션 */
}

.hero-title {
    font-size: 3rem; /* 폰트 크기 조정 */
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* 텍스트 그림자 조정 */
    animation: zoomIn 1.5s ease-in-out; /* 줌 인 애니메이션 */
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 10px 20px; /* 패딩 조정 */
    border: none;
    border-radius: 30px; /* 더 둥근 버튼 */
    font-size: 16px; /* 폰트 크기 조정 */
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* 그림자 조정 */
}

/* 버튼 색상 스타일링 */
.btn-blue {
    background: linear-gradient(135deg, #0056b3, #004080); /* 블루 그라디언트 */
    color: #ffffff;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #004080, #002f60); /* 호버 시 어두운 블루 */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-coral {
    background: linear-gradient(135deg, #007bff, #0056b3); /* 코랄 대신 블루 계열로 변경 */
    color: #ffffff;
}

.btn-coral:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f); /* 호버 시 어두운 블루 */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-crimson {
    background: linear-gradient(135deg, #6c757d, #495057); /* 크림슨 대신 그레이 계열로 변경 */
    color: #ffffff;
}

.btn-crimson:hover {
    background: linear-gradient(135deg, #495057, #343a40); /* 호버 시 어두운 그레이 */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}




/* about us */
/* About Us section styling */
.about-us {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-us::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
}

.about-us .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.about-us h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.about-us h3 {
    font-size: 28px;
    color: #555; /* 중간 회색 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1.2s ease-out;
}

.about-us p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    margin-bottom: 20px;
    line-height: 1.6;
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


.section {
    position: relative;
    z-index: 1; /* 기본 섹션 z-index */
    max-width: 1200px; /* 최대 너비 설정 */
    margin: 0 auto; /* 중앙 정렬 */
    padding: 60px 20px; /* 여백 조정 */
    box-sizing: border-box;
}

/* 히어로 섹션 */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0056b3, #004080); /* 신뢰감 있는 블루 그라데이션 */
    z-index: 1;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px); /* 블러 효과 감소 */
    opacity: 0.7; /* 투명도 조정 */
    transition: opacity 0.3s ease;
}

.video-slide video:hover {
    opacity: 0.9; /* 호버 시 투명도 증가 */
}

/* 비디오 오버레이 설정 */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* 오버레이 투명도 조정 */
    z-index: 1;
}

/* 히어로 콘텐츠 */
.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #ffffff; /* 텍스트 색상 유지 */
    animation: fadeIn 2s ease-in-out; /* 페이드 인 애니메이션 */
}

.hero-title {
    font-size: 3rem; /* 폰트 크기 조정 */
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3); /* 텍스트 그림자 조정 */
    animation: zoomIn 1.5s ease-in-out; /* 줌 인 애니메이션 */
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.hero-buttons .btn {
    margin: 0 10px;
    padding: 10px 20px; /* 패딩 조정 */
    border: none;
    border-radius: 30px; /* 더 둥근 버튼 */
    font-size: 16px; /* 폰트 크기 조정 */
    font-weight: 700;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* 그림자 조정 */
}

/* 버튼 색상 스타일링 */
.btn-blue {
    background: linear-gradient(135deg, #0056b3, #004080); /* 블루 그라디언트 */
    color: #ffffff;
}

.btn-blue:hover {
    background: linear-gradient(135deg, #004080, #002f60); /* 호버 시 어두운 블루 */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-coral {
    background: linear-gradient(135deg, #007bff, #0056b3); /* 코랄 대신 블루 계열로 변경 */
    color: #ffffff;
}

.btn-coral:hover {
    background: linear-gradient(135deg, #0056b3, #003f7f); /* 호버 시 어두운 블루 */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-crimson {
    background: linear-gradient(135deg, #6c757d, #495057); /* 크림슨 대신 그레이 계열로 변경 */
    color: #ffffff;
}

.btn-crimson:hover {
    background: linear-gradient(135deg, #495057, #343a40); /* 호버 시 어두운 그레이 */
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

/* Contact Box */
.contact-box {
    background-color: #ffffff; /* 밝은 회색에서 흰색으로 변경 */
    border: 1px solid #e0e0e0; /* 테두리 색상 변경 */
    border-radius: 8px; /* 모서리 둥글게 */
    padding: 20px;
    margin: 0 auto 20px auto; /* 중앙 정렬 */
    display: block;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* 그림자 조정 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-box p {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.contact-box i {
    margin-right: 8px;
    transition: color 0.3s ease;
}

.contact-box .fa-phone,
.contact-box .fa-envelope {
    color: #0056b3; /* 블루로 통일 */
}

.contact-box p:hover .fa-phone,
.contact-box p:hover .fa-envelope {
    color: #007bff; /* 호버 시 밝은 블루 */
}

.contact-box a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-box .phone-number,
.contact-box .email-address {
    color: #0056b3; /* 통일된 블루 색상 */
}

.contact-box a:hover {
    text-decoration: underline;
}

.contact-box .phone-number:hover,
.contact-box .email-address:hover {
    color: #007bff; /* 호버 시 밝은 블루 */
}

/* About Us Buttons */
.about-us .btn {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border-radius: 30px; /* 반경을 줄여 둥글게 */
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

/* 버튼 색상 스타일링 */
.btn-primary {
    background-color: #0056b3; /* 블루 */
    border: 2px solid #0056b3;
}

.btn-primary:hover {
    background-color: #003f7f; /* 더 어두운 블루 */
    border-color: #003f7f;
}

.btn-primary-alt {
    background-color: #007bff; /* 밝은 블루 */
    border: 2px solid #007bff;
}

.btn-primary-alt:hover {
    background-color: #0056b3; /* 어두운 블루 */
    border-color: #0056b3;
}

.btn-secondary {
    background-color: #6c757d; /* 그레이 */
    border: 2px solid #6c757d;
}

.btn-secondary:hover {
    background-color: #495057; /* 더 어두운 그레이 */
    border-color: #495057;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .about-us h2 {
        font-size: 28px;
    }

    .about-us h3 {
        font-size: 24px;
    }

    .about-us p {
        font-size: 16px;
    }

    .contact-box {
        padding: 15px;
        max-width: 100%;
    }
}





/* 기본 섹션 설정 */
.section {
    position: relative;
    z-index: 1; /* 기본 섹션 z-index */
    max-width: 1200px; /* 최대 너비 설정 */
    margin: 0 auto; /* 중앙 정렬 */
    padding: 60px 20px; /* 여백 조정 */
    box-sizing: border-box;
}

/* 서비스 섹션 */
.services {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid #e0e0e0; /* 섹션 구분을 위한 상단 테두리 */
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 300%;
    height: 300%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 71, 128, 0.05)); /* 블루 톤의 그라데이션 배경 */
    z-index: 0;
    transform: translateX(-50%) translateY(-50%) rotate(30deg);
    transition: transform 0.5s ease;
}

.services:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(0deg); /* 배경 회전 애니메이션 */
}

.services .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 40px;
}

.services-header h2 {
    font-size: 36px;
    color: #0056b3; /* 신뢰감 있는 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.services-header p {
    font-size: 18px;
    color: #666666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 최소 300px, 최대 1fr로 3열 레이아웃 */
    gap: 20px;
}

.service-item {
    background-color: #f9f9f9; /* 밝은 회색 배경 */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 71, 128, 0.05)); /* 블루 톤의 그라데이션 배경 */
    z-index: -1;
    transition: transform 0.5s ease;
}

.service-item:hover::before {
    transform: scale(1.05);
}

.service-item i {
    font-size: 48px;
    color: #0056b3; /* 블루 톤 아이콘 */
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.service-item h3 {
    font-size: 24px;
    color: #333333; /* 진한 회색 텍스트 */
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-item p {
    font-size: 16px;
    color: #666666; /* 연한 회색 텍스트 */
    line-height: 1.6;
    transition: color 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.service-item:hover i {
    color: #007bff; /* 호버 시 밝은 블루 */
}

.service-item:hover h3 {
    color: #0056b3; /* 호버 시 블루 톤으로 변경 */
}

.service-item:hover p {
    color: #333333; /* 호버 시 진한 회색 */
}

.services-cta {
    margin-top: 40px;
}

.services-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #0056b3; /* 블루 */
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-cta .btn:hover {
    background-color: #003f7f; /* 더 어두운 블루 */
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* 중간 크기의 디바이스에서 최소 250px, 최대 1fr로 변경 */
    }
}

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 16px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }

    .services-grid {
        grid-template-columns: 1fr; /* 모바일 디바이스에서 1열로 변경 */
    }
}

/* 활용 사례 섹션 */
.case-studies {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid #e0e0e0; /* 섹션 구분을 위한 상단 테두리 */
}

.case-studies::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 71, 128, 0.05)); /* 블루 톤의 그라데이션 배경 */
    z-index: 0;
    transform: translateX(-50%) translateY(-50%) rotate(30deg);
    transition: transform 0.5s ease;
}

.case-studies:hover::before {
    transform: translateX(-50%) translateY(-50%) rotate(0deg); /* 배경 회전 애니메이션 */
}

.case-studies .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.case-studies-header {
    margin-bottom: 40px;
}

.case-studies-header h2 {
    font-size: 36px;
    color: #0056b3; /* 신뢰감 있는 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.case-studies-header p {
    font-size: 18px;
    color: #666666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 3열 레이아웃 */
    gap: 20px;
}

.case-study-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-study-item img {
    width: 100%;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.case-study-item:hover img {
    transform: scale(1.05); /* 이미지 확대 */
}

.case-study-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 86, 179, 0.6); /* 오버레이 색상 블루 톤 */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-item:hover .overlay {
    opacity: 1;
}

.case-study-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.case-study-item p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 20px;
}

.case-studies-grid .case-study-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.services-cta .btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background-color: #0056b3; /* 블루 */
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.services-cta .btn:hover {
    background-color: #003f7f; /* 더 어두운 블루 */
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .case-studies-header h2 {
        font-size: 28px;
    }

    .case-studies-header p {
        font-size: 16px;
    }

    .case-study-item h3 {
        font-size: 20px;
    }

    .case-study-item p {
        font-size: 14px;
    }

    .case-studies-grid {
        grid-template-columns: 1fr; /* 모바일 디바이스에서 1열로 변경 */
    }
}



/* 기본 섹션 설정 */
.section {
    position: relative;
    z-index: 1; /* 기본 섹션 z-index */
    max-width: 1200px; /* 최대 너비 설정 */
    margin: 0 auto; /* 중앙 정렬 */
    padding: 60px 20px; /* 여백 조정 */
    box-sizing: border-box;
}

/* Pricing 섹션 */
.pricing {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    border-top: 1px solid #e0e0e0; /* 섹션 구분을 위한 상단 테두리 */
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 71, 128, 0.05)); /* 블루 톤의 그라데이션 배경 */
    transform: translateX(-50%);
    z-index: 0;
    animation: backgroundMove 10s linear infinite;
}

@keyframes backgroundMove {
    0% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-20px); }
    100% { transform: translateX(-50%) translateY(0); }
}

.pricing .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing h2 {
    font-size: 36px;
    color: #0056b3; /* 신뢰감 있는 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out;
}

.pricing .description {
    font-size: 18px;
    color: #666666; /* 연한 회색 텍스트 */
    margin-bottom: 40px;
}

.pricing-services-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* 템플릿 기반 키오스크 S/W 카드 스타일 */
.pricing-service-item.template {
    background: linear-gradient(135deg, #004e8c, #006bb5); /* 부드러운 네이비-블루 그라디언트 */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
    padding: 40px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* 흰색 글씨 */
}

.pricing-service-item.template::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)); /* 흰색 그라디언트 */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-service-item.template:hover {
    transform: translateY(-10px); /* 약간의 상승 효과 */
    box-shadow: 0 25px 50px rgba(0, 72, 125, 0.3); /* 더 강한 그림자 */
}

.pricing-service-item.template:hover::before {
    opacity: 1;
}

/* 맞춤형 키오스크 S/W 카드 스타일 */
.pricing-service-item.custom {
    background: linear-gradient(135deg, #a63a4a, #e55d6c); /* 고급스러운 버건디-레드 그라디언트 */
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
    padding: 40px;
    width: 100%;
    max-width: 400px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* 흰색 글씨 */
}

.pricing-service-item.custom::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)); /* 흰색 그라디언트 */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-service-item.custom:hover {
    transform: translateY(-10px); /* 약간의 상승 효과 */
    box-shadow: 0 25px 50px rgba(176, 58, 75, 0.3); /* 더 강한 그림자 */
}

.pricing-service-item.custom:hover::before {
    opacity: 1;
}


.pricing-service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.pricing-service-header i {
    font-size: 2rem;
    color: #ffffff; /* 아이콘 색상 흰색 */
}

.pricing-service-header h3 {
    font-size: 24px;
    color: #ffffff; /* 제목 색상 흰색 */
}

.pricing-service-body .price {
    font-size: 20px;
    color: #ffffff; /* 가격 색상 흰색 */
    font-weight: bold;
    margin-bottom: 10px;
}

.pricing-service-body .description {
    font-size: 16px;
    color: #ffffff; /* 설명 색상 흰색 */
}

.pricing-service-footer {
    margin-top: 20px;
}

/* 템플릿 기반 키오스크 S/W 버튼 스타일 */
.pricing-service-footer.template .btn {
    background: linear-gradient(135deg, #004e8c, #0072b5); /* 부드러운 네이비-블루 그라디언트 */
    color: #ffffff;
    border: 3px solid #ffffff; /* 흰색 아웃라인 */
    padding: 12px 24px;
    border-radius: 30px; /* 둥근 모서리 */
    box-shadow: 0 4px 15px rgba(0, 72, 125, 0.3); /* 은은한 그림자 */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* 부드러운 전환 */
}

.pricing-service-footer.template .btn:hover {
    background: linear-gradient(135deg, #00365e, #00508c); /* 어두운 네이비로 호버 */
    transform: translateY(-4px); /* 약간의 상승 효과 */
    box-shadow: 0 8px 20px rgba(0, 72, 125, 0.4); /* 더 강한 그림자 */
}

/* 고객 맞춤형 키오스크 S/W 버튼 스타일 */
.pricing-service-footer.custom .btn {
    background: linear-gradient(135deg, #b03a4b, #e55d6c); /* 차분한 레드-크림슨 그라디언트 */
    color: #ffffff;
    border: 3px solid #ffffff; /* 흰색 아웃라인 */
    padding: 12px 24px;
    border-radius: 30px; /* 둥근 모서리 */
    box-shadow: 0 4px 15px rgba(176, 58, 75, 0.3); /* 은은한 그림자 */
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* 부드러운 전환 */
}

.pricing-service-footer.custom .btn:hover {
    background: linear-gradient(135deg, #8a2b39, #b03a4b); /* 어두운 레드로 호버 */
    transform: translateY(-4px); /* 약간의 상승 효과 */
    box-shadow: 0 8px 20px rgba(176, 58, 75, 0.4); /* 더 강한 그림자 */
}

/* 모달 배경 */
.modal {
    display: none; /* 기본 상태는 숨김 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 반투명 어두운 배경 */
    backdrop-filter: blur(5px); /* 배경 블러 효과 */
}

/* 모달 콘텐츠 박스 */
.modal-content {
    background-color: #ffffff;
    border-radius: 15px; /* 모서리 둥글게 */
    max-width: 1024px; /* 최대 너비 */
    margin: 10% auto; /* 화면 중앙에 위치 */
    padding: 20px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* 부드러운 그림자 */
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease; /* 부드러운 등장 애니메이션 */
}

/* 모달 헤더 스타일 */
.modal-content h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

/* 닫기 버튼 스타일 */
.modal-content .close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5em;
    color: #888888;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-content .close:hover {
    color: #333333; /* 호버 시 더 진한 색 */
}

/* 비교 섹션 스타일 */
.comparison-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comparison-section {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 가벼운 그림자 */
}

.comparison-section h3 {
    font-size: 1.4em;
    color: #0056b3; /* 부드러운 파란색 */
    margin-bottom: 15px;
    text-align: left;
}

.comparison-section ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #555555; /* 약간 진한 회색 */
}

.comparison-section ul li {
    margin-bottom: 10px;
    font-size: 1em;
    line-height: 1.6;
}

/* 반응형 레이아웃 */
@media (min-width: 768px) {
    .comparison-container {
        flex-direction: row;
        gap: 30px;
    }
}


/* OR Divider 스타일링 */
.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.or-divider span {
    background-color: #ffffff;
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    color: #666666;
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.or-divider span:hover {
    background-color: #007bff;
    color: #ffffff;
}

/* 옵션 섹션 스타일링 */
.options-title {
    font-size: 28px;
    color: #0056b3; /* 신뢰감 있는 블루톤 */
    margin-bottom: 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.option-item {
    background-color: #ffffff; /* 흰색 배경 */
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(255, 111, 97, 0.1)); /* 블루와 코랄 톤의 그라데이션 */
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.option-item:hover::before {
    opacity: 1;
}

.option-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.option-item i {
    font-size: 1.5rem;
    color: #0056b3; /* 블루 톤 아이콘 */
    margin-bottom: 10px;
}

.option-item h4 {
    font-size: 20px;
    color: #333333; /* 진한 회색 텍스트 */
    margin-bottom: 10px;
}

.option-item .price {
    font-size: 18px;
    color: #dc3545; /* 크림슨 색상 */
    font-weight: bold;
    margin-bottom: 5px;
}

.option-item .description {
    font-size: 14px;
    color: #666666; /* 연한 회색 텍스트 */
}

/* Pricing CTA 버튼 스타일링 */
.pricing-services-cta {
    margin-top: 40px;
}

.pricing-services-cta .btn {
    font-size: 18px;
    padding: 12px 30px;
    border-radius: 30px;
    background-color: #0056b3; /* 블루 */
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-services-cta .btn:hover {
    background-color: #003f7f; /* 더 어두운 블루 */
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .pricing-services-grid {
        flex-direction: column;
        align-items: center;
    }

    .pricing-service-item {
        max-width: 100%;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .pricing h2 {
        font-size: 28px;
    }

    .pricing .description {
        font-size: 16px;
    }

    .pricing-services-cta .btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .options-title {
        font-size: 24px;
    }
}

/* Pricing Calculator 섹션 */
.pricing-calculator {
    background-color: #ffffff; /* 화이트톤 배경으로 변경하여 깨끗한 느낌 */
    color: #333333; /* 텍스트 색상을 진한 회색으로 변경 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e0e0e0; /* 섹션 구분을 위한 상단 테두리 */
}

/* 배경 그라데이션 조정 */
.pricing-calculator::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.05), rgba(0, 71, 128, 0.05)); /* 블루 톤의 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
    transition: transform 10s linear infinite;
}

/* 배경 애니메이션 조정 */
.pricing-calculator::before {
    animation: backgroundMove 15s ease-in-out infinite;
}

@keyframes backgroundMove {
    0% { transform: rotate(-30deg) translate(0, 0); }
    50% { transform: rotate(-30deg) translate(20px, 20px); }
    100% { transform: rotate(-30deg) translate(0, 0); }
}

.pricing-calculator .container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pricing-calculator h2 {
    font-size: 36px;
    color: #0056b3; /* 신뢰감 있는 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-out;
}

.pricing-calculator .description {
    font-size: 18px;
    color: #666666; /* 연한 회색 텍스트 */
    margin-bottom: 40px;
    animation: fadeIn 1.5s ease-out;
}

/* 폼 스타일링 */
.calculator-form {
    width: 100%;
    max-width: 600px;
    background: #f9f9f9; /* 약간의 회색 배경으로 변경 */
    padding: 30px 25px; /* 패딩 조정 */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); /* 부드러운 그림자 */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.calculator-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.calculator-form .form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.calculator-form .button-group {
    text-align: center;
}

.calculator-form label {
    font-size: 16px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
    color: #0056b3; /* 라벨 색상 블루 */
}

.calculator-form select,
.calculator-form input[type="checkbox"] {
    margin-top: 10px;
    margin-bottom: 10px;
}

.calculator-form select {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    color: #333333;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.calculator-form select:focus {
    border-color: #0056b3;
    outline: none;
}

.calculator-form .options label {
    display: flex;
    align-items: center;
    font-size: 14px;
    margin-bottom: 10px;
    color: #333333;
}

.calculator-form .options input {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    accent-color: #0056b3; /* 체크박스 색상 블루로 변경 */
}

.calculator-form .btn-outline {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border: 2px solid #0056b3; /* 테두리 색상 블루 */
    border-radius: 25px; /* 둥근 모서리 */
    background-color: #ffffff;
    color: #0056b3;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calculator-form .btn-outline:hover {
    background-color: #0056b3;
    color: #ffffff;
}

.calculator-form .btn-coral {
    display: inline-block;
    padding: 12px 30px;
    margin: 5px;
    border: 2px solid #007bff; /* 블루 계열로 변경 */
    border-radius: 25px; /* 둥근 모서리 */
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calculator-form .btn-coral:hover {
    background-color: #007bff;
    color: #ffffff;
}

.calculator-form h3 {
    font-size: 24px;
    margin-top: 20px;
    text-align: center;
    color: #0056b3; /* 블루 톤으로 변경 */
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .pricing-calculator h2 {
        font-size: 28px;
    }

    .calculator-form {
        padding: 20px;
    }

    .calculator-form .form-group {
        font-size: 14px;
    }

    .calculator-form .btn-outline,
    .calculator-form .btn-coral {
        font-size: 14px;
        padding: 10px 20px;
    }

    .calculator-form h3 {
        font-size: 20px;
    }
}


/* Payment Modal Styling */
#payment-modal {
    display: none; /* 기본적으로 숨김 */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* 어두운 배경 */
    backdrop-filter: blur(5px); /* 배경 블러 효과 */
}

/* Modal Content */
#payment-modal .modal-content {
    background-color: #ffffff;
    padding: 40px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: zoomIn 0.5s ease-in-out;
    max-width: 500px;
    margin: 10% auto; /* 화면 중앙에 위치 */
    position: relative;
}

/* Modal Title */
#payment-modal .modal-content h2 {
    text-align: center;
    color: #dc3545; /* 크림슨 색상 */
    border-bottom: 2px solid #dc3545;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: bold;
}

/* Close Button */
#payment-modal .close-payment-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

#payment-modal .close-payment-modal:hover,
#payment-modal .close-payment-modal:focus {
    color: #333;
}

/* Modal Body */
#payment-modal .modal-body {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

#payment-modal .modal-body p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    padding: 8px 0;
    border-bottom: 1px solid #f1f1f1;
}

/* Labels and Values */
#payment-modal .modal-body .label {
    font-weight: bold;
    color: #dc3545; /* 크림슨 색상 */
    flex: 0 0 120px;
}

#payment-modal .modal-body .value {
    color: #007bff; /* 블루 색상 */
    font-weight: 500;
}

/* Account Number (Clickable) */
#payment-modal .account-number {
    cursor: pointer;
    color: #007bff;
    text-decoration: underline;
    font-weight: 600;
}

#payment-modal .account-number:hover {
    color: #ff6f61;
}

#payment-modal .modal-body .account-number::after {
    content: ' (클릭하여 복사)';
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    #payment-modal .modal-content {
        width: 90%;
        padding: 20px;
    }

    #payment-modal .modal-content h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    #payment-modal .modal-body {
        font-size: 16px;
    }

    #payment-modal .modal-body p {
        flex-direction: column;
        align-items: flex-start;
    }

    #payment-modal .modal-body .label {
        margin-bottom: 5px;
    }

    #payment-modal .modal-body .account-number::after {
        font-size: 12px;
    }
}






/* clients */
.clients {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.clients::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
}

.clients .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.clients-header {
    margin-bottom: 40px;
}

.clients-header h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.clients-header p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* 최소 200px, 최대 1fr로 더 많은 열 배치 */
    gap: 20px;
}

.client-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    perspective: 1000px; /* 3D 효과를 위한 원근 */
}

.client-item:hover {
    transform: translateY(-10px) rotateY(10deg); /* 호버 시 Y축 회전 */
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
    height: 100px; /* 이미지의 높이를 더 작게 설정 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* 이미지가 contain fit으로 들어가도록 설정 */
    transition: transform 0.3s ease;
}

.client-item:hover .client-logo img {
    transform: scale(1.1) rotateY(-10deg); /* 호버 시 이미지 확대와 회전 */
}

.client-item p {
    font-size: 16px;
    color: #333;
    transition: color 0.3s ease;
}

.client-item:hover p {
    color: #007bff; /* 호버 시 텍스트 색상 변경 */
}

.client-item::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(255, 111, 97, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
    transition: transform 0.5s ease;
}

.client-item:hover::before {
    transform: rotate(0deg); /* 호버 시 배경 회전 애니메이션 */
}

/* 반응형 디자인 */
@media (max-width: 992px) {
    .clients-grid {
        grid-template-columns: repeat(3, 1fr); /* 태블릿에서 3열로 변경 */
    }
}

@media (max-width: 768px) {
    .clients-header h2 {
        font-size: 28px;
    }

    .clients-header p {
        font-size: 16px;
    }

    .client-item p {
        font-size: 14px;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr); /* 모바일 디바이스에서 2열로 변경 */
    }

    .client-logo {
        height: 80px; /* 모바일 디바이스에서 이미지 높이 조정 */
    }
}







/* contact */
.contact {
    background-color: #ffffff; /* 화이트톤 배경 */
    color: #333; /* 텍스트 색상 */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.2), rgba(0, 123, 255, 0.2)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-15deg);
    transition: transform 0.5s ease;
}

.contact:hover::before {
    transform: rotate(0deg); /* 호버 시 배경 회전 애니메이션 */
}

.contact .container {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
}

.contact-header {
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 36px;
    color: #007bff; /* 블루톤 텍스트 */
    margin-bottom: 20px;
    animation: slideIn 1s ease-out;
}

.contact-header p {
    font-size: 18px;
    color: #666; /* 연한 회색 텍스트 */
    animation: fadeIn 1.5s ease-out;
}



.contact button[type="submit"] {
    display: inline-block;
    padding: 12px 30px;
    margin-top: 20px;
    border: 2px solid #007bff;
    border-radius: 0;
    background-color: #fff;
    color: #007bff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact button[type="submit"]:hover {
    background-color: #007bff;
    color: #fff;
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px; /* 폼과 지도 사이에 간격 추가 */
}

.contact-form,
.contact-info {
    flex: 1 1 45%;
    margin: 20px 0;
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.contact-form:hover,
.contact-info:hover {
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.contact-form h3,
.contact-info h3 {
    font-size: 24px;
    color: #007bff;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.form-group label i {
    margin-right: 10px;
    color: #007bff;
    animation: beat 1s infinite;
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #007bff;
    outline: none;
    transform: scale(1.02);
}

.contact-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #007bff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info p:hover i {
    color: #ff6f61; /* 코랄 색상 */
    transform: scale(1.2);
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #ff6f61; /* 코랄 */
    text-decoration: underline;
}

.contact-info .map {
    margin-top: 30px; /* 지도와 연락처 정보 사이에 간격 추가 */
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #007bff;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .contact-form,
    .contact-info {
        width: 100%;
        margin: 10px 0;
    }

    .contact-header h2 {
        font-size: 28px;
    }

    .contact-header p {
        font-size: 16px;
    }
}















/* footer */
.footer {
    background-color: #f7f7f7; /* 밝은 회색 배경 */
    color: #333; /* 어두운 텍스트 */
    padding: 40px 20px;
    text-align: left; /* 텍스트를 왼쪽 정렬 */
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(255, 111, 97, 0.1), rgba(0, 123, 255, 0.1)); /* 그라데이션 배경 */
    z-index: 0;
    transform: rotate(-30deg);
    transition: transform 0.5s ease;
}

.footer:hover::before {
    transform: rotate(0deg); /* 호버 시 배경 회전 애니메이션 */
}

.footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 공간을 균등하게 배분 */
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-logo,
.footer-company-info,
.footer-contact,
.footer-links {
    flex: 1 1 250px;
    margin: 20px;
    position: relative;
}

.footer-logo {
    text-align: center; /* 로고와 이름을 가운데 정렬 */
    animation: fadeIn 1s ease-in-out;
}

.footer-logo img {
    width: 80px;
    height: 80px;
}

.footer-logo p {
    margin: 10px 0 0;
    font-size: 20px;
    font-weight: bold;
    color: #555; /* 중간 회색 텍스트 */
}

.footer h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333; /* 어두운 텍스트 */
    animation: slideIn 1s ease-out;
}

.footer p,
.footer a {
    font-size: 16px;
    color: #555; /* 중간 회색 텍스트 */
    margin-bottom: 10px;
    line-height: 1.6; /* 줄 간격을 넓혀 가독성 향상 */
    text-decoration: none;
    animation: fadeIn 1.5s ease-out;
}

.footer a:hover {
    color: #333; /* 어두운 텍스트 색상 */
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 10px;
    animation: fadeIn 1.5s ease-out;
}

.footer ul li a {
    color: #555; /* 중간 회색 텍스트 */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer ul li a:hover {
    color: #333; /* 어두운 텍스트 색상 */
}

.footer-contact a {
    color: #555; /* 중간 회색 텍스트 */
    text-decoration: none;
}

.footer-contact a:hover {
    color: #333; /* 어두운 텍스트 색상 */
}

.footer .footer-copyright {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #ddd; /* 밝은 회색 테두리 */
    margin-top: 20px;
    font-size: 14px;
    color: #555; /* 중간 회색 텍스트 */
    animation: fadeIn 2s ease-out;
}

.footer i {
    margin-right: 10px;
    color: #007bff;
    transition: color 0.3s ease, transform 0.3s ease;
    animation: beat 1.5s infinite;
}

.footer p:hover i,
.footer ul li a:hover i {
    color: #ff6f61; /* 코랄 */
    transform: scale(1.2);
}

@keyframes slideIn {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes beat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .footer .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-logo,
    .footer-company-info,
    .footer-contact,
    .footer-links {
        flex: 1 1 125px;
        margin: 10px 0;
        width: 100%; /* 전체 너비를 차지하도록 설정 */
    }

    .footer-logo {
        text-align: center; /* 로고 섹션은 가운데 정렬 유지 */
    }
}

/* Floating Buttons Left */
.floating-buttons.left {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    z-index: 1000;
}

/* Floating Buttons Right */
.floating-buttons.right {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 10px;
    z-index: 1000;
}

/* Floating Button Styling */
.floating-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    width: auto;
}

/* Hover Effect for Floating Buttons */
.floating-button:hover {
    transform: translateY(-3px); /* Slightly lifts the button */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increases shadow on hover */
}

/* Blue Button */
.floating-button.blue {
    background-color: #007bff;
}

.floating-button.blue:hover {
    background-color: #0056b3;
}

/* Coral Button */
.floating-button.coral {
    background-color: #ff6f61;
}

.floating-button.coral:hover {
    background-color: #e55b50;
}

/* Crimson Button */
.floating-button.crimson {
    background-color: #dc3545;
}

.floating-button.crimson:hover {
    background-color: #b52a36;
}

/* Icon Styling */
.floating-button i {
    margin-left: 10px;
}

/* Kakao Button Styling */
.kakao-button img {
    width: 64px;
    height: 64px;
}

.kakao-button {
    padding: 0;
    box-shadow: none;
    background: none;
    border: none;
}

/* Hover Effect for Kakao Button */
.kakao-button:hover img {
    transform: scale(1.1); /* Slightly enlarges the icon on hover */
    transition: transform 0.3s ease;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .floating-buttons.left {
        bottom: 10px;
        left: 10px;
    }
    
    .floating-buttons.right {
        bottom: 10px;
        right: 10px;
    }

    .floating-button {
        font-size: 12px;
        padding: 8px 16px;
    }

    .kakao-button img {
        width: auto;
        height: 40px;
    }
}
