@import url(../components/buttons.css);

/* -----------------------------------header */

body {
	font-family: "Iranian-Sans";
}

.navbar-brand {
	transition: 0.3s ease-in-out;
}

.navbar-brand:hover {
	transform: scale(1.05);
}

/* Desktop menu improvements */
#navbarNav .nav {
	gap: 1rem;
	position: relative;
}

.nav-item {
	position: relative;
}

.nav-link {
	color: white;
	font-family: "Shabnam";
	font-size: 16px;
	font-weight: 500;
	padding: 10px 15px;
	border-radius: 8px;
	transition: all 0.3s ease;
	position: relative;
	overflow: hidden;
}

.nav-link::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.1);
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.4s ease;
	z-index: -1;
	border-radius: 8px;
}

.nav-link:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.nav-link:hover {
	color: #00d2ff;
	text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
	transform: translateY(-2px);
}

/* Dropdown improvements */
.hover-dropdown .dropdown-menu {
	background: rgba(255, 255, 255, 0.95);
	border: none;
	border-radius: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
	margin-top: 10px;
	padding: 0;
	transform-origin: top center;
	animation: dropdownFade 0.3s ease;
	display: block;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: all 0.3s ease;
}

.hover-dropdown:hover .dropdown-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

@keyframes dropdownFade {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.dropdown-menu::before {
	content: "";
	position: absolute;
	top: -10px;
	right: 30px;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid rgba(255, 255, 255, 0.95);
}

.dropdown-item {
	padding: 10px 20px;
	transition: all 0.2s ease;
	border-radius: 0;
	color: #333 !important;
}

.dropdown-item:hover {
	background: rgba(0, 123, 255, 0.1);
	color: #007bff !important;
	/* transform: translateX(-5px); */
}

.rotate-icon {
	transition: transform 0.3s ease;
}

.dropdown.show .rotate-icon,
.hover-dropdown:hover .rotate-icon {
	transform: rotate(180deg);
}

/* Mobile menu improvements */
.mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: 80%;
	height: 100%;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.95),
		rgba(240, 248, 255, 0.95)
	);
	z-index: 2000;
	overflow-y: auto;
	transform: translateX(100%);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
	padding: 20px;
}

.mobile-menu.show {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.mobile-menu .btn-close {
	width: 40px;
	height: 40px;
	background: rgba(0, 123, 255, 0.1);
	border-radius: 50%;
	opacity: 1;
	transition: all 0.3s ease;
}

.mobile-menu .btn-close:hover {
	background: rgba(220, 53, 69, 0.2);
	transform: rotate(90deg);
}

.mobile-menu ul li a {
	padding: 15px 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-weight: 500;
	margin-bottom: 5px;
}

.mobile-menu ul li a:hover {
	background: rgba(0, 123, 255, 0.1);
	color: #007bff !important;
	transform: translateX(-10px);
}

.submenu-mobile {
	height: 0;
	overflow: hidden;
	transition: height 0.4s ease;
	padding-right: 20px;
}

.submenu-mobile.open {
	height: auto;
}

.toggle-submenu {
	padding: 15px 20px !important;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-weight: 500;
}

.toggle-submenu:hover {
	background: rgba(0, 123, 255, 0.1);
	color: #007bff !important;
}

/* Bootstrap Icons in Menus */
.nav-link .bi {
	font-size: 1.2rem;
	transition: transform 0.2s ease;
}

.nav-link:hover .bi {
	transform: scale(1.2);
}

.mobile-menu .bi {
	font-size: 1.5rem;
	min-width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.toggle-submenu .bi {
	font-size: 1.2rem;
}

.dropdown-item .bi {
	font-size: 1rem;
	margin-left: 10px;
	transition: transform 0.2s ease;
}

.dropdown-item:hover .bi {
	transform: translateX(-3px);
}

/* Mobile menu item styling */
.mobile-menu ul li a {
	padding: 15px 20px;
	border-radius: 10px;
	transition: all 0.3s ease;
	font-weight: 500;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
}

.mobile-menu ul li a:hover {
	background: rgba(0, 123, 255, 0.1);
	color: #007bff !important;
	transform: translateX(-10px);
}

/* Submenu mobile items */
.submenu-mobile li a {
	padding: 10px 15px !important;
	font-size: 0.9rem;
}

.submenu-mobile li a:hover {
	transform: translateX(-5px);
}

/* Animated bounce for scroll indicator */
.animate-bounce {
	animation: bounce 2s infinite;
	display: inline-block;
}

@keyframes bounce {
	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}
	40% {
		transform: translateY(-10px);
	}
	60% {
		transform: translateY(-5px);
	}
}

/* خود هدر */
.header_slide {
	position: relative;
	width: 100%;
	height: 90vh;
	background-image: url("../../images/about/banner_1.webp");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	overflow: hidden;
}

/* overlay آبی */
.slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 123, 255, 0.4);
	z-index: 2;
}

/* محتوا روی overlay */
.header_title {
	position: absolute; /* مهم */
	top: 50%; /* وسط هدر */
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	text-align: center;
	z-index: 3; /* بالاتر از overlay */
	font-family: "Shabnam";
}

/* محتوا (لوگو و منو) بالای overlay */
#first_row {
	position: relative;
	z-index: 3;
}

/* موج پایین */
.wave {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	z-index: 4; /* بالای overlay ولی پایین محتوا */
}

.wave svg {
	display: block;
	width: calc(100% + 1px);
	height: 150px;
}

/* ------------------about us--------------- */
.image-wrapper {
	position: relative;
	width: 300px;
	height: 350px;
	border-radius: 60% 40% 40% 60% / 50% 60% 40% 50%;
	z-index: 1;
}

.image-wrapper img {
	width: 122%;
	height: 96%;
	object-fit: cover;
	border-radius: inherit;
	position: relative;
	z-index: 2;
}

.image-wrapper::before {
	content: "";
	position: absolute;
	top: -20px;
	left: -60px;
	width: 110%;
	height: 100%;
	background: linear-gradient(135deg, #0066ff, #00ccff);
	border-radius: 65% 35% 55% 45% / 55% 45% 65% 35%;
	z-index: 1;
}
/* حالت اولیه (نامرئی) */
.fade-in-section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

/* وقتی دیده شد */
.fade-in-section.show {
	opacity: 1;
	transform: translateY(0);
}

.btn-grad {
	background-image: linear-gradient(
		to right,
		#00d2ff 0%,
		#3a7bd5 51%,
		#00d2ff 100%
	);
	margin: 10px;
	padding: 15px 45px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white;
	box-shadow: 0 0 20px #eee;
	border-radius: 10px;
	display: block;
	border: none;
}

.btn-grad:hover {
	background-position: right center;
	color: #fff;
	text-decoration: none;
}

/* ----------------------------classes---------------- */
.classes-section {
	position: relative;
	/* padding: 50px 0 20px; */
	overflow: hidden;
	background: linear-gradient(
		135deg,
		#007bff,
		#00ccff
	); /* Default fallback */
}

.classes-wrapper {
	width: 100%;
	padding: 0 20px;
	margin-bottom: 2rem;
}

.weather-card {
	height: auto;
	min-height: 540px;
	background: #fff;
	box-shadow: 0 1px 38px rgba(0, 0, 0, 0.15), 0 5px 12px rgba(0, 0, 0, 0.25);
	overflow: hidden;
	border-radius: 15px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.weather-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.weather-card .top {
	position: relative;
	height: 410px;
	width: 100%;
	overflow: hidden;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.weather-card .top .color-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0.9;
}

.weather-card .top .wrapper {
	position: relative;
	z-index: 2;
	padding: 30px;
	width: 100%;
}

.weather-card .top .wrapper .heading {
	margin-top: 20px;
	font-size: 30px;
	font-weight: 700;
	color: #fff;
	font-family: "Shabnam";
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.weather-card .top .wrapper .location {
	margin-top: 20px;
	font-size: 21px;
	font-weight: 400;
	color: #fff;
	font-family: "Iranian-Sans";
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.weather-card .top .wrapper .temp {
	margin-top: 20px;
	font-family: "Iranian-Sans";
	line-height: 1.8;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.weather-card .top .wrapper .temp a {
	text-decoration: none;
	color: #fff;
}

.weather-card .top .wrapper .temp a .temp-type {
	font-size: 85px;
}

.weather-card .top .wrapper .temp .temp-value {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
}

.weather-card .top .wrapper .temp .deg {
	display: inline-block;
	font-size: 35px;
	font-weight: 600;
	color: #fff;
	vertical-align: top;
	margin-top: 10px;
}

.weather-card .bottom {
	padding: 0 30px;
	background: #fff;
}

.weather-card .bottom .wrapper .forecast {
	margin: 0;
	font-size: 0;
	padding: 0;
	padding-top: 20px;
	max-height: none;
	overflow: visible;
}

.weather-card .bottom .wrapper .forecast a {
	text-decoration: none;
	color: #000;
}

.weather-card .bottom .wrapper .forecast .go-up {
	text-align: center;
	display: block;
	font-size: 18px;
	margin-bottom: 10px;
}

.weather-card .bottom .wrapper .forecast li {
	display: block;
	font-size: 18px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.25);
	line-height: 1.6em;
	margin-bottom: 20px;
	font-family: "Iranian-Sans";
}

.weather-card .bottom .wrapper .forecast li .date {
	display: inline-block;
	font-weight: 600;
}

.weather-card .bottom .wrapper .forecast li .condition .temp {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	font-weight: 400;
	padding-top: 2px;
}

.weather-card .bottom .wrapper .forecast li .condition .temp .deg {
	display: inline-block;
	font-size: 10px;
	font-weight: 600;
	margin-left: 3px;
	vertical-align: top;
}

.weather-card .bottom .wrapper .forecast li .condition .temp .temp-type {
	font-size: 20px;
}

.weather-card .bottom .wrapper .forecast li.active {
	color: rgba(0, 0, 0, 0.8);
}

.weather-card .bottom .wrapper .forecast li .text-success {
	color: #28a745;
	font-weight: 600;
}

.weather-card .bottom .wrapper .forecast li .text-secondary {
	color: #6c757d;
	font-weight: 600;
}

.weather-card .bottom .wrapper .forecast li .text-info {
	color: #17a2b8;
	font-weight: 600;
}

.btn-outline-light {
	color: #007bff;
	border-color: #007bff;
	font-family: "Shabnam";
	font-weight: 600;
}

.btn-outline-light:hover {
	background-color: #007bff;
	color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.classes-section {
		padding: 80px 0 120px;
	}

	.weather-card {
		min-height: 500px;
	}

	.weather-card .top {
		height: 380px;
	}

	.weather-card .top .wrapper .heading {
		font-size: 26px;
	}

	.weather-card .bottom .wrapper .forecast li {
		font-size: 16px;
	}
}

@media (max-width: 576px) {
	.classes-section {
		padding: 60px 0 100px;
	}

	.weather-card {
		min-height: auto;
	}

	.weather-card .top {
		height: 350px;
	}

	.weather-card .top .wrapper .heading {
		font-size: 24px;
	}

	.weather-card .top .wrapper .location {
		font-size: 18px;
	}

	.weather-card .bottom .wrapper .forecast li {
		font-size: 15px;
		margin-bottom: 15px;
	}
}

/* ----------------------------teachers---------------- */
.teachers-section {
	background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
	position: relative;
	overflow: hidden;
}

.teachers-wrapper {
	width: 100%;
	padding: 0 20px;
	margin-bottom: 2rem;
}

.teachers-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 30px;
	padding: 20px 0;
}

.teacher-card {
	background: rgba(255, 255, 255, 0.95);
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	transition: all 0.4s ease;
	text-align: center;
	padding: 30px 20px;
}

.teacher-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.teacher-image {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	object-fit: cover;
	border: 5px solid #e3f2fd;
	margin: 0 auto 20px;
	transition: all 0.3s ease;
}

.teacher-card:hover .teacher-image {
	border-color: #2575fc;
	transform: scale(1.05);
}

.teacher-name {
	font-family: "Shabnam";
	font-size: 22px;
	font-weight: 700;
	color: #333;
	margin-bottom: 8px;
}

.teacher-subject {
	font-family: "Iranian-Sans";
	font-size: 16px;
	color: #2575fc;
	font-weight: 600;
	margin-bottom: 15px;
}

.teacher-experience {
	font-family: "Iranian-Sans";
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.5;
}

.teacher-stats {
	display: flex;
	justify-content: center;
	gap: 15px;
	margin-top: 20px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}

.teacher-stat {
	text-align: center;
}

.teacher-stat-value {
	font-family: "Shabnam";
	font-size: 18px;
	font-weight: 700;
	color: #2575fc;
	display: block;
}

.teacher-stat-label {
	font-family: "Iranian-Sans";
	font-size: 12px;
	color: #999;
}

.view-all-container {
	text-align: center;
	margin-top: 30px;
}

.btn-view-all-teachers {
	background: white;
	color: #2575fc;
	font-family: "Shabnam";
	font-weight: bold;
	padding: 12px 35px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid white;
	font-size: 16px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.btn-view-all-teachers:hover {
	background: transparent;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.teachers-container {
		grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
		gap: 25px;
	}

	.teacher-name {
		font-size: 20px;
	}
}

@media (max-width: 768px) {
	.teachers-section {
		padding: 80px 0 120px;
	}

	.teachers-container {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 20px;
	}

	.teacher-card {
		padding: 25px 15px;
	}

	.teacher-name {
		font-size: 18px;
	}

	.teacher-subject {
		font-size: 15px;
	}
}

@media (max-width: 576px) {
	.teachers-section {
		padding: 60px 0 100px;
	}

	.teachers-container {
		grid-template-columns: 1fr;
		max-width: 300px;
		margin: 0 auto;
	}

	.teacher-card {
		padding: 25px 20px;
	}
}

/* -------------------news------------- */

.news-section .section-title-main {
	font-family: "Shabnam";
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.news-section .title-main {
	color: #333;
}

.news-section .title-highlight-main {
	color: #007bff;
}

.news-section .title-underline {
	width: 80px;
	height: 4px;
	background: linear-gradient(to left, #00d2ff, #3a7bd5);
	border-radius: 2px;
	margin-top: 10px;
}

.news-section .section-subtitle-main {
	font-family: "Iranian-Sans";
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.news-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.news-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.news-img-wrapper {
	position: relative;
	overflow: hidden;
}

.news-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.news-card:hover .news-img {
	transform: scale(1.05);
}

.news-date-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 8px 12px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 5px;
}

.news-date-badge span {
	font-family: "Iranian-Sans";
	font-weight: bold;
	color: #333;
	font-size: 0.9rem;
}

.news-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.news-title {
	font-family: "Shabnam";
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #333;
}

.news-excerpt {
	font-family: "Iranian-Sans";
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
	flex-grow: 1;
}

.news-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	flex-wrap: wrap;
	gap: 8px;
}

.news-category {
	background: #e3f2fd;
	color: #007bff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.news-read-time {
	color: #999;
	font-size: 0.85rem;
	font-family: "Iranian-Sans";
	display: flex;
	align-items: center;
}

.news-link {
	display: inline-block;
	color: #007bff;
	font-family: "Iranian-Sans";
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.news-link:hover {
	color: #0056b3;
	transform: translateX(-5px);
}

.btn-view-all-news {
	background: linear-gradient(to left, #00d2ff, #3a7bd5);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-family: "Shabnam";
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-view-all-news:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
	color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.news-section .section-title-main {
		font-size: 2.2rem;
	}

	.news-title {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.news-section {
		padding: 40px 0;
	}

	.news-section .section-title-main {
		font-size: 2rem;
	}

	.news-section .section-subtitle-main {
		font-size: 1rem;
	}

	.news-img {
		height: 180px;
	}

	.news-title {
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.news-section {
		padding: 30px 0;
	}

	.news-section .section-title-main {
		font-size: 1.8rem;
		flex-direction: column;
		gap: 5px;
	}

	.news-img {
		height: 160px;
	}

	.news-content {
		padding: 15px;
	}

	.news-title {
		font-size: 1.1rem;
	}

	.news-excerpt {
		font-size: 0.9rem;
	}

	.btn-view-all-news {
		padding: 10px 25px;
		font-size: 0.95rem;
	}

	.news-meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ----------------------------top students---------------- */
.students-wrapper {
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
	margin-bottom: 2rem;
}

.students-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
	padding: 10px;
}

/* Update student section header */
.titles {
	font-family: "Shabnam";
	font-weight: 700;
}

.top-student {
	position: relative;
	background-color: #007ccea3;
	border: none;
	border-radius: 15px;
	overflow: hidden;
	transition: transform 0.3s;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 20px 15px;
	text-align: center;
	min-height: 350px;
	justify-content: space-between;
}

.top-student:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.top-student img {
	width: 100px;
	height: 100px;
	object-fit: cover;
	border: 3px solid white;
	transition: all 0.3s ease;
}

.top-student:hover img {
	transform: scale(1.05);
}

.student-name {
	font-size: 20px;
	font-weight: bold;
	font-family: "Shabnam";
	color: white;
	margin-top: 10px;
}

.student-rank {
	font-size: 16px;
	font-family: "Iranian-Sans";
	color: #e0f7ff;
	margin-bottom: 15px;
}

.student-details {
	background: rgba(255, 255, 255, 0.15);
	border-radius: 10px;
	padding: 12px;
	width: 100%;
}

.student-description {
	font-size: 14px;
	font-family: "Iranian-Sans";
	color: white;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.student-stats {
	display: flex;
	justify-content: center;
	gap: 10px;
}

.stat {
	background: rgba(255, 255, 255, 0.2);
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-family: "Iranian-Sans";
	color: white;
}

.btn-view-all {
	background: white;
	color: #007bff;
	font-family: "Shabnam";
	font-weight: bold;
	padding: 12px 30px;
	border-radius: 30px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 2px solid white;
}

.btn-view-all:hover {
	background: transparent;
	color: white;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.view-all-container {
	text-align: center;
}

/* حالت اولیه (نامرئی) */
.fade-in-section {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1s ease-out, transform 1s ease-out;
}

/* وقتی دیده شد */
.fade-in-section.show {
	opacity: 1;
	transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.students-container {
		grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
		gap: 15px;
	}

	.top-student {
		min-height: 320px;
		padding: 15px 10px;
	}

	.student-name {
		font-size: 18px;
	}

	.student-rank {
		font-size: 14px;
	}

	.student-description {
		font-size: 12px;
	}
}

@media (max-width: 576px) {
	.students-container {
		grid-template-columns: 1fr;
		max-width: 300px;
		margin: 0 auto;
	}

	.top-student {
		min-height: auto;
	}
}

/* --------------------services---------------- */
.section-title {
	position: relative;
	padding-bottom: 15px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
	font-size: 20px;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 50%;
	transform: translateX(50%);
	width: 200px;
	height: 4px;
	background: linear-gradient(to left, #00d2ff, #3a7bd5);
	border-radius: 2px;
}

.title-highlight {
	color: #333;
	position: relative;
}

.title-accent {
	color: #3a7bd5;
	display: inline-block;
}

.section-subtitle {
	font-family: "Iranian-Sans";
	font-size: 18px;
	color: #666;
	max-width: 600px;
	margin: 15px auto 0;
	line-height: 1.6;
}

/* Rest of the CSS remains the same */
.service-card {
	background-color: #b8e4ff;
	border-radius: 1rem;
	overflow: hidden;
	position: relative;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 200px;
	cursor: pointer;
	display: flex;
	flex-direction: column;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-title {
	font-weight: bold;
	padding: 1rem;
	font-size: 1.2rem;
	font-family: "Shabnam";
	display: flex;
	align-items: center;
	gap: 10px;
}

.service-icon {
	font-size: 1.5rem !important;
}

.service-heading {
	margin: 0;
	font-size: 1.1rem;
	font-weight: bold;
}

.service-content {
	position: absolute;
	inset: 0;
	background-color: rgba(167, 226, 243, 0.95);
	background-color: #26a9ea;
	padding: 1rem;
	opacity: 0;
	transition: opacity 0.4s ease;
	overflow-y: auto;
	font-family: "Iranian-Sans";
	text-align: justify;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.service-card:hover .service-content {
	opacity: 1;
}

.service-content ul {
	padding-right: 0;
	margin-bottom: 0;
}

.service-content li {
	margin-bottom: 8px;
	font-size: 0.9rem;
}

.service-content li:last-child {
	margin-bottom: 0;
}

.service-image {
	width: 80px !important; /* Smaller images */
	height: auto;
	margin: 10px 15px !important;
	align-self: flex-end;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.section-title {
		font-size: 26px;
	}

	.title-accent {
		font-size: 22px;
	}

	.section-subtitle {
		font-size: 16px;
	}

	.service-icon {
		font-size: 1.3rem !important;
	}

	.service-heading {
		font-size: 1rem;
	}

	.service-image {
		width: 60px !important;
	}
}

@media (max-width: 576px) {
	.section-title {
		font-size: 24px;
		flex-direction: column;
		gap: 5px;
	}

	.title-accent {
		font-size: 20px;
	}

	.section-subtitle {
		font-size: 14px;
	}

	.service-icon {
		font-size: 1.2rem !important;
	}

	.service-card {
		height: auto;
		min-height: 180px;
	}
}

/* -------------------article cards------------- */
.articles-section {
	background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
	padding: 60px 0;
}

.section-title-main {
	font-family: "Shabnam";
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.title-main {
	color: #333;
}

.title-highlight-main {
	color: #007bff;
}

.title-underline {
	width: 80px;
	height: 4px;
	background: linear-gradient(to left, #00d2ff, #3a7bd5);
	border-radius: 2px;
	margin-top: 10px;
}

.section-subtitle-main {
	font-family: "Iranian-Sans";
	font-size: 1.1rem;
	color: #666;
	max-width: 600px;
	margin: 0 auto;
}

.article-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.article-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.article-img-wrapper {
	position: relative;
	overflow: hidden;
}

.article-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.article-card:hover .article-img {
	transform: scale(1.05);
}

.article-date-badge {
	position: absolute;
	top: 15px;
	left: 15px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	padding: 8px 12px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	gap: 5px;
}

.article-date-badge span {
	font-family: "Iranian-Sans";
	font-weight: bold;
	color: #333;
	font-size: 0.9rem;
}

.article-content {
	padding: 20px;
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

.article-title {
	font-family: "Shabnam";
	font-size: 1.3rem;
	font-weight: 700;
	margin-bottom: 12px;
	color: #333;
}

.article-excerpt {
	font-family: "Iranian-Sans";
	font-size: 0.95rem;
	color: #666;
	line-height: 1.6;
	margin-bottom: 15px;
	flex-grow: 1;
}

.article-meta {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
	flex-wrap: wrap;
	gap: 8px;
}

.article-category {
	background: #e3f2fd;
	color: #007bff;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.8rem;
	font-weight: 600;
}

.article-read-time {
	color: #999;
	font-size: 0.85rem;
	font-family: "Iranian-Sans";
	display: flex;
	align-items: center;
}

.article-link {
	display: inline-block;
	color: #007bff;
	font-family: "Iranian-Sans";
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	margin-top: auto;
}

.article-link:hover {
	color: #0056b3;
	transform: translateX(-5px);
}

.btn-view-all-articles {
	background: linear-gradient(to left, #00d2ff, #3a7bd5);
	color: white;
	border: none;
	padding: 12px 30px;
	border-radius: 30px;
	font-family: "Shabnam";
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s ease;
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-view-all-articles:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
	color: white;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.section-title-main {
		font-size: 2.2rem;
	}

	.article-title {
		font-size: 1.2rem;
	}
}

@media (max-width: 768px) {
	.articles-section {
		padding: 40px 0;
	}

	.section-title-main {
		font-size: 2rem;
	}

	.section-subtitle-main {
		font-size: 1rem;
	}

	.article-img {
		height: 180px;
	}

	.article-title {
		font-size: 1.1rem;
	}
}

@media (max-width: 576px) {
	.articles-section {
		padding: 30px 0;
	}

	.section-title-main {
		font-size: 1.8rem;
		flex-direction: column;
		gap: 5px;
	}

	.article-img {
		height: 160px;
	}

	.article-content {
		padding: 15px;
	}

	.article-title {
		font-size: 1.1rem;
	}

	.article-excerpt {
		font-size: 0.9rem;
	}

	.btn-view-all-articles {
		padding: 10px 25px;
		font-size: 0.95rem;
	}

	.article-meta {
		flex-direction: column;
		align-items: flex-start;
	}
}

/* ----------------------gallery------------------ */
.picture_gallery {
	background: linear-gradient(to top, #ffffff 0%, #f8f9fa 100%);
	padding: 60px 0;
}

.gallery-card {
	background: #fff;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.gallery-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.gallery-card-carousel {
	position: relative;
}

.gallery-card-img-wrapper {
	position: relative;
	overflow: hidden;
	height: 250px;
}

.gallery-card-img {
	height: 250px;
	object-fit: cover;
	transition: all 0.5s ease;
}

.gallery-card-img-wrapper:hover .gallery-card-img {
	transform: scale(1.05);
}

.gallery-card-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 123, 255, 0.7);
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: all 0.3s ease;
}

.gallery-card-img-wrapper:hover .gallery-card-overlay {
	opacity: 1;
}

.gallery-card-info {
	text-align: center;
	transform: translateY(20px);
	transition: all 0.3s ease;
}

.gallery-card-img-wrapper:hover .gallery-card-info {
	transform: translateY(0);
}

.gallery-card-content {
	background: #f8f9fa;
}

.gallery-card-title {
	font-family: "Shabnam";
	font-weight: 700;
	color: #333;
}

.gallery-card-text {
	font-size: 0.9rem;
}

.btn-view-gallery {
	background: linear-gradient(to left, #00d2ff, #3a7bd5);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 30px;
	font-family: "Shabnam";
	font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.btn-view-gallery:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
	color: white;
}
/* Modal styles - Updated */
.gallery-modal .modal-content {
	background: #000;
	border: none;
	height: 100vh;
	overflow: hidden;
}

.gallery-modal .modal-header {
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(0, 0, 0, 0.7);
	padding: 1rem;
}

.gallery-modal .modal-title {
	color: white;
	font-family: "Shabnam";
}

.gallery-modal .btn-close {
	filter: invert(1);
}

.gallery-modal .modal-body {
	padding: 0;
	height: calc(100vh - 56px); /* 56px is approximate header height */
}

.gallery-modal .carousel {
	height: 100%;
}

.gallery-modal .carousel-inner {
	height: 100%;
}

.gallery-modal .carousel-item {
	height: 100%;
}

.gallery-modal .carousel-item img {
	height: 100%;
	object-fit: cover;
}

.gallery-modal .carousel-control-prev,
.gallery-modal .carousel-control-next {
	width: 60px;
	height: 60px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	z-index: 20;
}

.gallery-modal .carousel-control-prev:hover,
.gallery-modal .carousel-control-next:hover {
	background: rgba(255, 255, 255, 0.3);
	width: 70px;
	height: 70px;
}

.gallery-modal .carousel-control-prev-icon,
.gallery-modal .carousel-control-next-icon {
	filter: invert(1);
}

.gallery-modal .carousel-indicators {
	z-index: 20;
	margin-bottom: 1rem;
}

.gallery-modal .carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	transition: all 0.3s ease;
}

.gallery-modal .carousel-indicators .active {
	background-color: #fff;
	transform: scale(1.2);
}

.gallery-modal .carousel-caption {
	background: rgba(0, 0, 0, 0.5);
	border-radius: 10px;
	padding: 15px;
	bottom: 30px;
	z-index: 10;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.gallery-modal .modal-content {
		height: 100vh;
	}

	.gallery-modal .modal-header {
		padding: 0.75rem;
	}

	.gallery-modal .modal-body {
		height: calc(100vh - 48px); /* Adjusted for smaller header */
	}

	.gallery-modal .carousel-control-prev,
	.gallery-modal .carousel-control-next {
		width: 40px;
		height: 40px;
	}

	.gallery-modal .carousel-caption {
		display: none;
	}
}

@media (max-width: 576px) {
	.gallery-modal .carousel-control-prev,
	.gallery-modal .carousel-control-next {
		display: none;
	}
}
/* Contact Section Two-Column Layout */
.contact-wrapper {
	display: flex !important;
	flex-wrap: wrap;
	padding: 1rem 0 2rem;
	gap: 2rem;
	justify-content: center !important;
}

.contact-info-section {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
	background: linear-gradient(135deg, #5b9dff, #3f7bff);
	border-radius: 25px;
	padding: 2rem;
	color: white;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-details h3 {
	text-align: center;
	margin-bottom: 1.5rem;
	font-size: 1.8rem;
}

.contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 1.2rem;
	font-size: 1.1rem;
	gap: 1rem;
}

.contact-item i {
	font-size: 1.3rem;
	min-width: 30px;
}

.social-media-section {
	margin-top: 2rem;
	text-align: center;
}

.social-media-section h4 {
	margin-bottom: 1rem;
	font-size: 1.2rem;
}

.social-icons {
	display: flex;
	justify-content: center;
	gap: 1rem;
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: white;
	font-size: 1.5rem;
	transition: all 0.3s ease;
}

.social-icon i {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icon:hover {
	background-color: white;
	color: #3f7bff;
	transform: translateY(-3px);
}

.map-section {
	flex: 1;
	min-width: 300px;
	max-width: 500px;
}

.map-container {
	height: 100%;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	min-height: 400px;
	border: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.contact-wrapper {
		flex-direction: column;
		align-items: center !important;
	}

	.contact-info-section,
	.map-section {
		width: 90%;
		max-width: 600px;
	}

	.map-container iframe {
		min-height: 350px;
	}
}

@media (max-width: 576px) {
	.contact-info-section {
		padding: 1.5rem;
	}

	.contact-item {
		font-size: 1rem;
		gap: 0.8rem;
	}

	.social-icon {
		width: 45px;
		height: 45px;
		font-size: 1.3rem;
	}

	.map-container iframe {
		min-height: 300px;
	}
}
/* --------------------- Footer ------------------------- */
/* Enhanced Footer Styles */
.site-footer {
	position: relative;
	background: linear-gradient(to bottom, #069ef1 0%, #007bff 100%);
	color: #fff;
	text-align: right;
	overflow: hidden;
	padding-top: 60px;
	padding-bottom: 20px;
	font-family: "Iranian-Sans", sans-serif;
}

.footer-content {
	position: relative;
	z-index: 1;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.footer-columns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-column {
	flex: 1;
	min-width: 250px;
	padding: 20px;
	background: rgba(255, 255, 255, 0.05);
	border-radius: 15px;
	backdrop-filter: blur(10px);
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-column h4 {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	position: relative;
	padding-bottom: 10px;
}

.footer-column h4::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50px;
	height: 3px;
	background: linear-gradient(to left, #ffffff, #a0d2ff);
	border-radius: 2px;
}

.footer-column p,
.footer-column a {
	margin: 10px 0;
	color: #e6f7ff;
	text-decoration: none;
	line-height: 1.8;
}

.footer-column a:hover {
	color: #ffffff;
	text-decoration: underline;
}

.contact-info p {
	margin: 5px 0;
	font-size: 0.95rem;
}

.footer-options {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 0;
	font-size: 16px;
	transition: all 0.3s ease;
	border-radius: 5px;
}

.footer-options:hover {
	background: rgba(255, 255, 255, 0.1);
	transform: translateX(-5px);
	padding-right: 10px;
}

.footer-options i {
	color: #a0d2ff;
	font-size: 12px;
}

/* Map Buttons Styling */
.map-buttons {
	display: flex;
	flex-direction: column;
	margin-top: 15px;
}

.map-button {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 15px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 8px;
	color: white;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 15px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-button:hover {
	background: rgba(255, 255, 255, 0.25);
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-button i {
	font-size: 18px;
}

/* Social Media Section */
.social {
	display: flex;
	justify-content: center;
	flex-flow: wrap;
	gap: 1rem;
	width: 100%;
	margin-top: 15px;
}

.social li {
	position: relative;
	flex-basis: 2.5rem;
	list-style: none;
}

.social li::after {
	position: absolute;
	content: attr(data-tooltip);
	inset: -45% auto auto 50%;
	z-index: 2;
	translate: -50%;
	padding: 0.25rem 0.75rem;
	font-size: 0.875rem;
	color: #fff;
	background: var(--bg, #070707);
	border-radius: 0.25rem;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: inset 0.4s cubic-bezier(0.47, 2, 0.41, 1.5),
		visibility 0.3s ease-in-out, opacity 0.2s ease-in-out;
}

.social li:has(a:hover, a:focus-visible)::after {
	opacity: 1;
	visibility: visible;
	inset-block-start: -70%;
}

.social a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	aspect-ratio: 1;
	font-size: 1.3rem;
	color: #070707;
	border: 1px solid;
	border-radius: 100%;
	text-decoration: none;
	outline: none;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.social a > i {
	position: relative;
	z-index: 1;
}

.social i {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social a::after {
	position: absolute;
	content: "";
	inset: 100% 0 0;
	background: var(--bg, #070707);
	pointer-events: none;
	transition: inset 0.3s ease-in-out;
}

.social a:hover,
.social a:focus-visible {
	color: #fff;
	transform: translateY(-5px);
}

.social a:hover::after,
.social a:focus-visible::after {
	inset-block-start: 0;
}

/* SEO Content Section */
.footer-seo-content h5 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #ffffff;
}

.footer-seo-content p {
	font-size: 14px;
	line-height: 1.7;
}

/* Copyright Section */
.footer-copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 15px;
	margin-top: 15px;
	padding-bottom: 15px;
}

.footer-copyright span {
	color: #e6f7ff;
	font-size: 14px;
}

.footer-copyright i {
	font-size: 14px;
}

/* Buttons Styling */
.btn-grad-blue,
.btn-grad-red,
.btn-grad-dark {
	width: 100%;
	margin: 8px 0;
	text-align: center;
	padding: 10px;
	border-radius: 8px;
	font-weight: 500;
	transition: all 0.3s ease;
	border: none;
	font-family: "Iranian-Sans";
	box-shadow: none;
}

.btn-grad-blue:hover,
.btn-grad-red:hover,
.btn-grad-dark:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Improvements */
@media (max-width: 992px) {
	.footer-columns {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-column {
		width: 100% !important;
		max-width: 600px;
	}

	.footer-column h4::after {
		right: 50%;
		transform: translateX(50%);
	}

	.footer-options {
		justify-content: center;
	}

	.social {
		justify-content: center;
	}

	.map-buttons {
		align-items: center;
	}

	.map-button {
		width: 80%;
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.site-footer {
		padding: 40px 15px 15px;
	}

	.footer-column {
		padding: 15px;
		margin-right: 0 !important;
	}

	.footer-column h4 {
		font-size: 20px;
	}

	.footer-column p,
	.footer-options span {
		font-size: 14px;
		line-height: 1.7;
	}

	.social a {
		font-size: 1.1rem;
		width: 40px;
		height: 40px;
	}

	.footer-copyright span {
		font-size: 12px !important;
		text-align: center;
	}

	.footer-copyright i {
		font-size: 12px;
	}

	.btn-grad-blue,
	.btn-grad-red,
	.btn-grad-dark {
		padding: 8px;
		font-size: 14px;
	}

	.map-button {
		width: 100%;
		font-size: 14px;
		padding: 10px;
	}

	.map-button i {
		font-size: 16px;
	}
}

/* Footer Wave Enhancement - Removed animation */
.footer-wave {
	display: block;
	width: 100%;
	height: 100px;
	transform: rotate(180deg);
	margin-bottom: -1px;
	fill: #007bff; /* Match footer background color */
}

/* Remove wave animation */
.footer-wave g {
	animation: none;
}
/* ---------------- Responsive ---------------- */

/* تبلت */
/* @media (max-width: 992px) {
	.footer-columns {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.footer-column {
		width: 100% !important;
		margin-bottom: 25px;
	}

	.footer-column h4 {
		font-size: 20px;
	}

	.footer-options {
		justify-content: center;
	}
} */

/* موبایل */
@media (max-width: 576px) {
	.image-wrapper::before {
		content: "";
		position: absolute;
		top: -20px;
		left: 0px;
		width: 95%;
		height: 90%;
		background: linear-gradient(135deg, #0066ff, #00ccff);
		border-radius: 65% 35% 55% 45% / 55% 45% 65% 35%;
		z-index: 1;
	}

	.image-wrapper img {
		width: 95%;
		height: 90%;
		object-fit: cover;
		border-radius: inherit;
		position: relative;
		z-index: 2;
	}
}
