/**
 * JT Premium About Us widget styles.
 *
 * Extracted verbatim from the widget's own inline <style> block - entirely
 * static, including the --jt-au-primary/--jt-au-heading/--jt-au-text/
 * --jt-au-bg-light custom-property defaults (Elementor's own controls for
 * these colors set the same variables via {{WRAPPER}}, unaffected by this
 * move). Scoped by the widget's stable wrapper class
 * (.jt-about-us-wrapper, always present) instead of the per-instance
 * Elementor element ID.
 */

/* --- Scoped Variables & Base --- */
.jt-about-us-wrapper {
	--jt-au-primary: #0f172a;
	--jt-au-heading: #1e293b;
	--jt-au-text: #475569;
	--jt-au-bg-light: #f8fafc;
	width: 100%;
	overflow: hidden;
	font-family: inherit;
}

.jt-about-us-wrapper .jt-au-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- 1. Hero Intro --- */
.jt-about-us-wrapper .jt-au-hero {
	position: relative;
	width: 100%;
	padding: 100px 20px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	overflow: hidden;
	margin-bottom: 60px;
	background-color: var(--jt-au-bg-light);
}
.jt-about-us-wrapper .jt-au-hero-bg {
	position: absolute; inset: 0;
	background-size: cover; background-position: center;
	z-index: 1;
}
.jt-about-us-wrapper .jt-au-hero-overlay {
	position: absolute; inset: 0;
	background: rgba(15, 23, 42, 0.5); /* Soft dark overlay */
	z-index: 2;
}
.jt-about-us-wrapper .jt-au-hero-content {
	position: relative; z-index: 3;
	max-width: 700px;
	color: #ffffff;
}
.jt-about-us-wrapper .jt-au-label {
	font-size: 13px; font-weight: 600; text-transform: uppercase;
	letter-spacing: 1.5px; margin-bottom: 12px; display: block;
	color: rgba(255,255,255,0.9);
}
.jt-about-us-wrapper .jt-au-title {
	font-size: 34px; font-weight: 600; line-height: 1.25; margin: 0 0 16px 0;
	letter-spacing: -0.5px; color: #ffffff;
}
.jt-about-us-wrapper .jt-au-tagline {
	font-size: 15px; font-weight: 400; line-height: 1.6; margin: 0;
	color: rgba(255,255,255,0.85);
}

/* --- 2. About Block --- */
.jt-about-us-wrapper .jt-au-about-block {
	display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
	align-items: center; margin-bottom: 60px;
}
.jt-about-us-wrapper .jt-au-about-img {
	border-radius: 12px; overflow: hidden;
	box-shadow: 0 10px 40px rgba(0,0,0,0.04);
	aspect-ratio: 4/5; background: var(--jt-au-bg-light);
}
.jt-about-us-wrapper .jt-au-about-img img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	transition: transform 0.6s ease;
}
.jt-about-us-wrapper .jt-au-about-img:hover img {
	transform: scale(1.04);
}
.jt-about-us-wrapper .jt-au-heading {
	font-size: 28px; font-weight: 600; color: var(--jt-au-heading);
	margin: 0 0 20px 0; letter-spacing: -0.3px; line-height: 1.3;
}
.jt-about-us-wrapper .jt-au-desc p {
	font-size: 15px; line-height: 1.6; color: var(--jt-au-text);
	margin: 0 0 16px 0; font-weight: 400;
}
.jt-about-us-wrapper .jt-au-bullets {
	list-style: none; padding: 0; margin: 24px 0 30px 0;
	display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.jt-about-us-wrapper .jt-au-bullets li {
	font-size: 14px; font-weight: 500; color: var(--jt-au-heading);
	display: flex; align-items: center; gap: 8px;
}
.jt-about-us-wrapper .jt-au-bullets i {
	font-size: 12px; color: var(--jt-au-primary);
}
.jt-about-us-wrapper .jt-au-btn {
	display: inline-flex; align-items: center; justify-content: center;
	background: var(--jt-au-primary); color: #ffffff;
	padding: 12px 28px; border-radius: 10px; font-size: 14px; font-weight: 500;
	text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.jt-about-us-wrapper .jt-au-btn:hover {
	opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* --- 3. Stats Section --- */
.jt-about-us-wrapper .jt-au-stats-wrapper {
	background: transparent;
	padding: 0; margin-bottom: 60px;
}
.jt-about-us-wrapper .jt-au-stats-grid {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.jt-about-us-wrapper .jt-au-stat-item {
	display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px;
	background: #ffffff; border: 1px solid #f1f5f9; border-radius: 16px;
	padding: 30px 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	transition: all 0.3s ease;
}
.jt-about-us-wrapper .jt-au-stat-item:hover {
	transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06);
	border-color: #e2e8f0;
}
.jt-about-us-wrapper .jt-au-stat-num-wrap {
	color: var(--jt-au-heading); display: flex; align-items: baseline;
}
.jt-about-us-wrapper .jt-au-stat-num {
	font-size: 28px; font-weight: 600; line-height: 1; letter-spacing: -0.5px;
}
.jt-about-us-wrapper .jt-au-stat-suffix {
	font-size: 20px; font-weight: 600; margin-left: 2px;
}
.jt-about-us-wrapper .jt-au-stat-label {
	font-size: 13px; font-weight: 500; color: var(--jt-au-text);
}

/* --- 4. Features Section --- */
.jt-about-us-wrapper .jt-au-features-container {
	margin-bottom: 60px;
}
.jt-about-us-wrapper .jt-au-features-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.jt-about-us-wrapper .jt-au-feature-card {
	background: #ffffff; border: 1px solid #f1f5f9; border-radius: 12px;
	padding: 30px 24px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.02);
	transition: all 0.3s ease;
}
.jt-about-us-wrapper .jt-au-feature-card:hover {
	transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.06); border-color: #e2e8f0;
}
.jt-about-us-wrapper .jt-au-feat-icon {
	width: 44px; height: 44px; background: var(--jt-au-bg-light); color: var(--jt-au-primary);
	border-radius: 10px; display: inline-flex; align-items: center; justify-content: center;
	font-size: 18px; margin-bottom: 16px; transition: transform 0.3s ease;
}
.jt-about-us-wrapper .jt-au-feature-card:hover .jt-au-feat-icon {
	transform: scale(1.1) rotate(-5deg);
}
.jt-about-us-wrapper .jt-au-feat-title {
	font-size: 17px; font-weight: 600; color: var(--jt-au-heading); margin: 0 0 10px 0; line-height: 1.3;
}
.jt-about-us-wrapper .jt-au-feat-desc {
	font-size: 14px; line-height: 1.6; color: var(--jt-au-text); margin: 0; font-weight: 400;
}

/* --- 5. Vision Section --- */
.jt-about-us-wrapper .jt-au-vision-wrapper {
	background: var(--jt-au-bg-light); border-radius: 16px;
	padding: 60px 20px; text-align: center;
}
.jt-about-us-wrapper .jt-au-vision-content {
	max-width: 700px; margin: 0 auto;
}
.jt-about-us-wrapper .jt-au-vision-desc {
	font-size: 15px; line-height: 1.6; color: var(--jt-au-text); margin: 0;
}

/* --- Animations --- */
.jt-about-us-wrapper .jt-fade-in {
	opacity: 0; transform: translateY(25px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.jt-about-us-wrapper .jt-fade-in.visible,
.elementor-editor-active .jt-about-us-wrapper .jt-fade-in {
	opacity: 1; transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {
	.jt-about-us-wrapper .jt-au-about-block { gap: 40px; }
	.jt-about-us-wrapper .jt-au-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.jt-about-us-wrapper .jt-au-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.jt-about-us-wrapper .jt-au-hero { padding: 60px 20px; border-radius: 16px; margin-bottom: 40px; }
	.jt-about-us-wrapper .jt-au-title { font-size: 26px; }
	.jt-about-us-wrapper .jt-au-tagline { font-size: 14px; }

	.jt-about-us-wrapper .jt-au-about-block { grid-template-columns: 1fr; gap: 30px; margin-bottom: 40px; }
	.jt-about-us-wrapper .jt-au-about-img { aspect-ratio: 16/9; }
	.jt-about-us-wrapper .jt-au-heading { font-size: 24px; margin-bottom: 14px; }
	.jt-about-us-wrapper .jt-au-desc p { font-size: 14px; margin-bottom: 12px; }
	.jt-about-us-wrapper .jt-au-bullets { grid-template-columns: 1fr; gap: 10px; margin: 20px 0; }

	.jt-about-us-wrapper .jt-au-stats-wrapper { padding: 0; margin-bottom: 40px; }
	.jt-about-us-wrapper .jt-au-stat-num { font-size: 24px; }
	.jt-about-us-wrapper .jt-au-stat-item { padding: 20px; }

	.jt-about-us-wrapper .jt-au-features-grid { grid-template-columns: 1fr; }
	.jt-about-us-wrapper .jt-au-features-container { margin-bottom: 40px; }

	.jt-about-us-wrapper .jt-au-vision-wrapper { padding: 40px 20px; }
	.jt-about-us-wrapper .jt-au-vision-desc { font-size: 14px; }
}
