/* 기본 레이아웃 스타일 */
body {
    margin: 0;
    padding: 0;
    font-family: 'Pretendard', sans-serif;

}

/* 섹션 공통 스타일 */
.sec_2, .sec_3, .sec_5 {
    padding: 80px 0;
    width: 100%;
}

.sec_2 .tit_wrap,
.sec_3 .tit_wrap,
.sec_5 .tit_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* 자격증 섹션 */
.sec_2 {
    background-color: white;
}

.tit_wrap {
    text-align: center;
    margin-bottom: 50px;
}

.tit {
    font-size: 32px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* 스와이퍼 스타일 */
.mySwiper {
    position: relative;
    padding: 30px !important;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* 스와이퍼 페이지네이션 */
.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 30px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.swiper-pagination-bullet {
    width: 40px !important;
    height: 4px !important;
    background: #dee2e6 !important;
    opacity: 1 !important;
    margin: 0 3px !important;
    transition: all 0.3s ease !important;
    border-radius: 2px !important;
    display: inline-block !important;
}

.swiper-pagination-bullet-active {
    background: #6c757d !important;
    width: 60px !important;
}

.swiper-slide {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease;
    width: 240px;
    height: 280px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    box-sizing: border-box;
    overflow: hidden;
    flex-shrink: 0;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.swiper-slide .name {
    font-weight: bold;
    color: #495057;
    margin-bottom: 15px;
    font-size: 20px;
    line-height: 1.3;
    text-align: center;
    height: 52px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.swiper-slide .data {
    color: #6c757d;
    font-size: 15px;
    margin-bottom: 8px;
    text-align: center;
    height: 20px;
    line-height: 20px;
}

.swiper-slide .place {
    color: #adb5bd;
    font-size: 13px;
    text-align: center;
    height: 20px;
    line-height: 20px;
}

/* 스와이퍼 네비게이션 - 숨김 */
.swiper-button-next {
    display: none;
}

/* 경력사항 섹션 */
.sec_4 {
    background-color: #fff;
    padding: 80px 0;
    width: 100%;
}



.sec_4 .tit {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.career_wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.career_item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: visible;
    z-index: 1;
}

.career_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999999;
}

.career_header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.career_duration {
    font-weight: bold;
    color: #495057;
    font-size: 16px;
}

.career_company {
    display: flex;
    align-items: center;
    font-weight: bold;
    color: #333;
    font-size: 18px;
}

.company_icon {
    color: #007bff;
    margin-right: 8px;
    font-size: 16px;
}

.career_role {
    margin-bottom: 12px;
    margin-top: -8px;
}

.career_item.education .career_role {
    margin-bottom: 0;
}

.role_tag {
    color: #6c757d;
    font-size: 13px;
    background: white;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-block;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.career_responsibilities {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.career_salary {
    color: #28a745;
    font-weight: bold;
    font-size: 14px;
}

.career_details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.career_details span {
    color: #6c757d;
    font-size: 13px;
    background: #f8f9fa;
    padding: 4px 8px;
    border-radius: 4px;
}

/* 경력 상세 내용 */
.career_detail {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 25px;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999999;
    max-height: 400px;
    overflow-y: auto;
}

.career_item {
    position: relative;
}

.career_item.education {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-color: #dee2e6;
}

.career_item.education .company_icon {
    color: #6f42c1;
    font-size: 18px;
}

.career_item:hover .career_detail {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.detail_content h4 {
    color: #333;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    margin-top: 20px;
}

.detail_content h4:first-child {
    margin-top: 0;
}

.detail_content p {
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.detail_content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.detail_content li {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* 스킬 섹션 */
.sec_3 {
    background-color: white;
}

.sec_3 .tit {
    text-align: center;
    margin-bottom: 60px;
}

/* 스킬 섹션 그리드 */
.sec_3 .wrap {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.skill_wrap {
    text-align: center;
    position: relative;
    cursor: pointer;
    padding: 10px;
}

.skill_wrap:hover {
    transform: scale(1.1);
}

.skill_wrap img {
    width: 100px;
    height: 100px;
    transition: transform 0.3s ease;
}

.bubble {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #333;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    width: 300px;
    min-height: 80px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: rgba(255, 255, 255, 0.9);
    filter: blur(0.5px);
}

.skill_wrap:hover .bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-5px);
}

.bubble .tit_1 {
    font-weight: bold;
    color: #333;
    font-size: 18px;
    margin-bottom: 10px;
}

.bubble .tit_2 {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* 하단 섹션 */
.sec_5 {
    background: linear-gradient(to bottom, white 0%, #f8f9fa 50%, #e9ecef 100%);
    text-align: center;
}

.sec_5 .text {
    font-size: 24px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* 하단 섹션 버튼 */
.sec_5 .wrap {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.bnt_1 img {
    width: 100px;
    height: auto;
    transition: transform 0.3s ease;
}

.bnt_1:hover img {
    transform: scale(1.05);
}

/* 푸터 */
.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 30px 0;
}

.footer .text {
    font-size: 14px;
    color: #adb5bd;
}

/* 반응형 */
@media (max-width: 768px) {
    .sec_2, .sec_3, .sec_4, .sec_5 {
        padding: 40px 20px;
    }
    
    .tit {
        font-size: 24px;
    }
    
    .sec_3 .wrap {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
    
    .bubble {
        width: 250px;
        padding: 15px;
        min-height: 70px;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    
    .swiper-slide {
        padding: 20px 15px;
        width: 180px;
        height: 200px;
        margin: 10px 0;
        box-sizing: border-box;
        flex-shrink: 0;
    }
    
    .swiper-slide .name {
        font-size: 18px;
    }
    
    .swiper-slide .data {
        font-size: 14px;
    }
    
    .swiper-slide .place {
        font-size: 12px;
    }
    
    .career_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .career_item {
        padding: 20px;
    }
    
    .career_details {
        gap: 10px;
    }
    
    .career_details span {
        font-size: 12px;
        padding: 3px 6px;
    }
    

    

}
