/* _content/Server.Web/Components/Parts/HomePage/ImageSlider.razor.rz.scp.css */
.image-slider-container[b-b0i8h9biz9] {
	width: 100%;
	position: relative;
	height: calc(100vh - 64px) !important;
}

	.image-slider-container .slide .item[b-b0i8h9biz9] {
		top: 50%;
		width: 200px;
		height: 300px;
		transition: 0.5s;
		position: absolute;
		border-radius: 20px;
		display: inline-block;
		background-size: cover;
		background-position: 50% 50%;
		transform: translate(0, -50%);
	}

.slide .item:nth-child(1)[b-b0i8h9biz9],
.slide .item:nth-child(2)[b-b0i8h9biz9] {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 0;
	transform: translate(0, 0);
}

.slide .item:nth-child(3)[b-b0i8h9biz9] {
	left: 50%;
}

.slide .item:nth-child(4)[b-b0i8h9biz9] {
	left: calc(50% + 220px);
}

.slide .item:nth-child(5)[b-b0i8h9biz9] {
	left: calc(50% + 440px);
}

.slide .item:nth-child(n + 6)[b-b0i8h9biz9] {
	opacity: 0;
	left: calc(50% + 660px);
}

.item .content[b-b0i8h9biz9] {
	top: 50%;
	left: 100px;
	width: 300px;
	color: #eee;
	display: none;
	position: absolute;
	font-family: system-ui;
	transform: translate(0, -50%);
}

.slide .item:nth-child(2) .content[b-b0i8h9biz9] {
	display: block;
}


.content .name[b-b0i8h9biz9] {
	opacity: 0;
	font-size: 40px;
	font-weight: bold;
	text-transform: uppercase;
	animation: animate-b-b0i8h9biz9 1s ease-in-out 1 forwards;
}

.content .des[b-b0i8h9biz9] {
	opacity: 0;
	margin-top: 10px;
	margin-bottom: 20px;
	animation: animate-b-b0i8h9biz9 1s ease-in-out 0.3s 1 forwards;
}

.content button[b-b0i8h9biz9] {
	border: none;
	opacity: 0;
	cursor: pointer;
	padding: 10px 20px;
	animation: animate-b-b0i8h9biz9 1s ease-in-out 0.6s 1 forwards;
}

@keyframes animate-b-b0i8h9biz9 {
	from {
		opacity: 0;
		filter: blur(33px);
		transform: translate(0, 100px);
	}

	to {
		opacity: 1;
		filter: blur(0);
		transform: translate(0);
	}
}

.button[b-b0i8h9biz9] {
	width: 100%;
	bottom: 20px;
	text-align: center;
	position: absolute;
}

	.button button[b-b0i8h9biz9] {
		width: 40px;
		height: 35px;
		border: none;
		margin: 0 5px;
		cursor: pointer;
		transition: 0.3s;
		background: #fff;
		border-radius: 8px;
		border: 1px solid #000;
	}

		.button button:hover[b-b0i8h9biz9] {
			color: #fff;
			background: #ababab;
		}

@media (max-width: 768px) {
	.slide .item:nth-child(2) .content[b-b0i8h9biz9] {
		display: none;
	}
}
/* _content/Server.Web/Components/Parts/HomePage/MotionBackground.razor.rz.scp.css */

h1:focus[b-cjgdcq8tkd], h1:focus-visible[b-cjgdcq8tkd] {
	outline: none !important;
}

.header-section[b-cjgdcq8tkd] {
	position: relative;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 30%, #6a11cb 70%, #2575fc 100%);
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	direction: rtl;
}

/* Top Navigation */
.top-nav[b-cjgdcq8tkd] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
	backdrop-filter: blur(25px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	padding: 20px 0;
	z-index: 1000;
}

.nav-container[b-cjgdcq8tkd] {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-logo[b-cjgdcq8tkd] {
	font-size: 28px;
	font-family: 'Dinar';
	background: linear-gradient(135deg, #ffffff, #f093fb, #ff6b6b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
	position: relative;
}

	.nav-logo[b-cjgdcq8tkd]::after {
		content: '';
		position: absolute;
		bottom: -5px;
		left: 0;
		width: 100%;
		height: 2px;
		background: linear-gradient(135deg, #ff6b6b, #f093fb);
		border-radius: 2px;
		animation: logo-glow-b-cjgdcq8tkd 2s ease-in-out infinite alternate;
	}

.nav-buttons[b-cjgdcq8tkd] {
	display: flex;
	gap: 20px;
	align-items: center;
}

.nav-btn[b-cjgdcq8tkd] {
	position: relative;
	padding: 16px 32px;
	border: none;
	border-radius: 50px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	overflow: hidden;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

	.nav-btn[b-cjgdcq8tkd]::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
		transition: left 0.5s;
	}

	.nav-btn:hover[b-cjgdcq8tkd]::before {
		left: 100%;
	}

	.nav-btn.login[b-cjgdcq8tkd] {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
		color: white;
		border: 2px solid rgba(255, 255, 255, 0.2);
		box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
	}

		.nav-btn.login:hover[b-cjgdcq8tkd] {
			background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
			transform: translateY(-4px) scale(1.05);
			box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
			border-color: rgba(255, 255, 255, 0.4);
		}

	.nav-btn.order[b-cjgdcq8tkd] {
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
		color: white;
		border: 2px solid rgba(255, 255, 255, 0.2);
		box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1);
	}

		.nav-btn.order:hover[b-cjgdcq8tkd] {
			background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1));
			transform: translateY(-4px) scale(1.05);
			box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
			border-color: rgba(255, 255, 255, 0.4);
		}

	.nav-btn svg[b-cjgdcq8tkd] {
		width: 20px;
		height: 20px;
		z-index: 1;
		position: relative;
	}

/* Animated Background */
.animated-background[b-cjgdcq8tkd] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.floating-shapes[b-cjgdcq8tkd] {
	position: absolute;
	width: 100%;
	height: 100%;
}

.shape[b-cjgdcq8tkd] {
	position: absolute;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 15px;
	animation: float-b-cjgdcq8tkd 25s infinite linear;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(5px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

	.shape svg[b-cjgdcq8tkd] {
		width: 60%;
		height: 60%;
		fill: rgba(255, 255, 255, 0.3);
	}

.shape-1[b-cjgdcq8tkd] {
	width: 80px;
	height: 80px;
	top: 20%;
	left: 10%;
	animation-delay: 0s;
}

.shape-2[b-cjgdcq8tkd] {
	width: 100px;
	height: 100px;
	top: 60%;
	right: 15%;
	animation-delay: 5s;
	border-radius: 50%;
}

.shape-3[b-cjgdcq8tkd] {
	width: 70px;
	height: 70px;
	top: 80%;
	left: 30%;
	animation-delay: 10s;
}

.shape-4[b-cjgdcq8tkd] {
	width: 90px;
	height: 90px;
	top: 10%;
	right: 30%;
	animation-delay: 15s;
	border-radius: 50%;
}

.shape-5[b-cjgdcq8tkd] {
	width: 60px;
	height: 60px;
	top: 40%;
	left: 60%;
	animation-delay: 8s;
}

.shape-6[b-cjgdcq8tkd] {
	width: 85px;
	height: 85px;
	top: 70%;
	right: 50%;
	animation-delay: 12s;
	border-radius: 50%;
}

.gradient-orbs[b-cjgdcq8tkd] {
	position: absolute;
	width: 100%;
	height: 100%;
}

.orb[b-cjgdcq8tkd] {
	position: absolute;
	border-radius: 50%;
	filter: blur(60px);
	animation: orb-3d-move-b-cjgdcq8tkd 30s infinite ease-in-out;
}

.orb-1[b-cjgdcq8tkd] {
	width: 400px;
	height: 400px;
	background: radial-gradient(circle at 30% 30%, rgba(255, 107, 107, 0.8), rgba(255, 107, 107, 0.4) 40%, rgba(255, 107, 107, 0.1) 70%, transparent);
	top: 15%;
	left: 10%;
	animation-delay: 0s;
	box-shadow: 0 0 100px rgba(255, 107, 107, 0.3);
}

.orb-2[b-cjgdcq8tkd] {
	width: 500px;
	height: 500px;
	background: radial-gradient(circle at 40% 20%, rgba(116, 75, 162, 0.9), rgba(116, 75, 162, 0.5) 35%, rgba(116, 75, 162, 0.2) 65%, transparent);
	top: 40%;
	right: 5%;
	animation-delay: 10s;
	box-shadow: 0 0 120px rgba(116, 75, 162, 0.4);
}

.orb-3[b-cjgdcq8tkd] {
	width: 350px;
	height: 350px;
	background: radial-gradient(circle at 60% 40%, rgba(240, 147, 251, 0.8), rgba(240, 147, 251, 0.4) 45%, rgba(240, 147, 251, 0.1) 75%, transparent);
	bottom: 10%;
	left: 30%;
	animation-delay: 20s;
	box-shadow: 0 0 90px rgba(240, 147, 251, 0.3);
}

.orb-4[b-cjgdcq8tkd] {
	width: 300px;
	height: 300px;
	background: radial-gradient(circle at 25% 60%, rgba(102, 126, 234, 0.7), rgba(102, 126, 234, 0.3) 50%, rgba(102, 126, 234, 0.1) 80%, transparent);
	top: 60%;
	left: 60%;
	animation-delay: 15s;
	box-shadow: 0 0 80px rgba(102, 126, 234, 0.3);
}

.orb-5[b-cjgdcq8tkd] {
	width: 450px;
	height: 450px;
	background: radial-gradient(circle at 70% 30%, rgba(255, 159, 243, 0.6), rgba(255, 159, 243, 0.3) 40%, rgba(255, 159, 243, 0.1) 70%, transparent);
	top: 5%;
	right: 25%;
	animation-delay: 25s;
	box-shadow: 0 0 110px rgba(255, 159, 243, 0.3);
}

.particle-system[b-cjgdcq8tkd] {
	position: absolute;
	width: 100%;
	height: 100%;
}

.particle[b-cjgdcq8tkd] {
	position: absolute;
	width: 4px;
	height: 4px;
	background: rgba(255, 255, 255, 0.6);
	border-radius: 50%;
	animation: particle-float-b-cjgdcq8tkd 15s infinite linear;
}

	.particle:nth-child(1)[b-cjgdcq8tkd] {
		left: 10%;
		animation-delay: 0s;
	}

	.particle:nth-child(2)[b-cjgdcq8tkd] {
		left: 20%;
		animation-delay: 2s;
	}

	.particle:nth-child(3)[b-cjgdcq8tkd] {
		left: 30%;
		animation-delay: 4s;
	}

	.particle:nth-child(4)[b-cjgdcq8tkd] {
		left: 40%;
		animation-delay: 6s;
	}

	.particle:nth-child(5)[b-cjgdcq8tkd] {
		left: 50%;
		animation-delay: 8s;
	}

	.particle:nth-child(6)[b-cjgdcq8tkd] {
		left: 60%;
		animation-delay: 10s;
	}

	.particle:nth-child(7)[b-cjgdcq8tkd] {
		left: 70%;
		animation-delay: 12s;
	}

	.particle:nth-child(8)[b-cjgdcq8tkd] {
		left: 80%;
		animation-delay: 14s;
	}

/* Header Content */
.header-content[b-cjgdcq8tkd] {
	position: relative;
	z-index: 100;
	height: 100vh;
	display: flex;
	align-items: stretch;
	justify-content: center;
	padding-top: 100px;
	padding-bottom: 50px;
}

.content-container[b-cjgdcq8tkd] {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.hero-section[b-cjgdcq8tkd] {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	flex: 1;
	padding: 40px 0;
	position: relative;
}

.hero-text-container[b-cjgdcq8tkd] {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 1200px;
	margin-bottom: 60px;
}

.hero-left-text[b-cjgdcq8tkd] {
	flex: 1;
	text-align: right;
	padding-right: 40px;
}

.hero-right-text[b-cjgdcq8tkd] {
	flex: 1;
	text-align: left;
	padding-left: 40px;
}

.main-title[b-cjgdcq8tkd] {
	font-size: 4rem;
	font-weight: 900;
	margin-bottom: 30px;
	line-height: 1.1;
	text-align: center;
	width: 100%;
}

.title-gradient[b-cjgdcq8tkd] {
	background: linear-gradient(135deg, #ffffff, #f093fb);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-family: 'Dinar';
	text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.main-subtitle[b-cjgdcq8tkd] {
	font-size: 1.5rem;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 20px;
	font-family: 'Dinar';
}

.main-description[b-cjgdcq8tkd] {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
}

/* Main Registration Button */
.main-register-btn[b-cjgdcq8tkd] {
	position: relative;
	background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
	border: none;
	border-radius: 60px;
	padding: 0;
	cursor: pointer;
	margin-bottom: 50px;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
	transform: perspective(1000px) rotateX(0deg);
}

	.main-register-btn[b-cjgdcq8tkd]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, #f093fb, #764ba2, #667eea);
		border-radius: 60px;
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.main-register-btn:hover[b-cjgdcq8tkd]::before {
		opacity: 1;
	}

	.main-register-btn:hover[b-cjgdcq8tkd] {
		transform: perspective(1000px) rotateX(-10deg) translateY(-8px) scale(1.05);
		box-shadow: 0 30px 80px rgba(102, 126, 234, 0.6);
	}

.btn-glow[b-cjgdcq8tkd] {
	position: absolute;
	top: -2px;
	left: -2px;
	width: calc(100% + 4px);
	height: calc(100% + 4px);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.1));
	border-radius: 60px;
	animation: glow-pulse-b-cjgdcq8tkd 3s ease-in-out infinite;
}

.btn-content[b-cjgdcq8tkd] {
	position: relative;
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px 50px;
	color: white;
	font-size: 1.3rem;
	z-index: 2;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.btn-icon[b-cjgdcq8tkd] {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.main-register-btn:hover .btn-icon[b-cjgdcq8tkd] {
	background: rgba(255, 255, 255, 0.3);
	transform: rotate(360deg);
}

.btn-icon svg[b-cjgdcq8tkd] {
	width: 28px;
	height: 28px;
}

.btn-arrow[b-cjgdcq8tkd] {
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	backdrop-filter: blur(10px);
}

.main-register-btn:hover .btn-arrow[b-cjgdcq8tkd] {
	transform: translateX(-8px) rotate(360deg);
	background: rgba(255, 255, 255, 0.3);
}

.btn-arrow svg[b-cjgdcq8tkd] {
	width: 20px;
	height: 20px;
}

.btn-ripple[b-cjgdcq8tkd] {
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
	animation: ripple-b-cjgdcq8tkd 4s infinite;
	z-index: 1;
}

/* Service Buttons */
.service-buttons[b-cjgdcq8tkd] {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.service-btn[b-cjgdcq8tkd] {
	position: relative;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
	backdrop-filter: blur(20px);
	border-radius: 25px;
	padding: 25px 30px;
	text-decoration: none;
	color: white;
	transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	display: flex;
	align-items: center;
	gap: 20px;
	border: 2px solid rgba(255, 255, 255, 0.15);
	min-width: 250px;
	overflow: hidden;
	transform: perspective(1000px) rotateX(0deg);
}

	.service-btn[b-cjgdcq8tkd]::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
		transition: left 0.6s ease;
	}

	.service-btn:hover[b-cjgdcq8tkd]::before {
		left: 100%;
	}

	.service-btn:hover[b-cjgdcq8tkd] {
		transform: perspective(1000px) rotateX(-5deg) translateY(-8px) scale(1.05);
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
		box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
		border-color: rgba(255, 255, 255, 0.3);
	}

	.service-btn.sms-btn:hover[b-cjgdcq8tkd] {
		box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
	}

	.service-btn.email-btn:hover[b-cjgdcq8tkd] {
		box-shadow: 0 25px 50px rgba(102, 126, 234, 0.4);
	}

.service-icon[b-cjgdcq8tkd] {
	width: 55px;
	height: 55px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: all 0.4s ease;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-btn:hover .service-icon[b-cjgdcq8tkd] {
	transform: rotate(360deg) scale(1.1);
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
}

.service-icon svg[b-cjgdcq8tkd] {
	width: 26px;
	height: 26px;
}

.service-content[b-cjgdcq8tkd] {
	flex: 1;
	text-align: right;
}

.service-title[b-cjgdcq8tkd] {
	display: block;
	font-size: 1.1rem;
	font-family: 'Dinar';
	margin-bottom: 8px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.service-desc[b-cjgdcq8tkd] {
	display: block;
	font-size: 0.9rem;
	opacity: 0.85;
	font-weight: 500;
}

.service-badge[b-cjgdcq8tkd] {
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.15));
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 700;
	flex-shrink: 0;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

/* Animations */
@keyframes float-b-cjgdcq8tkd {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-20px) rotate(90deg);
	}

	50% {
		transform: translateY(-10px) rotate(180deg);
	}

	75% {
		transform: translateY(-30px) rotate(270deg);
	}
}

@keyframes orb-3d-move-b-cjgdcq8tkd {
	0%, 100% {
		transform: translate3d(0, 0, 0) scale(1) rotateX(0deg) rotateY(0deg);
	}

	25% {
		transform: translate3d(100px, -50px, 50px) scale(1.2) rotateX(15deg) rotateY(90deg);
	}

	50% {
		transform: translate3d(-80px, 80px, -30px) scale(0.8) rotateX(-10deg) rotateY(180deg);
	}

	75% {
		transform: translate3d(-120px, -40px, 40px) scale(1.1) rotateX(20deg) rotateY(270deg);
	}
}

@keyframes particle-float-b-cjgdcq8tkd {
	0% {
		transform: translateY(100vh) scale(0);
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		transform: translateY(-100px) scale(1);
		opacity: 0;
	}
}

@keyframes ripple-b-cjgdcq8tkd {
	0% {
		left: -100%;
	}

	50% {
		left: 100%;
	}

	100% {
		left: 100%;
	}
}

@keyframes logo-glow-b-cjgdcq8tkd {
	0%, 100% {
		opacity: 0.7;
		transform: scaleX(1);
	}

	50% {
		opacity: 1;
		transform: scaleX(1.1);
	}
}

@keyframes glow-pulse-b-cjgdcq8tkd {
	0%, 100% {
		opacity: 0.5;
		transform: scale(1);
	}

	50% {
		opacity: 0.8;
		transform: scale(1.02);
	}
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav[b-cjgdcq8tkd] {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: linear-gradient(135deg, rgba(30, 60, 114, 0.95), rgba(42, 82, 152, 0.95));
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 8px 20px 12px;
	display: none;
	justify-content: space-around;
	align-items: center;
	z-index: 2000;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav-btn[b-cjgdcq8tkd] {
	background: none;
	border: none;
	color: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	padding: 8px 12px;
	border-radius: 15px;
	transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
	min-width: 60px;
}

	.mobile-nav-btn[b-cjgdcq8tkd]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
		border-radius: 20px;
		opacity: 0;
		transition: opacity 0.3s ease;
	}

	.mobile-nav-btn:active[b-cjgdcq8tkd]::before {
		opacity: 1;
	}

	.mobile-nav-btn:active[b-cjgdcq8tkd] {
		transform: scale(0.95);
		color: white;
	}

	.mobile-nav-btn.home-btn[b-cjgdcq8tkd] {
		background: linear-gradient(135deg, #667eea, #764ba2);
		color: white;
		transform: scale(1.1);
		box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
	}

		.mobile-nav-btn.home-btn:active[b-cjgdcq8tkd] {
			transform: scale(1.05);
		}

.mobile-nav-icon[b-cjgdcq8tkd] {
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease;
}

.mobile-nav-btn:active .mobile-nav-icon[b-cjgdcq8tkd] {
	transform: scale(1.2);
}

.mobile-nav-icon svg[b-cjgdcq8tkd] {
	width: 18px;
	height: 18px;
}

.mobile-nav-text[b-cjgdcq8tkd] {
	font-size: 9px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

.desktop-nav[b-cjgdcq8tkd] {
	display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
	.desktop-nav[b-cjgdcq8tkd] {
		display: none;
	}

	.mobile-bottom-nav[b-cjgdcq8tkd] {
		display: flex;
	}

	.hero-text-container[b-cjgdcq8tkd] {
		flex-direction: column;
		text-align: center;
		gap: 20px;
	}

	.hero-left-text[b-cjgdcq8tkd],
	.hero-right-text[b-cjgdcq8tkd] {
		padding: 0;
		text-align: center;
	}

	.nav-container[b-cjgdcq8tkd] {
		padding: 0 20px;
	}

	.nav-logo[b-cjgdcq8tkd] {
		font-size: 20px;
	}

	.nav-btn[b-cjgdcq8tkd] {
		padding: 10px 18px;
		font-size: 13px;
	}

	.content-container[b-cjgdcq8tkd] {
		padding: 0 20px;
	}

	.hero-section[b-cjgdcq8tkd] {
		padding: 40px 25px 80px;
	}

	.main-title[b-cjgdcq8tkd] {
		font-family: 'Dinar';
	}

	.main-subtitle[b-cjgdcq8tkd] {
		font-size: 1.2rem;
	}

	.main-description[b-cjgdcq8tkd] {
		font-size: 1rem;
	}

	.btn-content[b-cjgdcq8tkd] {
		padding: 18px 30px;
		font-size: 1.1rem;
	}

	.service-buttons[b-cjgdcq8tkd] {
		flex-direction: column;
		align-items: center;
	}

	.service-btn[b-cjgdcq8tkd] {
		min-width: 280px;
	}

	.shape[b-cjgdcq8tkd] {
		display: none;
	}

	.orb[b-cjgdcq8tkd] {
		width: 200px !important;
		height: 200px !important;
	}
}

@media (max-width: 480px) {
	.nav-buttons[b-cjgdcq8tkd] {
		gap: 8px;
	}

	.nav-btn[b-cjgdcq8tkd] {
		padding: 8px 14px;
		font-size: 12px;
	}

		.nav-btn svg[b-cjgdcq8tkd] {
			width: 16px;
			height: 16px;
		}

	.main-title[b-cjgdcq8tkd] {
		font-size: 2rem;
	}

	.hero-section[b-cjgdcq8tkd] {
		padding: 30px 20px;
	}

	.btn-content[b-cjgdcq8tkd] {
		padding: 16px 25px;
		font-size: 1rem;
	}

	.service-btn[b-cjgdcq8tkd] {
		min-width: 100%;
		padding: 18px 20px;
	}
}
/* _content/Server.Web/Components/Parts/HomePage/NazemNet/BlackTheme/AnimatedBackground.razor.rz.scp.css */
@font-face {
	font-family: Dinar;
	src: url('/fonts/Dinar.ttf') format('truetype');
}

*[b-m5lam8yxrk] {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body[b-m5lam8yxrk] {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	direction: rtl;
	overflow-x: hidden;
}

.header-section[b-m5lam8yxrk] {
	position: relative;
	min-height: 100vh;
	background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

/* Navigation */
.main-nav[b-m5lam8yxrk] {
	position: relative;
	z-index: 100;
	padding: 20px 0;
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(20px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container[b-m5lam8yxrk] {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav-brand[b-m5lam8yxrk] {
	display: flex;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.brand-icon[b-m5lam8yxrk] {
	width: 40px;
	height: 40px;
	background: linear-gradient(135deg, #ff9a9e, #fecfef);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	box-shadow: 0 0 20px rgba(255, 154, 158, 0.3);
}

	.brand-icon svg[b-m5lam8yxrk] {
		width: 24px;
		height: 24px;
	}

.brand-text[b-m5lam8yxrk] {
	font-family: 'Dinar';
	font-size: 24px;
	background: linear-gradient(135deg, #ff9a9e, #fecfef);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	letter-spacing: -0.5px;
}

.nav-actions[b-m5lam8yxrk] {
	display: flex;
	gap: 16px;
}

.nav-action-btn[b-m5lam8yxrk] {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	border: none;
	border-radius: 50px;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
}

	.nav-action-btn svg[b-m5lam8yxrk] {
		width: 18px;
		height: 18px;
	}

	.nav-action-btn.secondary[b-m5lam8yxrk] {
		background: rgba(255, 255, 255, 0.1);
		color: white;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

		.nav-action-btn.secondary:hover[b-m5lam8yxrk] {
			background: rgba(255, 255, 255, 0.2);
			transform: translateY(-2px);
			box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
		}

	.nav-action-btn.primary[b-m5lam8yxrk] {
		background: linear-gradient(135deg, #ff9a9e, #fecfef);
		color: white;
	}

		.nav-action-btn.primary:hover[b-m5lam8yxrk] {
			transform: translateY(-2px);
			box-shadow: 0 10px 30px rgba(255, 154, 158, 0.4);
		}

/* Night Sky */
.night-sky[b-m5lam8yxrk] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

/* Stars */
.stars[b-m5lam8yxrk] {
	position: absolute;
	width: 100%;
	height: 100%;
}

.star[b-m5lam8yxrk] {
	position: absolute;
	width: 3px;
	height: 3px;
	background: white;
	border-radius: 50%;
	animation: twinkle-b-m5lam8yxrk 3s ease-in-out infinite;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Moon */
.moon[b-m5lam8yxrk] {
	position: absolute;
	top: 10%;
	right: 10%;
	width: 80px;
	height: 80px;
}

.moon-glow[b-m5lam8yxrk] {
	position: absolute;
	width: 120px;
	height: 120px;
	top: -20px;
	left: -20px;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	border-radius: 50%;
	animation: moon-glow-b-m5lam8yxrk 4s ease-in-out infinite;
}

.moon-surface[b-m5lam8yxrk] {
	width: 80px;
	height: 80px;
	background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
	border-radius: 50%;
	position: relative;
	box-shadow: inset -10px -10px 0 rgba(0, 0, 0, 0.1);
}



/* Flying Birds */
.birds[b-m5lam8yxrk] {
	position: absolute;
	width: 100%;
	height: 100%;
}

.bird[b-m5lam8yxrk] {
	position: absolute;
	width: 20px;
	height: 10px;
}

.bird-1[b-m5lam8yxrk] {
	top: 20%;
	left: 20%;
	animation: bird-fly-1-b-m5lam8yxrk 15s linear infinite;
}

.bird-2[b-m5lam8yxrk] {
	top: 25%;
	left: 30%;
	animation: bird-fly-2-b-m5lam8yxrk 18s linear infinite;
	animation-delay: 3s;
}

.bird-3[b-m5lam8yxrk] {
	top: 15%;
	left: 60%;
	animation: bird-fly-3-b-m5lam8yxrk 20s linear infinite;
	animation-delay: 6s;
}

.bird-4[b-m5lam8yxrk] {
	top: 30%;
	left: 80%;
	animation: bird-fly-4-b-m5lam8yxrk 16s linear infinite;
	animation-delay: 9s;
}

.wing[b-m5lam8yxrk] {
	position: absolute;
	width: 8px;
	height: 3px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 50%;
	animation: wing-flap-b-m5lam8yxrk 0.5s ease-in-out infinite;
}

.wing-left[b-m5lam8yxrk] {
	left: 2px;
	transform-origin: right center;
}

.wing-right[b-m5lam8yxrk] {
	right: 2px;
	transform-origin: left center;
	animation-delay: 0.25s;
}

/* Floating School Objects */
.floating-objects[b-m5lam8yxrk] {
	position: absolute;
	width: 100%;
	height: 100%;
}

.school-object[b-m5lam8yxrk] {
	position: absolute;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(255, 255, 255, 0.7);
	animation: float-object-b-m5lam8yxrk 8s ease-in-out infinite;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

	.school-object svg[b-m5lam8yxrk] {
		width: 24px;
		height: 24px;
	}

.book[b-m5lam8yxrk] {
	top: 40%;
	left: 15%;
	animation-delay: 0s;
}

.pencil[b-m5lam8yxrk] {
	top: 60%;
	right: 20%;
	animation-delay: 1s;
}

.calculator[b-m5lam8yxrk] {
	top: 35%;
	right: 15%;
	animation-delay: 2s;
}

.graduation[b-m5lam8yxrk] {
	top: 55%;
	left: 25%;
	animation-delay: 3s;
}

.apple[b-m5lam8yxrk] {
	top: 45%;
	left: 70%;
	animation-delay: 4s;
}

.ruler[b-m5lam8yxrk] {
	top: 65%;
	right: 35%;
	animation-delay: 5s;
}

/* Hero Content */
.hero-content[b-m5lam8yxrk] {
	flex: 1;
	display: flex;
	align-items: stretch;
	justify-content: center;
	position: relative;
	z-index: 10;
	padding: 40px 0;
}

.content-wrapper[b-m5lam8yxrk] {
	max-width: 1200px;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: calc(100vh - 160px);
	padding: 0 30px;
}

.hero-top[b-m5lam8yxrk] {
	text-align: center;
	padding: 40px 0;
}

.hero-middle[b-m5lam8yxrk] {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 40px 0;
}

.hero-bottom[b-m5lam8yxrk] {
	text-align: center;
	padding: 10px 0;
}

.hero-badge[b-m5lam8yxrk] {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 50px;
	padding: 8px 20px;
	margin-bottom: 30px;
	color: rgba(255, 255, 255, 0.9);
	font-size: 25px;
}

.title-main[b-m5lam8yxrk] {
	display: block;
	font-size: 4rem;
	font-weight: 900;
	background: linear-gradient(135deg, #ff9a9e, #fecfef, #a8edea);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 10px;
	line-height: 1.1;
	text-shadow: 0 0 30px rgba(255, 154, 158, 0.3);
}

.title-sub[b-m5lam8yxrk] {
	display: block;
	font-size: 1.5rem;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	line-height: 1.4;
}

.hero-description[b-m5lam8yxrk] {
	font-size: 1.2rem;
	font-family: Dinar;
	color: rgba(255, 255, 255, 0.8);
	line-height: 1.6;
	margin-bottom: 50px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* Service Grid */
.service-grid[b-m5lam8yxrk] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 30px;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.service-card[b-m5lam8yxrk] {
	background: rgba(255, 255, 255, 0.08);
	backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 24px;
	padding: 40px;
	text-decoration: none;
	color: white;
	transition: all 0.4s ease;
	display: flex;
	flex-direction: column;
	gap: 25px;
	position: relative;
	overflow: hidden;
	min-height: 200px;
}

	.service-card[b-m5lam8yxrk]::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
		transition: left 0.6s ease;
	}

	.service-card:hover[b-m5lam8yxrk]::before {
		left: 100%;
	}

	.service-card:hover[b-m5lam8yxrk] {
		transform: translateY(-8px);
		background: rgba(255, 255, 255, 0.12);
		border-color: rgba(255, 255, 255, 0.25);
		box-shadow: 0 25px 50px rgba(255, 154, 158, 0.3);
	}

	.service-card .service-icon[b-m5lam8yxrk] {
		width: 80px;
		height: 80px;
		background: linear-gradient(135deg, #ff9a9e, #fecfef);
		border-radius: 20px;
		display: flex;
		align-items: center;
		justify-content: center;
		align-self: flex-start;
		box-shadow: 0 0 25px rgba(255, 154, 158, 0.4);
	}

.service-icon svg[b-m5lam8yxrk] {
	width: 40px;
	height: 40px;
}

.service-info[b-m5lam8yxrk] {
	flex: 1;
	text-align: right;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

	.service-info h3[b-m5lam8yxrk] {
		font-family: Dinar;
		margin: 0;
		background: linear-gradient(135deg, #ff9a9e, #fecfef);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
		background-clip: text;
	}

.service-desc[b-m5lam8yxrk] {
	font-size: 1rem;
	opacity: 0.9;
	line-height: 1.6;
	margin: 0;
}

.service-features[b-m5lam8yxrk] {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 10px;
}

	.service-features span[b-m5lam8yxrk] {
		background: rgba(255, 255, 255, 0.1);
		padding: 6px 12px;
		border-radius: 20px;
		font-size: 0.85rem;
		font-weight: 500;
		border: 1px solid rgba(255, 255, 255, 0.2);
	}

.service-arrow[b-m5lam8yxrk] {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease;
	opacity: 0.7;
}

.service-card:hover .service-arrow[b-m5lam8yxrk] {
	background: rgba(255, 255, 255, 0.2);
	transform: translateX(-5px) scale(1.1);
	opacity: 1;
}

.service-arrow svg[b-m5lam8yxrk] {
	width: 24px;
	height: 24px;
}

/* CTA Section */
.cta-section[b-m5lam8yxrk] {
	max-width: 600px;
	margin: 0 auto;
}

.cta-buttons[b-m5lam8yxrk] {
	display: flex;
	gap: 20px;
	justify-content: center;
	flex-wrap: wrap;
}

/* CTA Button */
.cta-button[b-m5lam8yxrk] {
	border: none;
	border-radius: 60px;
	padding: 18px 35px;
	font-size: 1.1rem;
	font-weight: 700;
	cursor: pointer;
	transition: all 0.4s ease;
	display: flex;
	align-items: center;
	gap: 12px;
	position: relative;
	overflow: hidden;
	min-width: 200px;
	justify-content: center;
}

	.cta-button.primary[b-m5lam8yxrk] {
		background: linear-gradient(135deg, #ff9a9e, #fecfef);
		color: white;
		box-shadow: 0 0 30px rgba(255, 154, 158, 0.4);
	}

	.cta-button.secondary[b-m5lam8yxrk] {
		background: rgba(255, 255, 255, 0.1);
		color: white;
		border: 2px solid rgba(255, 255, 255, 0.3);
		backdrop-filter: blur(20px);
	}

	.cta-button[b-m5lam8yxrk]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.cta-button.primary[b-m5lam8yxrk]::before {
		background: linear-gradient(135deg, #fecfef, #ff9a9e);
	}

	.cta-button.secondary[b-m5lam8yxrk]::before {
		background: rgba(255, 255, 255, 0.2);
	}

	.cta-button:hover[b-m5lam8yxrk]::before {
		opacity: 1;
	}

	.cta-button:hover[b-m5lam8yxrk] {
		transform: translateY(-4px);
	}

	.cta-button.primary:hover[b-m5lam8yxrk] {
		box-shadow: 0 20px 50px rgba(255, 154, 158, 0.6);
	}

	.cta-button.secondary:hover[b-m5lam8yxrk] {
		box-shadow: 0 20px 50px rgba(255, 255, 255, 0.2);
		border-color: rgba(255, 255, 255, 0.5);
	}

.cta-text[b-m5lam8yxrk],
.cta-icon[b-m5lam8yxrk] {
	position: relative;
	z-index: 1;
}

.cta-icon[b-m5lam8yxrk] {
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

	.cta-icon svg[b-m5lam8yxrk] {
		width: 22px;
		height: 22px;
	}

/* Mobile Navigation */
.mobile-nav[b-m5lam8yxrk] {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background: rgba(27, 39, 53, 0.95);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding: 10px 20px;
	display: none;
	justify-content: space-around;
	z-index: 1000;
}

.mobile-nav-item[b-m5lam8yxrk] {
	background: none;
	border: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
	padding: 10px;
	border-radius: 12px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: rgba(255, 255, 255, 0.7);
	font-size: 12px;
	font-weight: 600;
}

	.mobile-nav-item svg[b-m5lam8yxrk] {
		width: 24px;
		height: 24px;
	}

	.mobile-nav-item.active[b-m5lam8yxrk] {
		background: linear-gradient(135deg, #ff9a9e, #fecfef);
		color: white;
	}

	.mobile-nav-item:not(.active):hover[b-m5lam8yxrk] {
		background: rgba(255, 255, 255, 0.1);
		color: white;
	}

/* Animations */
@keyframes twinkle-b-m5lam8yxrk {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.2);
	}
}

@keyframes moon-glow-b-m5lam8yxrk {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}

	50% {
		opacity: 0.6;
		transform: scale(1.1);
	}
}



@keyframes bird-fly-1-b-m5lam8yxrk {
	0% {
		transform: translateX(-50px) translateY(0px);
	}

	100% {
		transform: translateX(calc(100vw + 50px)) translateY(-20px);
	}
}

@keyframes bird-fly-2-b-m5lam8yxrk {
	0% {
		transform: translateX(-50px) translateY(0px);
	}

	100% {
		transform: translateX(calc(100vw + 50px)) translateY(15px);
	}
}

@keyframes bird-fly-3-b-m5lam8yxrk {
	0% {
		transform: translateX(-50px) translateY(0px);
	}

	100% {
		transform: translateX(calc(100vw + 50px)) translateY(-10px);
	}
}

@keyframes bird-fly-4-b-m5lam8yxrk {
	0% {
		transform: translateX(-50px) translateY(0px);
	}

	100% {
		transform: translateX(calc(100vw + 50px)) translateY(25px);
	}
}

@keyframes wing-flap-b-m5lam8yxrk {
	0%, 100% {
		transform: rotateY(0deg);
	}

	50% {
		transform: rotateY(60deg);
	}
}

@keyframes float-object-b-m5lam8yxrk {
	0%, 100% {
		transform: translateY(0px) rotate(0deg);
	}

	25% {
		transform: translateY(-15px) rotate(5deg);
	}

	50% {
		transform: translateY(-5px) rotate(-3deg);
	}

	75% {
		transform: translateY(-20px) rotate(7deg);
	}
}

/* Responsive */
.desktop-only[b-m5lam8yxrk] {
	display: flex;
}

@media (max-width: 768px) {
	.service-card[b-m5lam8yxrk],
	.cta-button.secondary[b-m5lam8yxrk],
	.mobile-nav[b-m5lam8yxrk] {
		backdrop-filter: none;
		background: rgba(30, 41, 59, 0.9);
	}
}

@media (max-width: 768px) {
	.desktop-only[b-m5lam8yxrk] {
		display: none;
	}

	.mobile-nav[b-m5lam8yxrk] {
		display: flex;
	}

	.title-main[b-m5lam8yxrk] {
		font-size: 2.5rem;
	}

	.title-sub[b-m5lam8yxrk] {
		font-size: 1.2rem;
	}

	.hero-description[b-m5lam8yxrk] {
		font-size: 1rem;
	}

	.service-grid[b-m5lam8yxrk] {
		grid-template-columns: 1fr;
	}

	.service-card[b-m5lam8yxrk] {
		padding: 20px;
	}

	.service-desc[b-m5lam8yxrk] {
		display: none;
	}

	.content-wrapper[b-m5lam8yxrk] {
		padding: 0 20px;
		min-height: calc(100vh - 160px);
	}

	.hero-top[b-m5lam8yxrk] {
		padding: 10px 0;
	}

	.hero-middle[b-m5lam8yxrk] {
		padding: 20px 0;
	}

	.hero-bottom[b-m5lam8yxrk] {
		padding: 20px 0;
	}

	.cta-title[b-m5lam8yxrk] {
		font-size: 1.6rem;
	}

	.cta-subtitle[b-m5lam8yxrk] {
		font-size: 1rem;
	}

	.cta-buttons[b-m5lam8yxrk] {
		flex-direction: column;
		align-items: center;
	}

	.cta-button[b-m5lam8yxrk] {
		width: 100%;
		max-width: 280px;
	}



	.school-object[b-m5lam8yxrk] {
		width: 30px;
		height: 30px;
	}

		.school-object svg[b-m5lam8yxrk] {
			width: 18px;
			height: 18px;
		}
}

@media (max-width: 480px) {
	.title-main[b-m5lam8yxrk] {
		font-size: 2rem;
	}

	.cta-button[b-m5lam8yxrk] {
		padding: 16px 30px;
		font-size: 1rem;
	}

	.service-card[b-m5lam8yxrk] {
		padding: 16px;
		gap: 15px;
	}

	.service-icon[b-m5lam8yxrk] {
		width: 50px;
		height: 50px;
	}
}

.cta-button[b-m5lam8yxrk],
.service-card[b-m5lam8yxrk],
.mobile-nav[b-m5lam8yxrk],
.nav-action-btn[b-m5lam8yxrk] {
	will-change: transform;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
/* _content/Server.Web/Components/Parts/HomePage/NazemNet/BlackTheme/NazemNetFAQ.razor.rz.scp.css */

*[b-sqwdzd6w9m] {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.faq-section[b-sqwdzd6w9m] {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	padding: 100px 20px;
	font-family: 'Vazirmatn', sans-serif;
	direction: rtl;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

	.faq-section[b-sqwdzd6w9m]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: radial-gradient(circle at 25% 25%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 75% 75%, rgba(168, 85, 247, 0.08) 0%, transparent 50%), radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
		pointer-events: none;
	}

.faq-container[b-sqwdzd6w9m] {
	max-width: 900px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.faq-header[b-sqwdzd6w9m] {
	text-align: center;
	margin-bottom: 80px;
}

.faq-title[b-sqwdzd6w9m] {
	font-family:'Dinar';
	font-size: 2rem;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 50%, #cbd5e1 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
	position: relative;
}

	.faq-title[b-sqwdzd6w9m]::after {
		content: none;
	}

.faq-subtitle[b-sqwdzd6w9m] {
	font-size: 1.25rem;
	color: #94a3b8;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
	font-weight: 400;
}

.faq-list[b-sqwdzd6w9m] {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq-item[b-sqwdzd6w9m] {
	background: rgba(30, 41, 59, 0.6);
	border: 1px solid rgba(71, 85, 105, 0.3);
	border-radius: 20px;
	overflow: hidden;
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
}

	.faq-item[b-sqwdzd6w9m]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.faq-item:hover[b-sqwdzd6w9m] {
		border-color: rgba(59, 130, 246, 0.4);
		transform: translateY(-2px);
		box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
	}

		.faq-item:hover[b-sqwdzd6w9m]::before {
			opacity: 1;
		}

	.faq-item.active[b-sqwdzd6w9m] {
		border-color: rgba(59, 130, 246, 0.6);
		box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
	}

.faq-question[b-sqwdzd6w9m] {
	padding: 32px;
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: all 0.3s ease;
	position: relative;
	z-index: 2;
}

	.faq-question:hover[b-sqwdzd6w9m] {
		background: rgba(51, 65, 85, 0.3);
	}

.faq-question-text[b-sqwdzd6w9m] {
	font-size: 1.25rem;
	font-weight: 600;
	color: #ffffff;
	line-height: 1.5;
	margin-left: 20px;
}

.faq-icon[b-sqwdzd6w9m] {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 8px 20px -5px rgba(59, 130, 246, 0.3);
	flex-shrink: 0;
}

.faq-item.active .faq-icon[b-sqwdzd6w9m] {
	transform: rotate(180deg);
	background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
	box-shadow: 0 8px 20px -5px rgba(139, 92, 246, 0.4);
}

.faq-icon svg[b-sqwdzd6w9m] {
	width: 20px;
	height: 20px;
	color: white;
	transition: transform 0.3s ease;
}

.faq-answer[b-sqwdzd6w9m] {
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	background: rgba(15, 23, 42, 0.4);
}

.faq-item.active .faq-answer[b-sqwdzd6w9m] {
	max-height: 500px;
}

.faq-answer-content[b-sqwdzd6w9m] {
	padding: 0 32px 32px 32px;
	color: #cbd5e1;
	font-size: 1.1rem;
	line-height: 1.8;
	font-weight: 400;
	opacity: 0;
	transform: translateY(-10px);
	transition: all 0.4s ease 0.1s;
}

.faq-item.active .faq-answer-content[b-sqwdzd6w9m] {
	opacity: 1;
	transform: translateY(0);
}

.faq-answer-content p[b-sqwdzd6w9m] {
	margin-bottom: 16px;
}

	.faq-answer-content p:last-child[b-sqwdzd6w9m] {
		margin-bottom: 0;
	}

.faq-answer-content strong[b-sqwdzd6w9m] {
	color: #e2e8f0;
	font-weight: 600;
}

.faq-contact[b-sqwdzd6w9m] {
	text-align: center;
	margin-top: 80px;
	padding: 40px;
	background: rgba(30, 41, 59, 0.4);
	border-radius: 20px;
	border: 1px solid rgba(71, 85, 105, 0.3);
	backdrop-filter: blur(10px);
}

	.faq-contact h3[b-sqwdzd6w9m] {
		font-size: 1.5rem;
		font-weight: 700;
		color: #ffffff;
		margin-bottom: 16px;
	}

	.faq-contact p[b-sqwdzd6w9m] {
		color: #94a3b8;
		font-size: 1.1rem;
		line-height: 1.6;
		margin-bottom: 24px;
	}

/* Responsive Design */
@media (max-width: 768px) {
	.faq-section[b-sqwdzd6w9m] {
		padding: 80px 16px;
	}

	.faq-title[b-sqwdzd6w9m] {
		font-size: 2.5rem;
	}

	.faq-subtitle[b-sqwdzd6w9m] {
		font-size: 1.125rem;
	}

	.faq-question[b-sqwdzd6w9m] {
		padding: 24px;
	}

	.faq-question-text[b-sqwdzd6w9m] {
		font-size: 1.125rem;
		margin-left: 16px;
	}

	.faq-icon[b-sqwdzd6w9m] {
		width: 40px;
		height: 40px;
	}

		.faq-icon svg[b-sqwdzd6w9m] {
			width: 18px;
			height: 18px;
		}

	.faq-answer-content[b-sqwdzd6w9m] {
		padding: 0 24px 24px 24px;
		font-size: 1rem;
	}

	.faq-contact[b-sqwdzd6w9m] {
		padding: 32px 24px;
		margin-top: 60px;
	}
}

@media (max-width: 480px) {
	.faq-title[b-sqwdzd6w9m] {
		font-size: 2rem;
	}

	.faq-question[b-sqwdzd6w9m] {
		padding: 20px;
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.faq-question-text[b-sqwdzd6w9m] {
		margin-left: 0;
		font-size: 1rem;
	}

	.faq-answer-content[b-sqwdzd6w9m] {
		padding: 0 20px 20px 20px;
	}
}
/* _content/Server.Web/Components/Parts/HomePage/NazemNet/BlackTheme/NazemNetFeatures.razor.rz.scp.css */

*[b-vs77ff30po] {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.features-section[b-vs77ff30po] {
	background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
	padding: 80px 20px;
	font-family: 'Vazirmatn', sans-serif;
	direction: rtl;
	position: relative;
	overflow: hidden;
}

	.features-section[b-vs77ff30po]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
		pointer-events: none;
	}

.container[b-vs77ff30po] {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.section-header[b-vs77ff30po] {
	text-align: center;
	margin-bottom: 80px;
}

.section-title[b-vs77ff30po] {
	font-family: 'Dinar';
	font-size: 1.5rem;
	color: #ffffff;
	margin-bottom: 24px;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	line-height: 1.2;
}

.section-subtitle[b-vs77ff30po] {
	font-size: 1.25rem;
	color: #cbd5e1;
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.8;
	font-weight: 400;
}

.features-grid[b-vs77ff30po] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 32px;
	margin-bottom: 80px;
}

.feature-card[b-vs77ff30po] {
	will-change: transform;
	transform: translateZ(0);
	background: rgba(30, 41, 59, 0.8);
	border-radius: 24px;
	padding: 40px;
	border: 1px solid rgba(71, 85, 105, 0.3);
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

	.feature-card[b-vs77ff30po]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
		opacity: 0;
		transition: opacity 0.4s ease;
	}

	.feature-card:hover[b-vs77ff30po] {
		transform: translateY(-8px);
		border-color: var(--accent-color);
		box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--accent-color);
	}

		.feature-card:hover[b-vs77ff30po]::before {
			opacity: 1;
		}

	.feature-card:nth-child(1)[b-vs77ff30po] {
		--accent-color: #3b82f6;
	}

	.feature-card:nth-child(2)[b-vs77ff30po] {
		--accent-color: #10b981;
	}

	.feature-card:nth-child(3)[b-vs77ff30po] {
		--accent-color: #8b5cf6;
	}

	.feature-card:nth-child(4)[b-vs77ff30po] {
		--accent-color: #f59e0b;
	}

	.feature-card:nth-child(5)[b-vs77ff30po] {
		--accent-color: #ef4444;
	}

	.feature-card:nth-child(6)[b-vs77ff30po] {
		--accent-color: #06b6d4;
	}

.feature-icon[b-vs77ff30po] {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 32px;
	background: linear-gradient(135deg, var(--accent-color), rgba(var(--accent-color), 0.8));
	box-shadow: 0 10px 25px -5px rgba(var(--accent-color), 0.3);
	transition: all 0.4s ease;
}

.feature-card:hover .feature-icon[b-vs77ff30po] {
	transform: scale(1.1) rotate(5deg);
	box-shadow: 0 15px 35px -5px rgba(var(--accent-color), 0.5);
}

.feature-icon svg[b-vs77ff30po] {
	width: 32px;
	height: 32px;
	color: white;
}

.feature-title[b-vs77ff30po] {
	
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.3;
}

.feature-description[b-vs77ff30po] {
	font-size: 1rem;
	text-align: justify;
	text-justify: inter-word;
	color: #94a3b8;
	line-height: 1.7;
	margin-bottom: 28px;
}

.feature-list[b-vs77ff30po] {
	list-style: none;
}

	.feature-list li[b-vs77ff30po] {
		display: flex;
		align-items: center;
		color: #64748b;
		margin-bottom: 12px;
		font-size: 0.95rem;
		transition: color 0.3s ease;
	}

.feature-card:hover .feature-list li[b-vs77ff30po] {
	color: #94a3b8;
}

.feature-list li[b-vs77ff30po]::before {
	content: '';
	width: 8px;
	height: 8px;
	background: var(--accent-color);
	border-radius: 50%;
	margin-left: 16px;
	flex-shrink: 0;
	box-shadow: 0 0 10px rgba(var(--accent-color), 0.5);
}

.cta-section[b-vs77ff30po] {
	text-align: center;
}

.cta-button[b-vs77ff30po] {
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	color: white;
	font-size: 1.125rem;
	padding: 18px 48px;
	border: none;
	border-radius: 16px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
	position: relative;
	overflow: hidden;
}

	.cta-button[b-vs77ff30po]::before {
		content: '';
		position: absolute;
		top: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
		transition: left 0.6s ease;
	}

	.cta-button:hover[b-vs77ff30po] {
		transform: translateY(-2px) scale(1.05);
		box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
	}

		.cta-button:hover[b-vs77ff30po]::before {
			left: 100%;
		}

	.cta-button:active[b-vs77ff30po] {
		transform: translateY(0) scale(1.02);
	}

@media (max-width: 768px) {
	.feature-card[b-vs77ff30po] {
		backdrop-filter: none;
		background: rgba(30, 41, 59, 0.95);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.features-section[b-vs77ff30po] {
		padding: 60px 16px;
	}

	.section-title[b-vs77ff30po] {
		font-size: 2.5rem;
	}

	.features-grid[b-vs77ff30po] {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-bottom: 60px;
	}

	.feature-card[b-vs77ff30po] {
		padding: 32px 24px;
	}

	.feature-icon[b-vs77ff30po] {
		width: 64px;
		height: 64px;
		margin-bottom: 24px;
	}

		.feature-icon svg[b-vs77ff30po] {
			width: 28px;
			height: 28px;
		}

	.feature-title[b-vs77ff30po] {
		font-size: 1.5rem;
	}

	.cta-button[b-vs77ff30po] {
		padding: 16px 32px;
		font-size: 1rem;
	}
}

@media (max-width: 480px) {
	.section-title[b-vs77ff30po] {
		font-size: 2rem;
	}

	.section-subtitle[b-vs77ff30po] {
		font-size: 1.125rem;
	}

	.feature-card[b-vs77ff30po] {
		padding: 24px 20px;
	}
}
/* _content/Server.Web/Components/Parts/HomePage/NazemNet/BlackTheme/NazemNetFooter.razor.rz.scp.css */

*[b-752067k15t] {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.footer[b-752067k15t] {
	background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 50%, rgba(51, 65, 85, 0.95) 100%), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23334155;stop-opacity:0.3"/><stop offset="100%" style="stop-color:%23475569;stop-opacity:0.1"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23bg)"/><g opacity="0.1"><rect x="100" y="150" width="200" height="300" rx="10" fill="%23ffffff"/><rect x="350" y="100" width="150" height="400" rx="8" fill="%23ffffff"/><rect x="550" y="180" width="180" height="250" rx="12" fill="%23ffffff"/><rect x="780" y="120" width="160" height="350" rx="10" fill="%23ffffff"/><rect x="980" y="200" width="140" height="200" rx="8" fill="%23ffffff"/><circle cx="200" cy="80" r="30" fill="%23ffffff"/><circle cx="425" cy="60" r="25" fill="%23ffffff"/><circle cx="640" cy="90" r="35" fill="%23ffffff"/><circle cx="860" cy="70" r="28" fill="%23ffffff"/><circle cx="1050" cy="100" r="32" fill="%23ffffff"/><path d="M50 500 Q200 450 350 480 T650 460 Q800 440 950 470 T1200 450" stroke="%23ffffff" stroke-width="2" fill="none"/><path d="M0 520 Q150 480 300 500 T600 490 Q750 470 900 490 T1200 480" stroke="%23ffffff" stroke-width="1.5" fill="none"/></g></svg>') center/cover;
	font-family: 'Vazirmatn', sans-serif;
	direction: rtl;
	position: relative;
	overflow: hidden;
}

	.footer[b-752067k15t]::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%), radial-gradient(circle at 50% 10%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
		pointer-events: none;
	}

.footer-container[b-752067k15t] {
	max-width: 1400px;
	margin: 0 auto;
	padding: 80px 20px 0;
	position: relative;
	z-index: 1;
}

.footer-main[b-752067k15t] {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 60px;
}

.footer-brand[b-752067k15t] {
	max-width: 400px;
}

.footer-logo[b-752067k15t] {
	display: flex;
	align-items: center;
	margin-bottom: 32px;
}

.logo-icon[b-752067k15t] {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-left: 16px;
	box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
}

	.logo-icon svg[b-752067k15t] {
		width: 32px;
		height: 32px;
		color: white;
	}

.logo-text[b-752067k15t] {
	font-size: 2rem;
	font-family:'Dinar';
	color: #ffffff;
	background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.footer-description[b-752067k15t] {
	color: #94a3b8;
	font-size: 1.1rem;
	line-height: 1.8;
	margin-bottom: 32px;
}

.social-links[b-752067k15t] {
	display: flex;
	gap: 16px;
}

.social-link[b-752067k15t] {
	width: 48px;
	height: 48px;
	background: rgba(51, 65, 85, 0.6);
	border: 1px solid rgba(71, 85, 105, 0.4);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
	text-decoration: none;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
}

	.social-link:hover[b-752067k15t] {
		background: rgba(59, 130, 246, 0.2);
		border-color: rgba(59, 130, 246, 0.4);
		color: #3b82f6;
		transform: translateY(-2px);
		box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.2);
	}

	.social-link svg[b-752067k15t] {
		width: 20px;
		height: 20px;
	}

.footer-section[b-752067k15t] {
	display: flex;
	flex-direction: column;
}

.footer-title[b-752067k15t] {
	font-size: 1.25rem;
	font-family:'Dinar';
	color: #ffffff;
	margin-bottom: 24px;
	position: relative;
}

	

.footer-links[b-752067k15t] {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

	.footer-links li a[b-752067k15t] {
		color: #94a3b8;
		text-decoration: none;
		font-size: 1rem;
		transition: all 0.3s ease;
		display: flex;
		align-items: center;
		padding: 8px 0;
	}

		.footer-links li a:hover[b-752067k15t] {
			color: #3b82f6;
			transform: translateX(-4px);
		}

		.footer-links li a[b-752067k15t]::before {
			content: '';
			width: 4px;
			height: 4px;
			background: #3b82f6;
			border-radius: 50%;
			margin-left: 12px;
			opacity: 0;
			transition: opacity 0.3s ease;
		}

		.footer-links li a:hover[b-752067k15t]::before {
			opacity: 1;
		}

.contact-info[b-752067k15t] {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.contact-item[b-752067k15t] {
	display: flex;
	align-items: center;
	color: #94a3b8;
	font-size: 1rem;
}

	.contact-item svg[b-752067k15t] {
		width: 20px;
		height: 20px;
		margin-left: 12px;
		color: #3b82f6;
		flex-shrink: 0;
	}

.certificates-section[b-752067k15t] {
	background: rgba(30, 41, 59, 0.4);
	border: 1px solid rgba(71, 85, 105, 0.3);
	border-radius: 20px;
	padding: 40px;
	margin-bottom: 40px;
	backdrop-filter: blur(10px);
}

.certificates-title[b-752067k15t] {
	font-size: 1.25rem;
	font-weight: 700;
	color: #ffffff;
	text-align: center;
	margin-bottom: 32px;
}

.certificates-grid[b-752067k15t] {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
	gap: 24px;
	align-items: center;
}

.certificate-item[b-752067k15t] {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px;
	background: rgba(51, 65, 85, 0.4);
	border: 1px solid rgba(71, 85, 105, 0.3);
	border-radius: 16px;
	transition: all 0.4s ease;
	cursor: pointer;
}

	.certificate-item:hover[b-752067k15t] {
		transform: translateY(-4px);
		border-color: rgba(59, 130, 246, 0.4);
		box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.3);
	}

.certificate-icon[b-752067k15t] {
	width: 48px;
	height: 48px;
	background: linear-gradient(135deg, #10b981 0%, #059669 100%);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 12px;
	box-shadow: 0 8px 20px -5px rgba(16, 185, 129, 0.3);
}

	.certificate-icon svg[b-752067k15t] {
		width: 24px;
		height: 24px;
		color: white;
	}

.certificate-name[b-752067k15t] {
	font-size: 0.875rem;
	font-weight: 600;
	color: #e2e8f0;
	text-align: center;
	line-height: 1.4;
}

.footer-bottom[b-752067k15t] {
	border-top: 1px solid rgba(71, 85, 105, 0.3);
	padding: 32px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-copyright[b-752067k15t] {
	color: #64748b;
	font-size: 0.95rem;
}

.footer-links-bottom[b-752067k15t] {
	display: flex;
	gap: 32px;
	list-style: none;
}

	.footer-links-bottom li a[b-752067k15t] {
		color: #64748b;
		text-decoration: none;
		font-size: 0.95rem;
		transition: color 0.3s ease;
	}

		.footer-links-bottom li a:hover[b-752067k15t] {
			color: #3b82f6;
		}

/* Responsive Design */
@media (max-width: 1024px) {
	.footer-main[b-752067k15t] {
		grid-template-columns: 1fr 1fr;
		gap: 40px;
	}

	.certificates-grid[b-752067k15t] {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 768px) {
	.footer-container[b-752067k15t] {
		padding: 60px 16px 0;
	}

	.footer-main[b-752067k15t] {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.footer-brand[b-752067k15t] {
		max-width: none;
	}

	.certificates-section[b-752067k15t] {
		padding: 32px 24px;
	}

	.certificates-grid[b-752067k15t] {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}

	.footer-bottom[b-752067k15t] {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}

	.footer-links-bottom[b-752067k15t] {
		gap: 20px;
	}
}

@media (max-width: 480px) {
	.footer-logo[b-752067k15t] {
		justify-content: center;
	}

	.logo-icon[b-752067k15t] {
		width: 50px;
		height: 50px;
	}

	.logo-text[b-752067k15t] {
		font-size: 1.75rem;
	}

	.social-links[b-752067k15t] {
		justify-content: center;
	}

	.certificates-grid[b-752067k15t] {
		grid-template-columns: 1fr;
	}

	.footer-links-bottom[b-752067k15t] {
		flex-direction: column;
		gap: 12px;
	}
}
