.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: absolute;
	top: 45px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	font-family: "Arial Black", "Arial Bold", Arial, sans-serif;
	background: linear-gradient(
		to bottom,
		rgb(8 42 123 / 35%) 30%,
		rgb(255 255 255 / 0%) 76%
	);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 450px;
	position: relative;
	perspective: 1000px;
	/* margin-top: 80px; */
}

.carousel-track {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cardd {
	position: absolute;
	width: 320px;
	height: 380px;
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	cursor: pointer;
}

.cardd img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cardd.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.cardd.center img {
	filter: none;
}

.cardd.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.cardd.left-2 img {
	filter: grayscale(100%);
}

.cardd.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.cardd.left-1 img {
	filter: grayscale(100%);
}

.cardd.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.cardd.right-1 img {
	filter: grayscale(100%);
}

.cardd.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.cardd.right-2 img {
	filter: grayscale(100%);
}

.cardd.hidden {
	opacity: 0;
	pointer-events: none;
}

.dots {
	display: flex;
  align-items: center;
	justify-content: center;
	gap: 10px;
  margin-top: 42px;
  margin-bottom: 32px;
}

.dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(8, 42, 123, 0.2);
	cursor: pointer;
	transition: all 0.3s ease;
}

.dot.active {
	background: rgb(82, 16, 90);
	transform: scale(1.2);
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgb(82, 16, 90, 0.6);
  
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 20;
	transition: all 0.3s ease;
	font-size: 1.5rem;
	border: none;
	outline: none;
	padding-bottom: 4px;
}

.nav-arrow:hover {
	background: rgba(0, 0, 0, 0.8);
	transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
	left: 20px;
	padding-right: 3px;
}

.nav-arrow.right {
	right: 20px;
	padding-left: 3px;
}

@media (max-width: 768px) {
	.about-title {
		font-size: 4.5rem;
	}

	.cardd {
		width: 200px;
		height: 280px;
	}

	.cardd.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.cardd.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.cardd.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.cardd.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

  .carousel-container {
    height: 300px;
  }

}

.cardd img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: #fff3d3;
}