/**
 * Home Page Styles
 * 
 * Styles specific to the home page template
 * 
 * @package TabcomGroup
 */

/* ============================================
   FONT FACE - SF Pro Display
   ============================================ */
@font-face {
	font-family: 'SF Pro Display';
	src: local('SF Pro Display Heavy'), local('SFProDisplay-Heavy');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}

/* Fallback to system fonts if SF Pro not available */
.sf-pro-heavy,
.section-title,
.header-title,
h1, h2, h3,
.leader-card .name,
.cta-heading,
.stats-title,
.title-badge h1,
.title-badge h2,
.main-header h1,
.advantages-tabcom h2,
.advantages-tabcom h3 {
	font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	font-weight: 900;
}

/* ============================================
   UNIFIED SECTION TITLES
   ============================================ */
.unified-title {
	font-size: 46px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 3px;
	color: #fff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	text-align: center;
	margin-top: 0;
	margin-bottom: 60px;
}

/* Ecosystem section - has subtitle so less margin */
.ecosystem-circle .unified-title {
	margin-bottom: 15px;
}

/* Principles section */
.principles .unified-title {
	margin-bottom: 60px;
}

/* Core Values section header override */
.core-values-section-inner .section-header {
	margin-bottom: 50px;
}
.core-values-section-inner .section-header .unified-title {
	font-size: 46px;
	letter-spacing: 3px;
	margin-bottom: 15px;
}

/* Vision section title */
.vision-timeline .unified-title {
	margin-bottom: 60px;
}

@media (max-width: 768px) {
	.unified-title {
		font-size: 28px;
		letter-spacing: 2px;
		margin-bottom: 40px;
	}
	.core-values-section-inner .section-header .unified-title {
		font-size: 28px;
	}
	.ecosystem-circle .unified-title {
		margin-bottom: 10px;
	}
}

/* ============================================
   HOME PAGE CONTAINER
   ============================================ */

.home-page { position: relative; }
.home-content { position: relative; min-height: 100px; }
.home-content section { margin-top: 0; margin-bottom: 0; display: block !important; visibility: visible !important; }
.home-content > * { margin-bottom: 0; display: block !important; visibility: visible !important; }
.home-content > * + * { margin-top: 0; }

/* ============================================
   HERO SECTION (2 Column Layout)
   ============================================ */

/* Remove radial background glow for performance */
.home-page::before,
.home-page::after {
	display: none;
}

/* HERO BANNER - Full Width Layout */
.hero-banner {
	position: relative;
	padding: 0;
	background: linear-gradient(135deg, #f8faff 0%, #eef2ff 50%, #f0f4ff 100%);
	overflow: hidden;
	margin-top: 0;
}

.hero-banner::before {
	content: '';
	position: absolute;
	top: -50%;
	right: -20%;
	width: 80%;
	height: 150%;
	background: radial-gradient(circle, rgba(15, 46, 222, 0.08) 0%, transparent 60%);
	pointer-events: none;
}

.hero-banner__container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
	z-index: 1;
}

.hero-banner__slider {
	position: relative;
}

.hero-banner__slide {
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.8s ease-in-out;
	transition: opacity 0.8s ease-in-out;
}

.hero-banner__slide.active {
	display: flex;
	opacity: 1;
	-webkit-animation: heroFadeIn 0.8s ease-in-out;
	animation: heroFadeIn 0.8s ease-in-out;
}

@-webkit-keyframes heroFadeIn {
	0% { opacity: 0; -webkit-transform: scale(0.98); transform: scale(0.98); }
	100% { opacity: 1; -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes heroFadeIn {
	0% { opacity: 0; transform: scale(0.98); }
	100% { opacity: 1; transform: scale(1); }
}

/* Content Side - Hidden */
.hero-banner__content {
	display: none;
}

.hero-banner__badge {
	display: none;
}

.hero-banner__badge .badge-icon {
	font-size: 16px;
}

.hero-banner__title {
	display: none;
}

.hero-banner__title span {
	background: linear-gradient(135deg, #0F2EDE 0%, #3b5bff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-banner__subtitle {
	display: none;
}

.hero-banner__buttons {
	display: none;
}

.hero-banner__buttons .btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: linear-gradient(135deg, #0F2EDE 0%, #1a3ef0 100%);
	color: #fff;
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0 8px 25px rgba(15, 46, 222, 0.35);
	box-shadow: 0 8px 25px rgba(15, 46, 222, 0.35);
}

.hero-banner__buttons .btn-primary:hover {
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
	-webkit-box-shadow: 0 12px 35px rgba(15, 46, 222, 0.45);
	box-shadow: 0 12px 35px rgba(15, 46, 222, 0.45);
}

.hero-banner__buttons .btn-primary svg {
	-webkit-transition: transform 0.3s ease;
	transition: transform 0.3s ease;
}

.hero-banner__buttons .btn-primary:hover svg {
	-webkit-transform: translateX(5px);
	transform: translateX(5px);
}

.hero-banner__buttons .btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #fff;
	color: #0F2EDE;
	padding: 16px 32px;
	border-radius: 12px;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	border: 2px solid #0F2EDE;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.hero-banner__buttons .btn-secondary:hover {
	background: #0F2EDE;
	color: #fff;
	-webkit-transform: translateY(-3px);
	transform: translateY(-3px);
}

/* Stats Row - Hidden */
.hero-banner__stats {
	display: none;
}

.hero-banner__stats .stat-item {
	text-align: left;
	padding: 12px 0;
	border-left: 3px solid #0F2EDE;
	padding-left: 16px;
}

.hero-banner__stats .stat-number {
	display: block;
	font-size: 32px;
	font-weight: 800;
	color: #0F2EDE;
	line-height: 1.2;
}

.hero-banner__stats .stat-label {
	font-size: 14px;
	color: #6b7280;
	font-weight: 500;
	margin-top: 4px;
}

/* Image Side - Full Width */
.hero-banner__image {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

/* Ảnh full width, không giới hạn */
.hero-banner__image .hero-img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	position: relative;
	z-index: 2;
}

.hero-img-placeholder {
	width: 100%;
	max-width: 100%;
	height: 600px;
	background: linear-gradient(135deg, #e8edff 0%, #f0f4ff 100%);
	border: 3px dashed rgba(15, 46, 222, 0.35);
	border-radius: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: #0F2EDE;
	font-size: 20px;
	font-weight: 600;
	position: relative;
	z-index: 2;
}

.hero-img-placeholder .size-hint {
	font-size: 15px;
	font-weight: 400;
	color: #6b7280;
	margin-top: 10px;
}

/* Decorations */
.hero-banner__decoration {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 1;
}

.deco-circle {
	position: absolute;
	border-radius: 50%;
}

.deco-circle--1 {
	width: 300px;
	height: 300px;
	background: linear-gradient(135deg, rgba(15, 46, 222, 0.1) 0%, transparent 70%);
	top: -50px;
	right: -50px;
	-webkit-animation: float 6s ease-in-out infinite;
	animation: float 6s ease-in-out infinite;
}

.deco-circle--2 {
	width: 200px;
	height: 200px;
	background: linear-gradient(135deg, rgba(15, 46, 222, 0.08) 0%, transparent 70%);
	bottom: -30px;
	left: -30px;
	-webkit-animation: float 8s ease-in-out infinite reverse;
	animation: float 8s ease-in-out infinite reverse;
}

.deco-dots {
	position: absolute;
	top: 20%;
	right: 10%;
	width: 100px;
	height: 100px;
	background-image: radial-gradient(circle, rgba(15, 46, 222, 0.2) 2px, transparent 2px);
	background-size: 15px 15px;
}

@-webkit-keyframes float {
	0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
	50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

@keyframes float {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-20px); }
}

/* Arrows Navigation - Thay thế dots */
.hero-banner__dots {
	display: none;
}

.hero-banner__arrows {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: space-between;
	padding: 0 20px;
	pointer-events: none;
	z-index: 10;
}

.hero-banner__arrows .arrow {
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	pointer-events: auto;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	-webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-banner__arrows .arrow:hover {
	background: #0F2EDE;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

.hero-banner__arrows .arrow:hover svg {
	stroke: #fff;
}

.hero-banner__arrows .arrow svg {
	width: 24px;
	height: 24px;
	stroke: #0F2EDE;
	stroke-width: 2.5;
	fill: none;
	-webkit-transition: stroke 0.3s ease;
	transition: stroke 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
	.hero-banner {
		padding: 0;
	}
	
	.hero-banner__image .hero-img {
		max-width: 100%;
		border-radius: 0;
	}
	
	.hero-img-placeholder {
		max-width: 100%;
		height: 450px;
	}
}

@media (max-width: 768px) {
	.hero-banner {
		padding: 0;
	}
	
	.hero-banner__image .hero-img {
		border-radius: 0;
	}
	
	.hero-img-placeholder {
		height: 350px;
	}
	
	.deco-circle--1,
	.deco-circle--2,
	.deco-dots {
		display: none;
	}
}

@media (max-width: 480px) {
	.hero-banner__badge {
		font-size: 12px;
		padding: 6px 14px;
	}
	
	.hero-banner__title {
		font-size: 28px;
	}
	
	.hero-banner__stats .stat-number {
		font-size: 22px;
	}
	
	.hero-banner__stats .stat-label {
		font-size: 12px;
	}
	
	.hero-img-placeholder,
	.hero-banner__image .hero-img {
		min-height: 280px;
	}
}

/* Old hero-slider styles (kept for backward compatibility) */
.hero-slider {
	display: none;
}

@media (max-width: 768px) {
	.hero-slide {
		height: 360px;
	}
	.hero-slide__title {
		font-size: 26px;
	}
	.hero-slide__subtitle {
		font-size: 14px;
	}
}

/* ECOSYSTEM CIRCLE (SVG lines + positioned nodes) */
.ecosystem-circle {
	position: relative;
	padding: 80px 0 120px;
	background: #0F2EDE;
	overflow: hidden;
}

/* Decorative background elements */
.ecosystem-circle::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 800px;
	height: 800px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.ecosystem-circle::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 600px;
	height: 600px;
	border: 1px dashed rgba(255, 255, 255, 0.15);
	border-radius: 50%;
	pointer-events: none;
	animation: rotateOrbit 60s linear infinite;
}

@keyframes rotateOrbit {
	from { transform: translate(-50%, -50%) rotate(0deg); }
	to { transform: translate(-50%, -50%) rotate(360deg); }
}

.ecosystem-circle .shape-divider {
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 120px;
	pointer-events: none;
}

.ecosystem-circle .shape-divider svg {
	width: 100%;
	height: 100%;
	display: block;
}

/* Section Title */
.ecosystem-circle .section-title {
	text-align: center;
	color: #fff;
	margin-bottom: 15px;
}
.ecosystem-circle .section-title.unified-title {
	margin-bottom: 15px;
}

.ecosystem-circle .section-subtitle {
	text-align: center;
	color: rgba(255, 255, 255, 0.8);
	font-size: 18px;
	max-width: 600px;
	margin: 0 auto 50px;
	line-height: 1.6;
}

/* Diagram Container - Centered and balanced */
.diagram-container {
	position: relative;
	width: 100%;
	max-width: 800px;
	height: 600px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 2;
}

/* SVG Lines connecting nodes */
.lines-svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
}

.lines-svg line {
	stroke: rgba(255, 255, 255, 0.3);
	stroke-width: 2;
	stroke-dasharray: 10 6;
	animation: dashMove 25s linear infinite;
	filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

@keyframes dashMove {
	to {
		stroke-dashoffset: -100;
	}
}

/* Base Node Styles */
.node {
	position: absolute;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	cursor: pointer;
	overflow: visible;
	transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
	background: #ffffff;
}

/* Center Node - Main Logo */
.center-node {
	width: 200px;
	height: 200px;
	background: #ffffff;
	border: 4px solid rgba(15, 46, 222, 0.6);
	z-index: 5;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 0;
	overflow: hidden;
	box-shadow: 
		0 0 0 8px rgba(255, 255, 255, 0.15),
		0 0 0 16px rgba(15, 46, 222, 0.1),
		0 25px 60px rgba(0, 0, 0, 0.4),
		0 0 80px rgba(15, 46, 222, 0.25);
}

.center-node .center-logo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.center-node .see-more {
	position: absolute;
	bottom: 15px;
	left: 50%;
	transform: translateX(-50%);
	color: #0F2EDE;
	font-weight: 600;
	font-size: 16px;
	text-decoration: none;
	opacity: 0;
	transition: all 0.3s;
	letter-spacing: 0.5px;
	background: rgba(255, 255, 255, 0.9);
	padding: 6px 16px;
	border-radius: 12px;
}

.center-node:hover .see-more {
	opacity: 1;
	bottom: 20px;
}

/* Satellite Nodes */
.satellite {
	width: 130px;
	height: 130px;
	background: #ffffff;
	color: #333;
	z-index: 2;
	padding: 0;
	overflow: hidden;
	border: 3px solid rgba(255, 255, 255, 0.8);
	box-shadow: 
		0 15px 40px rgba(0, 0, 0, 0.3),
		0 0 0 4px rgba(15, 46, 222, 0.15);
}

.satellite img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
	transition: transform 0.3s ease;
}

.satellite .see-more {
	position: absolute;
	bottom: 8px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 14px;
	color: #0F2EDE;
	text-decoration: none;
	font-weight: 600;
	opacity: 0;
	transition: all 0.3s;
	letter-spacing: 0.3px;
	background: rgba(255, 255, 255, 0.9);
	padding: 5px 14px;
	border-radius: 10px;
	white-space: nowrap;
}

.satellite:hover .see-more {
	opacity: 1;
	bottom: 12px;
}

/* Satellite Positions - Perfect Pentagon Layout */
.pos-top {
	top: 3%;
	left: 50%;
	transform: translateX(-50%);
}

.pos-left {
	top: 35%;
	left: 8%;
}

.pos-right {
	top: 35%;
	right: 8%;
}

.pos-bot-left {
	bottom: 5%;
	left: 18%;
}

.pos-bot-right {
	bottom: 5%;
	right: 18%;
}

/* Hover Effects */
.satellite:not(.pos-top):hover {
	transform: scale(1.15);
	z-index: 10;
	border-color: rgba(15, 46, 222, 0.6);
	box-shadow: 
		0 20px 50px rgba(0, 0, 0, 0.4),
		0 0 0 6px rgba(15, 46, 222, 0.3),
		0 0 40px rgba(15, 46, 222, 0.25),
		inset 0 -3px 10px rgba(15, 46, 222, 0.05);
}

.satellite:not(.pos-top):hover img {
	transform: scale(1.05);
}

.satellite.pos-top:hover {
	transform: translateX(-50%) scale(1.15);
	z-index: 10;
	border-color: rgba(15, 46, 222, 0.6);
	box-shadow: 
		0 20px 50px rgba(0, 0, 0, 0.4),
		0 0 0 6px rgba(15, 46, 222, 0.3),
		0 0 40px rgba(15, 46, 222, 0.25),
		inset 0 -3px 10px rgba(15, 46, 222, 0.05);
}

.satellite.pos-top:hover img {
	transform: scale(1.05);
}

.center-node:hover {
	transform: translate(-50%, -50%) scale(1.08);
	z-index: 10;
	border-color: rgba(15, 46, 222, 0.8);
	box-shadow: 
		0 0 0 10px rgba(255, 255, 255, 0.2),
		0 0 0 20px rgba(15, 46, 222, 0.15),
		0 30px 70px rgba(0, 0, 0, 0.5),
		0 0 100px rgba(15, 46, 222, 0.35);
}

.center-node:hover .center-logo {
	transform: scale(1.05);
	transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
	.ecosystem-circle {
		padding: 100px 0 120px;
	}
	
	.diagram-container {
		max-width: 650px;
		height: 520px;
	}
	
	.center-node {
		width: 170px;
		height: 170px;
	}
	
	.satellite {
		width: 110px;
		height: 110px;
	}
	
	.ecosystem-circle::after {
		width: 480px;
		height: 480px;
	}
}

@media (max-width: 768px) {
	.ecosystem-circle {
		padding: 80px 0 100px;
	}
	
	.ecosystem-circle .section-title {
		font-size: 28px;
	}
	
	.ecosystem-circle .section-subtitle {
		font-size: 15px;
		padding: 0 20px;
	}
	
	.diagram-container {
		max-width: 100%;
		height: 450px;
		padding: 0 15px;
	}
	
	.center-node {
		width: 140px;
		height: 140px;
	}
	
	.satellite {
		width: 95px;
		height: 95px;
	}
	
	.satellite .see-more,
	.center-node .see-more {
		font-size: 9px;
		padding: 2px 8px;
	}
	
	.pos-left {
		left: 3%;
	}
	
	.pos-right {
		right: 3%;
	}
	
	.pos-bot-left {
		left: 10%;
	}
	
	.pos-bot-right {
		right: 10%;
	}
	
	.ecosystem-circle::before,
	.ecosystem-circle::after {
		display: none;
	}
}

@media (max-width: 480px) {
	.ecosystem-circle {
		padding: 60px 0 80px;
	}
	
	.diagram-container {
		height: 400px;
	}
	
	.center-node {
		width: 110px;
		height: 110px;
	}
	
	.satellite {
		width: 75px;
		height: 75px;
	}
	
	.satellite .see-more,
	.center-node .see-more {
		display: none;
	}
	
	.pos-top {
		top: 2%;
	}
	
	.pos-left {
		top: 32%;
		left: 2%;
	}
	
	.pos-right {
		top: 32%;
		right: 2%;
	}
	
	.pos-bot-left {
		bottom: 3%;
		left: 5%;
	}
	
	.pos-bot-right {
		bottom: 3%;
		right: 5%;
	}
}

/* PRINCIPLES */
.principles { padding: 80px 0 100px; background: #0F2EDE; color: #fff; text-align: center; margin-top: 0; border-radius: 0; position: relative; }
.principles .section-title { color: #fff; margin-bottom: 60px; }
.principles__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; }
.principle-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15); border-radius: 0; padding: 32px; text-align: left; color: #e8ecff; box-shadow: 0 16px 40px rgba(0,0,0,0.25); }
.principle-card h3 { color: #fff; margin-top: 0; font-size: 23px; margin-bottom: 14px; }
.principle-card p { font-size: 17px; line-height: 1.75; }

/* CORE VALUES HERO */
.core-values-hero { padding: 80px 0 80px; background: #0F2EDE; color: #fff; margin-bottom: 0; }
.core-values__header { text-align: center; margin-bottom: 60px; position: relative; }
.core-values__header .section-title { color: #fff; text-align: center; letter-spacing: 4px; font-size: 42px; font-weight: 800; text-transform: uppercase; text-shadow: 0 0 10px rgba(255,255,255,0.3), 0 0 20px rgba(50,100,255,0.3), 0 0 40px rgba(50,100,255,0.3); margin-bottom: 18px; }
.core-values__header::after { content: ''; display: block; width: 80px; height: 4px; background: linear-gradient(to right, #00c6ff, #0072ff); margin: 0 auto; border-radius: 2px; box-shadow: 0 0 10px rgba(0,114,255,0.7); }
.core-values-hero__grid { display: grid; grid-template-columns: repeat(3, minmax(240px, 1fr)); gap: 40px 30px; justify-items: center; }
.core-value-num { text-align: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 16px 40px rgba(0,0,0,0.25); color: #fff; padding: 32px 24px; border-radius: 16px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.core-value-num:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }
.core-value-num .num { 
	font-size: 110px; 
	font-weight: 900; 
	line-height: 1; 
	margin-bottom: 15px; 
	background: linear-gradient(to top, #0FDEC9 10%, #ffffff 50%); 
	-webkit-background-clip: text; 
	background-clip: text; 
	-webkit-text-fill-color: transparent; 
	color: transparent; 
	filter: drop-shadow(0 10px 15px rgba(0,0,0,0.5)); 
	letter-spacing: -3px;
	border: 3px solid;
	border-image: linear-gradient(to top, #0FDEC9 10%, #ffffff 50%) 1;
	border-radius: 12px;
	padding: 10px 15px;
	display: inline-block;
}

.core-value-num h4 { 
	margin: 0 0 12px; 
	font-size: 17px; 
	color: #e9ecff; 
	line-height: 1.55; 
	text-shadow: 0 2px 4px rgba(0,0,0,0.5);
	background: rgba(255,255,255,0.1);
	padding: 12px 16px;
	border-radius: 8px;
	border: 1px solid rgba(255,255,255,0.2);
}
.core-value-num .cta-more { font-size: 14px; color: #bdcdff; text-decoration: none; padding-bottom: 2px; transition: all 0.3s ease; display: inline-block; }
.core-value-num .cta-more:hover { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.8); }

/* VISION TIMELINE - Improved Layout */
.vision-timeline { 
	padding: 80px 0 100px; 
	background: #0F2EDE; 
	color: #fff; 
	position: relative; 
	margin-top: 0; 
}
/* Vision section title - uses unified-title class */
.vision-timeline .section-title.unified-title { 
	text-align: center; 
	margin-bottom: 60px; 
	color: #ffffff; 
	text-shadow: 0 0 12px rgba(255,255,255,0.4), 0 8px 24px rgba(0,0,0,0.5); 
}

.timeline-wrapper {
	width: 100%; 
	max-width: 1200px; 
	position: relative; 
	margin: 0 auto; 
	padding: 0 20px;
}

/* Horizontal line connecting all dots - positioned at center of markers */
.axis-line { 
	position: absolute; 
	bottom: 58px; 
	height: 3px; 
	background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0.3) 100%);
	z-index: 0; 
	left: 5%; 
	right: 0; 
	border-radius: 2px;
}
.axis-line::after { 
	content: ''; 
	position: absolute; 
	right: -12px; 
	top: 50%; 
	transform: translateY(-50%); 
	border-top: 10px solid transparent; 
	border-bottom: 10px solid transparent; 
	border-left: 14px solid #fff; 
}

.columns-container { 
	display: flex; 
	width: 100%; 
	align-items: flex-end;
	justify-content: space-between;
}
.col-item { 
	width: 23%; 
	padding: 0 10px; 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	position: relative; 
	z-index: 1; 
}
.info-box { 
	background: rgba(255,255,255,0.05); 
	border: 1px solid rgba(255,255,255,0.15); 
	border-radius: 12px; 
	padding: 24px 20px; 
	width: 100%; 
	min-height: 180px;
	display: flex; 
	align-items: center; 
	justify-content: center; 
	text-align: center; 
	font-size: 17px; 
	line-height: 1.7; 
	color: #f5f7ff; 
	box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
	transition: all 0.3s ease;
}
.info-box:hover { 
	transform: translateY(-8px); 
	background: rgba(255,255,255,0.1); 
	border-color: rgba(255,255,255,0.5);
	box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}
.connection-group { 
	display: flex; 
	flex-direction: column; 
	align-items: center; 
	margin-top: 20px; 
}
.connector { 
	width: 2px; 
	height: 30px; 
	background: linear-gradient(180deg, rgba(255,255,255,0.8) 0%, #fff 100%);
}
/* All markers have same height container for alignment */
.marker-wrapper { 
	height: 22px; 
	display: flex; 
	align-items: center; 
	justify-content: center; 
	padding: 0; 
	z-index: 2; 
}
.dot { 
	width: 22px; 
	height: 22px; 
	background: #fff; 
	border-radius: 50%; 
	box-shadow: 0 0 0 5px rgba(255,255,255,0.3), 0 0 20px rgba(255,255,255,0.5);
	transition: all 0.3s ease;
}
.col-item:hover .dot {
	transform: scale(1.2);
	box-shadow: 0 0 0 8px rgba(255,255,255,0.4), 0 0 30px rgba(255,255,255,0.7);
}
/* Logo circle - larger but centered on same line as dots */
.vision-timeline .logo-circle { 
	width: 50px; 
	height: 50px; 
	background: #fff; 
	border-radius: 50%; 
	display: flex; 
	justify-content: center; 
	align-items: center; 
	box-shadow: 0 0 0 5px rgba(255,255,255,0.3), 0 0 20px rgba(255,255,255,0.5);
	margin-top: -14px; /* Offset to align center with axis line */
}
.vision-timeline .logo-circle img { 
	width: 32px; 
	height: auto;
}
.year-label { 
	font-size: 24px; 
	font-weight: 900; 
	text-transform: uppercase; 
	margin-top: 12px; 
	color: #fff;
	text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
@media (max-width: 1024px) {
	.columns-container { flex-direction: column; align-items: center; }
	.col-item { width: 100%; max-width: 400px; flex-direction: column; margin-bottom: 40px; align-items: center; }
	.axis-line { display: none; }
	.connection-group { margin-top: 15px; }
	.connector { height: 20px; }
	.info-box { min-height: auto; }
}

/* LEADERSHIP */
.leadership { padding: 100px 0; background: #e3f1fa; }
.leadership .header-container { text-align: center; margin-bottom: 70px; position: relative; z-index: 10; }
.leadership .title-badge { display: inline-block; padding: 18px 90px; border-radius: 60px; background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%); border: 1px solid rgba(255,255,255,0.4); box-shadow: inset 0 4px 6px rgba(255,255,255,0.4), inset 0 -4px 6px rgba(0,0,0,0.2), 0 0 15px rgba(255,255,255,0.6), 0 10px 30px rgba(0,100,200,0.4); transition: transform 0.3s; }
.leadership .title-badge h2 { color: #fff; font-size: 32px; font-weight: 900; text-transform: uppercase; letter-spacing: 1.5px; margin: 0; text-shadow: 0 2px 4px rgba(0,0,0,0.3); }
.leadership .title-badge:hover { transform: translateY(-2px); box-shadow: inset 0 4px 8px rgba(255,255,255,0.5), 0 0 20px rgba(255,255,255,0.8), 0 15px 40px rgba(0,100,200,0.5); }
.leaders-wrapper { 
	width: 100%; 
	max-width: 1250px; 
	margin: 0 auto; 
	display: flex; 
	flex-direction: column; 
	gap: 80px; /* Tăng khoảng cách giữa hàng trên và hàng dưới */
	overflow: visible; /* Cho phép ảnh nổi ra ngoài */
	padding: 40px 0; /* Tăng padding để ảnh không bị cắt */
}
.leaders-row { 
	display: flex; 
	justify-content: center; 
	gap: 24px; 
	flex-wrap: wrap; 
	overflow: visible; /* Cho phép ảnh nổi ra ngoài */
}
.leader-card { 
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 60%, #060C3D 105%); 
	width: 340px; 
	height: 280px;
	border-radius: 12px; 
	position: relative; 
	overflow: visible;
	box-shadow: 0 10px 20px rgba(0,150,200,0.2); 
	transition: all 0.3s ease; 
	display: flex; 
	align-items: center; 
	padding-left: 25px; 
	color: #fff; 
	border: 1px solid rgba(255,255,255,0.3);
	cursor: pointer;
}

.leader-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,150,200,0.35); }

/* All cards same size - remove founder special styling */
.leader-card-founder {
	width: 340px;
	height: 280px;
}
.leader-card-founder .name {
	font-size: 28px; /* Chữ to hơn */
}
.leader-card-founder .role {
	font-size: 15px; /* Chữ role to hơn */
}
.leader-card-founder .card-info {
	width: 58%; /* Giảm width một chút để có khoảng cách với ảnh lớn hơn */
}
.leader-card .card-info { 
	z-index: 2; 
	width: 60%; 
	padding-right: 12px; /* Thêm padding để text không sát ảnh */
}
.leader-card .name { 
	font-size: 24px; 
	font-weight: 900; 
	margin-bottom: 8px; 
	letter-spacing: 0.5px;
	text-shadow: 0 2px 4px rgba(0,0,0,0.2);
	line-height: 1.2;
}
.leader-card .role { 
	font-size: 14px; 
	color: #e8f0ff; 
	margin-bottom: 25px; 
	min-height: 40px;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 0.3px;
}
/* Màu role cho Founder card */
.leader-card-founder .role {
	color: #00e5ff;
	font-weight: 600;
}
.leader-card .btn-more {
	display: inline-flex;
	align-items: center;
	background: rgba(255,255,255,0.25);
	border: 2px solid rgba(255,255,255,0.8);
	padding: 12px 20px;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	box-shadow: 0 6px 16px rgba(0,0,0,0.3), 0 2px 8px rgba(255,255,255,0.1);
}
.leader-card .btn-more:hover { 
	background: rgba(255,255,255,0.15); 
	border-color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.leader-card .btn-more .icon { 
	margin-right: 8px; 
	background: #fff; 
	color: #0066dd; 
	width: 18px; 
	height: 18px; 
	border-radius: 50%; 
	display: inline-flex; 
	justify-content: center; 
	align-items: center; 
	font-size: 12px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	padding-bottom: 1px;
}
.leader-card .leader-img { 
	position: absolute; 
	top: -40px; /* tràn lên trên */
	right: -22px; 
	bottom: auto; /* giữ đáy chạm khung: top + height = card height */
	width: 190px; 
	height: 320px; /* -40 + 320 = 280 (đáy trùng đáy card) */
	z-index: 1; 
	filter: drop-shadow(-8px 0 15px rgba(0,0,0,0.4));
	pointer-events: none;
}
.leader-card .leader-img .img-placeholder { width: 100%; height: 320px; border-radius: 0; border: none; }
.leader-card .leader-img .leader-photo { 
	width: 100%; 
	height: 320px; 
	object-fit: cover; 
	object-position: center top; /* Căn ảnh từ trên xuống để không bị cắt đầu */
	display: block; 
	border-radius: 0;
}
/* Founder card same size as regular cards */
.leader-card-founder {
	width: 340px;
	height: 280px;
}
.leader-card-founder .name { font-size: 28px; }
.leader-card-founder .role { font-size: 15px; }
.leader-card-founder .card-info { width: 58%; }
.leader-card-founder .leader-img {
	top: -40px;
	right: -22px;
	bottom: auto;
	width: 190px;
	height: 320px;
}
.leader-card-founder .leader-img .leader-photo {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: center top;
	display: block;
	border-radius: 0;
}
@media (max-width: 900px) {
	.leaders-wrapper {
		gap: 50px; /* Giảm khoảng cách trên mobile nhưng vẫn giãn */
		padding: 20px 0;
	}
	.leaders-row { flex-direction: column; align-items: center; }
	.leader-card { 
		width: 100%; 
		max-width: 380px; 
		height: 260px; /* Cao hơn để đủ chứa ảnh khi chỉ tràn lên trên */
	}
	.leader-card .name { font-size: 22px; }
	.leader-card .role { font-size: 13px; }
	.leader-card .leader-img { 
		width: 190px; 
		height: 300px; 
		top: -40px; /* -40 + 300 = 260 đáy trùng đáy card mobile */
		right: -18px;
	}
	.leader-card-founder {
		width: 100%;
		max-width: 440px;
		height: 280px;
	}
	.leader-card-founder .name {
		font-size: 26px;
	}
	.leader-card-founder .leader-img {
		width: 210px;
		top: -50px;
		bottom: 0;
		height: auto;
		right: -22px;
		overflow: hidden;
	}
	.leader-card-founder .leader-img .leader-photo {
		height: 100%;
		max-height: 330px;
	}
}

/* ----------------------------
   Section titles to white
----------------------------- */
.numbers-highlight .stats-title,
.projects-section .title-badge h1,
.projects-section .title-badge h2,
.feedback-section .title-badge h1,
.advantages-tabcom .section-header h2,
.services-tabcom .main-header h1,
.news-market__title h2 {
	color: #fff;
}
.news-market h2,
.news-market .news-header h2 { color: #fff !important; }

/* NUMBERS HIGHLIGHT - White background with gradient box */
.numbers-highlight { 
	padding: 80px 0; 
	background: #fff; 
	color: #fff; 
}
.numbers-highlight .stats-box { 
	width: 100%; 
	max-width: 1100px; 
	margin: 0 auto; 
	background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 90%); 
	border-radius: 20px; 
	padding: 60px 30px; 
	color: #fff; 
	box-shadow: 0 20px 50px rgba(0,27,230,0.3); 
	position: relative; 
	overflow: hidden; 
	border: none; 
}
.numbers-highlight .stats-title { 
	text-align: center; 
	font-size: 38px; 
	font-weight: 900; 
	text-transform: uppercase; 
	margin-bottom: 60px; 
	letter-spacing: 2px; 
	position: relative; 
	z-index: 1; 
	color: #fff;
	text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.numbers-highlight__grid,
.numbers-highlight .stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); row-gap: 50px; column-gap: 40px; position: relative; z-index: 1; }
.numbers-card,
.numbers-highlight .stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; background: none; border: none; box-shadow: none; padding: 0; }
.stat-number-wrapper { 
	font-size: 56px; 
	font-weight: 900; 
	line-height: 1.1; 
	margin-bottom: 12px; 
	background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #ffeb3b 100%); 
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-clip: text; 
	color: transparent; 
	display: flex; 
	align-items: baseline; 
	justify-content: center; 
}
.stat-number-wrapper .number,
.stat-number-wrapper .counter { font: inherit; }
.suffix { 
	font-size: 40px; 
	margin-left: 2px; 
	background: linear-gradient(135deg, #00d4ff 0%, #00ff88 50%, #ffeb3b 100%); 
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; 
	background-clip: text; 
}
.numbers-highlight .stat-label { 
	font-size: 16px; 
	font-weight: 600; 
	color: rgba(255,255,255,0.85); 
	text-transform: uppercase; 
	letter-spacing: 1px; 
}
@media (max-width: 768px) {
	.numbers-highlight .stats-grid { grid-template-columns: 1fr; row-gap: 50px; }
	.stat-number-wrapper { font-size: 48px; }
	.suffix { font-size: 36px; }
}

/* ADVANTAGES (old implementation, currently unused but kept) */
.advantages { padding: 80px 0; background: #f7f9ff; }
.advantages .section-title { text-align: center; font-size: 28px; font-weight: 800; margin-bottom: 28px; color: #0e28c5; }
.advantages__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; max-width: 780px; margin: 0 auto; }
.adv-card { background: #fff; border: 1px solid #e0e5f2; border-radius: 12px; padding: 18px 16px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); position: relative; }
.adv-card .badge { position: absolute; top: -12px; left: 16px; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #0e28c5, #6b75ff); color: #fff; font-weight: 800; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.adv-card h4 { margin: 8px 0 6px 0; font-size: 16px; color: #1a1a1a; }
.adv-card p { margin: 0; font-size: 14px; color: #4a4a4a; line-height: 1.5; }

/* ADVANTAGES TABCOM (new design from user) */
.advantages-tabcom { padding: 80px 0; background: linear-gradient(135deg, #001BE6 0%, #0038FF 50%, #0F2EDE 100%); }
.advantages-tabcom .advantage-section { max-width: 1000px; width: 100%; text-align: center; margin: 0 auto; }
.advantages-tabcom .section-header { background: linear-gradient(180deg, #0FDEC9 0%, #ffffff 30%); color: #0038FF; padding: 15px 40px; border-radius: 50px; display: inline-block; margin-bottom: 60px; box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4); position: relative; }
.advantages-tabcom .section-header h2 { margin: 0; text-transform: uppercase; font-size: 24px; font-weight: 800; letter-spacing: 0.5px; color: #0038FF; }
.advantages-tabcom .cards-container { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.advantages-tabcom .card { background: rgba(255, 255, 255, 0.95); border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 12px; padding: 40px 20px 30px 20px; position: relative; flex: 1; min-width: 250px; overflow: visible; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); }
.advantages-tabcom .number-badge { width: 70px; height: 70px; background: linear-gradient(135deg, #0FDEC9 0%, #0038FF 100%); color: #fff; font-size: 36px; font-weight: bold; border-radius: 50%; display: flex; align-items: center; justify-content: center; position: absolute; top: -35px; left: -20px; border: 4px solid rgba(255, 255, 255, 0.9); box-shadow: 0 4px 15px rgba(0, 56, 255, 0.3); }
.advantages-tabcom .card-content h3 { color: #0038FF; font-size: 18px; font-weight: 800; line-height: 1.4; margin: 0; padding-top: 10px; }

/* NEWS MARKET SECTION - Dark background override */
.news-market {
	background: linear-gradient(180deg, #0FDEC9 20%, #055DDC 100%) !important;
	padding: 60px 0 40px !important;
}

.news-market .news-header {
	background: #ffffff !important;
	color: #0038FF !important;
	padding: 12px 50px !important;
	border-radius: 50px !important;
	display: inline-block !important;
	margin-bottom: 50px !important;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.news-market .news-header h2 {
	margin: 0 !important;
	font-size: 22px !important;
	text-transform: uppercase !important;
	font-weight: 800 !important;
	letter-spacing: 0.5px !important;
	color: #0038FF !important;
}

.news-market .section-divider {
	border: 0 !important;
	height: 1px !important;
	background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0)) !important;
	margin: 60px auto 50px auto !important;
	width: 90% !important;
}
@media (max-width: 768px) {
	.advantages-tabcom .cards-container { flex-direction: column; padding-left: 15px; }
	.advantages-tabcom .section-header h2 { font-size: 18px; }
}

/* PROJECTS & FEEDBACK SECTION (featured projects) */
.projects-section { padding: 80px 0 40px; background: #f0f4f8; }
.projects-section .header-wrapper { margin-bottom: 30px; text-align: center; z-index: 10; width: 100%; }
.projects-section .title-badge { display: inline-block; padding: 15px 70px; border-radius: 50px; background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%); border: 1px solid rgba(255,255,255,0.4); box-shadow: 0 10px 25px rgba(0,20,150,0.5); color: #fff; text-transform: uppercase; }
.projects-section .title-badge h1,
.projects-section .title-badge h2 { font-size: 28px; font-weight: 900; letter-spacing: 1px; margin: 0; }
.projects-section .feedback-badge { background: linear-gradient(180deg, #ff4d4d 0%, #b30000 100%); box-shadow: 0 10px 25px rgba(150,0,0,0.4); }

/* Main Tabs */
.projects-section .main-tabs { display: flex; gap: 15px; margin-bottom: 20px; justify-content: center; flex-wrap: wrap; }
.projects-section .tab-btn { padding: 12px 40px; border-radius: 30px; background-color: #fff; border: 2px solid transparent; font-size: 16px; font-weight: 700; color: #555; cursor: pointer; transition: all 0.3s; box-shadow: 0 4px 6px rgba(0,0,0,0.05); }
.projects-section .tab-btn:hover { transform: translateY(-2px); color: #0038ff; }
.projects-section .tab-btn.active { background-color: #0038ff; color: #fff; box-shadow: 0 5px 15px rgba(0,56,255,0.3); }

/* Sub Tabs */
.sub-tabs-container { display: flex; gap: 10px; margin-bottom: 30px; justify-content: center; flex-wrap: wrap; }
.sub-tab-btn { padding: 8px 24px; border-radius: 20px; background-color: #e8ecf3; border: 1px solid #d0d5dd; font-size: 14px; font-weight: 600; color: #444; cursor: pointer; transition: all 0.3s; }
.sub-tab-btn:hover { background-color: #d0d8e8; }
.sub-tab-btn.active { background-color: #1034d6; color: #fff; border-color: #1034d6; }

/* Projects Grid - Masonry style for full size images */
.projects-wrapper { width: 100%; max-width: 1200px; padding: 20px; margin: 0 auto; }
.projects-grid-5x5 { 
	column-count: 5; 
	column-gap: 15px; 
	min-height: 200px; 
}
.project-img-card { 
	break-inside: avoid; 
	margin-bottom: 15px; 
	background: #fff; 
	border-radius: 12px; 
	overflow: hidden; 
	box-shadow: 0 4px 12px rgba(0,0,0,0.08); 
	transition: all 0.3s; 
	cursor: pointer; 
}
.project-img-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,56,255,0.2); }
.project-img-placeholder { width: 100%; height: 150px; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 12px; text-align: center; padding: 10px; }
.project-img-card img { width: 100%; height: auto; display: block; }
.empty-message { text-align: center; padding: 60px 20px; color: #666; }

/* Project Lightbox */
.project-lightbox { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; display: none; align-items: center; justify-content: center; }
.project-lightbox.active { display: flex; }
.project-lightbox__overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); }
.project-lightbox__content { position: relative; max-width: 90%; max-height: 90%; z-index: 1; }
.project-lightbox__content img { max-width: 100%; max-height: 85vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.project-lightbox__close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; transition: transform 0.3s; }
.project-lightbox__close:hover { transform: scale(1.2); }

/* Pagination */
.projects-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.page-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid #ddd; background: #fff; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.page-btn:hover { background: #e8ecf3; }
.page-btn.active { background: #0038ff; color: #fff; border-color: #0038ff; }

/* Feedback Grid */
.feedback-section { margin-top: 60px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.feedback-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; width: 100%; max-width: 1200px; padding: 20px; }
.feedback-card { background: #fff; border-radius: 15px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.1); border: 1px solid #eee; transition: all 0.3s; cursor: pointer; }
.feedback-card:hover { transform: translateY(-5px); box-shadow: 0 12px 35px rgba(0,0,0,0.15); }

/* Feedback Tabs */
.feedback-tabs-container {
	display: flex;
	justify-content: center;
	gap: 16px;
	margin: 30px 0;
}
.feedback-tab-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 32px;
	border: 2px solid #e0e0e0;
	border-radius: 50px;
	background: #fff;
	font-size: 16px;
	font-weight: 600;
	color: #333;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.feedback-tab-btn:hover {
	border-color: #0038ff;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,56,255,0.15);
}
.feedback-tab-btn.active {
	background: linear-gradient(135deg, #0038ff 0%, #00c6ff 100%);
	color: #fff;
	border-color: transparent;
	box-shadow: 0 8px 25px rgba(0,56,255,0.3);
}
.feedback-tab-icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
	border-radius: 6px;
}
.feedback-tab-btn.active .feedback-tab-icon {
	filter: brightness(0) invert(1);
}

/* Feedback Grid Wrapper */
.feedback-grid-wrapper,
.feedback-slider-wrapper {
	display: none;
	width: 100%;
	animation: fadeInUp 0.4s ease;
}
.feedback-grid-wrapper.active,
.feedback-slider-wrapper.active {
	display: block;
}
@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(20px); }
	to { opacity: 1; transform: translateY(0); }
}

/* Feedback Slider */
.feedback-slider {
	position: relative;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 70px;
	overflow: hidden;
}
.feedback-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	padding: 20px 10px;
	scroll-snap-type: x mandatory;
}
.feedback-track::-webkit-scrollbar {
	display: none;
}
.feedback-slide {
	flex: 0 0 auto;
	width: 300px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.15);
	cursor: pointer;
	transition: all 0.3s ease;
	scroll-snap-align: start;
	background: transparent;
}
.feedback-slide:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 0 15px 40px rgba(0,56,255,0.25);
}
.feedback-slide img {
	width: 100%;
	height: auto;
	display: block;
	background: transparent;
	border: none;
	padding: 0;
	margin: 0;
}
.fb-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: linear-gradient(135deg, #0038ff 0%, #00c6ff 100%);
	border: none;
	color: #fff;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 20px rgba(0,56,255,0.35);
	transition: all 0.3s ease;
}
.fb-nav:hover {
	transform: translateY(-50%) scale(1.1);
	box-shadow: 0 6px 25px rgba(0,56,255,0.5);
}
.fb-prev { left: 5px; }
.fb-next { right: 5px; }
.fb-nav .material-symbols-outlined {
	font-size: 28px;
}
.feedback-dots {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 20px;
}
.feedback-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #ccc;
	cursor: pointer;
	transition: all 0.3s;
}
.feedback-dot.active {
	background: #0038ff;
	transform: scale(1.2);
}

/* Feedback Compact Grid - Tiết kiệm diện tích */
.feedback-compact-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 12px;
	width: 100%;
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}
.feedback-thumb {
	position: relative;
	aspect-ratio: 1;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	background: #f0f0f0;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}
.feedback-thumb:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 30px rgba(0,56,255,0.2);
	z-index: 5;
}
.feedback-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.4s ease;
}
.feedback-thumb:hover img {
	transform: scale(1.1);
}
.feedback-thumb-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,56,255,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.feedback-thumb:hover .feedback-thumb-overlay {
	opacity: 1;
}
.feedback-thumb-overlay .material-symbols-outlined {
	font-size: 32px;
	color: #fff;
}

/* Feedback Lightbox */
.feedback-lightbox {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
}
.feedback-lightbox.active {
	display: flex;
}
.feedback-lightbox .fl-overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.92);
}
.feedback-lightbox .fl-close {
	position: absolute;
	top: 20px;
	right: 25px;
	background: none;
	border: none;
	color: #fff;
	font-size: 48px;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s;
	line-height: 1;
}
.feedback-lightbox .fl-close:hover {
	color: #ff6b6b;
	transform: scale(1.1);
}
.feedback-lightbox .fl-content {
	position: relative;
	z-index: 5;
	max-width: 90vw;
	max-height: 85vh;
}
.feedback-lightbox .fl-content img {
	max-width: 100%;
	max-height: 85vh;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.feedback-lightbox .fl-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	border-radius: 50%;
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}
.feedback-lightbox .fl-nav:hover {
	background: rgba(255,255,255,0.3);
	transform: translateY(-50%) scale(1.1);
}
.feedback-lightbox .fl-prev { left: 30px; }
.feedback-lightbox .fl-next { right: 30px; }
.feedback-lightbox .fl-nav .material-symbols-outlined {
	font-size: 32px;
}
.feedback-lightbox .fl-counter {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	background: rgba(0,0,0,0.5);
	padding: 8px 20px;
	border-radius: 20px;
	z-index: 10;
}

/* Feedback Masonry Grid (Ảnh thực) - Improved Layout */
.feedback-masonry-grid {
	column-count: 4;
	column-gap: 16px;
	width: 100%;
	max-width: 1200px;
	padding: 20px;
	margin: 0 auto;
}

.feedback-masonry-item {
	break-inside: avoid;
	margin-bottom: 16px;
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	cursor: pointer;
	background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid rgba(255, 255, 255, 0.8);
}

.feedback-masonry-item:hover {
	transform: translateY(-10px) scale(1.02);
	box-shadow: 0 20px 50px rgba(16, 52, 214, 0.25);
	z-index: 10;
}

.feedback-masonry-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-masonry-item:hover img {
	transform: scale(1.08);
}

.feedback-masonry-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 30%, rgba(0, 56, 255, 0.85) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.4s ease;
}

.feedback-masonry-item:hover .feedback-masonry-overlay {
	opacity: 1;
}

.feedback-masonry-overlay .material-symbols-outlined {
	font-size: 48px;
	color: #fff;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.feedback-masonry-item:hover .feedback-masonry-overlay .material-symbols-outlined {
	transform: scale(1);
}

.feedback-empty-msg {
	text-align: center;
	padding: 40px;
	color: #666;
	width: 100%;
}

.feedback-empty-msg code {
	background: rgba(16, 52, 214, 0.1);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 13px;
	color: #1034d6;
}

/* Feedback Masonry Lightbox */
.feedback-masonry-lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 99999;
	justify-content: center;
	align-items: center;
	pointer-events: none;
}

.feedback-masonry-lightbox.active {
	display: flex;
	pointer-events: auto;
}

.feedback-masonry-lightbox .fml-content {
	max-width: 90%;
	max-height: 90%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.feedback-masonry-lightbox .fml-content img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feedback-masonry-lightbox .fml-close {
	position: absolute;
	top: 20px;
	right: 30px;
	background: none;
	border: none;
	color: #fff;
	font-size: 48px;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
	line-height: 1;
}

.feedback-masonry-lightbox .fml-close:hover {
	color: #ff6b6b;
	transform: scale(1.1);
}

.feedback-masonry-lightbox .fml-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.1);
	border: none;
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.feedback-masonry-lightbox .fml-nav:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-50%) scale(1.1);
}

.feedback-masonry-lightbox .fml-prev {
	left: 30px;
}

.feedback-masonry-lightbox .fml-next {
	right: 30px;
}

.feedback-masonry-lightbox .fml-nav .material-symbols-outlined {
	font-size: 32px;
}

@media (max-width: 768px) {
	.feedback-masonry-lightbox .fml-nav {
		width: 44px;
		height: 44px;
	}
	
	.feedback-masonry-lightbox .fml-prev {
		left: 10px;
	}
	
	.feedback-masonry-lightbox .fml-next {
		right: 10px;
	}
	
	.feedback-masonry-lightbox .fml-close {
		top: 10px;
		right: 15px;
		font-size: 36px;
	}
}

.feedback-card .fb-media { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #f0f0f0; }
.feedback-card .video-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 32px; cursor: pointer; }
.fb-info { padding: 15px; }
.fb-name { font-weight: bold; font-size: 16px; color: #000839; margin-bottom: 5px; }
.fb-desc { font-size: 13px; color: #666; line-height: 1.4; font-style: italic; }

/* Feedback Zoom Modal */
.feedback-modal { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; justify-content: center; align-items: center; pointer-events: none; }
.feedback-modal.active { display: flex; pointer-events: auto; }
.feedback-modal__content { max-width: 90%; max-height: 90%; position: relative; }
.feedback-modal__content img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.feedback-modal__content video { max-width: 100%; max-height: 85vh; border-radius: 8px; }
.feedback-modal__close { position: absolute; top: -40px; right: 0; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; padding: 10px; }
.feedback-modal__close:hover { color: #ff6b6b; }

/* Empty message */
.empty-message { text-align: center; color: #666; font-style: italic; width: 100%; padding: 40px; background: rgba(255,255,255,0.5); border-radius: 10px; grid-column: 1 / -1; }
.feedback-empty-msg { text-align: center; color: #666; padding: 40px; grid-column: 1 / -1; }

/* Responsive */
@media (max-width: 1024px) {
	.projects-grid-5x5 { column-count: 4; }
	.feedback-grid { grid-template-columns: repeat(3, 1fr); }
	.feedback-masonry-grid { column-count: 3; }
	.feedback-compact-grid { grid-template-columns: repeat(4, 1fr); gap: 10px; }
	.feedback-slider { padding: 0 60px; }
	.feedback-slide { width: 260px; }
}
@media (max-width: 768px) {
	.projects-grid-5x5 { column-count: 3; }
	.feedback-grid { grid-template-columns: repeat(2, 1fr); }
	.feedback-masonry-grid { column-count: 2; column-gap: 12px; }
	.feedback-masonry-item { margin-bottom: 12px; border-radius: 12px; }
	.feedback-slider { padding: 0 50px; }
	.feedback-slide { width: 220px; }
	.fb-nav { width: 42px; height: 42px; }
	.fb-prev { left: 2px; }
	.fb-next { right: 2px; }
	.fb-nav .material-symbols-outlined { font-size: 24px; }
	.sub-tab-btn { padding: 6px 16px; font-size: 12px; }
	.feedback-compact-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 15px; }
	.feedback-thumb { border-radius: 8px; }
	.feedback-lightbox .fl-nav { width: 44px; height: 44px; }
	.feedback-lightbox .fl-prev { left: 15px; }
	.feedback-lightbox .fl-next { right: 15px; }
	.feedback-lightbox .fl-close { top: 15px; right: 15px; font-size: 36px; }
}
@media (max-width: 480px) {
	.projects-grid-5x5 { column-count: 2; }
	.feedback-grid { grid-template-columns: 1fr; }
	.feedback-masonry-grid { column-count: 1; }
	.feedback-compact-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; padding: 10px; }
	.feedback-thumb { border-radius: 6px; }
	.feedback-lightbox .fl-nav { width: 40px; height: 40px; }
	.feedback-lightbox .fl-prev { left: 10px; }
	.feedback-lightbox .fl-next { right: 10px; }
}

/* SERVICES TABCOM GROUP */
.services-tabcom { padding: 80px 0; background-color: #f3f5f9; color: #333; }
.services-tabcom .container { text-align: center; }
.services-tabcom .main-header { background: linear-gradient(180deg, #0FDEC9 0%, #001BE6 30%); color: #fff; padding: 15px 60px; border-radius: 50px; display: inline-block; margin-bottom: 30px; box-shadow: 0 5px 15px rgba(0,33,176,0.3); }
.services-tabcom .main-header h1 { margin: 0; font-size: 28px; text-transform: uppercase; font-weight: 800; }
.services-tabcom .tabs-container { display: flex; justify-content: center; gap: 20px; margin: 40px 0; flex-wrap: wrap; }
.services-tabcom .tabs-container .tab-btn { background-color: #fff; border: 1px solid #ddd; padding: 12px 40px; border-radius: 30px; cursor: pointer; font-weight: 600; font-size: 16px; transition: all 0.3s ease; min-width: 120px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
.services-tabcom .tabs-container .tab-btn:hover { background-color: #eef2ff; border-color: #1034d6; }
.services-tabcom .tabs-container .tab-btn.active { background-color: #1034d6; color: #fff; border-color: #1034d6; box-shadow: 0 4px 10px rgba(16,52,214,0.3); }
.services-tabcom .tab-content { display: none; animation: fadeIn 0.5s; }
.services-tabcom .tab-content.active { display: block; }
.services-tabcom .section-title { font-size: 24px; margin-bottom: 10px; color: #222; }
.services-tabcom .services-subtitle { font-size: 16px; color: #555; margin-bottom: 30px; }
.services-tabcom .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 25px; padding-bottom: 40px; }
.services-tabcom .service-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: none; position: relative; aspect-ratio: 16/9; display: block; text-decoration: none; }
.services-tabcom .service-card:hover { transform: none; box-shadow: 0 3px 12px rgba(0,0,0,0.12); }
.services-tabcom .card-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.services-tabcom .card-overlay { 
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: center;
	padding: 15px;
	opacity: 1;
	transition: none;
}

.services-tabcom .card-title {
	color: white;
	font-size: 15px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 8px;
	line-height: 1.2;
	text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
	word-wrap: break-word;
	hyphens: auto;
}

.services-tabcom .card-price {
	color: #FFD700 !important;
	font-size: 13px;
	font-weight: bold;
	margin: 3px 0 8px 0 !important;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.services-tabcom .card-buttons {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.services-tabcom .btn-register {
	background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
	color: white;
	padding: 6px 12px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	transition: all 0.2s ease;
	border: none;
	cursor: pointer;
	box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
	flex: 1;
	min-width: 70px;
	text-align: center;
	white-space: nowrap;
}

.services-tabcom .btn-register.btn-detail {
	background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
	box-shadow: 0 2px 6px rgba(74, 144, 226, 0.4);
}

.services-tabcom .btn-register:hover {
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(255, 107, 53, 0.5);
}

.services-tabcom .btn-register.btn-detail:hover {
	box-shadow: 0 3px 8px rgba(74, 144, 226, 0.5);
}
.services-tabcom .card-title { display: none; }
.services-tabcom .btn-register { display: none; }
.services-tabcom .course-group-title { text-align: left; font-size: 20px; color: #1034d6; margin-top: 40px; margin-bottom: 20px; border-left: 5px solid #1034d6; padding-left: 15px; font-weight: 900; }

@keyframes fadeIn {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
	.hero-slide { margin: 0 16px; }
	.diagram-container { width: 100%; height: 520px; transform: scale(0.7); margin-top: 60px; }
}

/* ============================================
   SECTION SPACING HELPERS
   ============================================ */

.home-content section + section {
	margin-top: 0;
}

/* Ensure proper spacing between sections */
.home-content .hero + .stats,
.home-content .stats + .services,
.home-content .services + .about,
.home-content .about + .he-sinh-thai,
.home-content .he-sinh-thai + .khoa-hoc-elearning,
.home-content .khoa-hoc-elearning + .testimonials,
.home-content .testimonials + .blog-list,
.home-content .blog-list + .cta {
	margin-top: 0;
}

/* ============================================
   HOME INFO SECTION (Default Message)
   ============================================ */

.home-info {
	padding: 60px 0;
}

.home-info ol {
	padding-left: 20px;
}

.home-info code {
	background: rgba(14, 40, 197, 0.1);
	padding: 2px 6px;
	border-radius: 4px;
	font-size: 13px;
	color: #0e28c5;
}

/* ============================================
   CTA WRAPPER (fallback section 10)
   ============================================ */

.section-divider {
	border: 0;
	height: 1px;
	background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
	margin: 80px auto;
	width: 80%;
}

/* Centered prominent divider used between gradient sections */
.section-divider-centered {
	display: block;
	margin: 50px auto;
	width: 60%;
	max-width: 900px;
	height: 6px;
	border: 0;
	background-image: linear-gradient(to right, rgba(255,255,255,0), rgba(255,255,255,0.9), rgba(255,255,255,0));
}

.cta-wrapper {
	padding: 0 20px;
	background: linear-gradient(135deg, #f0f4ff 0%, #e8f0ff 50%, #f8faff 100%);
	overflow: hidden;
	margin: 0;
	border-top: 1px solid rgba(15, 46, 222, 0.1);
}

.cta-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
	padding: 40px 0;
}

.cta-content {
	flex: 1;
	text-align: left;
	z-index: 2;
}

.cta-heading {
	font-size: 38px;
	font-weight: 800;
	line-height: 1.2;
	color: #000;
	margin-bottom: 25px;
}

.cta-desc {
	font-size: 16px;
	color: #555;
	line-height: 1.6;
	margin-bottom: 35px;
	max-width: 90%;
}

.cta-btn-group {
	display: inline-block;
	padding: 5px;
	border: 1px solid #ddd;
	border-radius: 8px;
	background: #fff;
}

.btn-contact-now {
	background: linear-gradient(90deg, #1034d6 0%, #001f9c 100%);
	color: #fff;
	text-decoration: none;
	padding: 12px 35px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 16px;
	display: inline-block;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(16, 52, 214, 0.3);
}

.btn-contact-now:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(16, 52, 214, 0.4);
}

.btn-contact-now:active {
	transform: translateY(1px);
}

.cta-image-block {
	flex: 1;
	display: flex;
	justify-content: center;
	position: relative;
}

.cta-glow-circle {
	display: none;
}

.cta-img-circle {
	width: 500px;
	height: auto;
	max-height: 550px;
	border-radius: 0;
	object-fit: contain;
	position: relative;
	z-index: 2;
	border: none;
	box-shadow: none;
	background: transparent;
	animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
	0% { transform: translateY(0px); }
	50% { transform: translateY(-15px); }
	100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
	0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
	50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.2; }
	100% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.5; }
}

@media (max-width: 992px) {
	.cta-container {
		flex-direction: column-reverse;
		text-align: center;
		gap: 30px;
		padding: 30px 0;
	}

	.cta-desc {
		margin: 0 auto 30px auto;
		max-width: 100%;
	}

	.cta-img-circle {
		width: 350px;
		height: auto;
		max-height: 400px;
	}

	.cta-heading {
		font-size: 28px;
	}
}

/* ============================================
   NEWS MARKET SECTION (Tin tức thị trường)
   ============================================ */

.news-market .news-card {
	background: #ffffff !important;
	border-radius: 16px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	padding: 20px;
	border: 2px solid rgba(5, 93, 220, 0.3);
	transition: all 0.3s ease;
}

.news-market .news-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
	border-color: rgba(5, 93, 220, 0.6);
}

.news-market .news-card:hover .news-thumb img {
	transform: scale(1.05);
}

.news-market .news-link:hover {
	text-decoration: underline;
}

.news-market .btn-view-all:hover {
	background-color: #1034d6;
	color: white;
	border-color: #1034d6;
}

/* Responsive for News Market */
@media (max-width: 768px) {
	.news-market .news-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 0 15px;
	}
	
	.news-market .news-card {
		padding: 16px;
		margin-bottom: 0;
	}
}


/* ============================================
   CORE VALUES POPUP MODAL
   ============================================ */

.core-value-modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	display: none !important;
	align-items: center;
	justify-content: center;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
}

.core-value-modal.active {
	display: flex !important;
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	-webkit-animation: modalFadeIn 0.3s ease;
	animation: modalFadeIn 0.3s ease;
}

@-webkit-keyframes modalFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes modalFadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

.core-value-modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(6, 12, 61, 0.85);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
}

.core-value-modal__content {
	position: relative;
	background: #fff;
	border-radius: 20px;
	max-width: 700px;
	width: 100%;
	max-height: 85vh;
	overflow-y: auto;
	padding: 40px;
	-webkit-box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
	-webkit-animation: modalSlideUp 0.4s ease;
	animation: modalSlideUp 0.4s ease;
}

@-webkit-keyframes modalSlideUp {
	from { opacity: 0; -webkit-transform: translateY(30px); transform: translateY(30px); }
	to { opacity: 1; -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes modalSlideUp {
	from { opacity: 0; transform: translateY(30px); }
	to { opacity: 1; transform: translateY(0); }
}

.core-value-modal__close {
	position: absolute;
	top: 15px;
	right: 20px;
	width: 40px;
	height: 40px;
	border: none;
	background: #f0f4f8;
	border-radius: 50%;
	font-size: 28px;
	color: #060C3D;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.core-value-modal__close:hover {
	background: #0F2EDE;
	color: #fff;
}

.core-value-modal__header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f4f8;
}

.core-value-modal__num {
	font-size: 60px;
	font-weight: 900;
	background: linear-gradient(135deg, #0F2EDE 0%, #3b5bff 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1;
}

.core-value-modal__title {
	font-size: 24px;
	font-weight: 700;
	color: #060C3D;
	margin: 0;
	line-height: 1.3;
}

.core-value-modal__body {
	font-size: 16px;
	line-height: 1.8;
	color: #4a5568;
}

.core-value-modal__body p {
	margin: 0 0 15px;
}

.core-value-modal__body ul {
	margin: 15px 0;
	padding-left: 20px;
}

.core-value-modal__body li {
	margin-bottom: 10px;
	position: relative;
}

.core-value-modal__body strong {
	color: #060C3D;
}

/* Make core value cards clickable */
.core-value-num[data-value-popup] {
	cursor: pointer;
	-webkit-transition: transform 0.3s ease, box-shadow 0.3s ease;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.core-value-num[data-value-popup]:hover {
	-webkit-transform: translateY(-8px);
	transform: translateY(-8px);
}

.core-value-num[data-value-popup] .cta-more {
	cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
	.core-value-modal__content {
		padding: 30px 20px;
		border-radius: 16px;
	}
	
	.core-value-modal__num {
		font-size: 48px;
	}
	
	.core-value-modal__title {
		font-size: 20px;
	}
	
	.core-value-modal__body {
		font-size: 15px;
	}
}

/* Ecosystem links styling */
a.node.satellite,
a.node.center-node {
	text-decoration: none;
	color: inherit;
}


/* ============================================
   FEEDBACK GALLERY SECTION (Masonry Layout)
   ============================================ */

.feedback-gallery-section {
	padding: 80px 0;
	background: #fff;
}

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

.feedback-title {
	font-size: 36px;
	font-weight: 900;
	color: #1a1a1a;
	margin-bottom: 16px;
}

.feedback-subtitle {
	font-size: 16px;
	color: #64748b;
	max-width: 600px;
	margin: 0 auto;
}

/* Masonry Grid */
.feedback-masonry {
	column-count: 3;
	column-gap: 20px;
}

.feedback-item {
	break-inside: avoid;
	margin-bottom: 20px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	cursor: pointer;
	background: #f8f9fa;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feedback-item:hover {
	transform: translateY(-8px);
	box-shadow: 0 16px 40px rgba(16, 52, 214, 0.2);
}

.feedback-item img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.5s ease;
	object-fit: cover;
	background: transparent;
	border: none;
	outline: none;
}

.feedback-item:hover img {
	transform: scale(1.03);
}

.feedback-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 0%, rgba(16, 52, 214, 0.7) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.feedback-item:hover .feedback-overlay {
	opacity: 1;
}

.feedback-overlay .material-symbols-outlined {
	font-size: 48px;
	color: #fff;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.feedback-item:hover .feedback-overlay .material-symbols-outlined {
	transform: scale(1);
}

/* Border gradient effect */
.feedback-item::before {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 12px;
	padding: 2px;
	background: linear-gradient(135deg, #1034d6 0%, #4da3f7 50%, #001f9c 100%);
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	pointer-events: none;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 5;
}

.feedback-item:hover::before {
	opacity: 1;
}

.feedback-empty {
	text-align: center;
	padding: 60px 20px;
	color: #64748b;
}

.feedback-empty code {
	background: rgba(16, 52, 214, 0.1);
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 13px;
	color: #1034d6;
}

/* Feedback Lightbox */
.feedback-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.95);
	z-index: 99999;
	display: none;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.feedback-lightbox.active {
	display: flex;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.feedback-lightbox-content {
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feedback-lightbox-content img {
	max-width: 100%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	transform: scale(0.9);
	transition: transform 0.3s ease;
}

.feedback-lightbox.active .feedback-lightbox-content img {
	transform: scale(1);
}

.feedback-lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.feedback-lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: rotate(90deg);
}

.feedback-lightbox-close .material-symbols-outlined {
	font-size: 28px;
	color: #fff;
}

.feedback-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 56px;
	height: 56px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
}

.feedback-lightbox-nav:hover {
	background: rgba(255, 255, 255, 0.2);
	transform: translateY(-50%) scale(1.1);
}

.feedback-lightbox-nav .material-symbols-outlined {
	font-size: 32px;
	color: #fff;
}

.feedback-lightbox-prev {
	left: 20px;
}

.feedback-lightbox-next {
	right: 20px;
}

/* Responsive Masonry */
@media (max-width: 1024px) {
	.feedback-masonry {
		column-count: 2;
	}
}

@media (max-width: 768px) {
	.feedback-gallery-section {
		padding: 60px 0;
	}

	.feedback-title {
		font-size: 28px;
	}

	.feedback-masonry {
		column-count: 2;
		column-gap: 12px;
	}

	.feedback-item {
		margin-bottom: 12px;
		border-radius: 8px;
	}

	.feedback-lightbox-close {
		top: 12px;
		right: 12px;
		width: 40px;
		height: 40px;
	}

	.feedback-lightbox-nav {
		width: 44px;
		height: 44px;
	}

	.feedback-lightbox-prev {
		left: 10px;
	}

	.feedback-lightbox-next {
		right: 10px;
	}
}

@media (max-width: 480px) {
	.feedback-masonry {
		column-count: 1;
	}

	.feedback-title {
		font-size: 24px;
	}

	.feedback-overlay .material-symbols-outlined {
		font-size: 36px;
	}
}


/* ============================================
   HERO BANNER - FULL WIDTH SEPARATE FROM HEADER
   ============================================ */

/* Homepage specific - banner below header, full width */
.home-page .hero-banner {
	margin-top: 0;
	padding-top: 0;
	padding-bottom: 0;
	background: transparent;
	position: relative;
	z-index: 1;
}

.home-page .hero-banner::before {
	display: none;
}

.home-page .hero-banner__container {
	padding: 0;
}

.home-page .hero-banner__image {
	width: 100%;
}

.home-page .hero-banner__image .hero-img {
	width: 100%;
	max-width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 0;
}

/* ============================================
   SECTION: CHÚNG TÔI LÀ AI (About Us)
   ============================================ */

.about-us-section {
	padding: 140px 0 100px;
	background: transparent;
	position: relative;
}

.about-us-section .shape-divider {
	position: absolute;
	top: -2px;
	left: 0;
	width: 100%;
	height: 120px;
	pointer-events: none;
}

.about-us-section .shape-divider svg {
	width: 100%;
	height: 100%;
	display: block;
}

.about-us__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 80px;
	max-width: 1300px;
	margin: 0 auto;
	padding: 0 40px;
}

.about-us__image {
	width: 100%;
}

.about-us__image img {
	width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
	transition: transform 0.4s ease;
}

.about-us__image img:hover {
	transform: scale(1.02);
}

.about-us__content {
	padding: 20px 0;
}

.about-us__title {
	font-size: 46px;
	font-weight: 900;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 35px;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: relative;
}

.about-us__title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #05e196, #02f4f9);
	margin-top: 15px;
	border-radius: 2px;
}

.about-us__text {
	color: rgba(255, 255, 255, 0.95);
	font-size: 17px;
	line-height: 1.85;
}

.about-us__text p {
	margin-bottom: 22px;
}

.about-us__text p:last-child {
	margin-bottom: 0;
}

.about-us__slogan {
	margin-top: 30px;
	padding: 22px 28px;
	background: rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	border-left: 4px solid #05e196;
}

.about-us__slogan strong {
	color: #fff;
	font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
	.about-us-section {
		padding: 120px 0 80px;
	}
	
	.about-us__wrapper {
		grid-template-columns: 1fr;
		gap: 50px;
		padding: 0 30px;
	}
	
	.about-us__title {
		font-size: 38px;
		text-align: center;
	}
	
	.about-us__title::after {
		margin: 15px auto 0;
	}
	
	.about-us__text {
		text-align: center;
	}
	
	.about-us__title {
		font-size: 32px;
		text-align: center;
	}
	
	.about-us__text {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.about-us-section {
		padding: 60px 0;
	}
	
	.about-us__title {
		font-size: 28px;
	}
	
	.about-us__text {
		font-size: 15px;
	}
}

/* ============================================
   GRADIENT SECTIONS WRAPPER
   (From "Chúng tôi là ai" to "Tầm nhìn")
   ============================================ */

.gradient-sections-wrapper {
	background: linear-gradient(180deg, #0FDEC9 0%, #055DDC 70%);
	position: relative;
}

/* Override section backgrounds inside gradient wrapper */
.gradient-sections-wrapper .ecosystem-circle {
	background: transparent;
	padding-top: 80px;
}

.gradient-sections-wrapper .ecosystem-circle .shape-divider {
	display: none;
}

.gradient-sections-wrapper .ecosystem-circle::before,
.gradient-sections-wrapper .ecosystem-circle::after {
	display: none;
}

.gradient-sections-wrapper .principles {
	background: transparent;
	margin-top: 0;
	padding-top: 80px;
}

.gradient-sections-wrapper .core-values-hero {
	background: transparent;
}

/* Ensure text remains visible on gradient */
.gradient-sections-wrapper .section-title,
.gradient-sections-wrapper .section-subtitle,
.gradient-sections-wrapper h2,
.gradient-sections-wrapper h3,
.gradient-sections-wrapper p {
	color: #fff;
}

.gradient-sections-wrapper .principle-card {
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(255, 255, 255, 0.15);
}

.gradient-sections-wrapper .principle-card h3,
.gradient-sections-wrapper .principle-card p {
	color: #fff;
}


/* Vision Timeline inside gradient wrapper */
.gradient-sections-wrapper .vision-timeline {
	background: transparent;
}

.gradient-sections-wrapper .vision-timeline .section-title.unified-title {
	color: #fff;
}

.gradient-sections-wrapper .vision-timeline .info-box {
	background: rgba(255, 255, 255, 0.05);
	border-color: rgba(255, 255, 255, 0.15);
}

.gradient-sections-wrapper .vision-timeline .axis-line {
	background: linear-gradient(90deg, rgba(255,255,255,0.3) 0%, #fff 20%, #fff 80%, rgba(255,255,255,0.3) 100%);
}

/* ============================================
   ABOUT US SECTION - CHÚNG TÔI LÀ AI
   ============================================ */
.about-us-section {
	padding: 100px 0 60px;
	background: transparent;
}

.about-us__wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}

.about-us__image {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-us__image img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	border-radius: 16px;
	transition: transform 0.4s ease;
}

.about-us__image:hover img {
	transform: scale(1.03);
}

.about-us__content {
	padding: 20px 0;
}

.about-us__title {
	font-size: 42px;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	color: #fff;
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	position: relative;
}

.about-us__title::after {
	content: '';
	display: block;
	width: 80px;
	height: 4px;
	background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.5));
	margin-top: 15px;
	border-radius: 2px;
}

.about-us__text {
	color: #fff;
}

.about-us__text p {
	font-size: 17px;
	line-height: 1.8;
	margin-bottom: 18px;
	color: rgba(255, 255, 255, 0.95);
}

.about-us__text p:last-child {
	margin-bottom: 0;
}

.about-us__slogan {
	margin-top: 25px;
	padding: 20px 25px;
	background: rgba(255, 255, 255, 0.15);
	border-left: 4px solid #fff;
	border-radius: 0 12px 12px 0;
	font-size: 18px;
	color: #fff !important;
}

.about-us__slogan strong {
	color: #fff;
	font-weight: 700;
}

/* Gradient wrapper styles for about-us-section */
.gradient-sections-wrapper .about-us-section {
	background: transparent;
}

.gradient-sections-wrapper .about-us__title,
.gradient-sections-wrapper .about-us__text p,
.gradient-sections-wrapper .about-us__slogan,
.gradient-sections-wrapper .about-us__slogan strong {
	color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
	.about-us__wrapper {
		gap: 40px;
	}
	
	.about-us__title {
		font-size: 36px;
	}
	
	.about-us__text p {
		font-size: 16px;
	}
}

@media (max-width: 768px) {
	.about-us-section {
		padding: 80px 0 50px;
	}
	
	.about-us__wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.about-us__title {
		font-size: 30px;
		text-align: center;
	}
	
	.about-us__title::after {
		margin: 15px auto 0;
	}
	
	.about-us__text p {
		font-size: 15px;
		text-align: justify;
	}
	
	.about-us__slogan {
		font-size: 16px;
		padding: 15px 20px;
	}
}

@media (max-width: 480px) {
	.about-us-section {
		padding: 60px 0 40px;
	}
	
	.about-us__title {
		font-size: 26px;
	}
	
	.about-us__text p {
		font-size: 14px;
	}
}


/* ============================================
   SERVICES TABCOM - CARD PLACEHOLDER
   (Hiển thị khi không có ảnh khóa học)
   ============================================ */

.services-tabcom .card-placeholder {
	width: 100%;
	height: 100%;
	min-height: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #f0f4f8 0%, #e8eef5 100%);
	color: #637588;
	gap: 12px;
	border-radius: 15px;
	transition: all 0.3s ease;
}

.services-tabcom .service-card:hover .card-placeholder {
	background: linear-gradient(135deg, #e8eef5 0%, #dce5f0 100%);
}

.services-tabcom .card-placeholder .material-symbols-outlined {
	font-size: 48px;
	color: #0038FF;
}

.services-tabcom .card-placeholder span:last-child {
	font-size: 14px;
	font-weight: 600;
	text-align: center;
	padding: 0 15px;
	line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
	.services-tabcom .card-placeholder {
		min-height: 160px;
	}
	
	.services-tabcom .card-placeholder .material-symbols-outlined {
		font-size: 40px;
	}
	
	.services-tabcom .card-placeholder span:last-child {
		font-size: 13px;
	}
}

/* Responsive adjustments for course cards */
@media (max-width: 768px) {
	.services-tabcom .card-buttons {
		flex-direction: row;
		gap: 4px;
	}
	
	.services-tabcom .btn-register {
		flex: 1;
		min-width: 60px;
		font-size: 10px;
		padding: 5px 8px;
	}
	
	.services-tabcom .card-title {
		font-size: 13px;
		margin-bottom: 6px;
		line-height: 1.1;
	}
	
	.services-tabcom .card-price {
		font-size: 11px;
		margin: 2px 0 6px 0 !important;
	}
}

@media (max-width: 480px) {
	.services-tabcom .services-grid {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.services-tabcom .btn-register {
		font-size: 9px;
		padding: 4px 6px;
		border-radius: 15px;
	}
	
	.services-tabcom .card-title {
		font-size: 12px;
	}
}
/* Global font size improvements - minimum 16-17px */
body, p, div, span, li, td, th {
	font-size: 17px;
	line-height: 1.6;
}

/* Specific improvements for content areas */
.principles__grid .principle-card p,
.advantages-tabcom .card-content h3,
.services-tabcom .services-subtitle,
.news-card .news-title {
	font-size: 17px;
	line-height: 1.6;
}

/* Ensure all text content meets minimum size */
.container p,
.section p,
.card p,
.info-box,
.stats-label {
	font-size: 17px !important;
}

/* Leadership cards - ensure consistent styling */
.leader-card .name {
	font-size: 24px;
}

.leader-card .role {
	font-size: 16px;
}

/* Remove any remaining founder-specific styling */
.leader-card-founder .name {
	font-size: 24px;
}

.leader-card-founder .role {
	font-size: 16px;
	color: #e8f0ff;
	font-weight: 500;
}

.leader-card-founder .card-info {
	width: 60%;
}

.leader-card-founder .leader-img {
	width: 200px;
	height: 320px;
	top: -40px;
	right: -20px;
}