/* =============================================================
   Action Research Department Widget — Premium UI/UX & Media (snippet-6505)
   ============================================================= */

@keyframes arPulseDot {
	0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1, 163, 104, 0.7); }
	70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(1, 163, 104, 0); }
	100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(1, 163, 104, 0); }
}

.ar-c5d6e7f8-wrapper {
	font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	color: #2d3748;
	padding: 20px 0 60px;
}

/* ── Hero Banner Section (Split Grid) ── */
.ar-c5d6e7f8-hero-box {
	background: linear-gradient(135deg, #003610 0%, #004a17 60%, #00240b 100%);
	border-radius: 24px;
	padding: 44px;
	color: #ffffff;
	box-shadow: 0 20px 50px rgba(0, 74, 23, 0.22);
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
}

.ar-c5d6e7f8-hero-grid {
	display: grid;
	grid-template-columns: 1.15fr 0.85fr;
	gap: 36px;
	align-items: center;
}

.ar-c5d6e7f8-hero-box::before {
	content: '';
	position: absolute;
	top: -100px;
	right: -100px;
	width: 350px;
	height: 350px;
	background: radial-gradient(circle, rgba(1, 163, 104, 0.25) 0%, transparent 70%);
	border-radius: 50%;
	pointer-events: none;
}

.ar-c5d6e7f8-hero-badge-pill {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #ffffff;
	padding: 7px 20px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
}

.ar-c5d6e7f8-pulse-dot {
	width: 8px;
	height: 8px;
	background-color: #01A368;
	border-radius: 50%;
	display: inline-block;
	animation: arPulseDot 2s infinite;
}

.ar-c5d6e7f8-hero-title {
	font-family: "Quicksand", sans-serif;
	font-size: 38px;
	font-weight: 800;
	color: #ffffff !important;
	line-height: 1.25;
	margin: 0 0 16px;
	letter-spacing: -0.5px;
}

.ar-c5d6e7f8-hero-highlight {
	background: linear-gradient(120deg, #6EE7B7 0%, #34D399 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.ar-c5d6e7f8-hero-lead {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.9) !important;
	margin: 0 0 24px;
}

/* Hero Media Column */
.ar-c5d6e7f8-hero-media-wrap {
	position: relative;
}

.ar-c5d6e7f8-hero-img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	border-radius: 20px;
	box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(255, 255, 255, 0.2);
	display: block;
}

.ar-c5d6e7f8-hero-img-badge {
	position: absolute;
	bottom: -16px;
	left: 20px;
	background: #004a17;
	color: #ffffff;
	font-size: 13px;
	font-weight: 700;
	padding: 8px 18px;
	border-radius: 30px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.2);
	display: flex;
	align-items: center;
	gap: 8px;
}

/* Hero Stats Bar */
.ar-c5d6e7f8-hero-stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
	gap: 12px;
	margin-bottom: 24px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ar-c5d6e7f8-stat-item {
	background: rgba(255, 255, 255, 0.06);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 12px;
	text-align: center;
}

.ar-c5d6e7f8-stat-num {
	font-size: 22px;
	font-weight: 800;
	color: #6EE7B7;
	margin-bottom: 2px;
}

.ar-c5d6e7f8-stat-label {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.85);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Glassmorphic Institute Card */
.ar-c5d6e7f8-institute-card {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(12px);
	border-left: 4px solid #f59e0b;
	border-radius: 14px;
	padding: 20px 24px;
	margin-top: 10px;
}

.ar-c5d6e7f8-institute-title {
	font-size: 18px;
	font-weight: 700;
	color: #f59e0b;
	margin: 0 0 6px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.ar-c5d6e7f8-institute-desc {
	font-size: 14px;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

/* ── Section Titles ── */
.ar-c5d6e7f8-section-header {
	text-align: center;
	max-width: 700px;
	margin: 60px auto 36px;
}

.ar-c5d6e7f8-section-pill {
	display: inline-block;
	background: rgba(0, 74, 23, 0.08);
	color: #004a17;
	font-size: 12px;
	font-weight: 800;
	padding: 4px 14px;
	border-radius: 20px;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.ar-c5d6e7f8-section-title {
	font-family: "Quicksand", sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #004a17;
	margin: 0 0 10px;
	letter-spacing: -0.4px;
}

.ar-c5d6e7f8-section-sub {
	font-size: 16px;
	color: #64748b;
	line-height: 1.6;
	margin: 0;
}

/* ── Cards Grid (Methodology & Principles) ── */
.ar-c5d6e7f8-cards-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 26px;
	margin-bottom: 50px;
}

.ar-c5d6e7f8-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 34px 30px;
	transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
	display: flex;
	flex-direction: column;
	position: relative;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	overflow: hidden;
}

.ar-c5d6e7f8-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #004a17 0%, #01A368 100%);
	opacity: 0;
	transition: opacity 0.35s ease;
}

.ar-c5d6e7f8-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 22px 45px rgba(0, 74, 23, 0.12);
	border-color: rgba(1, 163, 104, 0.3);
}

.ar-c5d6e7f8-card:hover::before {
	opacity: 1;
}

.ar-c5d6e7f8-card-icon-glow {
	width: 62px;
	height: 62px;
	background: linear-gradient(135deg, rgba(0, 74, 23, 0.08) 0%, rgba(1, 163, 104, 0.12) 100%);
	color: #004a17;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin-bottom: 24px;
	transition: all 0.35s ease;
}

.ar-c5d6e7f8-card:hover .ar-c5d6e7f8-card-icon-glow {
	background: linear-gradient(135deg, #004a17 0%, #01A368 100%);
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(0, 74, 23, 0.25);
}

.ar-c5d6e7f8-card-heading {
	font-size: 22px;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 14px;
}

.ar-c5d6e7f8-card-text {
	font-size: 15px;
	line-height: 1.75;
	color: #4a5568;
	margin: 0;
	flex-grow: 1;
}

.ar-c5d6e7f8-card-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #ecfdf5;
	color: #047857;
	border: 1px solid #a7f3d0;
	padding: 5px 14px;
	border-radius: 30px;
	font-size: 12px;
	font-weight: 700;
	margin-top: 22px;
	width: fit-content;
}

/* ── Principles Number Split Cards ── */
.ar-c5d6e7f8-principles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 26px;
	margin-bottom: 50px;
}

.ar-c5d6e7f8-principle-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 34px 30px;
	position: relative;
	transition: all 0.35s ease;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.ar-c5d6e7f8-principle-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 74, 23, 0.1);
	border-color: #01A368;
}

.ar-c5d6e7f8-principle-num {
	width: 44px;
	height: 44px;
	background: linear-gradient(135deg, #004a17 0%, #01A368 100%);
	color: #ffffff;
	font-size: 16px;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	box-shadow: 0 6px 14px rgba(0, 74, 23, 0.2);
}

.ar-c5d6e7f8-principle-title {
	font-size: 21px;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 12px;
}

.ar-c5d6e7f8-principle-desc {
	font-size: 15px;
	line-height: 1.7;
	color: #4a5568;
	margin: 0;
}

/* ── Key Tools Showcase ── */
.ar-c5d6e7f8-tools-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 22px;
	margin-bottom: 50px;
}

.ar-c5d6e7f8-tool-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 18px;
	padding: 30px 24px;
	text-align: center;
	transition: all 0.35s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.ar-c5d6e7f8-tool-card:hover {
	border-color: #01A368;
	box-shadow: 0 14px 32px rgba(1, 163, 104, 0.16);
	transform: translateY(-6px);
}

.ar-c5d6e7f8-tool-icon-circle {
	width: 64px;
	height: 64px;
	background: #f0fdf4;
	color: #004a17;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	margin: 0 auto 16px;
	transition: all 0.3s ease;
}

.ar-c5d6e7f8-tool-card:hover .ar-c5d6e7f8-tool-icon-circle {
	background: #004a17;
	color: #ffffff;
	transform: scale(1.08);
}

.ar-c5d6e7f8-tool-name {
	font-size: 19px;
	font-weight: 700;
	color: #004a17;
	margin: 0 0 6px;
}

.ar-c5d6e7f8-tool-sub {
	font-size: 13px;
	color: #64748b;
	margin: 0;
	font-weight: 600;
}

/* ── Projects Grid Cards ── */
.ar-c5d6e7f8-projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 26px;
	margin-bottom: 60px;
}

.ar-c5d6e7f8-project-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 20px;
	padding: 32px;
	transition: all 0.35s ease;
	display: flex;
	flex-direction: column;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
}

.ar-c5d6e7f8-project-card:hover {
	box-shadow: 0 18px 42px rgba(0, 74, 23, 0.12);
	transform: translateY(-7px);
	border-color: #01A368;
}

.ar-c5d6e7f8-project-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 18px;
}

.ar-c5d6e7f8-partner-badge {
	background: #e6f4ea;
	color: #004a17;
	font-size: 12px;
	font-weight: 800;
	padding: 6px 16px;
	border-radius: 30px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.ar-c5d6e7f8-project-icon {
	font-size: 26px;
	color: #01A368;
}

.ar-c5d6e7f8-project-title {
	font-size: 21px;
	font-weight: 700;
	color: #1a202c;
	margin: 0 0 12px;
}

.ar-c5d6e7f8-project-desc {
	font-size: 15px;
	line-height: 1.75;
	color: #4a5568;
	margin: 0 0 20px;
	flex-grow: 1;
}

/* ── Impact Banner Showcase ── */
.ar-c5d6e7f8-impact-banner {
	background: linear-gradient(135deg, #003610 0%, #004a17 60%, #00220a 100%);
	border-radius: 24px;
	padding: 50px;
	color: #ffffff;
	box-shadow: 0 16px 45px rgba(0, 74, 23, 0.25);
	margin-bottom: 60px;
	position: relative;
	overflow: hidden;
}

.ar-c5d6e7f8-impact-banner::after {
	content: '“';
	position: absolute;
	right: 40px;
	bottom: -40px;
	font-size: 200px;
	color: rgba(255, 255, 255, 0.05);
	font-family: Georgia, serif;
	line-height: 1;
	pointer-events: none;
}

.ar-c5d6e7f8-impact-title {
	font-family: "Quicksand", sans-serif;
	font-size: 32px;
	font-weight: 800;
	color: #ffffff !important;
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.ar-c5d6e7f8-impact-desc {
	font-size: 17px;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.9) !important;
	margin: 0 0 24px;
}

.ar-c5d6e7f8-impact-bullets {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 16px;
}

.ar-c5d6e7f8-impact-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	font-weight: 600;
	color: #6EE7B7;
}

.ar-c5d6e7f8-impact-check {
	width: 24px;
	height: 24px;
	background: rgba(110, 231, 183, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
}

/* ── Call to Action Box ── */
.ar-c5d6e7f8-cta-box {
	text-align: center;
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 24px;
	padding: 50px 36px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
}

.ar-c5d6e7f8-cta-title {
	font-size: 28px;
	font-weight: 800;
	color: #004a17;
	margin: 0 0 12px;
}

.ar-c5d6e7f8-cta-sub {
	font-size: 16px;
	color: #64748b;
	max-width: 640px;
	margin: 0 auto 32px;
	line-height: 1.7;
}

.ar-c5d6e7f8-cta-btns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.ar-c5d6e7f8-btn-primary {
	background: linear-gradient(135deg, #004a17 0%, #01A368 100%);
	color: #ffffff !important;
	font-weight: 700;
	font-size: 15px;
	padding: 16px 38px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.35s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 6px 20px rgba(0, 74, 23, 0.25);
}

.ar-c5d6e7f8-btn-primary:hover {
	background: linear-gradient(135deg, #01A368 0%, #004a17 100%);
	color: #ffffff !important;
	transform: translateY(-3px);
	box-shadow: 0 10px 28px rgba(1, 163, 104, 0.4);
}

.ar-c5d6e7f8-btn-secondary {
	background: transparent;
	color: #004a17 !important;
	border: 2px solid #004a17;
	font-weight: 700;
	font-size: 15px;
	padding: 14px 36px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.35s ease;
	display: inline-flex;
	align-items: center;
	gap: 10px;
}

.ar-c5d6e7f8-btn-secondary:hover {
	background: rgba(0, 74, 23, 0.08);
	color: #004a17 !important;
	transform: translateY(-3px);
}

@media (max-width: 992px) {
	.ar-c5d6e7f8-hero-grid {
		grid-template-columns: 1fr;
	}
	.ar-c5d6e7f8-hero-media-wrap {
		margin-top: 20px;
	}
}

@media (max-width: 768px) {
	.ar-c5d6e7f8-hero-box {
		padding: 36px 24px;
	}
	.ar-c5d6e7f8-hero-title {
		font-size: 30px;
	}
	.ar-c5d6e7f8-impact-banner {
		padding: 34px 24px;
	}
}

/* ── Scroll-driven Entry Animations ── */
@media (prefers-reduced-motion: no-preference) {
	@supports ((animation-timeline: view()) and (animation-range: entry)) {
		@keyframes arFadeReveal {
			from {
				opacity: 0;
				transform: translateY(30px);
			}
			to {
				opacity: 1;
				transform: translateY(0);
			}
		}

		.ar-c5d6e7f8-section-header,
		.ar-c5d6e7f8-concept-card,
		.ar-c5d6e7f8-methodology-card,
		.ar-c5d6e7f8-principle-card,
		.ar-c5d6e7f8-impact-banner,
		.ar-c5d6e7f8-cta-box {
			animation: arFadeReveal auto linear backwards;
			animation-timeline: view();
			animation-range: entry 5% entry 35%;
		}
	}
}

