/* Base Styles */
:root {
	--primary-color: #37afaa;
	--secondary-color: #00bcd4;
	--accent-color: #f44336;
	--text-color: #333;
	--light-text: #666;
	--bg-light: #f9f9f9;
	--bg-white: #ffffff;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", Arial, sans-serif;
	line-height: 1.6;
	color: var(--text-color);
	background-color: var(--bg-light);
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
}

.section-header {
	text-align: center;
	margin-bottom: 50px;
}

.section-header h2 {
	font-size: 36px;
	margin-bottom: 15px;
	color: var(--primary-color);
	position: relative;
	padding-bottom: 15px;
}

.section-header h2::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--secondary-color);
}

.section-header p {
	font-size: 18px;
	color: var(--light-text);
	max-width: 700px;
	margin: 0 auto;
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	transition: var(--transition);
	text-align: center;
}

.btn.small {
	padding: 8px 20px;
	font-size: 14px;
}

.btn.primary {
	background-color: var(--primary-color);
	color: white;
}

.btn.primary:hover {
	background-color: #2e9995;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(55, 175, 170, 0.3);
}

.btn.secondary {
	background-color: var(--secondary-color);
	color: white;
}

.btn.secondary:hover {
	background-color: #00a1b9;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(0, 188, 212, 0.3);
}

.btn.outline {
	background-color: transparent;
	color: var(--primary-color);
	border: 2px solid var(--primary-color);
}

.btn.outline:hover {
	background-color: var(--primary-color);
	color: white;
	transform: translateY(-3px);
}

.view-all {
	text-align: center;
	margin-top: 40px;
}

/* Header Styles */
header {
	background-color: var(--bg-white);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
}

.logo {
	display: flex;
	align-items: center;
}

/* Logo adjustments for LTR and RTL */
html:not([dir="rtl"]) .logo img {
	width: 40px;
	margin-right: 10px;
}

html[dir="rtl"] .logo img {
	width: 40px;
	margin-left: 10px;
}

.logo h1 {
	font-size: 24px;
	color: var(--primary-color);
}

nav ul {
	display: flex;
}

nav ul li {
	margin: 0 15px;
}

nav ul li a {
	font-weight: 500;
	transition: var(--transition);
	position: relative;
}

nav ul li a:hover,
nav ul li a.active {
	color: var(--primary-color);
}

nav ul li a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	height: 2px;
	background-color: var(--primary-color);
	transition: var(--transition);
}

/* Navigation underline for LTR */
html:not([dir="rtl"]) nav ul li a::after {
	left: 0;
	width: 0;
}

html:not([dir="rtl"]) nav ul li a:hover::after,
html:not([dir="rtl"]) nav ul li a.active::after {
	width: 100%;
}

/* Navigation underline for RTL */
html[dir="rtl"] nav ul li a::after {
	right: 0;
	width: 0;
}

html[dir="rtl"] nav ul li a:hover::after,
html[dir="rtl"] nav ul li a.active::after {
	width: 100%;
}

.language-switch a {
	padding: 5px 10px;
	border-radius: 4px;
	font-size: 14px;
	background-color: var(--primary-color);
	color: white;
	transition: var(--transition);
}

.language-switch a:hover {
	background-color: #2e9995;
	transform: translateY(-2px);
}

.mobile-menu-toggle {
	display: none;
	font-size: 24px;
	cursor: pointer;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("../images/banner.png");
	background-size: cover;
	background-position: center;
	color: white;
	padding: 120px 0;
	text-align: center;
}

.hero-content {
	max-width: 800px;
	margin: 0 auto;
}

.hero-content h1 {
	font-size: 48px;
	margin-bottom: 20px;
	font-weight: 700;
}

.hero-content p {
	font-size: 20px;
	margin-bottom: 30px;
}

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}

/* Featured Services Section */
.featured-services {
	padding: 80px 0;
	background-color: var(--bg-white);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 25px;
}

.service-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	text-align: center;
	box-shadow: var(--shadow);
	transition: var(--transition);
	border-bottom: 3px solid transparent;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	border-bottom-color: var(--primary-color);
}

.service-icon {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 20px;
	background-color: rgba(55, 175, 170, 0.1);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.service-card h3 {
	margin-bottom: 15px;
	font-size: 22px;
}

.service-card p {
	color: var(--light-text);
	margin-bottom: 20px;
}

/* Read more arrow for LTR and RTL */
.read-more {
	color: var(--primary-color);
	font-weight: 600;
	display: inline-block;
	position: relative;
}

html:not([dir="rtl"]) .read-more::after {
	content: "→";
	margin-left: 5px;
	transition: var(--transition);
}

html:not([dir="rtl"]) .read-more:hover::after {
	margin-left: 10px;
}

html[dir="rtl"] .read-more::after {
	content: "←";
	margin-right: 5px;
	transition: var(--transition);
}

html[dir="rtl"] .read-more:hover::after {
	margin-right: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.feature {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.feature:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
	font-size: 30px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.feature h3 {
	margin-bottom: 15px;
	font-size: 20px;
}

.feature p {
	color: var(--light-text);
}

/* Doctors Preview Section */
.doctors-preview {
	padding: 80px 0;
	background-color: var(--bg-white);
}

.doctors-slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.doctor-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.doctor-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctor-image {
	height: 250px;
	overflow: hidden;
}

.doctor-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: var(--transition);
}

.doctor-card:hover .doctor-image img {
	transform: scale(1.1);
}

.doctor-info {
	padding: 20px;
}

.doctor-info h3 {
	margin-bottom: 5px;
	font-size: 20px;
}

.doctor-info .specialty {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 5px;
}

.doctor-info .experience {
	color: var(--light-text);
	font-size: 14px;
	margin-bottom: 15px;
}

.doctor-contact {
	margin-top: 15px;
}

/* Testimonials Section */
.testimonials {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.testimonials-slider {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.testimonial {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.testimonial:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
	margin-bottom: 20px;
	position: relative;
}

/* Quote marks for LTR and RTL */
html:not([dir="rtl"]) .testimonial-content::before {
	content: '"';
	font-size: 60px;
	color: rgba(55, 175, 170, 0.1);
	position: absolute;
	top: -20px;
	left: -10px;
	font-family: Georgia, serif;
}

html[dir="rtl"] .testimonial-content::before {
	content: '"';
	font-size: 60px;
	color: rgba(55, 175, 170, 0.1);
	position: absolute;
	top: -20px;
	right: -10px;
	font-family: Georgia, serif;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

/* Testimonial author image for LTR and RTL */
html:not([dir="rtl"]) .testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-right: 15px;
}

html[dir="rtl"] .testimonial-author img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	margin-left: 15px;
}

.testimonial-author h4 {
	font-size: 18px;
	margin-bottom: 5px;
}

.testimonial-author p {
	color: var(--light-text);
	font-size: 14px;
}

/* Call to Action Section */
.cta {
	padding: 80px 0;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("../images/banner.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	color: white;
	text-align: center;
}

.cta-content {
	max-width: 700px;
	margin: 0 auto;
}

.cta-content h2 {
	font-size: 36px;
	margin-bottom: 15px;
}

.cta-content p {
	font-size: 18px;
	margin-bottom: 30px;
	opacity: 0.9;
}

/* Footer */
footer {
	background-color: #222;
	color: white;
	padding: 60px 0 20px;
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 30px;
	margin-bottom: 40px;
}

.footer-logo img {
	width: 50px;
	margin-bottom: 10px;
}

.footer-logo h2 {
	margin-bottom: 10px;
}

.footer-logo p {
	color: #aaa;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
	margin-bottom: 20px;
	font-size: 18px;
	position: relative;
	padding-bottom: 10px;
}

/* Footer headings underline for LTR */
html:not([dir="rtl"]) .footer-links h3::after,
html:not([dir="rtl"]) .footer-services h3::after,
html:not([dir="rtl"]) .footer-contact h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 2px;
	background-color: var(--primary-color);
}

/* Footer headings underline for RTL */
html[dir="rtl"] .footer-links h3::after,
html[dir="rtl"] .footer-services h3::after,
html[dir="rtl"] .footer-contact h3::after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 50px;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-links ul li,
.footer-services ul li {
	margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
	color: #aaa;
	transition: var(--transition);
}

/* Footer links hover effect for LTR */
html:not([dir="rtl"]) .footer-links ul li a:hover,
html:not([dir="rtl"]) .footer-services ul li a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

/* Footer links hover effect for RTL */
html[dir="rtl"] .footer-links ul li a:hover,
html[dir="rtl"] .footer-services ul li a:hover {
	color: var(--primary-color);
	padding-right: 5px;
}

.footer-contact p {
	margin-bottom: 10px;
	color: #aaa;
}

/* Footer contact icons for LTR */
html:not([dir="rtl"]) .footer-contact i {
	margin-right: 10px;
	color: var(--primary-color);
}

/* Footer contact icons for RTL */
html[dir="rtl"] .footer-contact i {
	margin-left: 10px;
	margin-right: 0;
	color: var(--primary-color);
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: #aaa;
	font-size: 14px;
}

.social-links {
	display: flex;
}

/* Social links spacing for LTR and RTL */
html:not([dir="rtl"]) .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-left: 10px;
	transition: var(--transition);
}

html[dir="rtl"] .social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	margin-right: 10px;
	transition: var(--transition);
}

.social-links a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}

	.cta-buttons .btn {
		width: 80%;
		margin-bottom: 15px;
	}

	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.social-links {
		margin-top: 15px;
		justify-content: center;
	}
}

@media (max-width: 768px) {
	.mobile-menu-toggle {
		display: block;
	}

	nav {
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		background-color: var(--bg-white);
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
		padding: 20px;
		clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
		transition: var(--transition);
	}

	nav.active {
		clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
	}

	nav ul {
		flex-direction: column;
	}

	nav ul li {
		margin: 10px 0;
	}

	.hero-content h1 {
		font-size: 36px;
	}

	.section-header h2 {
		font-size: 30px;
	}
}

@media (max-width: 576px) {
	.hero {
		padding: 80px 0;
	}

	.hero-content h1 {
		font-size: 30px;
	}

	.hero-content p {
		font-size: 16px;
	}

	.section-header h2 {
		font-size: 26px;
	}

	.section-header p {
		font-size: 16px;
	}

	.service-card,
	.feature,
	.doctor-card,
	.testimonial {
		padding: 20px;
	}
}

/* Page Banner Styles */
.page-banner {
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("../images/banner.png");
	background-size: cover;
	background-position: center;
	color: white;
	padding: 160px 0;
	text-align: center;
	margin-top: 0;
}

.page-banner h1 {
	font-size: 42px;
	margin-bottom: 15px;
	font-weight: 700;
}

.page-banner p {
	font-size: 18px;
	max-width: 700px;
	margin: 0 auto;
}

/* Services Introduction */
.services-intro {
	padding: 60px 0 30px;
	background-color: var(--bg-white);
}

/* Services List Styles */
.services-list {
	padding: 40px 0 80px;
	background-color: var(--bg-white);
}

.service-detail {
	display: flex;
	margin-bottom: 80px;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.service-detail:last-child {
	margin-bottom: 0;
}

.service-image {
	flex: 1;
	min-height: 400px;
}

.service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-info {
	flex: 1;
	padding: 40px;
}

.service-info .service-icon {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 20px;
	background-color: rgba(55, 175, 170, 0.1);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.service-info h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: var(--primary-color);
}

.service-info h3 {
	font-size: 20px;
	margin: 25px 0 15px;
}

.service-info p {
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Service info list for LTR and RTL */
html:not([dir="rtl"]) .service-info ul {
	margin-bottom: 25px;
	padding-left: 20px;
}

html[dir="rtl"]) .service-info ul {
	margin-bottom: 25px;
	padding-right: 20px;
}

.service-info ul li {
	margin-bottom: 10px;
	list-style-type: disc;
	list-style-position: outside;
}

.service-cta {
	margin-top: 30px;
}

/* FAQ Section Styles */
.faq-section {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background-color: white;
	border-radius: 8px;
	margin-bottom: 20px;
	box-shadow: var(--shadow);
	overflow: hidden;
}

.faq-question {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}

.faq-question h3 {
	margin: 0;
	font-size: 18px;
}

.faq-toggle {
	color: var(--primary-color);
	font-size: 18px;
}

.faq-answer {
	padding: 0 20px 20px;
	display: none;
}

.faq-answer p {
	margin: 0;
	line-height: 1.8;
}

/* Responsive Styles for Services Page */
@media (max-width: 992px) {
	.service-detail {
		flex-direction: column;
	}

	.service-image {
		min-height: 300px;
	}

	.service-info {
		padding: 30px;
	}
}

@media (max-width: 768px) {
	.page-banner {
		padding: 80px 0;
	}

	.page-banner h1 {
		font-size: 32px;
	}

	.service-image {
		min-height: 250px;
	}
}

@media (max-width: 576px) {
	.page-banner h1 {
		font-size: 28px;
	}

	.service-info {
		padding: 20px;
	}

	.service-info .service-icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}

	.service-info h2 {
		font-size: 24px;
	}

	.faq-question h3 {
		font-size: 16px;
	}
}

/* Doctors Introduction */
.doctors-intro {
	padding: 60px 0 30px;
	background-color: var(--bg-white);
}

/* Doctors Grid Section */
.doctors-grid-section {
	padding: 40px 0 80px;
	background-color: var(--bg-white);
}

/* Doctors Filter */
.doctors-filter {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 40px;
}

.filter-btn {
	padding: 10px 20px;
	background-color: transparent;
	border: 1px solid var(--primary-color);
	border-radius: 30px;
	cursor: pointer;
	font-weight: 500;
	transition: var(--transition);
	color: var(--primary-color);
}

.filter-btn.active,
.filter-btn:hover {
	background-color: var(--primary-color);
	color: white;
}

/* Doctors Grid */
.doctors-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
}

.doctors-grid .doctor-card {
	display: flex;
	flex-direction: column;
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.doctors-grid .doctor-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.doctors-grid .doctor-image {
	height: 250px;
}

.doctors-grid .doctor-info {
	padding: 25px;
}

.doctor-bio {
	margin: 15px 0;
	font-size: 14px;
	line-height: 1.6;
	color: var(--light-text);
}

.doctor-specialties {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.doctor-specialties span {
	background-color: rgba(55, 175, 170, 0.1);
	color: var(--primary-color);
	padding: 5px 10px;
	border-radius: 20px;
	font-size: 12px;
	font-weight: 500;
}

/* Appointment Process */
.appointment-process {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.process-steps {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	margin-top: 50px;
}

.process-step {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.process-step:hover {
	transform: translateY(-10px);
}

.step-icon {
	width: 80px;
	height: 80px;
	background-color: rgba(55, 175, 170, 0.1);
	color: var(--primary-color);
	font-size: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.process-step h3 {
	margin-bottom: 15px;
	font-size: 20px;
}

.process-step p {
	color: var(--light-text);
}

/* Responsive Styles for Doctors Page */
@media (max-width: 992px) {
	.doctors-grid {
		grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	}
}

@media (max-width: 768px) {
	.doctors-grid {
		grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	}

	.doctors-filter {
		overflow-x: auto;
		padding-bottom: 15px;
		justify-content: flex-start;
	}
}

@media (max-width: 576px) {
	.doctors-grid {
		grid-template-columns: 1fr;
	}

	.process-step {
		padding: 20px;
	}

	.step-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}
}

/* Our Story Section */
.our-story {
	padding: 80px 0;
	background-color: var(--bg-white);
}

.story-content {
	display: flex;
	align-items: center;
	gap: 40px;
}

.story-text {
	flex: 1;
}

.story-image {
	flex: 1;
}

.story-image img {
	width: 100%;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

html:not([dir="rtl"]) .text-left h2::after {
	left: 0;
	transform: none;
}

html[dir="rtl"] .text-right h2::after {
	right: 0;
	left: auto;
	transform: none;
}

.story-text p {
	margin-bottom: 20px;
	line-height: 1.8;
}

/* Mission and Vision */
.mission-vision {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.mission-vision-content {
	display: flex;
	gap: 40px;
}

.mission,
.vision {
	flex: 1;
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.mission:hover,
.vision:hover {
	transform: translateY(-10px);
}

.mission-icon,
.vision-icon {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 20px;
}

.mission h2,
.vision h2 {
	margin-bottom: 20px;
	font-size: 28px;
	color: var(--primary-color);
}

.mission p,
.vision p {
	line-height: 1.8;
}

/* Core Values */
.core-values {
	padding: 80px 0;
	background-color: var(--bg-white);
}

.values-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.value-card {
	background-color: white;
	border-radius: 10px;
	padding: 30px;
	box-shadow: var(--shadow);
	transition: var(--transition);
	text-align: center;
}

.value-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
	font-size: 40px;
	color: var(--primary-color);
	margin-bottom: 20px;
	background-color: rgba(55, 175, 170, 0.1);
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.value-card h3 {
	margin-bottom: 15px;
	font-size: 22px;
}

.value-card p {
	color: var(--light-text);
	line-height: 1.6;
}

/* Our Facilities */
.our-facilities {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.facilities-slider {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.facility {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.facility:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.facility img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.facility-info {
	padding: 20px;
}

.facility-info h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: var(--primary-color);
}

.facility-info p {
	color: var(--light-text);
	line-height: 1.6;
}

/* Achievements Section */
.achievements {
	padding: 80px 0;
	background-color: var(--bg-white);
}

.achievements-content {
	max-width: 900px;
	margin: 0 auto;
}

.achievement-stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 60px;
}

.stat {
	text-align: center;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 10px;
}

.stat-label {
	font-size: 16px;
	color: var(--light-text);
}

.achievement-timeline {
	position: relative;
	padding: 20px 0;
}

.achievement-timeline::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 100%;
	background-color: var(--primary-color);
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
	display: flex;
	align-items: center;
}

.timeline-item:last-child {
	margin-bottom: 0;
}

.timeline-item:nth-child(odd) {
	flex-direction: row-reverse;
}

.timeline-year {
	flex: 1;
	text-align: right;
	padding-right: 30px;
	font-size: 24px;
	font-weight: 700;
	color: var(--primary-color);
}

.timeline-item:nth-child(odd) .timeline-year {
	text-align: left;
	padding-right: 0;
	padding-left: 30px;
}

.timeline-content {
	flex: 3;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	position: relative;
}

.timeline-content::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 100%;
	transform: translateY(-50%);
	border-width: 10px;
	border-style: solid;
	border-color: transparent white transparent transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
	right: auto;
	left: 100%;
	border-color: transparent transparent transparent white;
}

.timeline-content h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: var(--primary-color);
}

/* Leadership Team */
.leadership-team {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.team-member {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
	transition: var(--transition);
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
	height: 250px;
}

.member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.member-info {
	padding: 20px;
}

.member-info h3 {
	margin-bottom: 5px;
	font-size: 20px;
}

.member-position {
	color: var(--primary-color);
	font-weight: 600;
	margin-bottom: 15px;
}

.member-bio {
	font-size: 14px;
	line-height: 1.6;
	color: var(--light-text);
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
	.story-content,
	.mission-vision-content {
		flex-direction: column;
	}

	.achievement-stats {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.achievement-timeline::before {
		left: 20px;
	}

	.timeline-item,
	.timeline-item:nth-child(odd) {
		flex-direction: column;
		align-items: flex-start;
		padding-left: 40px;
	}

	.timeline-year,
	.timeline-item:nth-child(odd) .timeline-year {
		text-align: left;
		padding: 0;
		margin-bottom: 10px;
	}

	.timeline-content::before,
	.timeline-item:nth-child(odd) .timeline-content::before {
		display: none;
	}
}

@media (max-width: 576px) {
	.achievement-stats {
		grid-template-columns: 1fr;
	}

	.value-card,
	.facility,
	.team-member {
		padding: 20px;
	}

	.value-icon {
		width: 60px;
		height: 60px;
		font-size: 30px;
	}
}

/* Contact Information Section */
.contact-info {
	padding: 80px 0 40px;
	background-color: var(--bg-white);
}

.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.contact-card {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
	text-align: center;
	transition: var(--transition);
}

.contact-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
	font-size: 30px;
	color: var(--primary-color);
	margin-bottom: 20px;
	background-color: rgba(55, 175, 170, 0.1);
	width: 70px;
	height: 70px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 20px;
}

.contact-card h3 {
	margin-bottom: 15px;
	font-size: 20px;
}

.contact-card p {
	color: var(--light-text);
	margin-bottom: 8px;
}

/* Contact Form & Map Section */
.contact-form-map {
	padding: 40px 0 80px;
	background-color: var(--bg-white);
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

.contact-form,
.contact-map {
	background-color: white;
	padding: 30px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 16px;
	transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--primary-color);
	outline: none;
	box-shadow: 0 0 0 2px rgba(55, 175, 170, 0.2);
}

.map-container {
	height: 400px;
	border-radius: 10px;
	overflow: hidden;
	margin-top: 20px;
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

/* Appointment Booking Section */
.appointment-booking {
	padding: 80px 0;
	background-color: var(--bg-light);
}

.appointment-form {
	max-width: 900px;
	margin: 0 auto;
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
	}

	.contact-map {
		margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.appointment-form {
		padding: 30px 20px;
	}
}

@media (max-width: 576px) {
	.contact-card {
		padding: 20px;
	}

	.contact-icon {
		width: 60px;
		height: 60px;
		font-size: 24px;
	}

	.contact-form,
	.contact-map {
		padding: 20px;
	}

	.map-container {
		height: 300px;
	}
}

/* Enhanced Contact Form Section */
.contact-form-section {
	padding: 60px 0 80px;
	background-color: var(--bg-white);
}

.enhanced-contact-form {
	max-width: 800px;
	margin: 30px auto 0;
	background-color: white;
	padding: 40px;
	border-radius: 10px;
	box-shadow: var(--shadow);
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 0;
}

.form-submit {
	margin-top: 25px;
	text-align: center;
}

.form-submit .btn {
	min-width: 180px;
	padding: 12px 30px;
	font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.enhanced-contact-form {
		padding: 30px 20px;
	}
}

/* Our Story Section Styles */
.our-story {
	padding: 80px 0;
	background-color: #f9f9f9;
}

.section-header.text-center {
	text-align: center;
	margin-bottom: 50px;
}

.story-content {
	display: flex;
	align-items: center;
	margin-bottom: 60px;
	gap: 40px;
}

.story-content.reverse {
	flex-direction: row-reverse;
}

.story-text {
	flex: 1;
}

.story-text p {
	margin-bottom: 20px;
	line-height: 1.8;
	font-size: 1.05rem;
}

.story-text h3 {
	color: #2a5f87;
	margin-bottom: 25px;
	font-size: 1.5rem;
	position: relative;
	padding-bottom: 15px;
}

.story-text h3:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 80px;
	height: 3px;
	background-color: #f8b500;
}

.story-image {
	flex: 1;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.story-image:hover img {
	transform: scale(1.05);
}

.feature-list {
	list-style: none;
	padding: 0;
}

.feature-list li {
	margin-bottom: 15px;
	padding-right: 30px;
	position: relative;
	line-height: 1.6;
}

.feature-list li i {
	color: #f8b500;
	position: absolute;
	right: 0;
	top: 5px;
}

.story-meaning {
	background-color: var(--primary-color);
	color: white;
	padding: 40px;
	border-radius: 10px;
	text-align: center;
	margin-top: 40px;
}

.story-meaning h3 {
	color: #f8b500;
	margin-bottom: 20px;
}

.story-meaning p {
	font-size: 1.1rem;
	line-height: 1.8;
	max-width: 800px;
	margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
	.story-content {
		flex-direction: column;
	}

	.story-content.reverse {
		flex-direction: column;
	}

	.story-image {
		margin-top: 30px;
		width: 100%;
	}
}

/* بهبود استایل بخش تسهیلات */
.facilities-slider {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
	gap: 30px;
	margin-top: 40px;
}

.facility {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facility:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility img {
	width: 100%;
	height: 250px; /* افزایش ارتفاع تصویر */
	object-fit: cover; /* حفظ نسبت تصویر و پوشش کامل فضا */
	display: block;
}

.facility-info {
	padding: 20px;
}

.facility-info h3 {
	color: var(--primary-color);
	margin-bottom: 15px;
	font-size: 1.3rem;
}

.facility-info p {
	color: #666;
	line-height: 1.6;
}

/* تنظیمات واکنش‌گرا */
@media (max-width: 992px) {
	.facilities-slider {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	.facilities-slider {
		grid-template-columns: 1fr;
	}

	.facility img {
		height: 220px;
	}
}
