:root /* light */
{
	--bg-main: #F6F6F6;
	--bg-side: #FFFFFF;
	--bg-content: #F3F3F3;
	--bg-form: #ffffff;
	--bg-scroll: rgba(0,0,0,0.2);
	--bg-hover-side: #f3f4f6;
	
	--border-side: #E2E2E2;
	--border-form: #E2E2E2;
	
	--color-side: #1F1F1F;
	--color-content: #1F1F1F;
	--color-form: #1F1F1F;
	
	--bar-height: 50px;
	
	--icon-normal: #6A6A6A;
	--icon-available: #1F1F1F;
	--icon-unavailable: #B5B5B5;
	
	--btn-submit-bg: #2563EB;        /* آبی مدرن */
	--btn-submit-bg-hover: #1D4ED8;
	--btn-submit-bg-active: #1E40AF;

	--btn-submit-color: #FFFFFF;
	--btn-submit-border: #2563EB;
}

/* body.dark dark */
{
	--bg-main: #121212;
	--bg-side: #181818;
	--bg-content: #141414;
	--bg-form: #1E1E1E;
	--bg-scroll: rgba(255,255,255,0.2);
	/* --bg-hover-side: #2E2E2E; */
	--bg-hover-side: #535353;
	
	--border-side: #535353;
	--border-form: #535353;
	
	--color-side: #EDEDED;
	--color-content: #EDEDED;
	--color-form: #EDEDED;
	
	--icon-normal: #B5B5B5;
	--icon-available: #FFFFFF;
	--icon-unavailable: #6A6A6A;
	
	--btn-submit-bg: #3B82F6;        /* کمی روشن‌تر برای دارک */
	--btn-submit-bg-hover: #2563EB;
	--btn-submit-bg-active: #1D4ED8;

	--btn-submit-color: #FFFFFF;
	--btn-submit-border: #3B82F6;
}

@font-face
{
	font-family: 'Vazir';
	src: url('../fonts/vazir/Vazir.woff2') format('woff2'),
		 url('../fonts/vazir/Vazir.woff') format('woff'),
		 url('../fonts/vazir/Vazir.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Vazir';
}

html, body
{
	/* height: 100%; */
	/* overflow: hidden; */
	height: auto;      /* یا 100% در صورت نیاز */
    overflow: auto;    /* اجازه اسکرول بده */
	
	-webkit-user-select: none; /* Chrome, Safari */
	-moz-user-select: none;    /* Firefox */
	-ms-user-select: none;     /* Edge قدیمی */
	user-select: none;         /* استاندارد */
}

.disNone
{
	display: none;
}

.noSelect
{
	-webkit-user-select: none; /* Chrome, Safari */
	-moz-user-select: none;    /* Firefox */
	-ms-user-select: none;     /* Edge قدیمی */
	user-select: none;         /* استاندارد */
}

a {
    text-decoration: none;   /* حذف خط زیر */
    color: inherit;           /* رنگ متن از عنصر والد بگیرد */
    transition: none;         /* جلوگیری از هر نوع انیمیشن رنگ */
}

a:hover,
a:focus,
a:active {
    color: inherit;           /* تغییر رنگ هنگام hover، focus یا کلیک ندهد */
    text-decoration: none;    /* خط زیر اضافه نشود */
}

/* header */

.header
{
	background: #ffffff;
	width: 100%;
	/* box-shadow: 0 2px 6px rgba(0,0,0,0.1); */
	display: flex;
	justify-content: center;
}

.header-container
{
	width: 100%;
	max-width: 1200px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

.left-section
{
	display: flex;
	align-items: center;
}

.iconcall
{
	font-size: 20px;
	/* font-weight: bold; */
	color: #6e6e6e;
	margin-right: 10px;
}

.valuecall
{
	font-size: 20px;
	/* font-weight: bold; */
	color: #6e6e6e;
}

.right-section
{
	display: flex;
	align-items: center;
}

.site-name
{
	margin-right: 15px;
	font-size: 25px;
	font-weight: bold;
	color: #6e6e6e;
}

.logo
{
	width: 50px;
	height: 50px;
	object-fit: contain;
}

@media (max-width: 768px)
{
	.iconcall
	{
		font-size: 15px;
	}

	.valuecall
	{
		font-size: 15px;
	}

	.site-name
	{
		/* margin-right: 15px; */
		font-size: 17px;
	}

	.logo
	{
		width: 35px;
		height: 35px;
	}
}

/* menu */

.nav-parent
{
	background: #ffffff;
	width: 100%;
	/* box-shadow: 0 4px 3px rgba(44,108,175,0.1); */
	display: flex;
	justify-content: center;
	border-top: 1px solid rgba(0,0,0,0.1);
}

.nav-desktop
{
	width: 100%;
	max-width: 1200px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 20px;
}

/* بخش سمت راست: منوها */
.nav-desktop .menu
{
	display: flex;
	gap: 40px;
}

.nav-desktop .menu a
{
	text-decoration: none;
	color: #6e6e6e;
	/* font-weight: bold; */
	position: relative;
	padding: 5px 0;
	transition: color 0.3s;
	font-size: 17px;
}

.nav-desktop .menu a::after
{
	content: '';
	position: absolute;
	bottom: 0;
	/* right: 0; */
	left: 50%;
	width: 0%;
	height: 2px;
	background: #2c6caf;
	transition: width 0.5s;
	transform: translateX(-50%);
}

.nav-desktop .menu a:hover
{
	color: #2c6caf;
}

.nav-desktop .menu a:hover::after
{
	width: 100%;
}

/* بخش سمت چپ: ورود/ثبت‌نام و جستجو */
.nav-desktop .user-actions
{
	display: flex;
	align-items: center;
	gap: 15px;
}

.nav-desktop .login-btn
{
	display: flex;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	color: #6e6e6e;
	/* font-weight: bold; */
	transition: color 0.3s;
}

.nav-desktop .login-btn:hover
{
	color: #2c6caf;
}

.nav-desktop .login-btn .iconLogin
{
	margin-right: 5px;
}

.nav-desktop .searchIcon
{
	margin-left: 10px;
	display: none;
}

.nav-desktop .searchIcon .search-icon
{
	cursor: pointer;
	font-size: 18px;
	color: #6e6e6e;
	transition: color 0.3s;
}

.nav-desktop .searchIcon .search-icon:hover
{
	color: #2c6caf;
}

.nav-parent .nav-mobile
{
	background: var(--bg-side);
	display: none;
	grid-template-columns: repeat(2, 1fr);
	height: 100%;
}

.nav-parent .nav-mobile .openSearchInMobile
{
	display: none;
}

@media (max-width: 768px)
{
	body
	{
		padding-bottom: var(--bar-height);
	}
	
	.nav-parent
	{
		width: 100%;
		height: var(--bar-height);
		display: block;
		position: fixed;
		bottom: 0;
		right: 0;
		left: 0;
		z-index: 1000;
		border-inline-end: 0px;
		border-top: 1px solid var(--border-side);
	}
	
	.nav-parent .nav-desktop
	{
		display: none;
	}
	
	.nav-parent .nav-mobile
	{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		/* height: 60px; */
		/* width: 100%; /* 👈 اضافه کردن width کافی است */ */
	}
	
	.nav-mobile .nav-btn
	{
		color: #6e6e6e;
		font-size: 17px;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
	}

	.nav-mobile .nav-btn-center
	{
		/* font-size: 20px; */
	}
}

 /* والد کارت ها */
.services
{
    max-width: 1500px;
    margin: 50px auto;
    display: flex;
    flex-wrap: wrap;      /* اجازه می‌دهد کارت‌ها به ردیف بعدی بروند */
    justify-content: center; /* کارت‌های ردیف آخر وسط‌چین شوند */
    gap: 50px;
    padding: 0 20px;
}

.service-card
{
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    flex: 1 1 300px; /* حداقل عرض 250px، انعطاف‌پذیر */
    max-width: 300px; /* حداکثر عرض کارت */
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-card:hover
{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon
{
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c6caf;
}

.service-title
{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.service-text
{
    font-size: 15px;
    color: #555;
    line-height: 2;
	text-align: justify;
}

/* Popup */

.popup-overlay
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.popup-overlay.active
{
	opacity: 1;
	pointer-events: auto;
}

.popup-box
{
	background: #fff;
	min-width: 300px;
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
	padding: 20px;
	transform: scale(0.9);
	transition: transform 0.3s ease;
	overflow: auto;
}

.popup-overlay.active .popup-box
{
	transform: scale(1);
}

.popup-close
{
	position: absolute;
	top: 10px;
	right: 15px;
	cursor: pointer;
	font-size: 20px;
}

/* menu mobile */

.menuMobile
{
	display: flex;
	flex-direction: column;
	margin-top: 30px;
}

.menuMobile .menuMobileItem
{
	border-bottom: 1px solid #e2e2e2;
	padding: 15px;
	transition: background-color 0.1s ease, transform 0.1s ease;
}

.menuMobile .menuMobileItem:last-child
{
	border-bottom: none;
}

.menuMobile .menuMobileItem:active
{
	background-color: rgba(0,0,0,0.05);
	transform: scale(0.98);
}

/* login by mobile */

.login-panel
{
	width: 100%;
	max-width: 360px;
	background: var(--bg-form, #fff);
	border-radius: 12px;
	padding: 25px;
	color: var(--color-form, #1f1f1f);
}

.login-title
{
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 10px;
	text-align: center;
}

.login-desc
{
	font-size: 14px;
	color: #777;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.8;
}

.login-field
{
	margin-bottom: 20px;
}

.login-input
{
	width: 100%;
	padding: 12px 14px;
	font-size: 15px;
	border-radius: 8px;
	border: 1px solid var(--border-form, #e2e2e2);
	outline: none;
	direction: ltr;
	text-align: center;
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.login-input:focus
{
	border-color: var(--btn-submit-bg, #2563eb);
	box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

.btnLoginByMobile
{
	width: 100%;
	padding: 12px;
	border-radius: 8px;
	border: none;
	font-size: 15px;
	cursor: pointer;
	background: var(--btn-submit-bg, #2563eb);
	color: var(--btn-submit-color, #fff);
	transition: background-color 0.25s ease, transform 0.15s ease;
}

.btnLoginByMobile:hover
{
	background: var(--btn-submit-bg-hover, #1d4ed8);
}

.btnLoginByMobile:active
{
	transform: scale(0.97);
}

/* search panel */

.search-panel
{
	margin: auto;
	margin-top: 10px;
	width: 600px;
	background: var(--bg-form, #fff);
	border-radius: 12px;
	/* padding: 15px 20px; */
	/* box-shadow: 0 4px 20px rgba(0,0,0,0.1); */
	color: var(--color-form, #1f1f1f);
}

@media (max-width: 768px)
{
	.search-panel
	{
		width: 90%;
	}
}

.search-panel .search-wrapper
{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 8px;
	border: 1px solid var(--border-form, #e2e2e2);
	transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.search-panel .search-icon
{
	flex: 0 0 auto;
	display: flex;
	text-align: center;
	justify-content: center;
	/* background-color: red; */
	padding: 0px 15px;
	cursor: pointer;
}

.search-panel .search-input
{
	/* background-color: red; */
	flex: 1 1 auto; /* تمام فضای باقی‌مانده رو می‌گیره */
}

.search-panel .search-input input
{
	width: 100%;
	padding: 10px 15px 10px 40px; /* padding-left برای فضای آیکون */
	border: 0px;
	font-size: 15px;
	outline: none;
	border-radius: 8px;
}

.search-wrapper:has(.search-input input:focus)
/* .search-panel .search-wrapper .search-input input:focus .search-panel .search-wrapper */
{
	border-color: var(--btn-submit-bg, #2563eb);
	box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}

/* start about */

/* body
{
	font-family: Vazirmatn, sans-serif;
	margin: 0;
	background: #f7f9fc;
	color: #333;
	line-height: 1.9;
} */

.about_form *
{
	font-family: 'Vazir';
	margin-top: 30px;
}

.about_form .container
{
	width: 90%;
	max-width: 1100px;
	margin: auto;
}

.about_form .hero
{
	/* background: linear-gradient(135deg,#2563eb,#4f46e5); */
	background-color: #FAFAFA;
	color: #34495e;
	padding: 80px 20px;
	text-align: center;
}

.about_form .hero h1
{
	font-size: 40px;
	margin-bottom: 10px;
	color: #333;
}

.about_form .hero p
{
	font-size: 18px;
	opacity: .9;
	color: #666;
}

.about_form .section
{
	/* padding: 10px 0; */
}

.about_form .section-title
{
	font-size: 28px;
	margin-bottom: 20px;
	color: #333;
}

.about_form .card
{
	background: white;
	border-radius: 14px;
	padding: 30px;
	box-shadow: 0 10px 25px rgba(0,0,0,0.06);
	margin-bottom: 25px;
	transition: .3s;
}

.about_form .card p
{
	color: #666;
}

/* .about_form .card:hover
{
	transform: translateY(-6px);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
} */

.about_form .features
{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
	gap: 20px;
	margin-top: 30px;
}

.about_form .feature
{
	background: white;
	border-radius: 12px;
	padding: 25px;
	text-align: center;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
	transition: .3s;
}

/* .about_form .feature:hover
{
	transform: translateY(-6px);
} */

.about_form .icon
{
	font-size: 34px;
	margin-bottom: 10px;
}

.about_form .services
{
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
	gap: 20px;
	margin-top: 30px;
}

.about_form .service
{
	background: white;
	padding: 25px;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.about_form .footer-box
{
	background: #111827;
	color: white;
	padding: 60px 20px;
	text-align: center;
}

.about_form .footer-box h2
{
	margin-bottom: 10px;
}

@media (max-width:768px)
{
	.about_form .hero h1
	{
		font-size: 30px;
	}

	.about_form .section-title
	{
		font-size: 24px;
	}
}

/* end about */

/* start contact */

/* *
{
	box-sizing: border-box;
	font-family: tahoma;
}

body
{
	background:#f5f6f7;
	margin:0;
	padding:40px;
} */


.contact_form
{
	width: 90%;
	max-width: 1100px;
	margin: auto;
}

.contact_form .container
{
	max-width:1100px;
	margin:auto;
}

.contact_form .about-card
{
	display:flex;
	align-items:center;
	gap:40px;
	background:#ffffff;
	padding:40px;
	border-radius:20px;
	box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

/* image side */

.contact_form .video-box
{
	position:relative;
	width:420px;
	min-width:420px;
	border-radius:20px;
	overflow:hidden;
}

.contact_form .video-box img
{
	width:100%;
	display:block;
}

/* play button */

.contact_form .play-btn
{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:70px;
	height:70px;
	border-radius:50%;
	background:#28c1c7;
	display:flex;
	align-items:center;
	justify-content:center;
	cursor:pointer;
	box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.contact_form .play-btn::before
{
	content:'';
	border-style:solid;
	border-width:12px 0 12px 18px;
	border-color:transparent transparent transparent white;
	margin-left:4px;
}

/* text side */

.contact_form .text-box h2
{
	margin-top:0;
	font-size:20px;
	color:#333;
}

.contact_form .text-box p
{
	color:#666;
	line-height:2;
	font-size:14px;
}

/* responsive */

@media (max-width:900px)
{
	.contact_form .about-card
	{
		flex-direction:column;
		text-align:center;
	}

	.contact_form .video-box
	{
		width:100%;
		min-width:auto;
	}
}

/* body
{
	font-family: sans-serif;
	background:#f3f4f6;
	display:flex;
	justify-content:center;
	align-items:center;
	height:100vh;
} */

.contact_form
{
	margin-top: 30px;
	padding-bottom: 50px;
}

.contact_form .coll-2
{
	display: flex;
	gap: 30px;
}

.contact_form .card
{
	margin-top: 30px;
	flex: 1;
	/* width:750px; */
	background:white;
	border-radius:20px;
	padding:25px 30px;
	display:flex;
	justify-content:space-between;
	align-items:center;
	box-shadow:0 10px 25px rgba(0,0,0,0.08);
	direction:rtl;
	gap: 20px;
}

.contact_form .card-content
{
	flex: 1;
}

.contact_form .card-content h3
{
	margin:0 0 10px 0;
	font-size:20px;
	color:#333;
}

.contact_form .card-content p
{
	margin:5px 0;
	color:#666;
	font-size:15px;
}

.contact_form .icon-box
{
	width:110px;
	height:110px;
	border-radius:20px;
	background:linear-gradient(135deg,#a7e0e3,#6cc5cf);
	display:flex;
	justify-content:center;
	align-items:center;
}

.contact_form .icon
{
	width:45px;
	fill:white;
}


/* end contact */