@import url('https://fonts.googleapis.com/css2?family=Crimson+Text&display=swap');

@font-face {
    font-family: 'Pretendard';
    font-style: normal;
    font-weight: 400;
    src: local('Pretendard'),
         url('https://cdn.jsdelivr.net/npm/pretendard/dist/web/static/pretendard.woff2') format('woff2');
    unicode-range: U+AC00-D7A3, U+1100-11FF, U+0030-0039; /* 한글 및 숫자 */
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
    unicode-range: U+0041-005A, U+00A0-00FF; /* 기본 라틴 문자 범위 */
}

body {
    margin: 0;
    font-family: 'Poppins', 'Pretendard', sans-serif;
    background: #1a1a1a;
    color: white;
    overflow-x: hidden; /* 가로 스크롤 방지 */
}

ul {
    margin:0 ;
    padding:0;
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

#right {text-align:right;}
/* 기존 index.css의 로고, 햄버거 메뉴 스타일을 그대로 가져옵니다. */
.logo {
    /* position: fixed; */
	position: absolute;
    top: 32px;
    left: 5%;
    z-index: 1002;
}

.logo img {
    filter: brightness(0) invert(1); /* 기본 흰색 로고 */
    transition: filter 0.3s ease;
}

.logo.black-logo img {
    filter: brightness(0) invert(0); /* 검정색 로고 */
}

.menu-hamburger {
    /* position: fixed; */
	position: absolute;
    top: 32px;
    right: 5%;
    z-index: 1000;
    cursor: pointer;
    width: 30px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index:1002;
}

.menu-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white; /* 기본 흰색 */
    transition: all 0.3s ease-in-out;
}

.menu-hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.menu-hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.menu-hamburger.black-logo span {
    background: black;
}

.menu-hamburger.active span {
    background: white;
}

/* 메뉴 오버레이 스타일 (기존 홈페이지와 동일) */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    padding: 80px 140px;
    box-sizing: border-box;
    color: white;
    align-items: flex-start;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1001;
}

.menu-overlay.active {
    display: flex;
    opacity: 1;
}

.menu-overlay .close-btn {
    position: absolute;
    top: 28px;
    right: 5%;
    font-size: 24px;
    cursor: pointer;
}

.menu-content-wrapper {
    display: flex;
    width: 100%;
    padding-top: 150px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.main-menu {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 100px;
    z-index: 2;
}

.main-menu > div {
    /* flex-grow: 1; */
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-menu ul:first-child li {
    margin-bottom: 25px;
}

.main-menu ul:first-child li a {
    font-size: 43px;
    font-weight: 300;
    letter-spacing: -2px;
    display: block;
    white-space: nowrap;
}

.main-menu ul:first-child li a:hover {
    color: #b366ff;
}

.main-menu ul:last-child {
    text-align: left;
}

.main-menu ul:last-child li.has-submenu {
    margin-bottom: 25px;
    position: relative;
}

.main-menu ul:last-child li.has-submenu > div {
    position: relative;
    display: inline-block;
}

.main-menu ul:last-child li.has-submenu > div > a {
    font-size: 48px;
    font-weight: 500;
    gap:20px;
    color: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-menu ul:last-child li.has-submenu > div > a.active {
    color: white;
}

.main-menu ul:last-child li.has-submenu > div > a .menu-icon {
    font-size: 0.6em;
    margin-left: 10px;
}

.menu-icon {
    font-size: 0.6em;
    width:40px;
    margin-right: 10px;
    transition: transform 0.3s ease;
    display: inline-block;
    transform: rotate(0deg);
}

.main-menu ul:last-child li.has-submenu > div > a.active .menu-icon {
    transform: rotate(180deg);
}

.sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 6px;
    right: calc(100% + 50px);
    width: 400px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    text-align: left;
    z-index: 10;
    pointer-events: none;
}

.sub-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sub-menu li {
    margin-bottom: 15px;
}

.sub-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    text-decoration: none;
    font-size: 28px;
    font-weight: 200;
    display: block;
    white-space: nowrap;
    transition: color 0.3s ease;
    font-size: 40px !important;
}

.sub-menu li a:hover {
    color: #b366ff;
}

/* About Us 히어로 섹션 스타일 */
.about-us-hero {
    position: relative;
    width: 100%;
    height: 100vh; /* 뷰포트 높이에 맞춥니다. */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* 비디오가 섹션 밖으로 나가지 않도록 */
}

.about-us-hero .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 비디오가 섹션을 꽉 채우도록 */
    z-index: 1;
}

.about-us-hero .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* 이미지 시안과 유사한 어두운 오버레이 */
    z-index: 2;
}

.about-us-hero .hero-content {
    position: relative;
    z-index: 3; /* 오버레이 위에 배치 */
    color: white;
    text-align: left; /* 이미지 시안에 맞춰 왼쪽 정렬 */
    padding: 0 5%; /* 좌우 여백 */
    max-width: 100%; /* 콘텐츠 최대 너비 */
    width: 100%;
    box-sizing: border-box;
}

.global-solution-button {
    position: absolute; /* 절대 위치로 변경 */
    top: -100px; /* 상단에서부터의 위치 조정 */
    right: 0; /* 오른쪽 정렬 */
    font-size: 12px;
    font-weight: 300;
    padding: 7px 20px;
    background: #bbbb;
    border-radius: 30px;
    color: white; /* 텍스트 색상 */
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
}


.main-title {
    font-size: 120px; /* 시안에 맞춰 크기 조정 */
    font-weight: 500;
    margin-top: 90px; /* 상단 여백 */
    margin-bottom: 40px;
    line-height: 1.2;
}

.main-title .highlight {
   
    font-weight: 400; /* 시안에 맞춰 폰트 굵기 조정 */ font-size: 30px;     color: rgba(255, 255, 255, 0.5);
}

.description-ko {
    font-family: 'Pretendard', sans-serif; /* 한글 폰트 적용 */
    font-size: 20px;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 600px; /* 텍스트 너비 제한 */
}

.description-ko.sub-text {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.success-title {
    font-size: 120px; /* 시안에 맞춰 매우 크게 */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3); /* 투명한 흰색 */

   
    left: 0; /* 왼쪽 정렬 */
    white-space: nowrap; /* 텍스트 줄바꿈 방지 */
    pointer-events: none; /* 클릭 이벤트 방지 */
   
}

.y-icon {
    position: absolute;
    bottom: -100px; /* 하단에서부터의 위치 조정 */
    right: 0; /* 오른쪽 정렬 */
    width: 80px; /* 아이콘 크기 조정 */
    height: auto;
    opacity: 0.5; /* 시안에 맞춰 투명도 조정 */
}

.apply-btn {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 130px;
    height: 130px;
        background: 0% 0% no-repeat padding-box padding-box rgba(0, 0, 0, 0.19);
    border: 1px solid #FFFFFF94;
    border-radius:10em;
    opacity: 1;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: 0.5s ease-out;
    cursor:pointer; z-index: 105;
}
.apply-btn:hover {
    width: 324px;
    transition: 0.5s ease-out;
    color: #1a1a1a;
}
.apply-btn .inquiry-img {
    content: url('/images/inquiry_non.svg');
    transition: all 0.5s ease-in-out;
    float: right;
    padding-right: 17px;
    width: 80px;
}
.apply-btn:hover .inquiry-img {
    content: url('/images/inquiry.svg');
    transition: all 0.5s ease-in-out;
}
.apply-btn .inquiry-text {
    font-size: 21px;
    color: white;
    font-weight: bold;
    display:none;
    padding-top:24px;
    margin-right: 0px;
}


/* 추가적인 콘텐츠 섹션 (스크롤 가능성을 보여주기 위함) */
.additional-content {
    padding: 100px 5%;
    background-color: #333; /* 스크롤 시 배경색 */
    color: white;
    min-height: 100vh; /* 스크롤 가능하도록 최소 높이 설정 */
    box-sizing: border-box;
}


.communication-section-container {background: url(../images/about_mid.png);}


.communication-section {
    padding: 100px 5% 20px; /* 상하좌우 패딩 */      justify-content: space-between;
    background-color: white; /* 배경색 흰색 */
    color: black; /* 텍스트 색상 검정 */
    display: flex;
   /*  flex-direction: column; */
    align-items: flex-start;
    box-sizing: border-box;    gap:100px;
}

.communication-section .section-title {
    font-size: 35px;
    font-weight: 600;
       color: #5388AC;
    margin-bottom: 50px; /* 제목과 콘텐츠 사이 간격 */
    position: relative;
    padding-bottom: 10px; font-family: 'Pretendard', sans-serif;
}

.communication-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* 밑줄 길이 */
    height: 2px;
    background-color: #7D95B0; /* 밑줄 색상 */
}

.communication-section .content-wrapper {
   
    width: 100%;
   
  
}

.communication-section .text-block {
    flex: 1; /* 공간을 균등하게 차지 */
    min-width: 300px; /* 최소 너비 설정 */padding-bottom: 100px; display:flex; gap: 30px;
}

.star_02 {border-bottom: 1px solid #7D95B0;    width: 100%;    padding-bottom: 10px;
    display: flex;    justify-content: space-between;    align-items: center;}

.communication-section .text-block .korean-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px; color:#535D96; margin-top:0px; 
}

.communication-section .text-block .english-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #656565; 
}




.communication-section .text-block-2 {
    flex: 1; 
       min-width: 300px;
    padding-bottom: 20px;
    display: flex;
    gap: 30px;
      margin-bottom: 60px;
}

.star_01 {}

.communication-section .text-block-2 .korean-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px; color:#535D96; margin-top:0px; 
}

.communication-section .text-block-2 .english-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #656565; 
}


.comm-section-flex-01 {display: flex;flex-direction: column; width:35%;}
.comm-section-flex-02 {display: flex;flex-direction: column; width:65%;}

.communication-section .image-and-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; /* 이미지와 아래 텍스트 블록 사이 간격 */
    min-width: 300px; /* 최소 너비 설정 */
}

.communication-section .image-container {
    position: relative;
    width: 100%;
  padding-top: 400px;
    overflow: hidden;
    border-radius: 10px; /* 둥근 모서리 */
}

.communication-section .image-container img {
 
    width: auto;
    
    border-radius: 10px;
}

.communication-section .image-container .image-text {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}


.communication-section .image-container-2 {
    position: relative;
    width: 100%;
  padding-top: 100px;
    overflow: hidden;
    border-radius: 10px; /* 둥근 모서리 */
}

.communication-section .image-container-2 img {
 
    width: auto;
    
    border-radius: 10px;
}

.communication-section .image-container-2 .image-text {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}



.clients-section {
    padding: 100px 5%;
    background-color: #f5f5f5; /* 시안의 배경색 */
    color: black;
    box-sizing: border-box;
}

.clients-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* 제목과 절하는 사람 이미지를 하단 정렬 */
    margin-bottom: 50px;
    position: relative;
}

.section-header-1 {width:35%;}

.clients-section .section-title {
    font-size: 35px;
    font-weight: 600;
    color: #343434;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
    font-family: 'Pretendard', sans-serif;
}

.clients-section .section-title::after {
   content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: #cbcbcb;
}

.clients-section .bowing-figure {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    position: absolute; /* 절대 위치로 배치 */
    right: 0; /* 오른쪽 정렬 */
    top: -50px; /* 제목 위로 올림 */
}

.clients-section .bowing-figure img {
 
    height: auto;
   
    opacity: 0.7; /* 투명도 조정 */
}

.clients-section .bowing-figure .speech-bubble {
    background-color: #e0e0e0;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    position: relative;
    bottom: 80px; /* 이미지 위로 말풍선 위치 조정 */
    right: 20px;
}

.clients-section .logo-grid {
    display: grid;
     grid-template-columns: repeat(4, 1fr); /* 4열 고정 */
   gap: 100px 170px; /* 세로 100px, 가로 170px 간격 */
    justify-items: center; /* 그리드 아이템 중앙 정렬 */
    align-items: center; /* 그리드 아이템 세로 중앙 정렬 */
}

.clients-section .logo-grid img {
    width: 100%; /* 부모 컨테이너에 맞춰 너비 조정 */
    max-width: 250px; /* 최대 너비 제한 */
    height: auto;
   
}

.clients-section .logo-grid img:hover {
    filter: grayscale(0) brightness(1) invert(0); /* 원래 색상으로, 밝게 */
    opacity: 1;
}

.logo_div {display:flex;}
/* 미디어 쿼리 (기존 index.css의 반응형 설정을 참고하여 about_us.css에 맞게 조정) */
.history-section-container {background: url(../images/history_bak.png); padding: 200px 5% 80px;}


.history-section {
   justify-content: space-between;

    color: black; /* 텍스트 색상 검정 */
    display: flex;
   /*  flex-direction: column; */
    align-items: flex-start;
    box-sizing: border-box;    gap:100px;
}

.history-section .section-title {
    font-size: 35px;
    font-weight: 600;
       color: #fff;
    margin-bottom: 50px; /* 제목과 콘텐츠 사이 간격 */
    position: relative;
    padding-bottom: 10px; font-family: 'Pretendard', sans-serif;
}

.history-section .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%; /* 밑줄 길이 */
    height: 2px;
    background-color: #fff /* 밑줄 색상 */
}

.history-section .content-wrapper {
   
    width: 100%;
   
  
}

.history-section .text-block {
    flex: 1; /* 공간을 균등하게 차지 */
    min-width: 300px; /* 최소 너비 설정 */padding-bottom: 40px; display:flex; gap: 30px;
}

.star_02 {border-bottom: 1px solid #7D95B0;    width: 100%;    padding-bottom: 10px;
    display: flex;    justify-content: space-between;    align-items: center;}

.history-section .text-block .korean-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 20px; color:#fff; margin-top:0px; word-break: keep-all;
}

.history-section .text-block .english-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #656565; 
}




.history-section .text-block-2 {
    flex: 1; 
       min-width: 300px;
    padding-bottom: 20px;
    display: flex;
    gap: 30px;
      margin-bottom: 60px;
}


.history-section .text-block-3 {
    flex: 1; 
       min-width: 300px;
    padding-bottom: 20px;
 
      padding-left: 115px;
      margin-bottom: 60px;
}

.star_01 {}

.history-section .text-block-2 .korean-text {
    font-family: 'Pretendard', sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px; color:#535D96; margin-top:0px; 
}

.history-section .text-block-2 .english-text {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.5;
    color: #656565; 
}

.korean-text-2 {
    font-family: 'Pretendard', sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px; color:#fff; margin-top:0px; 
	  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap; /* 줄바꿈 대응 */
}

.korean-text-2 .line {
  flex: 1 0 100px; /* 유연하게 줄어들되 최소 100px */
  height: 2px;
  background-color: rgba(255, 255, 255, 0.4); /* 흰색 반투명 */
  max-width: 300px; /* 너무 길어지는 것 방지 */
}

.korean-text-2 .quote {
  color: #fff;
 
  font-weight: 400;
  white-space: nowrap; /* 너무 길면 줄바꿈 방지 */
}


.korean-text-3 {
     font-family: 'Crimson Text', serif;
  font-weight: 300;
  font-style: italic;
    font-size: 70px;
  
    line-height: 1.2;
    margin-bottom: 20px; color:#EBE1CA; margin-top:0px; 
}




.comm-section-flex-01 {display: flex;flex-direction: column; width:35%;}
.comm-section-flex-02 {display: flex;flex-direction: column; width:65%;}

.history-section .image-and-text-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px; /* 이미지와 아래 텍스트 블록 사이 간격 */
    min-width: 300px; /* 최소 너비 설정 */
}

.history-section .image-container {
    position: relative;
    width: 100%;
  padding-top: 400px;
    overflow: hidden;
    border-radius: 10px; /* 둥근 모서리 */
}

.history-section .image-container img {
 
    width: auto;
    
    border-radius: 10px;
}

.history-section .image-container .image-text {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}


.history-section .image-container-2 {
    position: relative;
    width: 100%;
 
    overflow: hidden;
    border-radius: 10px; /* 둥근 모서리 */
}

.history-section .image-container-2 img {
 
    width: auto;
    
    border-radius: 10px;
}

.history-section .image-container-2 .image-text {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    color: black;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10;
}



.main-footer {
    background-color: /* #1c1c1c;  */ #000;
    color: white;
    padding: 40px 5%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-footer .footer-top {
    width: 100%;
  
    margin-bottom: 50px;
}

.main-footer .contact-box {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.5); /* 테두리 */
    border-radius: 80px; /* 둥근 모서리 */
    padding: 20px 30px; gap:40px;
    background-color: #1C1C1C /* 약간 투명한 배경 */
}

.main-footer .contact-text {
    font-family: 'Poppins', sans-serif;
    font-size: 5em;
    font-weight: 300;
   
}

.main-footer .contact-button {
    background: none;
    border: none;
    border-radius: 50%;
  
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

/* .main-footer .contact-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
} */

/* .main-footer .contact-button img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); 흰색 화살표
}
 */
.main-footer .footer-bottom {
    width: 100%;
 
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap; /* 반응형을 위해 줄바꿈 허용 */
    padding-top: 0px;
   
}

.main-footer .footer-logo img {
    /* 로고 아이콘 크기 */
    height: auto;
    filter: brightness(0) invert(0.7); /* 회색조 Y 아이콘 */
}

.main-footer .copyright { font-weight: 300;
  /*   font-family: 'Poppins', sans-serif; font-style: italic; */
    font-size: 19px;
    color: rgba(255, 255, 255, 1);
}

.main-footer .contact-info {
    font-family: 'Poppins', sans-serif; font-style: italic;
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    gap: 20px;
}


/* 1600px 이하 */
@media screen and (max-width: 1600px) {


    .history-section .section-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .history-section .text-block .korean-text {
        font-size: 20px;
    }

    #img_type_1 {
        width: 90px;
    }

    #img_type_2 {
        width: 80px;
    }

    .main-title {
        font-size: 70px;
    }

    .description-ko {
        font-size: 18px;
    }

    .description-ko.sub-text {
        font-size: 15px;
    }

    .success-title {
        font-size: 100px;
        bottom: -80px;
    }

    .y-icon {
        width: 70px;
        bottom: -80px;
    }

    .global-solution-button {
        top: -80px;
    }

    .communication-section .section-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .communication-section .text-block .korean-text {
        font-size: 24px;
    }

    .communication-section .text-block .english-text {
        font-size: 15px;
    }

    .clients-section .section-header {
        margin-bottom: 40px;
    }

    .clients-section .section-title {
        font-size: 22px;
    }

    .clients-section .bowing-figure img {
        width: 100px;
    }

    .clients-section .bowing-figure .speech-bubble {
        font-size: 13px;
        bottom: 70px;
        right: 15px;
    }

    .clients-section .logo-grid {
        gap: 30px;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .clients-section .logo-grid img {
        max-width: 150px;
    }
	
	  .communication-section .section-title {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .communication-section .text-block .korean-text {
        font-size: 24px;
    }

    .communication-section .text-block .english-text {
        font-size: 15px;
    }
	
}

/* 1000px 이하 (태블릿) */
@media screen and (max-width: 1000px) {


.history-section-container {
        padding: 100px 5%;
    }
    
    .history-section {
        flex-direction: column; /* 세로 정렬 */
        gap: 50px;
    }

    .history-section .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
	
	
    .logo {
        top: 20px;
        left: 20px;
    }

    .menu-hamburger {
        top: 20px;
        right: 20px;
        width: 25px;
        height: 18px;
    }

    .menu-overlay {
        padding: 60px 5%;
    }

    .menu-content-wrapper {
        padding-top: 100px;
        flex-direction: column;
        gap: 50px;
    }

    .main-menu {
        flex-direction: column;
        gap: 10px;
    }

    .main-menu ul:first-child li a {
        font-size: 32px;
    }

    .main-menu ul:last-child li.has-submenu>div>a {
        font-size: 36px;
        justify-content: flex-start;
        gap: 0px;
    }

    .sub-menu {
        position: static;
        width: auto;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        margin-top: 10px;
        padding-left: 30px;
        transition: none;
        display: none;
        text-align: left;
    }

    .sub-menu.active {
        padding-left: 43px;
        display: block;
    }

    .sub-menu li a {
        font-size: 28px !important;
        text-align: left;
    }

    .main-menu ul:last-child li.has-submenu>div>a .menu-icon {
        width: 20px;
        margin-right: 10px;
        transform: rotate(90deg);
        gap: 0px;
    }

    .main-menu ul:last-child li.has-submenu>div>a.active .menu-icon {
        transform: rotate(270deg);
    }

    /* About Us 히어로 섹션 조정 */
    .about-us-hero .hero-content {
        padding: 0 20px;
    }

    .global-solution-button {
        top: -60px;
        right: 20px;
    }

    .main-title {
        font-size: 50px;
        margin-top: 30px;
    }

    .description-ko {
        font-size: 16px;
        max-width: 100%;
    }

    .description-ko.sub-text {
        font-size: 14px;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .success-title {
        font-size: 80px;
        bottom: -60px;
        transform: translateX(-2%);
    }

    .y-icon {
        width: 60px;
        bottom: -60px;
        right: 20px;
    }

    .communication-section {
        padding: 80px 5%;
    }

    .communication-section .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .communication-section .content-wrapper {
        flex-direction: column;
        /* 세로 정렬 */
        gap: 30px;
    }

    .communication-section .text-block .korean-text {
        font-size: 22px;
    }

    .communication-section .text-block .english-text {
        font-size: 14px;
    }

    .communication-section .image-container .image-text {
        font-size: 12px;
        padding: 3px 10px;
    }


    .history-section {
        padding: 80px 5%;
    }

    .history-section .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .history-section .history-content-wrapper {
        flex-direction: column;
        /* 세로 정렬 */
        gap: 30px;
    }

    .history-section .history-text-block,
    .history-section .history-image-block {
        min-width: 100%;
        /* 너비 100% */
        max-width: 100%;
    }

    .history-section .history-korean-text {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .history-section .history-quote {
        font-size: 24px;
    }

    .history-section .history-image-block .image-overlay-text {
        font-size: 18px;
        padding: 8px 15px;
    }

    .history-section .history-english-quote {
        font-size: 28px;
        right: 0;
        bottom: 0;
        padding-right: 0;
        text-align: center;
        /* 모바일에서 중앙 정렬 */
        position: static;
        /* 절대 위치 해제 */
        margin-top: 20px;
    }
	
	
	.comm-section-flex-01,
    .comm-section-flex-02 {
        width: 100%;
        gap: 30px;
    }
    
    .history-section .text-block {
        flex-direction: column; /* 텍스트 블록 내부도 세로 정렬 */
    }

    .history-section .text-block .korean-text {
        font-size: 18px;
    }

    .history-section .image-container-2 {
        padding-top: 0; /* 불필요한 패딩 제거 */
        text-align: left;
    }

    .history-section .image-container-2 img {
        width: 100%;
    }

    .history-section .text-block-3 {
        padding-left: 0;
        margin-bottom: 0;
    }
    
    .korean-text-2 {
        font-size: 24px;
        flex-wrap: wrap;
    }
    
    .korean-text-3 {
        font-size: 40px;
    }
	
	.communication-section {
        flex-direction: column; /* 세로 정렬 */
        gap: 50px;
        padding: 80px 5%;
    }

    .communication-section .section-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    /* flex 컨테이너 너비 100%로 설정 */
    .comm-section-flex-01,
    .comm-section-flex-02 {
        width: 100%;
        gap: 30px;
    }

    .communication-section .text-block .korean-text {
        font-size: 22px;
    }

    .communication-section .text-block .english-text {
        font-size: 14px;
    }
    
    /* 이미지 컨테이너 패딩 제거 및 이미지 크기 조정 */
    .communication-section .image-container {
        padding-top: 0;
        text-align: center; /* 이미지를 중앙 정렬 */         display: none;
    }

    .communication-section .image-container img {
        width: auto;
        max-width: 100%;
    }
	
	 .history-section .image-container-2 {
       display: none;
    }
}

/* 767px 이하 (모바일) */
@media screen and (max-width: 767px) {
    .logo {
        top: 15px;
        left: 15px;
        width: 100px;
    }

    .menu-hamburger {
        top: 15px;
        right: 15px;
        width: 22px;
        height: 20px;
    }

    .main-menu ul:first-child li {
        margin-bottom: 10px;
    }

    .main-menu ul:first-child li a {
        font-size: 20px;
    }

    .main-menu ul:last-child li.has-submenu {
        margin-bottom: 15px;
    }

    .main-menu ul:last-child li.has-submenu>div>a {
        font-size: 25px;
    }

    .sub-menu li a {
        font-size: 20px !important;
        text-align: left;
    }

    .menu-overlay {
        padding: 50px 20px;
        overflow-y: auto;
        /* 모바일에서 메뉴 내용이 길어질 경우 스크롤 가능하도록 */
    }

    .menu-content-wrapper {
        padding-top: 20px;
    }

    /* About Us 히어로 섹션 조정 */
    .about-us-hero .hero-content {
        padding: 0 15px;
    }

    .global-solution-button {
        top: -40px;
        right: 15px;
        font-size: 10px;
        padding: 5px 15px;
    }

    .main-title {
        font-size: 38px;
        margin-top: 20px;
    }

    .description-ko {
        font-size: 14px;
        line-height: 1.5;
    }

    .description-ko.sub-text {
        font-size: 12px;
        margin-top: 10px;
        margin-bottom: 20px;
    }

    .success-title {
        font-size: 60px;
        bottom: -40px;
        left: 15px;
        /* 모바일에서는 왼쪽 패딩에 맞춰 조정 */
        transform: none;
        /* 변형 제거 */
    }

    .y-icon {
        width: 40px;
        bottom: -40px;
        right: 15px;
    }

    .communication-section {
        padding: 50px 15px;
    }

    .communication-section .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .communication-section .text-block .korean-text {
        font-size: 18px;
    }

    .communication-section .text-block .english-text {
        font-size: 12px;
    }

    .communication-section .image-container .image-text {
        font-size: 10px;
        padding: 3px 8px;
        top: 10px;
        left: 10px;
    }


    .clients-section {
        padding: 50px 15px;
    }

    .clients-section .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .clients-section .bowing-figure img {
        width: 60px;
    }

    .clients-section .bowing-figure .speech-bubble {
        font-size: 10px;
        padding: 5px 10px;
    }

    .clients-section .logo-grid {
        gap: 15px;
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    }

    .clients-section .logo-grid img {
        max-width: 100px;
    }


    .history-section {
        padding: 20px 0px;
    }

    .history-section .section-title {
        font-size: 18px;
        margin-bottom: 0px;
    }

    .history-section .history-korean-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .history-section .history-quote {
        font-size: 20px;
    }

    .history-section .history-image-block .image-overlay-text {
        font-size: 16px;
        padding: 6px 12px;
    }

    .history-section .history-english-quote {
        font-size: 24px;
        margin-top: 15px;
    }


    .main-footer {
        padding: 30px 15px;
    }

    .main-footer .contact-box {
        padding: 10px 15px;
        border-radius: 40px;
    }

    .main-footer .contact-text {
        font-size: 20px;
        text-align: center;
        /* 모바일에서 중앙 정렬 */
    }

    .main-footer .contact-button {
        width: 40px;
        height: 40px;
    }

    .main-footer .contact-button img {
        width: 16px;
        height: 16px;
    }

    .main-footer .footer-bottom {
        padding-top: 15px;
    }

    .main-footer .footer-logo img {
        width: 30px;
    }

    .main-footer .copyright,
    .main-footer .contact-info {
        font-size: 12px;
    }
	
	
	 .history-section-container {
        padding: 10px 5%;
    }
    
    .history-section {
        gap: 30px;
    }

    .history-section .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .history-section .text-block .korean-text {
        font-size: 14px;
        line-height: 1.6;
    }

    .korean-text-2 {
        font-size: 18px;
        gap: 10px;
    }
    
    .korean-text-2 .line {
        max-width: 50px;
    }
    
    .korean-text-3 {
        font-size: 30px;
    }
	
	 .communication-section {
        padding: 50px 15px;
        gap: 30px;
    }

    .communication-section .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .communication-section .text-block .korean-text {
        font-size: 18px;
        word-break: keep-all; /* 단어 단위로 줄바꿈 */
    }

    .communication-section .text-block .english-text {
        font-size: 12px;
    }

    .communication-section .image-container img {
        max-width: 100%; /* 이미지가 화면을 넘지 않도록 */
        height: auto;
    }
	
	 .image-container-2 {
       display: none;
    }
	
	.communication-section .text-block {

    padding-bottom: 40px;
 
    gap: 30px;
}


.history-section .text-block {
    flex: 1;
    min-width: 250px;
    padding-bottom: 0px;
    display: flex
;
    gap: 30px;
}

.star_01 {display:none;}

/* 프로젝트 문의 버튼 조정 */
    .apply-btn {
        width: 80px;
        height: 80px;
        bottom: 13%;
        right: 15px;
        border-width: 0.5px;
    }
	
	.apply-btn:hover {
	  width: 80px;
        height: 80px;
        bottom: 13%;
        right: 15px;
        border-width: 0.5px;
	}
    .apply-btn .inquiry-img {
        width: 40px; padding-right: 0px; float: none;
    }

}