/* * ------------------------------------------------------------------
 * 1. GLOBAL VARIABLES & RESET
 * ------------------------------------------------------------------
 */
:root {
    --primary-blue: #0f4c81;     
    --dark-navy: #0a2540;        
    --accent-blue: #1e88e5;      
    --light-bg: #f0f7ff;         
    --text-dark: #333333;        
    --text-grey: #666666;        
    --white: #ffffff;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden; /* 防止移動端橫向滾動 */
    width: 100%;
}

/* 移動端全局容器優化：增加兩側留白 */
@media (max-width: 576px) {
    .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

button,button:focus,button:active{
	background: none!important;
	box-shadow: none!important;
}

.section-heading {
    font-weight: 700;
    color: var(--dark-navy);
}

/* * ------------------------------------------------------------------
 * 2. NAVIGATION BAR
 * ------------------------------------------------------------------
 */
.main-navbar {
    background-color: var(--dark-navy); 
    padding-top: 15px;
    padding-bottom: 15px;
    transition: background-color 0.3s;
	pading:0px;
}
.main-navbar .container{
	max-width:80%;
}
.main-navbar .navbar-brand {
    font-weight: bold;
    color: var(--white);
    font-size: 1.25rem;
	padding:0px;
}

.main-navbar .navbar-brand img{
	height:60px;
}

.main-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.5);
}
.main-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-navbar .nav-link {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    margin-right: 15px;
    font-weight: 400;
}

.main-navbar .nav-link i.lineicon{
	width:28px;
	height:28px;
	display:inline-block;
	background: url(../images/line_ico_w.svg) center center no-repeat;
	background-size: contain;
	opacity: .5;
	 transition: all 0.3s;
	margin-top: 4px;
}

.main-navbar .nav-link:hover i.lineicon{
	opacity: 1;
}

.main-navbar .nav-link:hover, .main-navbar .nav-link.active {
    color: var(--white);
}

.main-navbar .btn-contact {
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 30px; 
    padding: 5px 20px;
    margin-right: 0;
}

.main-navbar .btn-contact:hover {
    background-color: var(--white);
    color: var(--dark-navy) !important;
}
@media (max-width: 1360px) {
	.main-navbar .container{
		max-width:90%;
	}
	.main-navbar .nav-link {
		margin-right: 12px;
	}
	.hero-section .hero-subtitle br{
		display:none;
	}
}
@media (max-width: 991px) {
	.main-navbar {
		width: 100vw;
	}
	.navbar>.container{
		width:100%;
		padding:0px 15px!important;
	}
	.main-navbar .navbar-brand img {
		height: 50px;
	}
	.navbar-nav.align-items-center{
		align-items: flex-start!important;
		padding: 16px 0px;
	}
}

/* * ------------------------------------------------------------------
 * 3. HERO SECTION (100% 还原设计稿 - 深蓝几何版)
 * ------------------------------------------------------------------
 */
.hero-section {
    position: relative;
    background-color: #12325a; 
    min-height: 600px; 
    padding-top: 80px; 
    color: var(--white);
    overflow: hidden;
	background:#12325a url(../images/bannerbg.svg) center right no-repeat;
    background:cover;
}



.hero-section .hero-title {
    font-size: 2.4rem; 
    font-weight: 500; 
    line-height: 1.3;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: left;
}

.hero-section .hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7); 
    font-weight: 300;
    line-height: 1.6;
    max-width: 100%;
    text-align: left;
}

.hero-section .hero-buttons {
    margin-top: 40px;
}

.hero-section .btn-hero-story {
    background-color: #9cc6ef; 
    color: #0f2a50;            
    border: 1px solid #9cc6ef;
    padding: 10px 40px;
    border-radius: 3px;     
	font-size: 0.85rem;	
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section .btn-hero-story:hover {
    background-color: #badcf7;
    border-color: #badcf7;
    color: #0f2a50;
    transform: translateY(-2px);
}

.hero-section .btn-hero-course {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.6); 
    padding: 10px 40px;
    border-radius: 3px;        
    font-weight: 500;
	font-size: 0.85rem;	
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-section .btn-hero-course:hover {
    border-color: #ffffff;
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

@media (max-width: 991px) {
	.hero-section{
		padding-top:120px;
	}
    .hero-section .hero-title { font-size: 1.6rem; }
    .hero-section { height: auto; padding-bottom: 80px; }
	.hero-section .hero-subtitle{
		font-size:0.95rem;
	}
	.hero-section .hero-subtitle br{
		display:none;
	}
	.hero-section .btn-hero-course {
		padding: 10px 20px;
	}
}

/* * ------------------------------------------------------------------
 * 4. CORE EXPERTISE SECTION
 * ------------------------------------------------------------------
 */
.core-expertise-section {
    padding: 100px 0;
    background-color: #a2cffe; 
    color: #0f2a50; 
}

.core-expertise-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f2a50;
    margin-bottom: 40px;
    text-align: left; 
}

.core-expertise-section .expertise-card {
    background-color: transparent;
    border: 1px solid #0f2a50;
    border-radius: 6px;
    padding: 40px 30px;
    height: 100%;
    transition: transform 0.3s ease;
}

.core-expertise-section .expertise-card:hover {
    background-color: rgba(15, 42, 80, 0.05);
}

.core-expertise-section .icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: #0f2a50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.core-expertise-section .icon-wrapper i {
    font-size: 2.5rem;
    color: #ffffff;
}

.core-expertise-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f2a50;
}

.core-expertise-section p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #0f2a50; 
    margin-bottom: 0;
    text-align: left;
}

@media (max-width: 767.98px) {
    .core-expertise-section { padding: 60px 0; }
    .core-expertise-section .expertise-card { padding: 30px 20px; }
	.core-expertise-section h3 {
		
	}
	.core-expertise-section p {
		font-size: 0.95rem;
	}
}

/* * ------------------------------------------------------------------
 * 5. ABOUT SECTION
 * ------------------------------------------------------------------
 */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-section .about-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    letter-spacing: 2px;
    position: relative;
}

.about-section .bio-sub-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy); 
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.about-section .profile-details li {
    font-size: 0.95rem;
    color: #4a5568; 
    line-height: 1.8;
    margin-bottom: 2px;
}

.about-section .bio-text {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.8;
    text-align: justify; 
}

.about-section .bio-divider {
    border: 0;
    border-top: 1px solid #cbd5e1; 
    opacity: 0.6;
}

.about-section .profile-img-box {
    width: 100%;
    overflow: hidden;
    border-radius: 20px; 
    background-color: #f1f5f9;
}

.about-section .profile-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-section .btn-bio-action {
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.about-section .btn-bio-action:hover {
    background-color: #1a3b5d; 
    color: var(--white);
}

@media (max-width: 991px) {
    .about-section { padding: 60px 0; }
	.about-section .row{
		padding:0px;
		margin:0px;
	}
    .about-section .about-main-title { text-align: center; margin-bottom: 40px; }
    .about-section .ps-lg-5 { padding-left: 0 !important; }
    .about-section .profile-img-box { max-width: 300px; margin: 0 auto; }
	.about-section .profile-details li {
		font-size: 0.95rem;
		line-height: 1.5;
	}
	.about-section .bio-text{
		font-size:0.95rem;
		line-height: 1.5;
	}
	.about-section .bio-sub-title {
		font-size: 1.4rem;
	}
}

/* * ------------------------------------------------------------------
 * 6. TIMELINE SECTION
 * ------------------------------------------------------------------
 */
.timeline-section {
    padding: 80px 0;
    background-color: #f0f6fc; 
    position: relative;
    overflow: hidden;
}

.timeline-bg-city {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url('../images/buildingbg.png'); 
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.timeline-section .timeline-container {
    position: relative;
    padding-top: 60px; 
    padding-bottom: 40px;
}

.timeline-section .timeline-line {
    position: absolute;
    width: 1px; 
    background-color: #8fb6d9; 
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-section .timeline-top-badge {
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0f2a50; 
    color: var(--white);
    padding: 6px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(15, 42, 80, 0.2);
}

.timeline-section .timeline-row {
    margin-bottom: 40px; 
    position: relative;
    z-index: 1;
}

.timeline-section .center-col {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.timeline-section .timeline-dot {
    width: 14px;
    height: 14px;
	padding:0px;
    background-color: #0f2a50; 
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.timeline-section .timeline-box {
    background-color: var(--white);
    padding: 20px 30px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
    position: relative;
    border: none;
}

.timeline-section .left-box {
    text-align: right; 
    margin-right: 40px; 
}

.timeline-section .right-box {
    text-align: left;
    margin-left: 40px; 
}

.timeline-section .left-box::after {
    content: '';
    position: absolute;
    top: 68px; 
    right: -160px; 
    width: 158px; 
    height: 1px;
    background-color: #8fb6d9; 
}

.timeline-section .order-1 .left-box::after {
	top:56px; 
}

.timeline-section .right-box::after {
	content: '';
    position: absolute;
    top: 70px;
    left: -160px;
    width: 158px;
    height: 1px;
    background-color: #8fb6d9;
}

.timeline-section .timeline-box .date {
    display: block;
    color: #0f2a50; 
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.timeline-section .timeline-box p {
    margin-bottom: 0;
    color: #4a5568; 
    font-size: 0.95rem;
    line-height: 1.5;
}

/* [移動端適配] 國際職涯軌跡 */
@media (max-width: 767.98px) {
    .timeline-section .timeline-line { 
        left: 15px; 
    }
   
    .timeline-section .timeline-top-badge {
        left:35px;
        transform: translateX(-50%); 
        white-space: nowrap;
        font-size: 0.95rem;
        padding: 4px 12px;
    }

    .timeline-section .timeline-row {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .timeline-section .timeline-row .col-md-5:empty { display: none; }

    /* 圓點容器：絕對定位在左側，調整 left 為 6px */
    .timeline-section .center-col {
        position: absolute;
        left: 8px; 
        top: 0;
        width: 40px;
		padding:0px;
        height: 100%;
        align-items: flex-start; /* 頂對齊 */
        padding-top: 25px;
        z-index: 2;
        justify-content: center;
    }

    .timeline-section .timeline-row .col-md-5 {
        width: 100%;
        padding-left: 45px; 
        padding-right: 0;
    }

    .timeline-section .timeline-box {
        margin: 0 !important; 
        text-align: left !important; 
    }

    .timeline-section .left-box::after,
    .timeline-section .right-box::after {
        display: none;
    }
}

/* * ------------------------------------------------------------------
 * 7. PHILOSOPHY SECTION
 * ------------------------------------------------------------------
 */
.philosophy-section {
    padding: 100px 0;
    background-color: var(--white);
}

.philosophy-section .section-heading {
    text-align: left;
    font-size: 2rem;
    font-weight: 700;
    color: #0f2a50; 
    margin-bottom: 40px;
}

.philosophy-section .phil-card {
    background-color: var(--white);
    border: 1px solid #a2cffe; 
    padding: 40px 35px;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
    border-radius: 2px; 
}

.philosophy-section .phil-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(162, 207, 254, 0.3);
}

.philosophy-section .card-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.philosophy-section .number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0f2a50;
    line-height: 1;
}

.philosophy-section .icon-wrap {
    font-size: 2.5rem;
    color: #0f2a50;
}

.philosophy-section .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f2a50;
    margin-bottom: 20px;
    line-height: 1.4;
	padding-right:8%;
}

.philosophy-section .card-text {
    font-size: 0.95rem;
    color: #4a5568; 
    line-height: 1.6;
    margin-bottom: 0;
	padding-right:8%;
    text-align: justify;
}

@media (max-width: 767.98px) {
    .philosophy-section { padding: 60px 0; }
    .philosophy-section .phil-card { padding: 30px 20px; }
    .philosophy-section .number { font-size: 2.2rem; }
    .philosophy-section .icon-wrap { font-size: 2rem; }
	.philosophy-section .section-heading {
		font-size: 1.5rem;
		width: 90%;
	}
	.philosophy-section .card-title {
		
	}
}

/* * ------------------------------------------------------------------
 * 8. QUOTE SECTION
 * ------------------------------------------------------------------
 */
.quote-section {
    position: relative;
    padding: 160px 0;
   background:#0d2546 url(../images/quotebg.jpg) center center no-repeat;
    overflow: hidden;
	background-size: cover; 
    color: var(--white);
}

.quote-section .quote-text {
    font-size: 2.5rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.quote-section .btn-quote-action {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.7);
    border-radius: 0; 
    padding: 12px 50px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}

.quote-section .btn-quote-action:hover {
    background-color: rgba(255,255,255,0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .quote-section { padding: 80px 0; }
    .quote-section .quote-text { font-size: 1.8rem; line-height: 1.5; margin-bottom: 40px; }
}

/* * ------------------------------------------------------------------
 * 9. METHODOLOGY SECTION
 * ------------------------------------------------------------------
 */
.methodology-section {
    padding: 130px 0 160px 0px; 
    background:#14385F url(../images/methodologybg.png) center left no-repeat;
	background-size:cover;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.methodology-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.methodology-section .method-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.methodology-section .method-card {
    background-color: #0B2949; 
    padding: 60px 30px 80px 30px;
    height: 100%;
    border-radius: 0; 
    transition: transform 0.3s ease, background-color 0.3s;
}

.methodology-section .method-card:hover {
    background-color: #1d406a; 
    transform: translateY(-5px);
}

.methodology-section .method-card .icon-box {
    margin-bottom: 25px;
}

.methodology-section .method-card .icon-box i {
    font-size: 3.5rem;
    color: transparent;
    -webkit-text-stroke: 1px #a4c8e9; 
}

.methodology-section .method-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.methodology-section .method-card .card-text p {
    color: #a4c8e9; 
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 5px;
}

.methodology-section .method-footer {
    border-top: 1px solid rgba(255,255,255,0.15); 
    padding-top: 30px;
    margin-top: 20px;
}

.methodology-section .method-footer p {
    color: #6c8caf; 
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 800px;
    text-align: left; 
}

@media (max-width: 767.98px) {
	.methodology-section {
		padding:80px 0px;
	}
    .methodology-section .method-subtitle { font-size: 1.2rem; text-align: left; }
    .methodology-section .method-card { padding: 30px 20px; }
}

/* * ------------------------------------------------------------------
 * 10. EXPERIENCE SECTION
 * ------------------------------------------------------------------
 */
.experience-section {
    padding: 100px 0 100px 0px; 
    color: var(--white);
	position:relative;
}

.experience-section:before{
	width:100%;
	display:block;
	height:60%;
	position:absolute;
	top:0px;
	content:'';
	background:url(../images/casebg.jpg) center center no-repeat;
	background-size:cover;
}

.experience-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white) !important; 
}

.experience-section .exp-intro {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
}

.experience-section .exp-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    overflow: hidden;
}

.experience-section .exp-card-header {
    background-color: #17315a; 
    color: var(--white);
    padding: 20px 30px;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.experience-section .exp-card-body {
    background-color: #eff6ff; 
    padding: 40px 30px;
    flex-grow: 1; 
}

.experience-section .exp-logo {
    height: 60px; 
    display: flex;
    align-items: center;
}

.experience-section .gs-logo {
    font-family: serif; 
    font-size: 1.6rem;
    line-height: 1;
    color: #000;
    font-weight: 700;
    letter-spacing: -1px;
}

.experience-section .citi-logo {
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #003b70;
    position: relative;
}
.experience-section .citi-logo::before {
    content: '';
    position: absolute;
    top: 5px; left: 8px; width: 20px; height: 10px;
    border-top: 3px solid #db0a1e;
    border-radius: 50% 50% 0 0;
}

.experience-section .divider {
    color: #ccc;
    font-size: 1.5rem;
    font-weight: 300;
}

.experience-section .br-logo {
    font-family: sans-serif;
    font-weight: 900;
    font-size: 1.2rem;
    line-height: 1;
    color: #000;
}
.experience-section .br-logo small {
    font-weight: 400;
    font-size: 0.95rem;
}

.experience-section .ark-text {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 1;
    color: #000;
    letter-spacing: 2px;
}
.experience-section .invest-text {
    font-size: 0.7rem;
    letter-spacing: 3px;
    color: #000;
}

.experience-section .period-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f2a50; 
    margin-bottom: 15px;
}

.experience-section .exp-desc {
    color: #475569; 
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: justify;
}

@media (max-width: 767.98px) {
    .experience-section { padding: 60px 0; }
    .experience-section .exp-card-body { padding: 30px 20px; }
	.experience-section .section-heading {
		font-size: 1.6rem;
	}
	.experience-section .exp-intro{
		font-size:0.9rem;
		line-height: 1.5;
	}
	.experience-section .exp-logo {
		height: 50px;
	}
	.experience-section .exp-desc {
	    font-size:0.95rem;
		line-height: 1.5;
	}
}

/* * ------------------------------------------------------------------
 * 11. COURSES SECTION
 * ------------------------------------------------------------------
 */
.courses-section {
	border-top:1px solid #E4E4E4;
	border-bottom:1px solid #E4E4E4;
    padding: 100px 0 130px 0px;
    background: #FCFEFF url(../images/courseswrapbg.jpg) center center no-repeat; 
	background-size:cover;
    position: relative;
    overflow: hidden;
}

.courses-bg-layer {
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 60%;
    background: linear-gradient(to top, rgba(255,255,255,0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.courses-section .section-heading {
    text-align: left; 
    font-size: 2rem;
    font-weight: 700;
    color: #0f2a50; 
    margin-bottom: 40px;
}

.courses-section .course-card {
    background-color: var(--white);
    border: 1px solid #8fb6d9; 
    border-radius: 0; 
    overflow: hidden;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}

.courses-section .course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(15, 42, 80, 0.1);
}

.courses-section .img-wrapper {
    height: 220px;
    background-color: #eee;
    overflow: hidden;
}

.courses-section .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.courses-section .course-card:hover .img-wrapper img {
    transform: scale(1.05); 
}

.courses-section .card-body {
    padding: 30px 25px;
    background-color: #fff;
}

.courses-section .card-body h4 {
    font-weight: 700;
    font-size: 1.4rem;
    color: #0f2a50; 
    margin-bottom: 15px;
}

.courses-section .card-body p {
    color: #4a5568; 
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 0;
    text-align: left; 
}

.courses-section .courses-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.courses-section .btn-course-primary {
    background-color: #0f2a50;
    color: var(--white);
    border: 1px solid #0f2a50;
    padding: 12px 30px;
    border-radius: 0; 
    text-decoration: none;
    font-weight: 500;
    display: flex;
	font-size:0.95rem;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
    transition: all 0.3s;
}

.courses-section .btn-course-primary:hover {
    background-color: #1a3b5d;
    color: var(--white);
}

.courses-section .btn-course-secondary {
    background-color: var(--white);
    color: #333;
    border: 1px solid #cbd5e1;
    padding: 12px 30px;
    border-radius: 0; 
    text-decoration: none;
	font-size:0.95rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 160px;
    justify-content: center;
    transition: all 0.3s;
}

.courses-section .btn-course-secondary:hover {
    background-color: #f8f9fa;
    border-color: #94a3b8;
    color: #0f2a50;
}

.courses-section .btn i {
    font-size: 0.8em; 
}

@media (max-width: 767.98px) {
	.courses-section {padding:80px 0px}
    .courses-section .courses-footer { flex-direction: column; align-items: center; }
    .courses-section .btn { width: 100%; max-width: 300px; }
}

/* * ------------------------------------------------------------------
 * 12. MEDIA SECTION
 * ------------------------------------------------------------------
 */
.media-section {
	overflow:hidden;
    padding: 100px 0;
    background-color: var(--white);
}

.media-section .media-sub-heading {
    display: block;
    font-size: 1rem;
    color: #64748b; 
    margin-bottom: 5px;
    font-weight: 500;
}

.media-section .section-heading {
    font-size: 2.2rem;
    color: #0f2a50; 
    font-weight: 700;
}

.media-section .media-description {
    color: #334155; 
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: justify;
}

.media-section .media-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.media-section .media-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #0f2a50; 
    font-weight: 500;
}

.media-section .media-list li .icon {
    font-size: 1.2rem;
    color: #0f2a50; 
    margin-right: 12px;
}

.media-section .btn-media-download {
    background-color: #0f2a50; 
    color: var(--white);
	font-size:0.95rem;
    padding: 12px 60px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: background-color 0.3s;
}

.media-section .btn-media-download:hover {
    background-color: #1a3b5d;
    color: var(--white);
}

.media-section .media-divider {
    margin-top: 40px;
    margin-bottom: 30px;
    border: 0;
    border-top: 1px solid #e2e8f0;
}

.media-section .media-footer-text {
    font-size: 1rem;
    color: #64748b; 
    line-height: 1.6;
    margin-bottom: 0;
}

.media-section .media-img-box {
    position: relative;
}

.media-section .media-img-box img {
    border-radius: 4px;
}

@media (max-width: 991px) {
    .media-section { padding: 60px 0; }
    .media-section .pe-lg-5 { padding-right: 0 !important; }
    .media-section .media-img-box { margin-top: 40px; }
}

/* * ------------------------------------------------------------------
 * 13. CONTACT SECTION
 * ------------------------------------------------------------------
 */
.contact-section {
	overflow:hidden;
    padding: 100px 0;
    background-color: #ECF5FE; 
}

.contact-section .section-heading {
    text-align: left;
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f2a50;
    margin-bottom: 40px;
}

.contact-section .contact-card {
    background-color: #0f2a50; 
    padding: 35px 25px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: flex-start; 
    transition: transform 0.3s;
}

.contact-section .contact-card:hover {
    transform: translateY(-5px);
}

.contact-section .icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    margin-right: 20px;
    text-align: center;
}

.contact-section .icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
    stroke-width: 1px;
    stroke: var(--white);
}

.contact-section .text-wrapper {
    color: var(--white);
}

.contact-section .text-wrapper h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--white);
}

.contact-section .text-wrapper p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
    text-align: justify;
}

.contact-section .coop-info {
    color: #334155;
    margin-bottom: 40px;
}

.contact-section .coop-info .main-text {
    font-size: 1.05rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.contact-section .coop-info .arrow-icon {
    margin-right: 10px;
    color: #475569;
}

.contact-section .coop-info .sub-text {
    font-size: 1rem;
    color: #64748b;
    padding-left: 28px; 
    margin-bottom: 0;
}

.contact-section .contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-section .btn-contact-primary {
    background-color: #0F2A50;
    color: var(--white);
    border: 1px solid #0F2A50;
    padding: 12px 40px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.contact-section .btn-contact-primary:hover {
    background-color: #0f2a50;
    border-color: #0f2a50;
    color: var(--white);
}

.contact-section .btn-contact-primary i{
	margin-left:6px;
}

.contact-section .btn-contact-outline {
    background-color: var(--white);
    color: #0f2a50;
    border: 1px solid #0f2a50;
	font-size:1rem;
    padding: 12px 40px;
    border-radius: 2px;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.contact-section .btn-contact-outline:hover {
  background-color: #0f2a50;
    border-color: #0f2a50;
    color: var(--white);
}

.contact-section .btn-contact-outline .lineicon{
	width:24px;
	height:24px;
	display:inline-block;
	background: url(../images/line_ico.svg) center center no-repeat;
	background-size: contain;
	margin-left:8px;
}

.contact-section .btn-contact-outline:hover .lineicon{
	background: url(../images/line_ico_w.svg) center center no-repeat;
	background-size: contain;
}

.contact-section .contact-footer {
    text-align: center;
    border-top: 1px solid transparent; 
}

.contact-section .contact-footer p {
    color: #94a3b8; 
    font-size: 0.9rem;
    margin-bottom: 0;
}

@media (max-width: 767.98px) {
    .contact-section .contact-buttons { flex-direction: column; align-items: center; }
    .contact-section .btn { width: 100%; max-width: 300px; justify-content: center; }
	.contact-section .coop-info .main-text {
		flex-direction: column;
		align-items: flex-start;
		margin-bottom: 20px;
	}
}

/* * ------------------------------------------------------------------
 * 14. FOOTER
 * ------------------------------------------------------------------
 */
.site-footer {
    background-color: #0b1a30;
    color: rgba(255,255,255,0.6);
    padding:60px 0 80px 0px;
    text-align: center;
    font-size: 0.9rem;
}

.site-footer .copyright { margin-bottom: 20px; font-size: 0.85rem; }
.site-footer .social-icons a {
    color: rgba(255,255,255,0.6);
    font-size: 1.4rem;
    margin: 0 10px;
    transition: color 0.3s;
}
.site-footer .social-icons a:hover { color: var(--white); }

/* * ------------------------------------------------------------------
 * 16. ANIMATIONS & INTERACTIONS
 * ------------------------------------------------------------------
 */

/* Hero 背景浮動效果 */
@keyframes floatShape {
    0% { transform: rotate(45deg) scale(1.5) translateY(0px); }
    50% { transform: rotate(48deg) scale(1.55) translateY(-20px); }
    100% { transform: rotate(45deg) scale(1.5) translateY(0px); }
}

.hero-bg-shape {
    animation: floatShape 10s ease-in-out infinite;
}

/* 按鈕掃光效果 */
.btn-hero-story, 
.btn-custom-primary, 
.btn-course-primary,
.btn-contact-primary,
.btn-contact-outline,
.btn-bio-action {
    position: relative;
    overflow: hidden;
}

.btn-hero-story::after, 
.btn-custom-primary::after,
.btn-course-primary::after,
.btn-contact-primary::after,
.btn-contact-outline::after,
.btn-bio-action::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent
    );
    transition: 0.5s;
}

.btn-hero-story:hover::after, 
.btn-custom-primary:hover::after,
.btn-course-primary:hover::after,
.btn-contact-primary:hover::after,
.btn-contact-outline:hover::after,
.btn-bio-action:hover::after {
    left: 100%;
}

/* 卡片懸停浮動加深效果 */
.expertise-card:hover,
.phil-card:hover,
.method-card:hover,
.course-card:hover,
.contact-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(15, 42, 80, 0.15) !important;
}