/* ======================================
   ABOUT US — MR PRINT PACK
====================================== */
.dr1052aboutushome {
	position: relative;
	padding: 130px 0;
	background: radial-gradient(circle at top, rgba(15, 118, 110, .15),
		transparent 60%), linear-gradient(180deg, #020617, #01030a);
	font-family: 'Montserrat', sans-serif;
	overflow: hidden;
}

@media ( min-width : 769px) {
	.dr1052aboutushome {
		perspective: 1600px;
	}
}

/* ======================================
   CONTAINER
====================================== */
.about-container {
	max-width: 1200px;
	margin: auto;
	padding: 0 20px;
	text-align: center;
	position: relative;
	z-index: 2;
}

/* ======================================
   TITLES
====================================== */
.about-title {
	font-size: 42px;
	font-weight: 900;
	color: #e5e7eb;
	letter-spacing: 1px;
	margin-bottom: 10px;
	text-shadow: 0 25px 60px rgba(0, 0, 0, .9);
}

.about-tagline {
	font-size: 16px;
	color: #9ca3af;
	margin-bottom: 60px;
}

/* ======================================
   ABOUT CAROUSEL (3D SHOWCASE)
====================================== */
.about-carousel-wrap {
	margin-bottom: 80px;
	perspective: 1400px;
}

.about-carousel {
	position: relative;
	max-width: 920px;
	margin: auto;
	border-radius: 28px;
	overflow: hidden;
	background: linear-gradient(145deg, #0b1220, #050b15);
	box-shadow: 0 60px 160px rgba(0, 0, 0, .95), inset 0 1px 0
		rgba(255, 255, 255, .05);
}

.about-track {
	display: flex;
	transition: transform .8s cubic-bezier(.22, 1, .36, 1);
	will-change: transform;
}

.about-slide {
	flex: 0 0 100%;
	padding: 28px;
	text-align: center;
	opacity: .35;
	transform: scale(.92) rotateY(6deg);
	transform-style: preserve-3d;
	transition: all .7s ease;
}

.about-slide.active {
	opacity: 1;
	transform: scale(1) rotateY(0deg);
}

.about-slide img {
	max-width: 100%;
	max-height: 420px;
	border-radius: 22px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
	transform: translateZ(40px);
}

.about-slide span {
	display: block;
	margin-top: 18px;
	font-size: 15px;
	font-weight: 600;
	color: #d1fae5;
	letter-spacing: .05em;
}

/* Navigation buttons */
.about-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 48px;
	height: 48px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	background: linear-gradient(135deg, #0f766e, #064e3b);
	color: #ecfeff;
	font-size: 22px;
	z-index: 2;
	box-shadow: 0 16px 40px rgba(0, 0, 0, .6);
	transition: transform .25s ease;
}

.about-nav:hover {
	transform: translateY(-50%) scale(1.15);
}

.about-nav.prev {
	left: 16px;
}

.about-nav.next {
	right: 16px;
}

/* ======================================
   ABOUT GRID
====================================== */
.about-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 36px;
}

/* ======================================
   ABOUT CARD (3D PANELS)
====================================== */
.about-card {
	position: relative;
	padding: 42px 36px;
	border-radius: 24px;
	background: linear-gradient(145deg, #0b1220, #050b15);
	transform-style: preserve-3d;
	box-shadow: 0 45px 120px rgba(0, 0, 0, .9), inset 0 1px 0
		rgba(255, 255, 255, .05);
	transition: transform .6s cubic-bezier(.22, 1, .36, 1);
	text-align: left;
}

.about-card::before {
	content: "";
	position: absolute;
	top: 18px;
	left: 18px;
	right: 18px;
	height: 4px;
	border-radius: 4px;
	background: linear-gradient(90deg, #0f766e, #ffb703);
	box-shadow: 0 0 25px rgba(255, 183, 3, .6);
}

.about-card.highlight {
	border: 1px solid rgba(255, 183, 3, .3);
}

@media ( min-width : 769px) {
	.about-card:hover {
		transform: translateY(-14px) rotateX(8deg);
	}
}

/* Icon */
.about-icon {
	width: 68px;
	height: 68px;
	border-radius: 18px;
	background: linear-gradient(135deg, #ffb703, #ff7b00);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	color: #020617;
	box-shadow: 0 18px 36px rgba(255, 183, 3, .45);
	transform: translateZ(40px);
}

/* Card text */
.about-card h3 {
	margin-top: 28px;
	font-size: 22px;
	font-weight: 800;
	color: #ffffff;
}

.about-card p {
	margin-top: 16px;
	font-size: 15px;
	line-height: 1.75;
	color: #cbd5e1;
}

/* ======================================
   REVEAL STATES
====================================== */
.about-card.reveal-init {
	opacity: 0;
	transform: translateY(60px) rotateX(14deg);
}

.about-card.reveal-show {
	opacity: 1;
	transform: translateY(0) rotateX(0deg);
	transition: transform 1s cubic-bezier(.22, 1, .36, 1), opacity 1s ease;
}

/* ======================================
   MOBILE
====================================== */
@media ( max-width : 768px) {
	.dr1052aboutushome {
		padding: 90px 0;
	}
	.about-title {
		font-size: 32px;
	}
	.about-carousel-wrap {
		margin-bottom: 60px;
	}
	.about-slide {
		transform: none !important;
		opacity: 1;
	}
	.about-slide img {
		max-height: 260px;
	}
	.about-card {
		transform: none !important;
	}
	.about-icon {
		transform: none;
	}
}