@charset "utf-8";

@keyframes shine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/************************
학과소개 - 학과소개
*************************/
.intro-wrap { 
    margin: 0 auto; 
    padding: 40px 20px; 
}

.intro-wrap .section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #2a5298;
}

.intro-wrap .section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.intro-wrap .section-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.intro-wrap .section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 6s infinite;
}

.intro-wrap .section-title {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.intro-wrap .section-content {
    padding: 40px;
}

/* 1. 전공소개 */
.intro-wrap .intro-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 600;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 30px;
}

.intro-wrap .intro-description {
    font-size: 1.0em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.intro-wrap .intro-description p {
    margin-bottom: 20px;
}

/* 2. 교육목표 */
.intro-wrap .goals-mission {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 25px;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 600;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 30px;
}

.intro-wrap .goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.intro-wrap .goal-card {
    background: #f8f9fa;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.intro-wrap .goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.intro-wrap .goal-card:hover {
    border-color: #2a5298;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.2);
}

.intro-wrap .goal-card strong {
    display: block;
    font-size: 1.2em;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 12px;
}

/* 3. 학과 교육의 주안점 */
.intro-wrap .focus-areas {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.intro-wrap .focus-area {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-wrap .focus-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.intro-wrap .focus-area:hover {
    border-color: #2a5298;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.2);
}

.intro-wrap .focus-area-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.intro-wrap .focus-area-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.intro-wrap .focus-area-content strong {
    color: #2a5298;
    font-weight: 600;
    display: block;
    margin: 20px 0 10px 0;
    font-size: 1.05em;
}

/* 4. MOU 협력 네트워크 */
.intro-wrap .mou-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-wrap .mou-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.intro-wrap .mou-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.intro-wrap .mou-category:hover {
    border-color: #2a5298;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.2);
}

.intro-wrap .mou-category-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 20px;
}

.intro-wrap .mou-description {
    background: linear-gradient(135deg, rgba(42, 82, 152, 0.1) 0%, rgba(30, 60, 114, 0.1) 100%);
    font-weight: bold;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    color: #555;
}

.intro-wrap .mou-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.intro-wrap .mou-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 15px;
    font-weight: 600;
    text-align: center;
}

.intro-wrap .mou-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.intro-wrap .mou-table tr:nth-child(even) {
    background: #f8f9fa;
}

.intro-wrap .mou-table tr:hover {
    background: rgba(42, 82, 152, 0.1);
}

.intro-wrap .text-center {
    text-align: center;
}

.intro-wrap .mou-link {
    color: white;
    background: linear-gradient(135deg, #b3d9f2 0%, #a8cce8 100%);
    padding: 8px 12px;
    border-radius: 15px;
    text-decoration: none;
    margin: 2px;
    display: inline-block;
    font-size: 0.85em;
    transition: all 0.3s ease;
    width: 100px;
    height: 32px;
    text-align: center;
    line-height: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.intro-wrap .mou-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/************************
학과소개 - 교육방식
*************************/
.education-wrap {
    margin: 0 auto;
    padding: 40px 20px;
}

.education-wrap .education-section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #2a5298;
}

.education-wrap .education-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.education-wrap .section-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.education-wrap .section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 6s infinite;
}

.education-wrap .section-title {
    display: inline-block;
    font-size: 1.5em;
    font-weight: 700;
    position: relative;
    z-index: 1;
    vertical-align: middle;
    line-height: 1.3;
}

.education-wrap .section-content {
    padding: 35px;
}

.education-wrap .intro-description {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.7;
    color: #555;
}

.education-wrap .content-subtitle {
    font-size: 1.1em;
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.education-wrap .content-list {
    list-style: none;
    margin-bottom: 25px;
}

.education-wrap .content-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.education-wrap .content-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.education-wrap .content-list .sub-list {
    margin-top: 10px;
    margin-left: 20px;
}

.education-wrap .content-list .sub-list li::before {
    content: '•';
    color: #666;
}
.education-wrap .curriculum-table {
    background: white;
    border-radius: 0;
    padding: 25px;
    margin-top: 20px;
    overflow-x: auto;
}

.education-wrap .table-title {
    font-weight: 600;
    color: #1e3c72;
    margin-bottom: 15px;
    text-align: center;
}

.education-wrap table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid #e9ecef;
    border-top: 2px solid #333;
}

.education-wrap th,
.education-wrap td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e9ecef;
    font-size: 0.9em;
    vertical-align: middle;
}

.education-wrap th {
    background: #f8f9fa;
    color: #333;
    font-weight: bold;
}

.education-wrap tr:nth-child(even) {
    background: #f8f9fa;
}

.education-wrap tr:nth-child(odd) {
    background: white;
}


/************************
학과소개 - 졸업 후 진로
*************************/
.careerPath-wrap {
    margin: 0 auto;
    padding: 40px 20px;
}

.careerPath-wrap .section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #2a5298;
}

.careerPath-wrap .section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.careerPath-wrap .section-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 25px;
    position: relative;
    overflow: hidden;
}

.careerPath-wrap .section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 6s infinite;
}

.careerPath-wrap .section-title {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

.careerPath-wrap .section-subtitle {
    font-size: 1.0em;
    margin-top: 8px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.careerPath-wrap .section-content {
    padding: 30px;
}

.careerPath-wrap .intro-text {
    font-size: 1.0em;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.careerPath-wrap .career-image {
    text-align: center;
    margin: 25px 0;
}

.careerPath-wrap .career-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.careerPath-wrap .career-categories {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.careerPath-wrap .career-category {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.careerPath-wrap .career-category:hover {
    border-color: #2a5298;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 82, 152, 0.2);
}

.careerPath-wrap .category-title {
    font-size: 1.2em;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 15px;
}

.careerPath-wrap .company-group {
    margin-bottom: 12px;
    line-height: 1.6;
}

.careerPath-wrap .company-type {
    font-weight: 600;
    color: #2a5298;
    font-size: 0.95em;
}

.careerPath-wrap .company-text {
    color: #555;
    font-size: 0.9em;
}

.careerPath-wrap .highlight {
    background: linear-gradient(120deg, rgba(42, 82, 152, 0.1) 0%, rgba(30, 60, 114, 0.1) 100%);
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid #2a5298;
}


/************************
대학원 - 전공소개
*************************/
.majorIntro-wrap {
    margin: 0 auto;
    padding: 40px 20px;
}

.majorIntro-wrap .section {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 5px solid #2a5298;
}

.majorIntro-wrap .section:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.majorIntro-wrap .section-header {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 35px;
    position: relative;
    overflow: hidden;
}

.majorIntro-wrap .section-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shine 6s infinite;
}

.majorIntro-wrap .section-title {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
}

.majorIntro-wrap .section-content {
    padding: 35px;
}

.majorIntro-wrap .intro-text {
    font-size: 1.1em;
    font-weight: bold;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.majorIntro-wrap .research-list {
    list-style: none;
    margin-bottom: 25px;
    margin-top: 20px;
}

.majorIntro-wrap .research-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.7;
}

.majorIntro-wrap .research-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #2a5298;
    font-weight: bold;
}

.majorIntro-wrap .research-list .sub-list {
    margin-top: 10px;
    margin-left: 20px;
}

.majorIntro-wrap .research-list .sub-list li::before {
    content: '•';
    color: #666;
}

.majorIntro-wrap .research-list strong {
    color: #1e3c72;
    font-weight: 600;
}

.majorIntro-wrap .feature-grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 25px;
   margin-top: 20px;
}

.majorIntro-wrap .feature-card {
   background: white;
   border: 2px solid #e9ecef;
   padding: 30px;
   border-radius: 15px;
   text-align: center;
   transition: all 0.3s ease;
   position: relative;
   overflow: hidden;
}

.majorIntro-wrap .feature-card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 4px;
   background: linear-gradient(90deg, #1e3c72, #2a5298);
}

.majorIntro-wrap .feature-card:hover {
   transform: translateY(-8px);
   border-color: #2a5298;
   box-shadow: 0 10px 30px rgba(42, 82, 152, 0.15);
}

.majorIntro-wrap .feature-card:nth-child(1)::before {
   background: linear-gradient(90deg, #667eea, #764ba2);
}

.majorIntro-wrap .feature-card:nth-child(2)::before {
   background: linear-gradient(90deg, #f093fb, #f5576c);
}

.majorIntro-wrap .feature-card:nth-child(3)::before {
   background: linear-gradient(90deg, #4facfe, #00f2fe);
}

.majorIntro-wrap .feature-card:nth-child(4)::before {
   background: linear-gradient(90deg, #43e97b, #38f9d7);
}

.majorIntro-wrap .feature-card .icon {
   width: 60px;
   height: 60px;
   border-radius: 50%;
   margin: 0 auto 20px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5em;
   font-weight: bold;
   color: white;
}

.majorIntro-wrap .feature-card:nth-child(1) .icon {
   background: linear-gradient(135deg, #667eea, #764ba2);
}

.majorIntro-wrap .feature-card:nth-child(2) .icon {
   background: linear-gradient(135deg, #f093fb, #f5576c);
}

.majorIntro-wrap .feature-card:nth-child(3) .icon {
   background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.majorIntro-wrap .feature-card:nth-child(4) .icon {
   background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.majorIntro-wrap .feature-card h4 {
   font-size: 1.2em;
   margin-bottom: 15px;
   font-weight: 600;
   color: #1e3c72;
}

.majorIntro-wrap .feature-card p {
   font-size: 0.95em;
   color: #666;
   line-height: 1.7;
}

.majorIntro-wrap .talent-highlight {
    background: linear-gradient(135deg, #f1f3f4 0%, #f8f9fa 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.majorIntro-wrap .talent-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.majorIntro-wrap .talent-highlight h3 {
    color: #1e3c72;
    font-size: 1.4em;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.majorIntro-wrap .talent-highlight p {
    color: #555;
    font-size: 1.05em;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}


/************************
대학원 - 연구실 소개
*************************/
.labIntro-wrap { 
    margin: 0 auto; 
    padding: 40px 20px; 
}

.labIntro-wrap .page-header { 
    text-align: center; 
    margin-bottom: 50px; 
}

.labIntro-wrap .page-title { 
    font-size: 2.5em; 
    font-weight: 700; 
    color: #1e3c72; 
    margin-bottom: 15px; 
}

.labIntro-wrap .page-subtitle { 
    font-size: 1.2em; 
    color: #666; 
    opacity: 0.8; 
}

.labIntro-wrap .labs-grid { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.labIntro-wrap .lab-card { 
    background: white; 
    border-radius: 15px; 
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); 
    overflow: hidden; 
    transition: all 0.3s ease; 
    position: relative; 
    border-left: 5px solid #2a5298;
}

.labIntro-wrap .lab-card:hover { 
    transform: translateY(-8px); 
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15); 
}

.labIntro-wrap .lab-header { 
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); 
    color: white; 
    padding: 25px; 
    position: relative; 
    overflow: hidden; 
}

.labIntro-wrap .lab-header::before { 
    content: ''; 
    position: absolute; 
    top: -50%; 
    right: -50%; 
    width: 200%; 
    height: 200%; 
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); 
    animation: shine 6s infinite; 
}

.labIntro-wrap .lab-name { 
    font-size: 1.3em; 
    font-weight: 700; 
    margin: 0; 
    position: relative; 
    z-index: 1; 
    line-height: 1.4; 
}

.labIntro-wrap .lab-content { 
    padding: 25px; 
}

.labIntro-wrap .info-row { 
    display: flex; 
    margin-bottom: 15px; 
    align-items: flex-start; 
}

.labIntro-wrap .info-label { 
    font-weight: 600; 
    color: #2a5298; 
    min-width: 100px; 
    margin-right: 15px; 
    flex-shrink: 0; 
}

.labIntro-wrap .info-content { 
    color: #555; 
    line-height: 1.6; 
    flex: 1; 
}

.labIntro-wrap .website-link { 
    color: #2a5298; 
    text-decoration: none; 
    font-weight: 500; 
    transition: color 0.3s ease; 
}

.labIntro-wrap .website-link:hover { 
    color: #1e3c72; 
    text-decoration: underline; 
}

.labIntro-wrap .email-link { 
    color: #2a5298; 
    text-decoration: none; 
}

.labIntro-wrap .email-link:hover { 
    text-decoration: underline; 
}

.labIntro-wrap .contact-info { 
    background: #f8f9fa; 
    padding: 15px; 
    border-radius: 8px; 
    margin-top: 15px; 
}

.labIntro-wrap .contact-row { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 8px; 
}

.labIntro-wrap .contact-row:last-child { 
    margin-bottom: 0; 
}

.labIntro-wrap .contact-label { 
    font-weight: 600; 
    color: #1e3c72; 
}

.labIntro-wrap .contact-value { 
    color: #555; 
}