
:root {
	--primary-color: #1a3a52;
	--secondary-color: #d4af37;
	--text-light: #f8f9fa;
	--text-muted: #b8b8b8;
	--background-dark: #0f1419;
	--background-card: #1e2830;
	--accent-color: #c9a961;
}

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

body {
	font-family: 'Source Serif Pro', serif;
	background: linear-gradient(135deg, #0f1419 0%, #1a2632 100%);
	color: var(--text-light);
	min-height: 100vh;
	line-height: 1.7;
}

/* Typography Enhancements */
h1 {
	font-weight: 700;
	letter-spacing: -0.5px;
	color: var(--text-light);
	margin-bottom: 1.5rem;
}

h4 {
	color: var(--secondary-color);
	font-weight: 600;
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 1.4rem;
	position: relative;
	display: inline-block;
}

h4::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 50%;
	height: 2px;
	background: linear-gradient(90deg, var(--secondary-color) 0%, transparent 100%);
}

p {
	color: var(--text-muted);
	margin-bottom: 1rem;
	font-size: 1.05rem;
}

/* Container Styling */
.container {
	background: var(--background-card);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
	padding: 3rem 2rem;
	position: relative;
	overflow: hidden;
}

.container::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--primary-color));
}

/* Image Styling */
.img-fluid {
	border: 5px solid var(--secondary-color);
	box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.img-fluid:hover {
	transform: scale(1.05);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Links */
a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
	position: relative;
}

a::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 0;
	height: 1px;
	background: var(--secondary-color);
	transition: width 0.3s ease;
}

a:hover {
	color: var(--secondary-color);
}

a:hover::after {
	width: 100%;
}

/* Horizontal Rule */
hr.white {
	border: 0;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
	margin: 1.5rem 0;
	opacity: 0.6;
}

/* Content Sections */
.col-md-7 {
	padding-left: 2.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 2rem 1.5rem;
	}
	
	.col-md-7 {
		padding-left: 1rem;
		margin-top: 2rem;
	}
	
	h1 {
		font-size: 2rem;
	}
	
	h4 {
		font-size: 1.2rem;
	}
}

/* Contact Section Enhancement */
.col-md-7 > a[href^="mailto"],
.col-md-7 > a[href^="tel"] {
	font-weight: 600;
	font-size: 1.1rem;
}

/* Smooth Scrolling */
html {
	scroll-behavior: smooth;
}

/* Language Switcher */
.language-switcher {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	background: var(--background-card);
	padding: 10px 15px;
	border-radius: 25px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	display: flex;
	gap: 10px;
	align-items: center;
	border: 1px solid rgba(212, 175, 55, 0.2);
}

.language-switcher a,
.language-switcher span {
	text-decoration: none;
	color: var(--text-muted);
	font-weight: 600;
	font-size: 0.9rem;
	padding: 5px 10px;
	border-radius: 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.language-switcher a:hover {
	color: var(--secondary-color);
	background: rgba(212, 175, 55, 0.1);
}

.language-switcher a::after {
	display: none;
}

.language-switcher .active {
	color: var(--secondary-color);
	background: rgba(212, 175, 55, 0.15);
}

/* Selection Color */
::selection {
	background: var(--secondary-color);
	color: var(--primary-color);
}

/* Top Bar (if needed) */
.top-bar {
	margin-bottom: 20px; 
	height: 220px; 
	width: auto;
	background-image: url('img/cross.png');
	background-size: cover;
	background-position-y: bottom;
}

/* RTL Language Support */
.rtl-lang {
	font-family: 'Noto Naskh Arabic', 'Vazirmatn', 'Source Serif Pro', serif;
}

.rtl-lang .container::before {
	right: 0;
	left: auto;
}

.rtl-lang .col-md-7 {
	padding-right: 2.5rem;
	padding-left: 1rem;
}

.rtl-lang h4::after {
	right: 0;
	left: auto;
}

@media (max-width: 768px) {
	.rtl-lang .col-md-7 {
		padding-right: 1rem;
		padding-left: 1rem;
	}
}
