.section-timeline-v2 {
	.timeline-v2-block {
		color: #fff;
		padding: 50px 0;
	}

	.timeline-v2-container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px;
	}

	.timeline-v2-container h1 {
		text-align: center;
		margin-bottom: 40px;
		color: #fff;
	}

	.timeline-carousel {
		width: 100%;
		margin: 0 auto;
		position: relative;
	}

	.timeline-carousel .slick-prev,
	.timeline-carousel .slick-next,
	.timeline-carousel .timeline-left-arrow,
	.timeline-carousel .timeline-right-arrow {
		position: absolute;
		top: 40%;
		transform: translateY(-50%);
		font-size: 32px;
		color: #0077ff;
		z-index: 999;
		border: 2px solid #0077ff;
		border-radius: 50%;
		width: 50px;
		height: 50px;
		cursor: pointer;
		padding: 0;
		transition: all 0.3s cubic-bezier(0.45, 0, 0.55, 1);
		display: flex !important;
		align-items: center;
		justify-content: center;
		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;
	}

	.timeline-carousel .timeline-left-arrow,
	.timeline-carousel .slick-prev {
		left: -25px;
        background: none;
        border: none;
	}

	.timeline-carousel .timeline-right-arrow,
	.timeline-carousel .slick-next {
		right: -25px;
        background: none;
        border: none;
	}

	.timeline-carousel .timeline-left-arrow:hover,
	.timeline-carousel .timeline-right-arrow:hover,
	.timeline-carousel .slick-prev:hover,
	.timeline-carousel .slick-next:hover {
		color: #fff;
	}

	.timeline-carousel::before {
		content: "";
		position: absolute;
		height: 2px;
		width: 90%;
		margin: 0 auto;
		background: linear-gradient(to right, transparent, #0077ff, transparent);
		top: 124px;
		left: 0;
		right: 0;
	}

	.timeline-item {
		padding: 10px;
		margin: 0 10px;
		display: flex;
		flex-direction: column;
		align-items: center;
		min-height: 300px;
		transition: all 0.5s cubic-bezier(0.45, 0, 0.55, 1);
		opacity: 1;
		transform: scale(0.85);
	}

	.icon-container {
		display: flex;
		justify-content: center;
		margin-bottom: 20px;
		height: 80px;
	}

	.icon {
		width: 120px;
		height: 60px;
		background-size: contain;
		background-repeat: no-repeat;
		background-position: center;
		filter: brightness(0) saturate(100%) invert(32%) sepia(100%) saturate(1037%)
			hue-rotate(190deg) brightness(104%) contrast(103%);
		transition: all 0.5s cubic-bezier(0.45, 0, 0.55, 1);
	}

	.dot-container {
		display: flex;
		flex-direction: column;
		align-items: center;
		position: relative;
		z-index: 2;
	}

	.dot {
		width: 20px;
		height: 20px;
		background-color: #0077ff;
		border-radius: 50%;
		margin-bottom: 10px;
		border: 3px solid #001535;
		position: relative;
		transition: all 0.5s cubic-bezier(0.45, 0, 0.55, 1);
	}

	.dot::before {
		content: "";
		position: absolute;
		background-color: black;
		top: -3px;
		left: -3px;
		width: 20px;
		height: 20px;
		border-radius: 50%;
		border: 1px solid #0077ff;
		transition: all 0.5s cubic-bezier(0.45, 0, 0.55, 1);
	}

	.year {
		font-weight: bold;
		font-size: 18px;
		color: #0077ff;
		margin-top: 10px;
		transition: all 0.5s cubic-bezier(0.45, 0, 0.55, 1);
	}

	.content {
		text-align: center;
		margin-top: 20px;
		width: 100%;
		height: 100px;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.content p {
		line-height: 1.4;
		color: #cce1ff;
		transition: all 0.5s cubic-bezier(0.45, 0, 0.55, 1);
	}

	.slick-track {
		display: flex;
		align-items: center;
		transition-timing-function: cubic-bezier(0.45, 0, 0.55, 1) !important;
	}

	.slick-current .timeline-item {
		opacity: 1;
		transform: scale(1.2);
		z-index: 10;
	}

	.slick-current .dot {
		background-color: #fff;
		transform: scale(1.2);
		box-shadow: 0 0 16px rgba(255, 255, 255, 1);
	}

	.slick-current .year {
		color: #fff;
		font-size: 120%;
		font-weight: bold;
	}

	.slick-current .icon {
		filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%)
			hue-rotate(325deg) brightness(102%) contrast(102%);
		transform: scale(1.2);
	}

	.slick-current .content p {
		color: #fff;
		transform: scale(1.2);
	}

	/* Responsive styles */
	@media (max-width: 992px) {
		.timeline-carousel .slick-slide {
			margin: 0 5px;
		}

		.content p {
			font-size: 12px;
		}
	}

	@media (max-width: 768px) {
		.timeline-carousel .slick-slide {
			margin: 0;
		}

		.icon {
			width: 40px;
			height: 40px;
		}

		.content p {
			font-size: 11px;
		}

		.slick-current .timeline-item {
			transform: scale(1.05);
		}

		.timeline-item {
			transform: scale(0.9);
		}

		.timeline-carousel .timeline-left-arrow,
		.timeline-carousel .timeline-right-arrow {
			width: 40px;
			height: 40px;
			font-size: 24px;
			left: 10px;
		}

		.timeline-carousel .timeline-right-arrow {
			left: auto;
			right: 10px;
		}
	}
}
