/*
Theme Name: Qpivolta Child
Description: Bootstrap-based child theme with dark mode
Author: Qpivolta
Template: twentytwentyone
Version: 1.0
*/
@import url('./assets/css/dark-mode.css');
/* Background dots pattern */
.milestone-section {
	position: relative;
/* 	max-width: 1200px; */
	margin: 0 auto;
	padding: 60px 0;
 /* background: #f9f9f9; */
	overflow: hidden;
} /* .milestone-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-image: radial-gradient(circle, #d0d0d0 1px, transparent 1px); background-size: 20px 20px; opacity: 0.3; pointer-events: none; } */.section-tag {
	color: #4d4dff;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.main-heading {
	font-size: 48px;
	font-weight: 700;
	color: #2c2c2c;
	line-height: 1.3;
	margin-bottom: 30px;
	max-width: 900px;
	position: relative;
	z-index: 1;
}

.description {
/* 	font-size: 16px;
	color: #666;
	line-height: 1.8; */
	margin-bottom: 60px;
	max-width: 850px;
	position: relative;
	z-index: 1;
} /* Timeline Section */
.timeline-container {
	position: relative;
/* 	margin-bottom: 60px; */
	z-index: 1;
}

.timeline {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: relative;
	padding: 0 20px;
}

.timeline::before {
	content: '';
	position: absolute;
	top: 10px;
	left: 0;
	right: 0;
	height: 1px;
/* 	background: linear-gradient(to right, #d0d0d0 0%, #d0d0d0 100%); */
	transform: translateY(-50%);
	z-index: -1;
	border: 1px dashed #1f1e1e;
}

.timeline-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.timeline-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	border: 1px solid #484848;
	transition: all 0.3s ease;
	margin-bottom: 10px;
	    background: #454545;
}

.timeline-item.active .timeline-dot {
	width: 20px;
	height: 20px;
	background: linear-gradient(
    93deg,
    rgba(141, 170, 217, 1) 0%,
    rgba(228, 142, 197, 1) 53%,
    rgba(255, 255, 255, 1) 98%
  );
	box-shadow: 0 0 20px rgba(77, 77, 255, 0.5);
}

.timeline-year {
	font-size: 16px;
	font-weight: 600;
	color: #999;
	transition: all 0.3s ease;
}

.timeline-item.active .timeline-year {
	color:var(--secondary);
	font-size: 18px;
} /* Navigation Arrows */.timeline-navigation {
	display: flex;
	gap: 20px;
	margin-top: 30px;
}

.nav-arrow {
	width: 50px;
	height: 50px;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
	transition: all 0.3s ease;
	border: 1px solid #1f1e1e;
    border-radius: 50%;
}

/* .nav-arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 20px;
	height: 2px;
	background: var(--primary);
}

.nav-arrow::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 12px;
	height: 2px;
	background: var(--primary);
	transition: all 0.3s ease;
}

.nav-arrow.prev::after {
	left: 15px;
	transform: translateY(-50%) rotate(-45deg);
	transform-origin: left center;
}

.nav-arrow.next::after {
	right: 15px;
	transform: translateY(-50%) rotate(45deg);
	transform-origin: right center;
} */

.nav-arrow:hover {
	opacity: 0.7;
} /* Content Section */.milestone-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 60px;
	padding: 20px 0 40px;
	position: relative;
	z-index: 1;
}

.content-left {
	flex: 1;
	max-width: 600px;
}

.content-title {
	font-size: 38px;
/* 	font-weight: 700; */
	color: #2c2c2c;
/* 	line-height: 1; */
	margin-bottom: 25px;
}

.content-description {
	font-size: 15px;
	color: #666;
	line-height: 1.8;
	margin-bottom: 30px;
}

.content-link {
	display: inline-flex;
	align-items: center;
	gap: 10px;	
	color: #2c2c2c;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 2px solid #2c2c2c;
	padding-bottom: 5px;
	transition: all 0.3s ease;
}

.content-link::after {
	content: '→';
	font-size: 20px;
	transition: transform 0.3s ease;
}

.content-link:hover {
	color: #4d4dff;
	border-bottom-color: #4d4dff;
}

.content-link:hover::after {
	transform: translateX(5px);
}

.content-right {
	position: relative;
}

.year-display {
	font-size: 120px;
	font-weight: 700;
	color: #343435;
	opacity: 0.15;
	line-height: 1;
	position: relative;
	max-width: 350px;
}

.year-display::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 300px;
	height: 300px;
	background-image: radial-gradient(circle, #4d4dff 1px, transparent 1px);
	background-size: 15px 15px;
	opacity: 0.2;
	z-index: -1;
} /* Responsive Design */
@media (max-width: 768px) {
	.main-heading {
		font-size: 32px;
	}

	.timeline {
		overflow-x: auto;
		justify-content: flex-start;
		gap: 40px;
		padding-bottom: 10px;
	}

	.milestone-content {
		flex-direction: column;
		gap: 30px;
	}

	.content-title {
		font-size: 28px;
	}

	.year-display {
		font-size: 80px;
	}
	.milestone-section {
	position: relative;
/* 	max-width: 1200px; */
	margin: 0 auto;
		padding: 60px 15px 20px;
	}
} /* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

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

.milestone-content {
	animation: fadeInUp 0.6s ease;
}
.team-wrap {
    border: 1px solid #111;
    padding: 25px 15px !important;
    border-radius: 8px;
	cursor:pointer;
}