.exp-hero h1,
.exp-hero-icon i {
	font-size: 48px;
	color: #fff
}

.exp-facility-card::after,
.exp-facility-card::before,
.exp-hero::after,
.exp-hero::before,
.exports-section::before {
	content: '';
	position: absolute
}

.exports-section {
	padding: 40px 0;
	background: linear-gradient(135deg, #f0f4f8 0, #fff 100%);
	position: relative;
	overflow: hidden
}

.exp-facility-card.featured::before,
.exp-hero {
	background: linear-gradient(135deg, var(--secondary-color) 0, #1a4a5a 100%)
}

.exports-section::before {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle at 20% 50%, rgba(11, 140, 249, .05) 0, transparent 50%), radial-gradient(circle at 80% 80%, rgba(254, 214, 77, .05) 0, transparent 50%);
	animation: 8s ease-in-out infinite bgPulse
}

@keyframes bgPulse {

	0%,
	100% {
		opacity: .5
	}

	50% {
		opacity: 1
	}
}

.exp-hero {
	padding: 30px 0 130px;
	margin-bottom: -70px;
	position: relative;
	overflow: hidden;
	border-radius: 0 0 50px 50px;
	box-shadow: 0 20px 60px rgba(11, 140, 249, .3)
}

.exp-hero::before {
	top: -100px;
	right: -100px;
	width: 400px;
	height: 400px;
	background: rgba(255, 255, 255, .1);
	border-radius: 50%;
	animation: 15s linear infinite floatRotate
}

.exp-hero::after {
	bottom: -150px;
	left: -150px;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(255, 255, 255, .1) 0, transparent 70%);
	border-radius: 50%;
	animation: 4s ease-in-out infinite scalePulse
}

@keyframes floatRotate {
	0% {
		transform: rotate(0) translateY(0)
	}

	50% {
		transform: rotate(180deg) translateY(-30px)
	}

	100% {
		transform: rotate(360deg) translateY(0)
	}
}

@keyframes scalePulse {

	0%,
	100% {
		transform: scale(1);
		opacity: .5
	}

	50% {
		transform: scale(1.2);
		opacity: .8
	}
}

.exp-hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 900px;
	margin: 0 auto
}

.exp-hero-icon {
	width: 100px;
	height: 100px;
	background: rgba(255, 255, 255, .2);
	backdrop-filter: blur(10px);
	border-radius: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 35px;
	animation: 2s ease-in-out infinite iconFlip;
	box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
	border: 3px solid rgba(255, 255, 255, .3)
}

@keyframes iconFlip {

	0%,
	100% {
		transform: rotateY(0)
	}

	50% {
		transform: rotateY(180deg)
	}
}

.exp-hero h1 {
	font-weight: 900;
	margin-bottom: 15px;
	line-height: 1.2;
	animation: 1s forwards slideInDown;
	opacity: 0;
	text-shadow: 0 5px 20px rgba(0, 0, 0, .3)
}

.exp-hero p {
	font-size: 19px;
	color: rgba(255, 255, 255, .95);
	line-height: 1.9;
	animation: 1s .3s forwards fadeInUp;
	opacity: 0;
	font-weight: 500
}

.exp-image-wrapper {
	text-align: center;
	margin: -70px 0 50px;
	position: relative;
	z-index: 3;
	animation: 1s .5s forwards fadeInUp;
	opacity: 0
}

.exp-image-wrapper img {
	max-width: 100%;
	height: auto;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
	border: 8px solid #fff
}

.exp-services-list {
	margin-bottom: 50px
}

.exp-service-item {
	background: #fff;
	border-radius: 16px;
	padding: 25px 35px;
	margin-bottom: 20px;
	box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
	border-left: 5px solid var(--secondary-color);
	animation: .8s forwards fadeInUp;
	opacity: 0;
	transform: translateX(-30px);
	transition: .4s
}

.exp-service-item:first-child {
	animation-delay: .6s
}

.exp-service-item:nth-child(2) {
	animation-delay: .7s
}

.exp-service-item:nth-child(3) {
	animation-delay: .8s
}

.exp-service-item:hover {
	transform: translateX(10px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, .12)
}

.exp-service-item p {
	font-size: 17px;
	color: var(--text-color);
	line-height: 1.8;
	margin: 0;
	font-weight: 500
}

.exp-facility-card h4,
.exp-section-title {
	font-weight: 800;
	color: var(--title-color);
	position: relative
}

.exp-section-title {
	font-size: 30px;
	margin-bottom: 40px;
	text-align: center;
	animation: 1s .9s forwards fadeInUp;
	opacity: 0
}

.exp-section-title::after {
	content: '';
	display: block;
	width: 100px;
	height: 6px;
	background: linear-gradient(90deg, var(--theme-color), var(--secondary-color));
	margin: 25px auto 0;
	border-radius: 4px;
	animation: 1.5s 1s forwards expandWidth, 2s ease-in-out 2.5s infinite bounceWidth;
	transform: scaleX(0);
	transform-origin: center
}

@keyframes expandWidth {
	to {
		transform: scaleX(1)
	}
}

@keyframes bounceWidth {

	0%,
	100% {
		width: 100px
	}

	50% {
		width: 140px
	}
}

.exp-facilities-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
	margin-bottom: 30px
}

.exp-facility-card {
	background: #fff;
	border-radius: 20px;
	padding: 20px 30px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
	transition: .5s cubic-bezier(.175, .885, .32, 1.275);
	position: relative;
	overflow: hidden;
	border: 2px solid rgba(0, 0, 0, .04);
	animation: .8s forwards fadeInUp;
	opacity: 0;
	transform: translateY(40px) rotateX(15deg)
}

.exp-facility-card:first-child {
	animation-delay: 1s
}

.exp-facility-card:nth-child(2) {
	animation-delay: 1.1s
}

.exp-facility-card:nth-child(3) {
	animation-delay: 1.2s
}

.exp-facility-card::before {
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--theme-color) 0, var(--secondary-color) 100%);
	transition: left .5s;
	opacity: .05
}

.exp-facility-card::after {
	bottom: -50%;
	right: -50%;
	width: 200%;
	height: 200%;
	background: radial-gradient(circle, rgba(11, 140, 249, .08) 0, transparent 70%);
	opacity: 0;
	transition: opacity .5s
}

.exp-facility-card:hover {
	transform: translateY(-15px) rotateX(0) scale(1.03);
	box-shadow: 0 25px 60px rgba(0, 0, 0, .15)
}

.exp-facility-card:hover::before {
	left: 0
}

.exp-facility-card:hover::after {
	opacity: 1
}

.exp-card-header {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 18px
}

.exp-card-header .exp-service-number {
	margin-bottom: 0;
	flex-shrink: 0
}

.exp-card-header h4 {
	margin-bottom: 0;
	flex: 1;
	line-height: 1.3
}

.exp-service-number {
	width: 60px;
	height: 60px;
	background: var(--secondary-color);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 22px;
	font-weight: 900;
	position: relative;
	z-index: 1;
	animation: .6s forwards numberBounce;
	transform: rotate(-10deg) scale(0);
	box-shadow: 0 8px 25px rgba(254, 214, 77, .4)
}

@keyframes numberBounce {
	0% {
		transform: rotate(-10deg) scale(0)
	}

	60% {
		transform: rotate(-10deg) scale(1.2)
	}

	100% {
		transform: rotate(-10deg) scale(1)
	}
}

.exp-facility-card:hover .exp-service-number {
	animation: .6s numberSpin;
	transform: rotate(0) scale(1.1)
}

@keyframes numberSpin {
	0% {
		transform: rotate(-10deg) scale(1)
	}

	50% {
		transform: rotate(180deg) scale(1.2)
	}

	100% {
		transform: rotate(350deg) scale(1.1)
	}
}

.exp-facility-card h4 {
	font-size: 20px;
	line-height: 1.4;
	z-index: 1;
	transition: .3s
}

.exp-facility-card:hover h4 {
	color: var(--secondary-color);
	transform: translateX(8px)
}

.exp-facility-card p {
	font-size: 16px;
	color: var(--text-color);
	line-height: 1.8;
	margin: 0;
	position: relative;
	z-index: 1;
	opacity: .85;
	transition: .3s;
	text-align: justify
}

.exp-facility-card:hover p {
	opacity: 1;
	transform: translateX(8px)
}

.exp-facility-card.featured {
	background: linear-gradient(135deg, #f8f9fa 0, #e9ecef 100%);
	animation: 3s ease-in-out infinite featuredPulse, .8s 1.3s forwards fadeInUp;
	opacity: 0;
	transform: translateY(40px);
	border: 3px solid rgba(11, 140, 249, .2)
}

@keyframes featuredPulse {

	0%,
	100% {
		box-shadow: 0 10px 40px rgba(0, 0, 0, .08)
	}

	50% {
		box-shadow: 0 20px 60px rgba(11, 140, 249, .2)
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(40px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-50px)
	}

	to {
		opacity: 1;
		transform: translateY(0)
	}
}

@media (max-width:991px) {
	.exp-hero {
		padding: 60px 0 110px;
		margin-bottom: -50px
	}

	.exp-hero h1 {
		font-size: 42px
	}

	.exp-hero p {
		font-size: 17px
	}

	.exp-section-title {
		font-size: 28px
	}

	.exp-facilities-grid {
		grid-template-columns: 1fr
	}
}

@media (max-width:768px) {
	.exports-section {
		padding: 40px 0 80px
	}

	.exp-hero {
		padding: 40px 0 60px;
		margin-bottom: -40px
	}

	.exp-hero h1 {
		font-size: 36px
	}

	.exp-hero p {
		font-size: 16px
	}

	.exp-section-title {
		font-size: 24px
	}

	.exp-facility-card,
	.exp-service-item {
		padding: 25px
	}

	.exp-facility-card h4 {
		font-size: 19px
	}

	.exp-facility-card p,
	.exp-service-item p {
		font-size: 15px
	}

	.exp-card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px
	}
}

@media (max-width:480px) {
	.exp-hero h1 {
		font-size: 30px
	}

	.exp-facility-card,
	.exp-service-item {
		padding: 20px
	}

	.exp-facility-card h4 {
		font-size: 18px
	}
}

/* === Forms Page Title Backgrounds === */
#tf-page-title .bg-layer {
	background-image: url(../images/background/innerbanner02.webp);
}

#tf-page-title .pattern-1 {
	background-image: url(../images/shape/shape-18.png);
}

#tf-page-title .pattern-2 {
	background-image: url(../images/shape/shape-17.png);
}