.play-button-icon1 {
    display: inline-block;
    width: 40px; /* 아이콘 크기에 맞게 조절 */
    height: 40px;
    background-image: url('/public/img/icon/play-button1.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.play-button-icon2 {
    display: inline-block;
    width: 40px; /* 아이콘 크기에 맞게 조절 */
    height: 40px;
    background-image: url('/public/img/icon/play-button2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.play-button-icon3 {
    display: inline-block;
    width: 40px; /* 아이콘 크기에 맞게 조절 */
    height: 40px;
    background-image: url('/public/img/icon/play-button3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.play-button-icon4 {
    display: inline-block;
    width: 40px; /* 아이콘 크기에 맞게 조절 */
    height: 40px;
    background-image: url('/public/img/icon/play-button4.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.play-button-icon5 {
    display: inline-block;
    width: 40px; /* 아이콘 크기에 맞게 조절 */
    height: 40px;
    background-image: url('/public/img/icon/play-button5.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.blue-font{
    color: #376CFB;
    font-weight: 500;
}
/* Feature Box 중앙 정렬 */
.feature-box {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-radius: 3px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    margin: 0 auto; /* 중앙 정렬 */
    align-items: center;
    justify-content: space-between;
}

/* 아이콘 컨테이너 (둥근 네모 스타일 적용) */
.icon-container {
    position: relative;
    width: 106.69px;
    height: 107.1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 아이콘 컨테이너 (둥근 네모 스타일 적용) */
.icon-container-dt {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 첫 번째 배경 네모 */
.rectangle-188 {
    position: absolute;
    width: 106.69px;
    height: 107.1px;
    background: rgba(255, 238, 204, 0.8);
    border-radius: 5px;
}

/* 두 번째 배경 네모 (아이콘이 위치할 영역) */
.rectangle-189 {
    position: absolute;
    width: 91.93px;
    height: 92.29px;

    background: #FDB813;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rectangle-189 img {
    width: 50px;
    height: auto;
}

/* 좌측 기능 설명 정렬 */
  .feature-description h5 {
    font-weight: bold;
  }
  
  .feature-description p {
    font-size: 0.9rem;
    color: #666;
  }

 /* 아이콘이 들어가는 네모 박스 */
 .icon-container {
    width: 91.93px;
    height: 91.93px ;
    background: #1E73BE; /* 파란색 배경 */
    display: flex;
    align-items: top;
    justify-content: center;
    border-radius: 10px;
  }

  .icon-container-dt {
    width: 50px;
    height: 50px ;
    background: #3F3F3F; /* 배경 */
    display: flex;
    align-items: top;
    justify-content: center;
    border-radius: 10px;
  }
  
  /* 아이콘 크기 조정 */
  .icon-container img {
    max-width: 70%;
    filter: brightness(0) invert(1); /* 흰색 아이콘으로 변환 */
  }

/* 아이콘 크기 조정 */
    .icon-container-dt img {
        max-width: 70%;
        filter: brightness(0) invert(1); /* 흰색 아이콘으로 변환 */
    }
/* 챗봇 컨테이너 start*/
/* 챗봇 컨테이너 전체 크기 설정 */
.chat-bot-container {
    max-width: 100%;
    width: 100%;
    height: 600px; /* 높이 고정 */
    display: flex;
    flex-direction: column; /* 내부 요소를 세로로 정렬 */
    border-radius: 10px;
}

/* 챗봇 헤더 */
.chat-header {
    background: white;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 10px 10px 0px 0px;
}

/* 채팅 메시지 영역 (스크롤 가능) */
.chat-body {
    flex-grow: 1; /* 남는 공간을 모두 차지하도록 설정 */
    overflow-y: auto;
    padding: 10px;
    background-color: #F1F1F1;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
}
/* 채팅 말풍선 기본 스타일 */
.chat-bubble {
    max-width: 100%;
    padding: 10px 3px;
    border-radius: 3px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.chat-bubble-user {
    max-width: 75%;
    margin-bottom: 8px;
    margin-left: 120px;
}


/* 챗봇 메시지 (왼쪽 정렬 + 아이콘 왼쪽 배치) */
.chat-bubble.bot {
    align-self: flex-start;
    justify-content: flex-start;
    flex-direction: row;
    align-items: center; /* 아이콘과 메시지를 같은 줄에 정렬 */
}

/* 챗봇 메시지 텍스트 */
.chat-bubble.bot span {
    max-width: 80%;
    word-wrap: break-word;
    padding: 8px 12px;
    background: white;
    border-radius: 5px;
    display: inline-block;
}

/* 유저 메시지 (오른쪽 정렬) */
.chat-bubble-user.user {
    background: #e0e0e0;
    color: black;
    text-align: left; /* 텍스트 왼쪽 정렬 유지 */
    border-radius: 5px;
    padding: 8px 12px;
}

/* 챗봇 아이콘 (왼쪽 배치) */
.chat-bubble.bot img {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    margin-right: 8px;
    align-items: center;
}

/* 입력 영역 (고정된 위치) */
.chat-footer {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-top: 1px solid #ddd;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.25);
    border-radius: 0px 0px 10px 10px;
}
.chat-footer input {
    flex: 1;
    border-radius: 5px;
}
.chat-footer .btn {
    background: transparent;
    border: none;
    padding: 5px;
}
.chat-footer .btn img {
    width: 30px;
    height: 30px;
}
/* 챗봇 컨테이너 end*/

/* top_menu*/
.nav-item.dropdown {
    position: relative; /* 드롭다운 메뉴 위치 조정 */
    display: flex; /* 메뉴를 가로 정렬 */
    align-items: center; /* 세로 중앙 정렬 */
  }
  
  .nav-item.dropdown .nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap; /* 줄바꿈 방지 */
  }
  
  .nav-item.dropdown .dropdown-toggle {
    padding-left: 5px;
  }
  
  /* 드롭다운 메뉴가 nav-link 아래에 나오도록 조정 */
  .nav-item.dropdown .dropdown-menu {
    position: absolute;
    top: 100%; /* nav-link 아래로 배치 */
    left: 0;
    z-index: 1000; /* 다른 요소 위에 표시 */
  }
  

 /* 디지털 트윈 개념도 컨테이너 */
 .digital-twin-bg {
    background-image: url(/public/img/digitalTwin/digitalTwin.png), url(/public/assets/img/landing/saas-3/hero/hero-bg.jpg);
    background-size: contain, cover; /* 디지털 트윈 이미지는 contain, 기존 배경은 cover */
    background-position: right center, center; /* 디지털 트윈 이미지는 우측 중앙 */
    background-repeat: no-repeat, no-repeat; /* 반복 방지 */
    height: 600px;
}
.digital-twin-container {
    position: relative;
    max-width: 750px;
    height: 650px;
    margin: 0 auto;
}

.highlight-text {
    font-weight: bold;
    background: linear-gradient(to bottom, #00FFFF, #0077CC); /* 위쪽 밝은 네온, 아래쪽 어두운 블루 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* 점선 원 (외곽 요소들이 이 원을 따라 배치됨) */
.dotted-circle {
    width: 470px;  /* 크기 조정 */
    height: 470px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 420px) {  /* 스마트폰 대응 */
    .dotted-circle {
        width: 370px;
        height: 370px;
    }
}

/* 중앙 원 */
.digital-twin-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}

/* 중앙 원과 겹치는 배경 원 (삼각형 형태) */
.digital-twin-circle.circle-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(to bottom, #154A9E, #001F5C);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.digital-twin-circle.circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(21, 74, 158, 0.3);
    border-radius: 50%;
    top: 55%;
    left: 43%;
}

.digital-twin-circle.circle-3 {
    width: 300px;
    height: 300px;
    background: rgba(21, 74, 158, 0.2);
    border-radius: 50%;
    top: 55%;
    left: 57%;
}

.digital-twin-circle.circle-4 {
    width: 300px;
    height: 300px;
    background: rgba(21, 74, 158, 0.1);
    border-radius: 50%;
    top: 43%;
    left: 50%;
}

/* 외곽 항목 스타일 */
.digital-twin-item {
    position: absolute;
    width: 200px;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* 모바일 대응 (스마트폰 화면) */
@media screen and (max-width: 480px) {  
    .digital-twin-item {
        width: 100px;  /* 스마트폰에서 너비 줄이기 */
        font-size: 12px;  /* 글자 크기 줄이기 */
        line-height: 1.4;  /* 줄 간격 조정 */
    }
}

/* 태블릿 대응 */
@media screen and (max-width: 768px) {  
    .digital-twin-item {
        width: 120px;  /* 태블릿에서는 약간만 줄이기 */
        font-size: 13px;
    }
}

/* 소제목 스타일 */
.digital-twin-item strong {
    display: block;
    margin-bottom: 5px; /* 소제목과 리스트 간격 조정 */
}

/* 리스트 스타일 유지 (• 기본 점 표시) */
.digital-twin-item ul {
    padding-left: 0; /* 기본 들여쓰기 제거 */
    margin: 0;
    list-style-position: inside; /* 리스트 점을 텍스트 바로 앞에 배치 */
}

.digital-twin-item ul li {
    list-style-type: disc; /* 기본 동그라미 스타일 */
    font-size: 13px;
    line-height: 1.5;
    margin-left: 0; /* 왼쪽 마진 제거 */
    word-wrap: break-word;  /* 단어가 길 경우 줄바꿈 */
}

/* 모바일 전용 스타일 */
@media screen  {  
    .digital-twin-item ul li {
        font-size: 12px; /* 모바일에서 글자 크기 조금 줄이기 */
        line-height: 1.6; /* 줄 간격 조금 늘리기 */
        word-break: break-word; /* 단어가 길 경우 강제 줄바꿈 */
        word-wrap: break-word;  /* 긴 단어 줄바꿈 */
    }
}

/* **좌측 정렬되는 항목** */
.item-1, .item-2, .item-3 {
    text-align: left;
    align-items: flex-start;
}

/* **우측 정렬되는 항목** */
.item-4, .item-5, .item-6 {
    text-align: right;
    align-items: flex-end;
}

/* 우측 항목 */
/* 기본 위치 설정 (PC) */
.item-1 { top: 20%; left: 87%; transform: translate(-50%, -50%); } /* 디지털 트윈 기술 요소 */
.item-2 { top: 50%; left: 96%; transform: translate(-50%, -50%); } /* 보안 및 인프라 */
.item-3 { bottom: 10%; left: 87%; transform: translate(-50%, -50%); } /* 운영 및 모니터링 */

.item-4 { top: 20%; left: 13%; transform: translate(-50%, -50%); } /* 산업 적용 */
.item-5 { top: 50%; left: 4%; transform: translate(-50%, -50%); } /* 데이터 연동 */
.item-6 { bottom: 10%; left: 13%; transform: translate(-50%, -50%); } /* 시뮬레이션 & 예측 */

/* 모바일 위치 조정 (스마트폰) */
@media screen and (max-width: 480px) {  
    .item-2 { 
        left: 80%;  /* 기존 96% -> 80%로 이동 (더 좌측으로) */
    }
    .item-5 { 
        left: 20%;  /* 기존 4% -> 20%로 이동 (더 우측으로) */
    }
}

/* 태블릿 위치 조정 */
@media screen and (max-width: 768px) {  
    .item-2 { 
        left: 85%;  /* 태블릿에서는 약간만 좌측 이동 */
    }
    .item-5 { 
        left: 15%;  /* 태블릿에서는 약간만 우측 이동 */
    }
}

/* 스마트 팩토리 박스 */
.feature-box-custom {
    background: white;
    padding: 40px 20px 20px;
    border-radius: 5px;
    width: 100%;
    border: 2px solid #D1D3D4;  /* 테두리 추가 */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    margin: 0 auto; /* 가운데 정렬 */
}

/* 제목을 박스 상단에 걸치도록 설정 */
.feature-title {
    background: #2C3E50;
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 18px;
    display: inline-block;
    position: absolute;
    top: -18px; /* 상단에 걸치도록 조정 */
    left: 50%;
    transform: translateX(-50%);
}

/* 카드 레이아웃 조정 */
.feature-box-custom .row {
    justify-content: center; /* 가운데 정렬 */
    gap: 50px; /* 두 카드 사이 간격 */
}

/* 카드 디자인 */
.card-custom {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
    text-align: left;
    position: relative;
    flex: 1;
    min-width: 300px;
}

/* 카드 헤더 */
.card-header-custom {
    background: #D1D3D4;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.sub-title {
    font-size: 14px;
    color: #555;
}
/* 리스트 스타일 */
.feature-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding-left: 18px;
    text-indent: -12px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
    position: relative;
}

.feature-list li::before {
    content: "•";
    color: #636161;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

/* 아이콘 */
.feature-icon {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.feature-icon img {
    width: 30px;
    height: 30px;
}

/* 솔루션 섹션 제목 */
h2 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

/* 솔루션 카드 스타일 */
/* 솔루션 카드 컨테이너 */
.solution-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column; /* 세로 정렬 */
    justify-content: space-between; /* 내용 간격 조정 */
    height: 100%; /* 카드 높이 동일하게 설정 */
}

/* 카드 제목 */
.solution-title {
    font-size: 17px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* 카드 설명 (유동적으로 늘어남) */
.solution-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex-grow: 1; /* 텍스트가 많아도 높이 조정 */
}

/* 카드 아이콘 컨테이너 */
.solution-icon {
    width: 50px;
    height: 50px;
    background: #2371B0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    padding: 10px;
}

.solution-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}


/* 제목 */
.solution-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

/* 설명 텍스트 */
.solution-text {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

 /* 테크서비스 개념도 컨테이너 */


/* 테크 서비스 이미지 슬라이드 */
.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }

  .arrow-icon {
    width: 24px;
    height: 24px;
  }

  .slider-image {
    width: 800px; /* 원하는 크기로 조절 */
    height: 500px; /* 원하는 크기로 조절 */
    object-fit: cover; /* 이미지 비율을 유지하면서 요소 크기에 맞춤 */
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.5); /* 부드러운 그림자 효과 */
    border-radius: 10px; /* 둥근 모서리 */
  }
/* 슬라이드 내부 텍스트 스타일 */
.slider-text {
    position: relative;
    color: white;
    font-size: 25px;
    font-weight: 700;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

/* 설명 텍스트 스타일 */
.slider-desc {
    position: relative;
    color: white;
    font-size: 17px;
	font-weight: 700;
}

/* View More 버튼 스타일 */
.view-more-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 20px;
    border: 1px solid white;
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.view-more-btn:hover {
    background: white;
    color: black;
}

  .custom-tag {
    background-color: #EEF1FB;
    color: #1B4BC6;
    border-radius: 12px;
    padding: 5px 10px;
    display: inline-block;
    margin: 3px;
    font-weight: bold;
  }
  .ai-title {
    font-size: 1.75rem;
    font-weight: bold;
    color: #9E9E9E;
    padding-left: 158px;
  }
  .ai-highlight {
    color: #1B4BC6;
    font-weight: bold;
  }
  .custom-card {
    background-color: #F5F5F5;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  }
  .custom-card h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .custom-card ul {
    list-style: none;
    padding: 0;
  }
  .custom-card ul li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
  }
  .custom-card ul li::before {
    content: '\2022';
    color: #1B4BC6;
    font-weight: bold;
    position: absolute;
    left: 0;
  }
  .custom-btn {
    background-color: #1B4BC6;
    color: white;
    padding: 10px 100px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    float: right;
    align-items: baseline;
  }
  .custom-btn:hover {
    background-color: #174093;
    color: white;
  }
 /* techService 내부 요소 가로 정렬 */

.techService {
    display: flex;
    justify-content: center;
    gap: 100px;  /* 단계 간격 */
    flex-wrap: wrap;
    position: relative; /* 부모가 기준(overflow 허용용) */
  }
  
  .techService .process-step {
    position: relative;
    overflow: visible; /* 선이 넘어가도 보이도록 */
    width: 150px;      /* 스텝 폭 (예시값) */
  }
  
  /* 마지막 스텝은 선이 필요 없으므로 :not(:last-child) */
  .techService .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 33%;
    transform: translateY(-50%);
    /* 원 중심이 (50%), 원 오른쪽 테두리는 +65px */
    left: calc(50% + 65px);       
    /* 다음 원 왼쪽 가운데까지 뻗을 길이 (예: 250px) */
    width: 250px;
    height: 2px;
    background: #ccc;
  }

  /* ✅ 반응형 처리 (모바일) */
@media screen and (max-width: 768px) {
    .techService {
        flex-direction: column; /* 모바일에서는 세로 정렬 */
        align-items: center;
        gap: 50px; /* 세로 간격 조정 */
    }

    .techService .process-step {
        width: auto; /* 가로 길이 자동 조정 */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* ✅ 가로 선을 세로선으로 변경 */
    .techService .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        width: 2px;
        height: 50px; /* 세로 선 길이 */
        top: calc(100% ); /* 다음 원과 연결되도록 조정 */
        left: 50%;
        transform: translateX(-50%);
        background: #ccc;
    }
}

/* process-step을 세로 정렬 유지 */
.techService .process-step {
    display: flex;
    flex-direction: column; /* 내부 요소 세로 정렬 */
    align-items: center;
    width: 150px;
    position: relative; /* 숫자 위치 기준점 */
}

/* 원형 스타일 */
.techService .process-circle {
    position: relative;  /* 숫자 배치를 위해 기준점 설정 */
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 5px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    background: white; /* 원 내부 색상 */
}

/* 아이콘 크기 */
.techService .process-step img {
    width: 50px;
    height: 50px;
}

/* 숫자 스타일 */
.techService .step-number {
    position: absolute;
    top: -10px; /* 숫자를 더 위로 조정 */
    left: 50%;
    transform: translateX(-50%);
    background: #333;  /* 숫자 배경색 */
    color: white;  /* 글씨 색 */
    font-size: 14px;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20; /* 원보다 앞쪽으로 배치 */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); /* 그림자 추가 */
}

/* 색상 지정 */
.techService .process-step:nth-child(1) .process-circle { border-color: #A1C6FF; }
.techService .process-step:nth-child(2) .process-circle { border-color: #709BDC; }
.techService .process-step:nth-child(3) .process-circle { border-color: #486797; }
.techService .process-step:nth-child(4) .process-circle { border-color: #1B3E73; }

#sliderArea .slider-wrapper, 
#sliderArea .slider-track, 
#sliderArea .slider-item {
    position: relative !important;
    display: flex !important;
    transition: transform 0.5s ease-in-out !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    min-height:680px;
}

.history-container {
    position: relative;
    padding-left: 100px; /* 연도 원과 내용 사이 간격 */
}
/* 📱 모바일에서 왼쪽 패딩 조정 */
@media screen and (max-width: 768px) {
    .history-container {
        padding-left: 40px; /* 태블릿에서는 40px */
    }
}

@media screen and (max-width: 480px) {
    .history-container {
        padding-left: 20px; /* 스마트폰에서는 20px */
    }
}

/* 연도 원 스타일 */
.history-year {
    position: relative;
    width: 80px; /* 원 크기 */
    height: 80px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
}

/* 연도 원 우측에 가로 라인 추가 (PC, 태블릿, 모바일 대응) */
.history-year::after {
    content: "";
    position: absolute;
    width: min(100vw - 200px, 1050px); /* 화면 너비에서 연도 크기와 여백 제외, 최대 1200px */
    height: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    top: 50%;
    left: calc(100% + 20px); /* 연도 원 오른쪽으로 20px 띄움 */
    transform: translateY(-50%);
}

/* ✅ 반응형 스타일 (모바일) */
@media screen and (max-width: 768px) {
    .history-year {
        width: 60px;
        height: 60px;
        font-size: 16px;
    }

    .history-year::after {
        width: min(100vw - 200px, 500px); /* 모바일에서는 최소 50px 여백 확보, 최대 500px */
        left: calc(100% + 10px); /* 모바일에서 간격 축소 */
    }
}

.history-item {
    margin-bottom: 15px;
}

.history-item .month {
    font-size: 18px;
    font-weight: bold;
    color: #6675F7;  /* 파란색 강조 */
}

.history-item .red-month {
    font-size: 18px;
    font-weight: bold;
    color: red;  /* 파란색 강조 */
}

.history-item .description {
    font-size: 16px;
    color: #333;
    margin-top: 5px;
}

/*certification*/
.certification-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.cert-item {
    width: 280px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}

.cert-item img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.cert-item h6 {
    font-weight: bold;
    margin-top: 10px;
}

.cert-item p {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

/* 연락처 정보 스타일 */
.contact-info-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
    padding: 10px 0;
    border-top: 2px solid #ccc;
}

.bt-2 {
    border-bottom: 2px solid #ccc;
}

.contact-info-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 20px;
    padding: 10px 0;
    border-top: 2px #ccc dashed !important;
    
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
}

.info-item .icon {
    font-size: 1.5rem;
    color: #083e7a;
    margin-right: 8px;
}

/* 지도 컨테이너 */
.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* 아이콘 스타일 */
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #083e7a; /* 파란색 배경 */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.icon-box i {
    color: white;
    font-size: 20px;
}

/* 텍스트 스타일 */
.info-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 500;
    color: #2d2d2d;
}

/* 점선 구분선 */
.dashed-line {
    border-top: 1px dashed #a0a0a0;
    margin: 10px 0;
}

/* 지도 컨테이너 */
.map-container {
    text-align: center;
}

.map-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-label {
    background-color: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.custom-radius-card {
    border-radius: 10px;
  }

/* ★ 동영상 Hero 스타일 */
.video-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    transition: opacity 0.6s ease;
    background-color: black; /* ✅ 추가: 로딩 중에도 블랙 배경 보이도록 */
}
  
  .video-hero.hidden {
    opacity: 0;
    pointer-events: none; /* 안 보이는 상태에서 클릭도 막기 */
    /* 필요하다면 transitionend 이벤트로 display: none 처리 가능 */
  }
  
  .video-hero video {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%; 
    min-height: 100%; 
    object-fit: cover;
  }
  
  .video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    z-index: 1; /* 비디오보다 위로 */
  }

  .highlight-text2 {
    font-weight: bold;
    background: linear-gradient(to bottom, #00FFFF, #0077CC); /* 위쪽 밝은 네온, 아래쪽 어두운 블루 */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .video-overlay h1 .highlight-text2 {
    /* 글자 크기를 크게(예: 5rem → 80px) */
    font-size: 4rem;
    font-weight: 900;       /* 두껍게 */
    line-height: 1.2;       /* 줄 간격 적절히 */
    color: #fff; /* 위쪽 밝은 네온, 아래쪽 어두운 블루 */           /* 흰색 */
    text-shadow: 3px 3px 20px rgba(252, 252, 250, 0.795); /* 그림자(가로, 세로, 블러, 색상) */
    margin-bottom: 1rem;    /* 아래 간격 */
  }

  .video-overlay h1 {
    /* 글자 크기를 크게(예: 5rem → 80px) */
    font-size: 4rem;
    font-weight: 900;       /* 두껍게 */
    line-height: 1.2;       /* 줄 간격 적절히 */
    color: #080808;            /* 흰색 */
    text-shadow: 3px 3px 20px rgba(252, 250, 250, 0.795); /* 그림자(가로, 세로, 블러, 색상) */
    margin-bottom: 1rem;    /* 아래 간격 */
  }

  .highlight-text3 {
    /* 원하는 폰트 크기, 색상, 그림자 등 */
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    color: #fff;  
    text-shadow: 3px 3px 10px rgba(190, 190, 190, 0.8);
  }
  
  /* 검정 글자 + 흰색 그림자 */
  .black-text-shadow {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    color: #000;                 /* 글자색 검정 */
    text-shadow: 2px 2px 10px #fff; /* 흰색 그림자 */
  }
  
  
  .video-overlay p {
    font-size: 1.25rem;     /* 적당한 크기 (20px) */
    color: #fff;           
    text-shadow: 2px 2px 8px rgba(10, 10, 10, 0.7); 
    margin-bottom: 1.5rem;
  }
  
  /* 혹시 Scroll Down 부분도 더 크게 하고 싶다면 */
  .video-overlay .scroll-down-indicator {
    font-size: 1.25rem; /* 20px 정도 */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    cursor: pointer;
  }

/* 모바일 화면에서 Hero 텍스트 크기 조정 */
@media screen and (max-width: 480px) {
    .video-overlay h1 {
        font-size: 2rem !important;  /* ✅ 강제 적용 */
        line-height: 1.3 !important;  /* ✅ 강제 적용 */
    }

    .highlight-text2 {
        font-size: 2rem !important;  /* ✅ 강제 적용 */
    }

    .black-text-shadow {
        font-size: 2rem !important;  /* ✅ 강제 적용 */
    }

    .video-overlay .scroll-down-indicator {
        font-size: 1rem !important; /* ✅ 강제 적용 */
    }
}

/* 태블릿 대응 (중간 크기 화면) */
@media screen and (max-width: 768px) {
    .video-overlay h1 {
        font-size: 3rem !important;  /* ✅ 강제 적용 */
    }

    .highlight-text2 {
        font-size: 2.5rem !important;  /* ✅ 강제 적용 */
    }

    .black-text-shadow {
        font-size: 2.5rem !important;  /* ✅ 강제 적용 */
    }
}


/* 카드 컨테이너 스타일 */
.card-custom2 {
    position: relative;        /* 오버레이를 위해 위치 기준 */
    width: 100%;
    height: 380px;            /* 카드 높이 통일 (원하는 값으로 조절) */
    border-radius: 15px;
    overflow: hidden;         /* 자식이 넘칠 경우 잘라냄 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 원하는 카드 그림자 */
    background-color: #fff;
    box-shadow: 2px 2px 8px rgba(10, 10, 10, 0.7); 
  }
  
  /* 이미지 스타일: 꽉 채우고 비율 유지를 위해 cover */
  .card-custom .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block; /* img 주변 여백 제거 */
  }
  
  /* 오버레이 텍스트 */
  .overlay-text {
    position: absolute;
    top: 0;
    left: 0; 
    right: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
    color: #fff;
    padding: 30px 30px 0 30px;
  }
  
  /* 제목, 내용 폰트 크기 등은 상황에 맞춰 조절 */
  .overlay-text h5 {
    margin-bottom: 15px;
    font-size: 1rem;      /* 카드 안에서 조금 작게 설정 */
    font-weight: 700;
    line-height: 1.4;
    color: white;
  }
  .overlay-text p {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
    text-align: justify;
  }

  #3d {
    background: linear-gradient(
                  rgba(42,32,38,0.5),
                  rgba(42,32,38,0.5)
                ),
                url('/public/img/techService/3d_back.png')
                center center / cover no-repeat;
  
    background-size: cover;
    background-position: center;
    /* 필요한 높이/여백 지정 */
    min-height: 100vh;
  }

  .section-num {
    color: #0AFBFF;
    font-weight: 700;
    font-size: 2rem;
    padding: 6px 0px;
    border-radius: 3px; /* 모서리 살짝 둥글게 */
    display: inline-block; /* 네모 상자로 표시 */
  }

  .process-box {
    border: 3px solid #ccc;   /* 회색 테두리 */
    border-radius: 150px;      /* 양끝 둥글게 */
    background: #fff;         /* 흰색 배경 */
    padding: 20px;            /* 안쪽 여백 */
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* 선택: 약간의 그림자 */
  }