/*About us*/
.unique-heading {
	font-size: 2.5rem;
	font-weight: bold;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 10px;
	position: relative;
	white-space: nowrap;
	font-family: 'Poppins', sans-serif;
}

.unique-heading::after {
	content: '';
	width: 50px;
	height: 3px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: -10px;
}

.columns1 {
	display: flex;
	justify-content: space-around;
	margin-top: 5px;
}

.column1 {
	flex: 1;
	padding: 50px 90px;
	margin: 10px 0;
	max-width: 30%;
	text-align: center;
	transition: background-color 0.3s ease, color 0.3s ease;
	box-sizing: border-box;
}

.column1:hover {
	background-color: #6D7833;
	color: white;
}

.column1:hover img {
	opacity: 0.7;
}

.column1 img {
	width: 100%;
	height: auto;
	transition: opacity 0.3s ease;
	margin-bottom: 20px;
	/* Add spacing between the image and text */
}

.column1 b {
	display: block;
	margin-top: 10px;
	/* Add spacing between the image and text */
}


.highlight-text {
	color: #6D7833;
	font-size: 20px;
	max-width: 100%;
	margin: 0 auto;
	line-height: 1.5;
	max-height: -3em;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: horizontal;
}

.single-line-text {
	white-space: wrap;
	overflow: hidden;
	display: block;
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 10px;
	margin-top: 50px;
	margin-left: 10px;
}

.single-line-text1 {
	white-space: wrap;
	overflow: hidden;
	display: block;
	font-size: 20px;
	 font-family: 'Poppins', sans-serif;
	margin-bottom: 10px;
	margin-top: 20px;
	margin-left: 10px;
}

.single-line-text2 {
	white-space: wrap;
	overflow: hidden;
	display: block;
	font-size: 20px;
	font-family: 'Poppins', sans-serif;
	margin-bottom: 10px;
	margin-top: 20px;
	margin-left: 10px;
}


/*Our Impact Journey*/

.roadmap-section {
	position: relative;
	width: 100%;
	height: 100vh;
	background: #f0f0f0;
	overflow: hidden;
	z-index: 1;
}

.world-map {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('images/worldmap.png') no-repeat center center;
	background-size: cover;
	opacity: 0.9;
	/* Adjust the opacity as needed */
	z-index: 1;
}

.road {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	transform: translate(-50%, -50%);
	animation: drawRoad 5s forwards;
	z-index: 2;
	/* Ensure the road is above the world map */
}

.milestones {
	position: absolute;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
	z-index: 3;
	/* Ensure the milestones are above the road and world map */
}

.milestone {
	position: absolute;
	width: 15%;
	display: grid;
	grid-template-columns: auto 1fr;
	grid-gap: 10px;
	align-items: center;
}

.milestone1 {
	top: 20%;
	left: 5%;
	width: 20%;
}

.milestone2 {
	top: 35%;
	left: 30%;
	width: 20%;
}

.milestone3 {
	top: 1%;
	left: 45%;
	width: 20%;
	grid-template-columns: 1fr auto;
	/* Content first, then circle */
}

.milestone4 {
	top: 30%;
	left: 75%;
	width: 20%;
}

.milestone5 {
	top: 70%;
	left: 5%;
	width: 20%;
}

.milestone6 {
	top: 70%;
	left: 50%;
	width: 20%;
}

.circle {
	width: 80px;
	height: 80px;
	background: white;
	border: 2px solid #333;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transform: scale(0);
	transition: transform 0.5s, opacity 0.5s;
	animation: appear 3s ease-in-out forwards;
}

.circle img {
	width: 100%;
	height: auto;
	border-radius: 50%;
}

.content {
	padding: 5px;
	border-radius: 5px;
	opacity: 0;
	transform: scale(0);
	transition: transform 0.5s, opacity 0.5s;
}

.circle.visible,
.content.visible {
	transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
	opacity: 1;
	transform: translateY(0);
}

.circle,
.content {
	opacity: 0;
	transform: translateY(20px);
}

/*p {
	margin: 0;
	font-size: 0.875rem;
}*/

@keyframes drawRoad {
	0% {
		stroke-dasharray: 0, 1000;
	}

	100% {
		stroke-dasharray: 1000, 0;
	}
}

.visible {
	opacity: 1 !important;
	transform: scale(1) !important;
}

/* For screens larger than 2400px */
@media (min-width: 2400px) {
	.unique-heading {
		font-size: 3rem;
	}
	.column1 {
		padding: 60px 100px;
		max-width: 25%;
	}
	.circle {
		width: 100px;
		height: 100px;
	}
}

/* For screens up to 2399px */
@media (max-width: 2399px) {
	.unique-heading {
		font-size: 2.8rem;
	}
	.column1 {
		padding: 50px 90px;
		max-width: 30%;
	}
	.circle {
		width: 90px;
		height: 90px;
	}
}

/* For screens up to 1919px */
@media (max-width: 1919px) {
	.unique-heading {
		font-size: 2.5rem;
	}
	.column1 {
		padding: 40px 80px;
		max-width: 35%;
	}
	.circle {
		width: 80px;
		height: 80px;
	}
}

/* For screens up to 1599px */
@media (max-width: 1599px) {
	.column1 {
		padding: 30px 70px;
		max-width: 40%;
	}
	.circle {
		width: 70px;
		height: 70px;
	}
}

/* For screens up to 1199px */
@media (max-width: 1199px) {
	.column1 {
		padding: 20px 60px;
		max-width: 45%;
	}
	.milestone {
		width: 25%;
	}
	.circle {
		width: 60px;
		height: 60px;
	}
	.img-about {
		height: 400px;
	}
}

/* For screens up to 991px */
@media (max-width: 991px) {
	.columns1 {
		flex-direction: column;
	}
	.column1 {
		max-width: 90%;
		margin: 0 auto;
		padding: 20px 40px;
	}
	.milestone {
		width: 30%;
	}
	.circle {
		width: 50px;
		height: 50px;
	}
	.img-about {
		height: 300px;
	}
}

/* For screens up to 575px */
@media (max-width: 575px) {
	.unique-heading {
		font-size: 2rem;
	}
	.column1 {
		padding: 15px 30px;
	}
	.milestone {
		width: 40%;
	}
	.circle {
		width: 45px;
		height: 45px;
	}
	.img-about {
		height: 250px;
	}
}

/* For screens up to 479px */
@media (max-width: 479px) {
	.column1 {
		padding: 10px 20px;
	}
	.milestone {
		width: 50%;
	}
	.circle {
		width: 40px;
		height: 40px;
	}
	.img-about {
		height: 200px;
	}
}

/* For screens up to 320px */
@media (max-width: 320px) {
	.unique-heading {
		font-size: 1.5rem;
	}
	.column1 {
		padding: 5px 10px;
		max-width: 100%;
	}
	.milestone {
		width: 100%;
	}
	.circle {
		width: 35px;
		height: 35px;
	}
	.img-about {
		height: 150px;
	}
}
