/* =========================================
   Partners Page Master CSS
   ========================================= */

/* 1. Hero Section */
.pp-hero {
    position: relative;
    height: 400px;
    background-color: #111;
	background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
}

.pp-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0);
}

.pp-hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pp-breadcrumb {
    position: absolute;
    top: 30px;
    left: 12px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.pp-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    margin-right: 5px;
}

.pp-breadcrumb span {
    margin-left: 5px;
    color: #fff;
}

.pp-hero-title {
    font-family: var(--tmc-font-heading);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 0;
    color: #fff;
}

/* 2. Common Section Styles */
.page-partners .pp-section {
    padding: 100px 0;
}

.page-partners .pp-section-header {
    margin-bottom: 60px;
}

.page-partners .pp-section-header h2 {
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 0;
}

.page-partners .pp-text-highlight {
    color: var(--tmc-blue-primary);
}

/* 3. Section: Quantitative Technology */
.page-partners .pp-sec-quant {
    background-color: #fff;
}

.page-partners .pp-card-quant {
    border: 1px solid #d3d3d3;
    padding: 40px 30px;
    height: 100%;
    transition: 0.3s;
    background: #fff;
}

.page-partners .pp-card-quant:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: transparent;
}

.page-partners .pp-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    line-height: 1.4;
    min-height: 48px;
}

.page-partners .pp-card-text {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 0;
}

/* 4. Section: Financial Institutions */
.page-partners .pp-sec-finance {
    background-color: #f7f8fa;
}

.page-partners .pp-card-finance {
    background-color: #fff;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: 4px;
    transition: 0.3s;
}

.page-partners .pp-card-finance:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* 5. Section: Academic Institutions */
.page-partners .pp-sec-academic {
    background-color: #051b44;
    color: #fff;
}

.page-partners .pp-sec-academic h2 {
    color: #fff;
}

.page-partners .pp-card-academic {
    background-color: #fff;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border-radius: 4px;
    transition: 0.3s;
    color: #1a1a1a;
}

.page-partners .pp-card-academic:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
}

/* 6. Section: Compliance */
.page-partners .pp-sec-compliance {
    background-color: #fff;
}

.page-partners .pp-card-compliance {
    background-color: #f9f9f9;
    padding: 40px 30px;
    height: 100%;
    border-radius: 4px;
    transition: 0.3s;
}

.page-partners .pp-card-compliance:hover {
    background-color: #f0f0f0;
}

/* =========================================
   PrincipleX Quant System Page Styles
   Namespace: .qs-
   ========================================= */

/* 1. Intro Section */
.qs-intro {
    padding: 100px 0;
    background-color: #f9f9fa;
}

.qs-intro-content {
    max-width: 900px;
}

.qs-intro-title {
    font-family: var(--tmc-font-heading);
    font-size: 2.4rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.qs-intro-text {
    font-family: var(--tmc-font-sans);
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* 2. Modules Section */
.qs-modules {
    padding: 120px 0;
	padding-bottom:180px;
    background-color: #fff;
}

.qs-module-row {
    margin-bottom: 60px;
}
.qs-module-row:last-child {
    margin-bottom: 0;
}

.qs-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px 60px; 
}

.order-lg-2 .qs-text-col {
    padding-right: 0;
    padding-left: 60px;
}

.qs-module-title {
    font-family: var(--tmc-font-heading);
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
}

.qs-feature-list {
    margin-bottom: 40px;
}

.qs-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}


.qs-feature-icon {
    flex-shrink: 0;
    width: 40px;
    font-size: 1.5rem;
    color: #000; 
    margin-right: 15px;
    margin-top: 2px;
}

.qs-feature-text {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
}

.qs-link {
    font-size: 0.9rem;
    color: var(--tmc-blue-primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
}

.qs-link i {
    margin-left: 8px;
    font-size: 0.8em;
    transition: margin-left 0.2s;
}

.qs-link:hover i {
    margin-left: 12px;
}

.qs-img-placeholder {
    width: 100%;
}

.qs-modules .qs-img-placeholder img{
	max-width:100%;
	border-radius: 12px;
	object-fit:cover;
}

@media (max-width: 991px) {
	.pp-hero {
		height: 210px;
	}
	.qs-intro,.qs-modules {
		padding: 60px 0;
	}
    .qs-module-row {
		padding: 0px 20px;
        margin-bottom: 60px;
    }
    
    .qs-text-col, 
    .order-lg-2 .qs-text-col {
        padding: 0;
        margin-bottom: 40px;
    }
	
	.qs-modules .col-lg-6{
        padding: 0!important;
    }
	
	.qs-module-title {
		font-size: 2rem;
	}
    
    .qs-img-placeholder {
        height: 300px;
    }
	
	
    
}


/* =========================================
   Online Classes Page Styles
   Namespace: .oc-
   ========================================= */

.oc-section {
    padding: 100px 0 160px 0px;
    background-color: #fff;
}

.oc-card {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.oc-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.oc-card-top {
    height: 240px;
    background-color: #e0f2fe; 
    width: 100%;
}

.oc-card-top img{
	max-width:100%;
	height:100%;
	object-fit:cover;
	border-radius: 12px;
}

.oc-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.oc-card-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 50px;
}

.oc-rating {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.oc-stars {
    color: var(--tmc-green-accent); 
    font-size: 0.9rem;
    margin-right: 10px;
}

.oc-stars i {
    margin-right: 2px;
}

.oc-score {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.oc-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
    color: #666;
}

.oc-meta-item {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.oc-meta-item i {
    margin-right: 8px;
    font-size: 1rem;
    color: #999;
}

.oc-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--tmc-green-accent);
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.oc-link i {
    margin-left: 8px;
    transition: margin-left 0.3s;
}

.oc-link:hover {
    color: #00a86b; 
}

.oc-link:hover i {
    margin-left: 12px;
}

/* =========================================
   Insights & Research Page Styles
   Namespace: .ir-
   ========================================= */

.ir-section {
    padding: 100px 0 160px 0px;
    background-color: #fff;
}

.ir-card {
    border: 1px solid #ddd;
    background-color: #fff;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ir-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: transparent;
}

.ir-card-img-wrap {
    height: 240px;
    width: 100%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.ir-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.ir-card:hover .ir-card-img {
    transform: scale(1.05);
}

.ir-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ir-card-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.4;
}

.ir-card-text {
    font-family: var(--tmc-font-sans);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ir-date {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--tmc-blue-primary);
    font-weight: 500;
}

@media (max-width: 991px) {
	
	
}


/* =========================================
   Class Details Page Styles
   Namespace: .cd-
   ========================================= */

/* Hero Section (Specific for Details Page) */
.cd-hero-section {
    background-color: var(--tmc-navy-bg); /* #001e36 */
    padding: 80px 0;
    color: #fff;
}

.cd-hero-img-placeholder {
    width: 100%;
    height: 320px;
    border-radius: 4px;
}

.cd-hero-img-placeholder img{
	max-width:100%;
	border-radius: 12px;
}

.cd-breadcrumb {
    margin-bottom: 20px;
}

.cd-breadcrumb a {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
    transition: 0.3s;
}

.cd-breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.cd-breadcrumb i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.cd-hero-title {
    font-family: var(--tmc-font-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cd-hero-desc {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: #cbd5e1; 
    margin-bottom: 25px;
    max-width: 90%;
}

.cd-rating-wrap {
    display: flex;
    align-items: center;
}

.cd-stars {
    color: var(--tmc-green-accent); 
    font-size: 1.1rem;
    margin-right: 10px;
}

.cd-stars i {
    margin-right: 3px;
}

.cd-info-section {
    padding: 50px 0 80px 0;
    background-color: #fff;
}

.cd-info-bar {
    background-color: #e0f2fe; 
    border-radius: 8px;
    padding: 25px 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cd-info-item {
    display: flex;
    align-items: center;
}

.cd-info-icon {
    font-size: 1.8rem;
    color: #334155;
    margin-right: 15px;
}

.cd-info-text {
    display: flex;
    flex-direction: column;
}

.cd-info-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 2px;
}

.cd-info-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
}

.cd-divider {
    width: 1px;
    height: 40px;
    background-color: #cbd5e1;
    display: none;
}

@media (min-width: 768px) {
    .cd-divider { display: block; }
}

.cd-action-wrap {
    text-align: center;
}

.cd-btn-register {
    background-color: var(--tmc-blue-primary);
    color: #fff;
    padding: 12px 50px;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
    font-family: var(--tmc-font-heading);
    font-size: 0.95rem;
}

.cd-btn-register:hover {
    background-color: #1a3cb8;
    color: #fff;
}

.cd-btn-register i {
    margin-right: 10px;
}

.cd-content-section {
    padding-bottom: 120px;
    background-color: #fff;
}

.cd-content-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.6rem;
    color: #000;
    margin-bottom: 30px;
    font-weight: 600;
}

.cd-content-text {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.cd-content-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.cd-content-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
}

.cd-content-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1.4;
}

/* =========================================
   Business & Service Architecture Page Styles
   Namespace: .bsa-
   ========================================= */

.bsa-section {
    padding: 100px 0;
    background-color: #fff;
}

.bsa-header {
    margin-bottom: 60px;
    max-width: 900px;
}

.bsa-title {
    font-family: var(--tmc-font-heading);
    color: #000;
    margin-bottom: 25px;
    line-height: 1.2;
}

.bsa-desc {
    font-family: var(--tmc-font-sans);
    font-size: 1.2rem;
    color: #000;
    line-height: 1.6;
    max-width: 800px;
}

.bsa-hero{
	padding-bottom:0px;
}

.bsa-solutions{
	 background-color: #f5f5f5;
	padding-top:80px;
}

.bsa-card {
    background-color: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 40px 30px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bsa-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}

.bsa-icon {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 25px;
}

.bsa-card-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 44px; 
}

.bsa-card-text {
    font-family: var(--tmc-font-sans);
    font-size: 0.85rem; 
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.bsa-sec-research {
    padding-top: 100px;
    padding-bottom: 100px;
}

.bsa-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.bsa-img-placeholder img{
	width:100%;
	object-fit:cover;
    border-radius: 12px;
}

.bsa-list {
    list-style: none;
    padding: 0;
}

.bsa-list-item {
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
}

.bsa-list-item::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -5px;
    color: var(--tmc-blue-primary);
    font-size: 1.5rem;
    font-weight: bold;
}

.bsa-item-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.bsa-item-text {
    font-family: var(--tmc-font-sans);
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
    display: block;
}


@media (max-width: 991px) {
    .bsa-img-placeholder {
        margin-bottom: 40px;
    }
}


/* =========================================
   Section 3: Wealth Management
   ========================================= */
.bsa-sec-wealth {
    padding-top: 100px;
    padding-bottom: 100px;
	border-top: 2px solid #E8F2FF;
    background-color: #fff;
}

.bsa-wealth-card {
    height: 100%;
    border: none;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.bsa-wealth-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.bsa-wealth-img {
    width: 100%;
}

.bsa-wealth-body {
    background-color: #f9f9fa; 
    padding: 30px 25px 60px 25px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start; 
}

.bsa-wealth-text {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 500;
}

.bsa-wealth-img img{
	width:100%;
	min-height:190px;
	object-fit:cover;
}


/* =========================================
   Section 4: AI System Empowerment
   ========================================= */
.bsa-sec-ai {
    padding: 100px 0;
    background-color: var(--tmc-navy-bg); /* #001e36 */
    color: #fff;
}

.bsa-ai-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.bsa-ai-title {
    font-family: var(--tmc-font-heading);
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.bsa-ai-desc {
    font-family: var(--tmc-font-sans);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.bsa-ai-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 35px 30px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    transition: 0.3s;
}

.bsa-ai-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.bsa-ai-content {
    padding-right: 20px;
}

.bsa-ai-card-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 54px; 
}

.bsa-ai-card-text {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.bsa-ai-icon {
    font-size: 2.5rem;
    color: #333;
    flex-shrink: 0;
    opacity: 0.8;
}

/* =========================================
   Section 5: Risk Management
   ========================================= */
.bsa-sec-risk {
    padding: 100px 0;
    background-color: #fff;
}

.bsa-risk-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.bsa-risk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bsa-risk-img {
    width: 100%;
}

.bsa-risk-img img{
	width:100%;
	object-fit:cover;
}


.bsa-risk-body {
    background-color: var(--tmc-navy-bg);
    padding: 30px 25px 60px 25px;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.bsa-risk-text {
    font-family: var(--tmc-font-sans);
    font-size: 1.15rem;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

/* =========================================
   Section 6: Cooperation Ecosystem
   ========================================= */
.bsa-sec-coop {
    padding: 120px 0 160px 0px;
    background-color: #fff;
    border-top: 2px solid #E8F2FF;
}

.bsa-coop-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.bsa-coop-title {
    font-family: var(--tmc-font-heading);
    font-size: 2.4rem;
    color: #000;
    line-height: 1.2;
    margin: 0;
    max-width: 600px;
}

.bsa-coop-desc {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    max-width: 450px;
    text-align: left;
}

.bsa-coop-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    background-color: #fff;
    display: flex;
    flex-direction: column;
}

.bsa-coop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.bsa-coop-img {
    width: 100%;
    margin: 25px 25px 0 25px; 
    width: calc(100% - 50px);
    border-radius: 4px;
}

.bsa-coop-img img{
	width:100%;
	object-fit:cover;
}

.bsa-coop-body {
    padding: 30px 25px 60px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bsa-coop-text {
    font-family: var(--tmc-font-sans);
    font-size: 1.05rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bsa-coop-link {
    font-size: 0.95rem;
    color: var(--tmc-blue-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.bsa-coop-link i {
    margin-left: 8px;
    font-size: 0.85rem;
    transition: margin-left 0.3s;
}

.bsa-coop-link:hover i {
    margin-left: 12px;
}

@media (min-width: 992px) {
    .bsa-coop-desc {
        text-align: left; 
    }
}

/* =========================================
   About Us Page Styles
   Namespace: .au-
   ========================================= */

/* 1. Intro Section */
.au-intro-section {
    padding: 100px 0;
    background-color: #fff;
}

.au-intro-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.au-intro-title {
    font-family: var(--tmc-font-heading);
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: 600;
    width: 30%;
}

.au-intro-text {
    width: 55%;
    font-family: var(--tmc-font-sans);
    font-size: 1.6rem;
    color: #333;
    line-height: 1.6;
}

.au-intro-text strong {
    font-weight: 700;
    color: #000;
}

.au-stats-section {
    padding: 0px 0;
}

.au-stats-section .col-md-4{
	padding:0px;
}

.au-stat-item {
    text-align: center;
    padding: 60px 0px;
}

.au-stat-value {
    font-family: var(--tmc-font-heading);
    font-size: 2.8rem;
    color: #000;
    margin-bottom: 10px;
    font-weight: 600;
}

.au-stat-label {
    font-family: var(--tmc-font-sans);
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 0;
}

.au-mission-section {
    padding: 100px 0 60px 0;
    background-color: #fff;
}

.au-mission-container {
    max-width: 800px;
    margin: 0 auto; 
    margin-left: 0; 
}

.au-mission-title {
    font-family: var(--tmc-font-heading);
    color: #000;
    margin-bottom: 40px;
}

.au-mission-text {
    font-family: var(--tmc-font-sans);
    font-size: 1.3rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
}

.au-text-underline {
    text-decoration: underline;
    text-decoration-color: #999;
    text-underline-offset: 4px;
    font-weight: 600;
    color: #000;
}

.au-who-section {
    padding: 60px 0 130px 0;
    background-color: #F9FAFB;
}

.au-who-subtitle {
    font-family: var(--tmc-font-heading);
    color: #000;
    margin-bottom: 30px;
}

.au-who-heading {
    font-family: var(--tmc-font-heading);
    font-size: 1.8rem;
	max-width:720px;
    font-weight: 600;
	line-height:1.3;
    color: #000;
    margin-bottom: 30px;
}

.au-who-text {
    font-family: var(--tmc-font-sans);
    font-size: 1.2rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 900px;
}

.au-who-text strong {
    font-weight: 700;
    color: #000;
}

.au-img-full {
    width: 100%;
    margin-top: 40px;
}

.au-img-full img{
    border-radius: 12px;
}


/* Responsive */
@media (max-width: 991px) {
    .au-intro-title, .au-intro-text {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .au-img-full {
       
    }
}

/* =========================================
   Section 5: Management Philosophy
   ========================================= */
.au-philo-section {
    padding: 100px 0;
    background-color: #fff;
}

.au-philo-main-title {
    font-family: var(--tmc-font-heading);
    color: #000;
    margin-bottom: 80px;
}

.au-philo-row {
    margin-bottom: 80px;
}

.au-philo-row:last-child {
    margin-bottom: 0;
}

.au-philo-text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px; 
}

.au-philo-text-box-gray {
    background-color: #f3f4f6; 
    padding: 50px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.au-philo-label {
    font-family: var(--tmc-font-sans);
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.au-philo-title {
    font-family: var(--tmc-font-heading);
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.au-philo-desc {
    font-family: var(--tmc-font-sans);
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.au-philo-desc:last-child {
    margin-bottom: 0;
}

/* Image Placeholder */
.au-philo-img {
    width: 100%;
}
.au-philo-img img{
    border-radius: 12px;
	width: 100%;
	object-fit:cover;
}


/* =========================================
   Section 6: Global Layout
   ========================================= */
.au-global-section {
    padding: 100px 0 120px 0;
    background-color: #fff;
    text-align: center;
}

.au-global-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.au-global-label {
    font-family: var(--tmc-font-sans);
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    display: block;
}

.au-global-title {
    font-family: var(--tmc-font-heading);
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 25px;
    font-weight: 600;
    line-height: 1.3;
}

.au-global-text {
    font-family: var(--tmc-font-sans);
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

.au-global-img-full {
    width: 100%;
}

.au-global-img-full img{
    width: 100%;
	object-fit:contain;
}

/* Responsive */
@media (max-width: 991px) {
	.pp-hero-title {
	    font-size: 2rem;
	}
	.bsa-coop-title {
	   font-size: 2rem;
	}
	.bsa-coop-title br{
		display:none;
	}
    .au-philo-text-col,
    .au-philo-text-box-gray {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .au-philo-img, 
    .au-global-img-full {
       
    }
    
	
}

.teamListPage .team-list{
	display: grid;
	 grid-template-columns: 1fr 1fr;
	 gap:30px;
	 padding:0px 30px;
}
.teamListPage .team-card{
	height:auto;
}

.teamListPage .team-img-placeholder {
    width: 100%;
    height: auto;
    background-color: #e0e0e0;
    border-radius: 12px;
    margin-bottom: 25px;
}

/* Responsive */
@media (max-width: 991px) {
	.teamListPage .team-list{
		 grid-template-columns: 1fr;
		 gap:30px;
	}
}

/* =========================================
   News Details Page Styles
   Namespace: .nd-
   ========================================= */

.nd-article-section {
    padding: 100px 0;
    background-color: #fff;
}

.nd-article-container {
    max-width: 900px;
    margin: 0 auto;
}

.nd-article-tag {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tmc-blue-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.nd-article-title {
    font-family: var(--tmc-font-TopHeading);
    font-size: 2.6rem;
    color: #000;
    line-height: 1.3;
    margin-bottom: 25px;
}

.nd-article-meta {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
    margin-bottom: 40px;
    font-family: var(--tmc-font-sans);
    font-size: 0.95rem;
    color: #666;
}

.nd-meta-date {
    margin-right: 30px;
    display: flex;
    align-items: center;
}

.nd-meta-date i {
    margin-right: 8px;
}

.nd-meta-share {
    margin-left: auto;
    display: flex;
    gap: 15px;
}

.nd-share-icon {
    color: #000;
    font-size: 1.1rem;
    transition: 0.3s;
}

.nd-share-icon:hover {
    color: var(--tmc-blue-primary);
}

.nd-featured-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 50px;
}

.nd-article-content {
    font-family: var(--tmc-font-sans);
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
}

.nd-article-content p {
    margin-bottom: 30px;
}

.nd-article-content h3 {
    font-family: var(--tmc-font-heading);
    font-size: 1.8rem;
    color: #000;
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: 700;
}

.nd-article-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
    list-style: disc;
}

.nd-article-content li {
    margin-bottom: 15px;
}

.nd-article-content blockquote {
    border-left: 4px solid var(--tmc-blue-primary);
    padding-left: 25px;
    margin: 40px 0;
    font-family: var(--tmc-font-TopHeading);
    font-style: italic;
    font-size: 1.4rem;
    color: #000;
    line-height: 1.5;
}

.nd-nav-links {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

.nd-nav-item {
    display: flex;
    flex-direction: column;
    max-width: 45%;
}

.nd-nav-label {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.nd-nav-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    transition: 0.3s;
}

.nd-nav-title:hover {
    color: var(--tmc-blue-primary);
}

.nd-related-section {
    padding: 100px 0;
    background-color: #f9f9fa;
}

.nd-related-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.nd-related-title {
    font-family: var(--tmc-font-heading);
    font-size: 2rem;
    color: #000;
    margin: 0;
}

.nd-card {
    background-color: #fff;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    border-radius: 4px;
    overflow: hidden;
}

.nd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.nd-card-img-wrap {
    height: 220px;
    overflow: hidden;
}

.nd-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.nd-card:hover .nd-card-img {
    transform: scale(1.05);
}

.nd-card-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.nd-card-title {
    font-family: var(--tmc-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
    line-height: 1.4;
}

.nd-card-text {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.nd-card-date {
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--tmc-blue-primary);
    font-weight: 600;
}
.nd-share-icon {
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;  
    height: 32px;
}