.map-container {
	border-radius: 16px;
	overflow: hidden;
	height: 400px;
}


/* Career card hover effects */
.career-card {
	transition: all 0.3s ease;
}

.career-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Benefit card styling */
.benefit-card {
	border-left: 4px solid transparent;
	transition: all 0.3s ease;
}

.benefit-card:hover {
	border-left-color: #2563eb;
}

/* Culture gallery */
.culture-gallery {
	display: grid;
	grid-template-columns: repeat(12, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap: 16px;
	height: 500px;
}

.gallery-item-1 {
	grid-column: 1 / 7;
	grid-row: 1 / 3;
}

.gallery-item-2 {
	grid-column: 7 / 10;
	grid-row: 1 / 2;
}

.gallery-item-3 {
	grid-column: 10 / 13;
	grid-row: 1 / 2;
}

.gallery-item-4 {
	grid-column: 1 / 4;
	grid-row: 3 / 5;
}

.gallery-item-5 {
	grid-column: 4 / 10;
	grid-row: 3 / 5;
}

.gallery-item-6 {
	grid-column: 10 / 13;
	grid-row: 2 / 5;
}

@media (max-width: 768px) {
	.culture-gallery {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(6, 200px);
		height: auto;
	}

	.gallery-item-1,
	.gallery-item-2,
	.gallery-item-3,
	.gallery-item-4,
	.gallery-item-5,
	.gallery-item-6 {
		grid-column: 1;
		grid-row: auto;
	}
}

/* Job filter buttons */
.filter-btn.active {
	background-color: #2563eb;
	color: white;
}


/* Media card hover effects */
.media-card {
	transition: all 0.3s ease;
}

.media-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Category filter buttons */
.filter-btn.active {
	background-color: #2563eb;
	color: white;
}


/* Video container aspect ratio */
.video-container {
	position: relative;
	padding-bottom: 56.25%;
	/* 16:9 aspect ratio */
	height: 0;
	overflow: hidden;
}

.video-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0.5rem;
}

/* Lightbox overlay */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
	opacity: 1;
	pointer-events: all;
}

.lightbox-content {
	max-width: 90%;
	max-height: 90%;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 20px;
	color: white;
	font-size: 2rem;
	cursor: pointer;
	z-index: 1001;
}

/* Document download cards */
.document-card {
	border-left: 4px solid transparent;
	transition: all 0.3s ease;
}

.document-card:hover {
	border-left-color: #2563eb;
	transform: translateX(5px);
}


/* Card hover effects */
.csr-card {
	transition: all 0.3s ease;
}

.csr-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Stats counter */
.stat-number {
	font-size: 3rem;
	font-weight: bold;
	background: linear-gradient(to right, #2563eb, #059669);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Impact section styling */
.impact-item {
	border-left: 4px solid transparent;
	transition: all 0.3s ease;
}

.impact-item:hover {
	border-left-color: #2563eb;
	transform: translateX(5px);
}

/* Timeline styling */
.timeline-item {
	position: relative;
	padding-left: 2.5rem;
}

.timeline-item:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #2563eb;
}

.timeline-item:after {
	content: '';
	position: absolute;
	left: 9px;
	top: 25px;
	width: 2px;
	height: calc(100% - 20px);
	background: #2563eb;
}

.timeline-item:last-child:after {
	display: none;
}