﻿/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   ABOUT â€” WHO WE ARE  (aw-*)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.aw-hero {
	position: relative;
	min-height: 65vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	color: #fff;
}

.aw-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	opacity: 0.3;
}

.aw-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(110deg, rgba(8, 30, 16, .88) 0%, rgba(15, 55, 30, .75) 50%, rgba(25, 70, 40, .6) 100%);
}

.aw-hero-inner {
	position: relative;
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	gap: 3rem;
	align-items: center;
}

.aw-hero-text h1 {
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	font-weight: 800;
	line-height: 1.2;
	margin: .75rem 0 1rem;
}

.aw-hero-text p {
	font-size: 1rem;
	line-height: 1.7;
	color: rgba(255, 255, 255, .85);
	max-width: 540px;
}

/* ── Circle badge decoration ────────────────────── */
.aw-hero-pillars {
	display: flex;
	justify-content: center;
	align-items: center;
}

.aw-circle-badge {
	position: relative;
	width: 320px;
	height: 320px;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Outer slowly-rotating dashed ring */
.aw-circle-badge::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px dashed rgba(255, 255, 255, .28);
	animation: aw-rotate 60s linear infinite;
}

/* Inner green-tinted filled ring with glow */
.aw-circle-badge::after {
	content: '';
	position: absolute;
	inset: 40px;
	border-radius: 50%;
	background: rgba(47, 125, 77, .35);
	border: 1px solid rgba(255, 255, 255, .18);
	box-shadow: 0 0 32px rgba(60, 200, 100, .30), inset 0 0 20px rgba(0, 0, 0, .15);
}

@keyframes aw-rotate {
	to {
		transform: rotate(360deg);
	}
}

/* Content is a child element — always sits above the pseudo-elements */
.aw-circle-badge-inner {
	position: relative;
	z-index: 1;
	width: 240px;
	height: 240px;
	border-radius: 50%;
	background: rgba(6, 28, 14, .60);
	border: 1.5px solid rgba(255, 255, 255, .20);
	backdrop-filter: blur(6px);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0;
}

.aw-pentagon-number {
	font-size: 5rem;
	font-weight: 900;
	line-height: 1;
	color: #fff;
	letter-spacing: -0.02em;
	margin-bottom: 0.25rem;
}

.aw-pentagon-label {
	text-align: center;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .75);
	line-height: 1.3;
}

/* ── Foundation Section ────────────────────────────── */
.aw-section {
	padding: 5rem 0;
}

.aw-section-title {
	font-size: clamp(1.5rem, 3vw, 2.2rem);
	font-weight: 800;
	text-align: center;
	margin-bottom: .5rem;
	color: var(--gray-900);
}

.aw-section-subtitle {
	text-align: center;
	color: var(--gray-700);
	font-size: .95rem;
	max-width: 700px;
	margin: 0 auto 2.5rem;
	line-height: 1.7;
}

.aw-foundation-grid {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 3rem;
	align-items: start;
}

.aw-foundation-img img {
	width: 100%;
	border-radius: 16px;
	aspect-ratio: 4/3;
	object-fit: cover;
	box-shadow: 0 20px 50px rgba(0, 0, 0, .1);
}

.aw-foundation-text h2 {
	font-size: 1.8rem;
	font-weight: 800;
	color: var(--gray-900);
	margin-bottom: 1rem;
}

.aw-foundation-text h3 {
	font-size: 1.2rem;
	font-weight: 700;
	color: var(--green-600);
	margin: 2rem 0 .75rem;
}

.aw-foundation-text p {
	font-size: .95rem;
	line-height: 1.8;
	color: var(--gray-700);
	margin-bottom: 1rem;
}

/* ── Global Impact — dark section with map ────────── */
.aw-impact {
	position: relative;
	background: #0d381c;
	/* Plain green background */
	padding: 8rem 0;
	overflow: hidden;
	max-width: 100%;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}


.aw-impact-content {
	position: relative;
	z-index: 2;
	text-align: center;
}

.aw-impact-eyebrow {
	font-size: .8rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--accent);
	margin-bottom: .5rem;
}

.aw-impact-content h2 {
	font-size: clamp(1.6rem, 3vw, 2.4rem);
	font-weight: 800;
	margin-bottom: 2.5rem;
	color: #fff;
}

.aw-impact-stats {
	display: flex;
	justify-content: center;
	gap: 4rem;
	flex-wrap: wrap;
}

.aw-stat {
	text-align: center;
	min-width: 140px;
}

.aw-stat-number {
	font-size: 3.5rem;
	font-weight: 900;
	color: var(--accent);
	line-height: 1;
}

.aw-stat span {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
}

.aw-stat p {
	font-size: .88rem;
	color: rgba(255, 255, 255, .75);
	margin-top: .4rem;
	line-height: 1.4;
}

.aw-stat p small {
	font-size: .75rem;
	color: rgba(255, 255, 255, .5);
}

/* ── History — Timeline Carousel ──────────────────── */
.aw-history {
	background: #f9faf9;
}

.aw-timeline-wrap {
	position: relative;
	overflow: hidden;
	margin-top: 2rem;
}

.aw-timeline-track {
	position: relative;
}

.aw-timeline-wrap .carousel-slide {
	display: none;
}

.aw-timeline-wrap .carousel-slide.is-active {
	display: block;
	animation: aw-fadeIn .4s ease;
}

@keyframes aw-fadeIn {
	from {
		opacity: 0;
		transform: translateX(20px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

.aw-timeline-wrap .carousel-controls {
	display: flex;
	justify-content: center;
	gap: 1rem;
	margin-top: 1.5rem;
}

.aw-timeline-wrap .carousel-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 2px solid var(--green-600);
	background: transparent;
	color: var(--green-600);
	font-size: 1.1rem;
	cursor: pointer;
	transition: background .2s, color .2s;
	display: flex;
	align-items: center;
	justify-content: center;
}

.aw-timeline-wrap .carousel-btn:hover {
	background: var(--green-600);
	color: #fff;
}

/* ── 7 Pillars Grid ───────────────────────────────── */
/* Use flex so the odd 7th card centres naturally */
.aw-pillars-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.aw-pillar {
	/* Each card takes a fixed fraction so rows of 4 fill evenly */
	flex: 0 0 calc(25% - 1.5rem * 3 / 4);
	min-width: 160px;
}

.aw-pillar {
	text-align: center;
	padding: 2rem 1rem;
	border-radius: 14px;
	border: 1.5px solid rgba(0, 0, 0, .06);
	background: #fff;
	transition: transform .25s ease, box-shadow .25s ease;
	box-sizing: border-box;
}

.aw-pillar:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.aw-pillar h4 {
	font-size: .92rem;
	font-weight: 700;
	color: var(--gray-900);
	margin-top: .75rem;
	line-height: 1.4;
}

.aw-pillar-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	border: 2px solid var(--gray-900);
	color: var(--gray-900);
	transition: border-color .2s, color .2s;
}

.aw-pillar-icon--green {
	border-color: var(--green-600);
	color: var(--green-600);
}

.aw-pillar-icon--blue {
	border-color: #2563eb;
	color: #2563eb;
}

.aw-pillar-icon--accent {
	border-color: var(--accent);
	background: rgba(237, 221, 83, .1);
	color: #b8a430;
}

/* Highlighted pillar (7th — Governance & Digitalization) */
.aw-pillar--highlight {
	border-color: var(--accent);
	background: linear-gradient(145deg, rgba(237, 221, 83, .08), rgba(237, 221, 83, .03));
	position: relative;
}

.aw-pillar-badge {
	display: inline-block;
	font-size: .68rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .06em;
	padding: .25rem .7rem;
	border-radius: 20px;
	background: var(--accent);
	color: var(--green-900);
	margin-top: .5rem;
}

/* ── Global Footprint — green section ──────────────── */
.aw-section--green {
	background: var(--section-light);
	color: #fff;
}

.aw-section--green .aw-section-title {
	color: #fff;
}

.aw-section--green .aw-section-subtitle {
	color: rgba(255, 255, 255, .85);
}

.aw-footprint-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 2rem;
}

.aw-footprint-card {
	border-radius: 14px;
	overflow: hidden;
	background: rgba(255, 255, 255, .1);
	border: 1px solid rgba(255, 255, 255, .15);
	transition: transform .25s ease, box-shadow .25s ease;
}

.aw-footprint-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
}

.aw-footprint-card img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	display: block;
}

.aw-footprint-card h4 {
	font-size: 1.05rem;
	font-weight: 700;
	color: #fff;
	padding: 1rem 1.25rem .25rem;
}

.aw-footprint-card p {
	font-size: .88rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, .8);
	padding: 0 1.25rem 1.25rem;
}

/* ── Who We Are — Responsive ──────────────────────── */
@media (max-width: 1024px) {
	.aw-pillar {
		flex: 0 0 calc(33.333% - 1.5rem * 2 / 3);
	}
}

@media (max-width: 900px) {
	.aw-hero-inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.aw-hero-text p {
		max-width: none;
		margin: 0 auto;
	}

	.aw-hero-pillars {
		margin-top: 2rem;
	}

	.aw-foundation-grid {
		grid-template-columns: 1fr;
	}

	.aw-impact-stats {
		gap: 2rem;
	}

	.aw-stat-number {
		font-size: 2.8rem;
	}

	.aw-footprint-grid {
		grid-template-columns: 1fr 1fr;
	}

	.aw-pillar {
		flex: 0 0 calc(50% - 1.5rem / 2);
	}
}

@media (max-width: 600px) {
	.aw-hero {
		min-height: auto;
		padding: 10rem 0 4rem;
	}

	.aw-hero-inner {
		gap: 2.5rem;
	}

	.aw-hero-text h1 {
		font-size: 1.5rem;
	}

	.aw-circle-badge {
		width: 320px;
		height: 320px;
	}

	.aw-circle-badge-inner {
		width: 230px;
		height: 230px;
	}

	.aw-pentagon-number {
		font-size: 4.5rem;
	}

	.aw-section {
		padding: 3.5rem 0;
	}

	.aw-impact {
		padding: 4.5rem 0;
	}



	.aw-impact-stats {
		flex-direction: column;
		gap: 1.5rem;
	}

	.aw-impact-content {
		width: 100%;
		padding: 0 1rem;
		box-sizing: border-box;
		position: relative;
		z-index: 5;
	}

	.aw-stat-number {
		font-size: 2.5rem;
	}

	.aw-footprint-grid {
		grid-template-columns: 1fr;
	}

	.aw-pillar {
		flex: 0 0 calc(50% - 1.5rem / 2);
	}

	.aw-foundation-text h2 {
		font-size: 1.4rem;
	}
}