/* =========================================
   1. Hero Section
   ========================================= */
.sec-hero {
	width:100%;
    background-color: #000;
    color: #fff;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
}
.sec-hero .container{
	max-width:80%;
}
.sec-hero .hero-title {
    font-family: var(--tmc-font-TopHeading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 600;
    max-width: 960px;
	margin-top:-140px;
}
.sec-hero .hero-sub {
    font-family: var(--tmc-font-sans);
    font-size: 1.25rem;
    line-height: 1.4;
    color: rgba(255,255,255,.8);
    font-weight: 300;
    margin-bottom: 0;
}
.sec-hero .hero-indicators-wrap {
    margin-top: 100px;
    display: flex;
    gap: 15px;
}
.sec-hero .indicator {
    width: 50px; height: 3px; background-color: #333;
}
.sec-hero .indicator.active {
    background-color: #fff;
}

/* =========================================
   2. Mission Section 
   ========================================= */
.sec-mission {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
	border-bottom:2px solid #E8F2FF;
}

.sec-mission .mission-top-text {
    font-size: 1.2rem; color: #333;
    margin-bottom: 30px; font-weight: 400;
    max-width: 800px; margin: 0 auto 30px auto; line-height: 1.5;
}
.sec-mission .mission-main-text {
    font-family: var(--tmc-font-sans);
    font-size: 2.2rem; line-height: 1.4;
    font-weight: 600; color: #000;
    max-width: 950px; margin: 0 auto 50px auto;
}
.sec-mission .btn-journey {
    background-color: var(--tmc-blue-primary);
    color: #fff; padding: 15px 40px;
    font-size: 1rem; font-weight: 600;
    border-radius: 6px; display: inline-flex;
    align-items: center; border: none; transition: 0.3s;
    font-family: var(--tmc-font-sans);
}
.sec-mission .btn-journey:hover {
    background-color: #1a3cb8; color: #fff;
}
.sec-mission .btn-journey i { margin-left: 10px; font-size: 0.9em; }

/* =========================================
   3. About Us Section 
   ========================================= */
.sec-about {
    padding: 100px 0 120px 0px;
    background-color: #fff;
}
.sec-about .about-title {
    font-family: var(--tmc-font-heading);
    line-height: 1.2;
    color: #000; margin-bottom: 40px; font-weight: 600;
}
.sec-about .about-text {
    font-size: 1.1rem; line-height: 1.65; color: #1a1a1a;
    margin-bottom: 30px; font-family: var(--tmc-font-sans);
}

.sec-about .about-text strong {
    font-weight: 700; color: #000;
}

.sec-about .about-img{
	margin-top:20px;
}

.sec-about .about-img img{
	max-width:100%;
	border-radius:16px;
}
.sec-about .stats-row { margin-top: 50px; }
.sec-about .stat-item {
    border-left: 1px solid #b0b0b0; padding-left: 25px;
}
.sec-about .stat-label {
    font-size: 0.9rem; color: #1a1a1a;
    margin-bottom: 15px; line-height: 1.5;
    display: block; max-width: 200px;
}
.sec-about .stat-value {
    font-size: 2.5rem; font-weight: 700;
    color: var(--tmc-blue-primary);
    font-family: var(--tmc-font-heading);
}
.sec-about .about-img-placeholder {
    width: 100%; height: 100%; min-height: 600px;
    background-color: #ccc; border-radius: 12px;
}

/* =========================================
   4. Promotional Section 
   ========================================= */
.sec-promo {
    background-color: var(--tmc-navy-bg);
    padding: 100px 0; color: #fff; text-align: center;
}
.sec-promo .promo-title {
    font-size: 2.5rem; margin-bottom: 30px; color: #fff;
}
.sec-promo .promo-text {
    color: rgba(255,255,255,.9); max-width: 800px; margin: 0 auto 20px auto;
    font-size: 1rem; line-height: 1.6; font-weight: 300;
}
.sec-promo .video-container {
    margin-top: 50px; 
	background-color: #d9d9d9;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
    width: 100%; max-width: 900px; 
	height: 500px;
    margin-left: auto; margin-right: auto;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
}
.sec-promo .play-button-square {
    width: 80px; height: 80px;
    background-color: var(--tmc-blue-primary);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}
.sec-promo .play-button-square:hover {
    transform: scale(1.05); background-color: #1a3cb8;
}
.sec-promo .play-button-square i {
    color: #fff; font-size: 24px; margin-left: 4px;
}

.sec-promo .video-container {
    overflow: hidden; 
}

.sec-promo video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
    outline: none;
    border: none;
}

/* =========================================
   5. Founder Section 
   ========================================= */
.sec-founder {
    padding: 120px 0;
    background-color: #fff;
	border-bottom: 2px solid #E8F2FF;
}
.sec-founder .founder-name {
    font-size: 2.5rem; color: #000000; margin-bottom: 20px;
}
.sec-founder .founder-role {
    font-size: 1.7rem; 
	color: #000000; 
	font-weight: 500; 
	margin-bottom: 40px;
}
.sec-founder .founder-img{}
.sec-founder .founder-img img{
	max-width:100%;
	border-radius:16px;
}
.sec-founder .founder-bio {
    font-size:1.1rem; line-height: 1.65; color: #000000;
    margin-bottom: 25px; max-width: 600px;
}
.sec-founder .founder-bio strong { font-weight: 600; }
.sec-founder .btn-consultants {
    background-color: var(--tmc-blue-primary);
    color: #fff; padding: 12px 35px;
    border-radius: 6px; font-weight: 600;
    font-family: var(--tmc-font-heading); margin-top: 20px;
    display: inline-block; border: none; transition: 0.3s;
}
.sec-founder .btn-consultants:hover {
    background-color: #1a3cb8; color: #fff;
}


/* =========================================
   6. Business Section 
   ========================================= */
.sec-business {
    padding: 100px 0;
    background-color: #fff;
}
.sec-business p {
    max-width: 800px; color: #444; font-size: 1rem;
    margin-bottom: 60px; line-height: 1.6;
}
.sec-business h4 {
    font-size: 1.25rem; font-weight: 600; margin-bottom: 30px; color: #000;
}
.sec-business .biz-card {
    background-color: var(--tmc-card-bg);
    border-radius: 12px; padding: 40px 20px;
    text-align: center; height: 100%;
    display: flex; flex-direction: column;
    justify-content: center; align-items: center;
    transition: 0.3s;
}
.sec-business .biz-card:hover { background-color: #f0f0f0; }
.sec-business .biz-icon img{
   max-width:90px;
   margin-bottom:12px;
}

.sec-business .biz-label {
    font-size: 1.3rem; font-weight: 600; color: #000; margin: 0;
}

/* =========================================
   7. Wealth Management Section
   ========================================= */
.sec-wealth {
    padding: 100px 0;
    background-color: var(--tmc-cyan-bg);
}
.sec-wealth .wealth-header {
    margin-bottom: 50px; color: #000;
}
.sec-wealth .wealth-card-new {
    background: #fff; border-radius: 12px; padding: 25px;
    height: 100%; box-shadow: 0 5px 20px rgba(0,0,0,0.02);
    transition: 0.3s;
	    border: 1px solid #D5DDE4;
}
.sec-wealth .wealth-card-new:hover {
    transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.sec-wealth .wealth-img-placeholder{
   height: 260px;
    border-radius: 12px; margin-bottom: 25px;
}

.sec-wealth .wealth-img-placeholder img{
	width: 100%; 
	height:100%;
	object-fit:cover;
    border-radius: 12px; margin-bottom: 25px;
}

.sec-wealth .wealthIntro{
	padding:0px 20px 40px 20px;
}

.sec-wealth .wealth-text {
    font-size: 1.15rem; line-height: 1.6; color: #000;
    font-weight:600;
	margin-bottom: 30px;
	min-height: 80px;
}
.sec-wealth .wealth-link {
    font-size: 1.1rem; color: var(--tmc-blue-primary); font-weight: 500;
    display: inline-flex; align-items: center;
}
.sec-wealth .wealth-link i {
    margin-left: 8px; font-size: 0.8em; transition: margin-left 0.2s;
}
.sec-wealth .wealth-link:hover i { margin-left: 12px; }

/* =========================================
   8. AI Research Section (AI)
   ========================================= */
.sec-ai {
    padding: 100px 0;
    background-color: #fff;
}
.sec-ai .ai-header {
    margin-bottom: 60px; max-width: 800px;
}
.sec-ai .ai-card {
    background-color: var(--tmc-ai-card-bg);
    border-radius: 12px; padding: 30px; height: 100%;
    transition: 0.3s;
}
.sec-ai .ai-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

.sec-ai .cardIntro{
	padding:10px 20px 30px 20px;
}
.sec-ai .ai-img-placeholder{
	height: 260px;
    border-radius: 12px; margin-bottom: 25px;
}
.sec-ai .ai-img-placeholder img{
	width: 100%; 
	height:100%;
	object-fit:cover;
    border-radius: 12px; margin-bottom: 25px;
}

.sec-wealth .wealthIntro{
	padding:0px 20px 40px 20px;
}
.sec-ai .ai-card-title {
    font-size: 1.35rem; font-weight: 700;
    margin-bottom: 15px; color: #000;
    font-family: var(--tmc-font-heading);
}
.sec-ai .ai-card-text {
    font-size: 1rem; line-height: 1.6; color: #000;
    margin-bottom: 25px; min-height: 60px;
}

/* =========================================
   9. Consulting Section 
   ========================================= */
.sec-consulting {
    padding:0px 0px 120px 0;
    background-color: #fff;
}
.sec-consulting .consulting-header {
    margin-bottom: 40px; max-width: 600px;
}
.sec-consulting .consulting-list { margin-bottom: 40px; }
.sec-consulting .consulting-item {
    display: flex; align-items: flex-start; margin-bottom: 25px;
}
.sec-consulting .consulting-icon {
    color: var(--tmc-green-accent);
    font-size: 1.25rem; margin-right: 15px; margin-top: 4px;
}
.sec-consulting .consulting-text {
    font-size: 1.15rem; line-height: 1.6; color: #000;
}
.sec-consulting .consulting-img img{
    width: 100%; height: 100%; min-height: 400px;
	object-fit:cover;
    background-color: #999; border-radius: 12px;
}
.sec-consulting .btn-contact{
    background-color: var(--tmc-blue-primary);
    color: #fff;
    padding: 12px 35px;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--tmc-font-heading);
    margin-top: 20px;
    display: inline-block;
    border: none;
    transition: 0.3s;
}

/* =========================================
   10. Global Asset Allocation Section (NEW)
   ========================================= */
.sec-global-asset {
    background-color: #fff;
}


.sec-global-asset .content-col {
    background-color: #051b44;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%; 
}

.sec-global-asset .content-wrapper {
    max-width: 600px; 
    width: 100%;
}

.sec-global-asset .global-title {
    color: #fff;
    font-size: 2.5rem; 
    margin-bottom: 50px;
    font-weight: 500;
}


.sec-global-asset .global-list {
    margin-bottom: 60px;
}

.sec-global-asset .global-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    color: #fff;
}

.sec-global-asset .icon-wrap {
    margin-right: 20px;
    margin-top: 2px;
    flex-shrink: 0; 
}

.sec-global-asset .icon-wrap i {
    font-size: 24px;
    color: #fff;
}

.sec-global-asset .text-wrap {
    font-size: 1.1rem; 
    line-height: 1.6;
    font-weight: 300;
}

.sec-global-asset .btn-global-outline {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    padding: 12px 35px;
    border-radius: 4px;
    font-family: var(--tmc-font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.sec-global-asset .btn-global-outline:hover {
    background-color: #fff;
    color: #051b44;
}


.sec-global-asset .image-col {
    background-color: #3a536b; 
    min-height: 600px; 
}

.sec-global-asset .global-img img{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}


/* =========================================
   11. Risk Management Section 
   ========================================= */
.sec-risk {
    padding: 100px 0 60px 0;
    background-color: #fff;
}

.sec-risk .risk-title {
    margin-bottom: 50px;
    color: #000;
	 font-size: 2.4rem;
}

.sec-risk .risk-card {
    display: flex;
    height: 260px; 
    border-radius: 12px;
    overflow: hidden;
    background-color: #fbfbfc;
}

.sec-risk .risk-img-wrap {
    width: 45%;
    background-color: #d9d9d9; 
    height: 100%;
	position:relative;
}

.sec-risk .risk-img-wrap img{
	max-width: 100%;
    object-fit: cover;
}


.sec-risk .risk-text-wrap {
    width: 60%;
    padding: 30px;
    background-color: #f3f3f3; 
    display: flex;
}

.sec-risk .risk-text-wrap p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.4;
    color: #000;
}

/* =========================================
   12. Strategic Cooperation Section
   ========================================= */
.sec-strategy {
    padding: 20px 0 0px 0;
    background-color: #fff;
}

.sec-strategy .strategy-img {
    width: 100%;
    height: 100%;
    min-height: 450px; 
    border-radius: 12px;
}

.sec-strategy .strategy-img img{
	border-radius: 12px;
	max-width:100%;
	object-fit:cover;
}

.sec-strategy .strategy-content {
    background-color: var(--tmc-cyan-bg);
    padding: 60px 60px;
    height: 100%;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sec-strategy .strategy-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.sec-strategy .strategy-list {
    margin-bottom: 40px;
}

.sec-strategy .strategy-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.sec-strategy .strategy-icon {
    color: var(--tmc-green-accent); 
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 4px;
    flex-shrink: 0;
}

.sec-strategy .strategy-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.sec-strategy .btn-strategy {
    background-color: var(--tmc-blue-primary);
    color: #fff;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start; 
    font-family: var(--tmc-font-heading);
    transition: 0.3s;
}

.sec-strategy .btn-strategy:hover {
    background-color: #1a3cb8;
    color: #fff;
}

.sec-strategy .stat-card-box {
    background-color: #F3F3F3;
    padding: 50px 20px;
    border-radius: 12px;
    height: 100%;
}

.sec-strategy .stat-label {
    display: block;
    font-size: 1rem;
    color: #000;
    margin-bottom: 40px;
}

.sec-strategy .stat-value {
    font-size: 2.8rem;
    font-weight: 600;
    color: #000;
    font-family: var(--tmc-font-heading);
    line-height: 1;
}

/* =========================================
   13. PrincipleX Quant System Section
   ========================================= */
.sec-quant {
    padding:100px 0px 120px 0;
    background-color: #fff;
}

.sec-quant .quant-title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    color: #000;
}

.sec-quant .quant-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.sec-quant .quant-text strong {
    font-weight: 700;
    color: #000;
}

.sec-quant .btn-quant {
    background-color: var(--tmc-blue-primary);
    color: #fff;
    padding: 12px 35px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    border: none;
    transition: 0.3s;
    font-family: var(--tmc-font-heading);
    margin-top: 20px;
}

.sec-quant .btn-quant:hover {
    background-color: #1a3cb8;
    color: #fff;
}

.sec-quant .quant-img {
    width: 100%;
    min-height: 400px;  
}

.sec-quant .quant-img img{
	border-radius: 12px;
	max-width:100%;
	object-fit:cover;
}


/* =========================================
   14. Consultant Team Section
   ========================================= */
.sec-team {
    padding: 100px 0;
    background-color: var(--tmc-cyan-bg); 
}

.sec-team .team-title {
    margin-bottom: 20px;
    color: #000;
}

.sec-team .team-sub {
    font-size: 1.1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
}

.sec-team .team-nav-btns {
    gap: 15px;
}

.sec-team .swiper-button-custom-prev,
.sec-team .swiper-button-custom-next {
    width: 50px;
    height: 50px;
    border: 1px solid var(--tmc-blue-primary);
    border-radius: 12px; 
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tmc-blue-primary);
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
}

.sec-team .swiper-button-custom-prev:hover,
.sec-team .swiper-button-custom-next:hover {
    background-color: var(--tmc-blue-primary);
    color: #fff;
}

.sec-team .team-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
	height:560px;
    padding: 20px 20px 60px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03); 
    transition: transform 0.3s;
}

.sec-team .team-card:hover {
    transform: translateY(-5px);
}

.sec-team .team-img-placeholder {
    width: 100%;
    height: 360px;
    background-color: #e0e0e0; 
    border-radius: 12px;
    margin-bottom: 25px;
}

.sec-team .team-img-placeholder img{
	border-radius: 12px;
	max-width:100%;
	object-fit:cover;	
}

.sec-team .team-info {
    text-align: center;
	padding-top:10px;
}

.sec-team .member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    font-family: var(--tmc-font-heading);
}

.sec-team .member-role {
    font-size:1.1rem;
    color: #000;
    margin-bottom: 0;
    line-height: 1.4;
}

/* =========================================
   15. Responsibility Section (NEW)
   ========================================= */
.sec-responsibility {
    padding: 120px 0;
    background-color: #fff;
}

.sec-responsibility .resp-subtitle {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    font-family: var(--tmc-font-heading);
}

.sec-responsibility .resp-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #000;
}

.sec-responsibility .resp-text {
    font-size: 1.15rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

.sec-responsibility .resp-link {
    font-size: 1.1rem;
    color: var(--tmc-blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
}

.sec-responsibility .resp-link i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: margin-left 0.2s;
}

.sec-responsibility .resp-link:hover i {
    margin-left: 12px;
}

.sec-responsibility .resp-img-placeholder {
    width: 100%;
    height: 450px;
}

.sec-responsibility .resp-img-placeholder img{
	border-radius: 12px;
	max-width:100%;
	object-fit:cover;	
}


/* =========================================
   16. Latest News Section 
   ========================================= */
.sec-news {
    padding: 80px 0 120px 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0; 
}

/* Header Area */
.sec-news .news-main-title {
    font-size: 2.25rem;
    margin-bottom: 10px;
    color: #000;
}

.sec-news .news-sub-title {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}

.sec-news .btn-all-news {
    font-size: 0.95rem;
    color: var(--tmc-blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
	gap:8px;
}

.sec-news .btn-all-news i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: margin-left 0.2s;
}

.sec-news .btn-all-news:hover i {
    margin-left: 12px;
}

/* Card Styles */
.sec-news .news-card {
    border-radius: 8px;
    padding: 40px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s;
	background-position:center center;
	background-repeat:no-repeat;
	background-size:cover;
}

.sec-news .news-card:hover {
    transform: translateY(-5px);
}

.sec-news .card-blue {
    background-color: #112e53; 
}

.sec-news .card-dark {
    background-color: #1f1f1f; 
}

.sec-news .news-tag {
    font-size: 12px;
    color: #ccc;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
}

.sec-news .news-title {
    font-size: 1.4rem;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: var(--tmc-font-heading);
}

.sec-news .news-date {
    font-size: 13px;
    color: #d0d0d0;
    margin-bottom: 15px;
}

.sec-news .news-link-underline {
    font-size: 13px;
    color: #fff;
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.sec-news .news-link-underline:hover {
    opacity: 1;
}



@media only screen and (max-width: 1024px) {
	.sec-promo .video-container {
	    height: 320px;
	}
	.sec-hero .hero-title {
		font-size: 2rem;
	}
	.sec-mission .mission-top-text{
		font-size:1rem;
	}
	.sec-mission .mission-main-text {
		font-size: 1.5rem;
	}
	.sec-mission .container{
		padding:0px 30px;
	}
	.sec-mission .btn-journey {
		padding: 15px 20px;
		font-size: 0.95rem;
	}
	.sec-promo .promo-title,
	.sec-founder .founder-name	{
		font-size: 2rem;
	}
	
	.sec-global-asset .image-col{
		min-height:inherit;
	}
}