* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: IRANSansX !important;
}

body {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background-color: #f5f5f5;
	overflow: hidden;
	background: linear-gradient(to bottom, #00acb51f 0%, #00abb559 50%, #00acb51f 100%) !important;
}

.about-p {
	font-size: 17px;
	width: 43%;
	text-align: center;
	direction: rtl;
	color: #1b3943;
	font-weight: 600;
	line-height: 28px;
}

.about-title {
	font-size: 7.5rem;
	font-weight: 900;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	position: absolute;
	top: 226px;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	white-space: nowrap;
	font-family: IRANSansX !important;
	background: linear-gradient(to bottom,
			#00abb585 30%,
			#00c9d30b 76%);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.carousel-container {
	width: 100%;
	max-width: 1200px;
	height: 377px;
	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);
}

.card {
	position: absolute;
	width: 253px;
	height: 318px;
	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;
}

.card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
	z-index: 10;
	transform: scale(1.1) translateZ(0);
}

.card.center img {
	filter: none;
}

.card.left-2 {
	z-index: 1;
	transform: translateX(-400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.left-2 img {
	filter: grayscale(100%);
}

.card.left-1 {
	z-index: 5;
	transform: translateX(-200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.left-1 img {
	filter: grayscale(100%);
}

.card.right-1 {
	z-index: 5;
	transform: translateX(200px) scale(0.9) translateZ(-100px);
	opacity: 0.9;
}

.card.right-1 img {
	filter: grayscale(100%);
}

.card.right-2 {
	z-index: 1;
	transform: translateX(400px) scale(0.8) translateZ(-300px);
	opacity: 0.7;
}

.card.right-2 img {
	filter: grayscale(100%);
}

.card.hidden {
	opacity: 0;
	pointer-events: none;
}

.member-info {
	text-align: center;
	margin-top: 11px;
	transition: all 0.5s ease-out;
}

.member-name {
	color: #2d7187;
	font-size: 2.25rem;
	font-weight: 700;
	margin-bottom: 10px;
	position: relative;
	display: inline-block;
}

.about {
	width: 100%;
	margin-top: 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.member-name::before,
.member-name::after {
	content: "";
	position: absolute;
	top: 55%;
	width: 100px;
	height: 2px;
	background: #2d7187;
}

.member-name::before {
	left: -120px;
}

.member-name::after {
	right: -120px;
}

.member-role {
	color: #ff9c00;
	font-size: 1.5rem;
	font-weight: 500;
	opacity: 0.8;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	padding: 10px 0;
	margin-top: -15px;
	position: relative;
}

.dots {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 13px;
}

.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: #2d7187;
	transform: scale(1.2);
}

.nav-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: #2d7187;
	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: #007077;
	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-p {
		width: 90%;
	}

	.about-title {
		font-size: 4.5rem;
		top: 361px;

	}

	.card {
		width: 200px;
		height: 280px;
	}

	.card.left-2 {
		transform: translateX(-250px) scale(0.8) translateZ(-300px);
	}

	.card.left-1 {
		transform: translateX(-120px) scale(0.9) translateZ(-100px);
	}

	.card.right-1 {
		transform: translateX(120px) scale(0.9) translateZ(-100px);
	}

	.card.right-2 {
		transform: translateX(250px) scale(0.8) translateZ(-300px);
	}

	.member-name {
		font-size: 2rem;
	}

	.member-role {
		font-size: 1.2rem;
	}

	.member-name::before,
	.member-name::after {
		width: 50px;
	}

	.member-name::before {
		left: -70px;
	}

	.member-name::after {
		right: -70px;
	}
}

/* index.html */
      body {
        direction: ltr;
      }

    
      .st::before {
        content: "";
        position: absolute;
        top: -21px;
        z-index: 1;
        right: 23%;
        display: block;
        border-radius: 59px;
        background: #b1dae7;
        width: 55px;
        height: 55px;
        transition: all 0.3s ease;
      }
      .page {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(
          to bottom,
          #00acb51f 0%,
          #00abb559 50%,
          #00acb51f 100%
        ) !important;
        height: fit-content !important;
      }
      /* From Uiverse.io by pathikcomp */
      .main > .inp {
        display: none;
      }
      .main > .inp:checked + .arrow {
        transform: rotateX(180deg);
      }
      .inp:checked ~ .menu-container {
        clip-path: inset(10% 50% 90% 50% round 10px);
      }
      .inp:not(:checked) ~ .menu-container .menu-list {
        transform: translateY(0);
        opacity: 1;
      }
      .inp:not(:checked) ~ .menu-container .menu-list:nth-child(1) {
        transition: transform 0.4s var(--delay), opacity 0.4s var(--delay);
      }
      .inp:not(:checked) ~ .menu-container .menu-list:nth-child(2) {
        transition: transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
          opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
      }
      .inp:not(:checked) ~ .menu-container .menu-list:nth-child(3) {
        transition: transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
          opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
      }
      .inp:not(:checked) ~ .menu-container .menu-list:nth-child(4) {
        transition: transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
          opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
      }
      .inp:not(:checked) ~ .bar > .top {
        transform-origin: top right;
        transform: translateY(var(--transform)) rotate(-45deg);
      }
      .inp:not(:checked) ~ .bar > .middle {
        transform: translateX(-50%);
        opacity: 0;
      }
      .inp:not(:checked) ~ .bar > .bottom {
        transform-origin: bottom right;
        transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
      }

    
    .about-p {
      font-size: 17px;
      width: 43%;
      text-align: center;
      direction: rtl;
      color: #1b3943;
      font-weight: 600;
      line-height: 28px;
    }
    @media (max-width: 991px) {
      .about-p {
        font-size: 27px;
        width: 85%;
        line-height: 36px;
      }
      .about-title {
        top: 360px;
      }
    }

  
