/* ============================================
   Main Stylesheet - Anas Alqassas Website
   ============================================ */

/* Reset & Base Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Cairo', 'Noto Sans Arabic', Arial, sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: #fff;
	direction: rtl;
	text-align: right;
	background: #000;
	overflow-x: hidden;
}

.container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
	background: #1a1a1a;
	padding: 12px 0;
	border-bottom: 1px solid #2a2a2a;
	position: relative;
	z-index: 1000;
}

.topbar-content {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.topbar-date {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.5px;
}

/* ============================================
   HERO BANNER SECTION
   ============================================ */
.hero-banner {
	position: relative;
	width: 100%;
	aspect-ratio: 10 / 3;
	background: #000;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Background Elements */
.hero-background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bg-element {
	position: absolute;
	width: 50%;
	height: 100%;
	opacity: 0.15;
	filter: blur(40px);
}

.bg-chart {
	left: 0;
	background: linear-gradient(135deg, 
		rgba(0, 150, 255, 0.3) 0%,
		rgba(255, 100, 0, 0.3) 25%,
		rgba(0, 255, 150, 0.3) 50%,
		rgba(255, 0, 100, 0.3) 75%,
		rgba(150, 0, 255, 0.3) 100%
	);
	background-size: 200% 200%;
	animation: gradientShift 15s ease infinite;
}

.bg-globe {
	right: 0;
	background: radial-gradient(circle at center,
		rgba(255, 150, 0, 0.2) 0%,
		rgba(0, 150, 255, 0.2) 50%,
		transparent 100%
	);
	background-size: 150% 150%;
	animation: pulse 8s ease-in-out infinite;
}

.bg-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: 
		radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
		radial-gradient(circle at 70% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
	opacity: 0.3;
}

@keyframes gradientShift {
	0%, 100% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
}

@keyframes pulse {
	0%, 100% { transform: scale(1); opacity: 0.15; }
	50% { transform: scale(1.1); opacity: 0.25; }
}

/* Foreground Objects */
.hero-foreground {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 30%;
	z-index: 2;
	display: flex;
	align-items: flex-end;
	justify-content: space-around;
	padding: 0 5%;
	display: none;
}

.foreground-item {
	position: relative;
	opacity: 0.6;
	transition: opacity 0.3s, transform 0.3s;
}

.foreground-item:hover {
	opacity: 1;
	transform: translateY(-10px);
}

/* Globe Icon */
.globe-item {
	left: 5%;
}

.globe-icon {
	width: 80px;
	height: 80px;
	background: radial-gradient(circle, #4a5568 30%, #2d3748 70%);
	border-radius: 50%;
	position: relative;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.globe-icon::before {
	content: '';
	position: absolute;
	top: 20%;
	left: 20%;
	width: 60%;
	height: 60%;
	background: linear-gradient(45deg, #68d391 0%, #48bb78 50%, #38a169 100%);
	border-radius: 50%;
	opacity: 0.3;
}

/* Missile Launcher */
.missile-item {
	left: 20%;
}

.missile-icon {
	width: 120px;
	height: 60px;
	background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
	border-radius: 8px;
	position: relative;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.missile-icon::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 10%;
	width: 80%;
	height: 4px;
	background: #cbd5e0;
	transform: translateY(-50%);
}

.missile-icon::after {
	content: '';
	position: absolute;
	top: 20%;
	right: 15%;
	width: 20px;
	height: 20px;
	background: #e53e3e;
	border-radius: 50%;
}

/* Chess Piece */
.chess-item {
	left: 35%;
}

.chess-piece {
	width: 60px;
	height: 60px;
	background: linear-gradient(135deg, #d4a574 0%, #b8860b 100%);
	border-radius: 50%;
	position: relative;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 32px;
	color: #8b0000;
	font-weight: bold;
}

/* Knight Piece */
.knight-item {
	left: 50%;
}

.knight-piece {
	width: 50px;
	height: 50px;
	background: linear-gradient(135deg, #f6e05e 0%, #d69e2e 100%);
	clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* Jet Icon */
.jet-item {
	right: 5%;
}

.jet-icon {
	width: 100px;
	height: 40px;
	background: linear-gradient(135deg, #718096 0%, #4a5568 100%);
	clip-path: polygon(0% 50%, 20% 0%, 80% 0%, 100% 50%, 80% 100%, 20% 100%);
	position: relative;
	box-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.jet-icon::after {
	content: 'CF-08';
	position: absolute;
	bottom: -20px;
	right: 10px;
	font-size: 10px;
	color: #cbd5e0;
	font-weight: bold;
}

/* Hero Content */
.hero-content {
	position: relative;
	z-index: 3;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-inner {
	text-align: center;
	position: relative;
}

.hero-portrait {
	margin-bottom: 30px;
	position: relative;
	display: inline-block;
}

.hero-portrait img {
	width: 200px;
	height: 200px;
	border-radius: 50%;
	object-fit: cover;
	border: 4px solid rgba(255, 215, 0, 0.3);
	box-shadow: 0 10px 40px rgba(255, 215, 0, 0.2);
	filter: grayscale(20%) contrast(110%);
}

.hero-text {
	margin-top: 20px;
}

.hero-name {
	font-size: 4.5em;
	font-weight: 700;
	color: #ffd700;
	text-shadow: 
		0 0 20px rgba(255, 215, 0, 0.5),
		0 0 40px rgba(255, 215, 0, 0.3),
		2px 2px 4px rgba(0, 0, 0, 0.8);
	margin-bottom: 15px;
	letter-spacing: 2px;
	font-family: 'Cairo', 'Noto Sans Arabic', serif;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.4em;
	color: #ffd700;
	text-shadow: 
		0 0 10px rgba(255, 215, 0, 0.3),
		1px 1px 3px rgba(0, 0, 0, 0.8);
	font-weight: 500;
	letter-spacing: 1px;
	max-width: 800px;
	margin: 0 auto;
	line-height: 1.6;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */
.main-nav {
	background: #3d2817;
	padding: 0;
	position: relative;
	z-index: 999;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.nav-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 0;
}

.nav-menu-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

.hamburger-icon {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.hamburger-icon .line {
	width: 25px;
	height: 3px;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s;
}

.menu-square {
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 2px;
}

.nav-menu {
	list-style: none;
	display: flex;
	gap: 0;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.nav-menu li {
	display: inline-block;
}

.nav-menu a {
	display: block;
	padding: 12px 20px;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	transition: all 0.3s;
	position: relative;
	border-left: 1px solid rgba(255,255,255,0.1);
}

.nav-menu li:first-child a {
	border-left: none;
}

.nav-menu a:hover,
.nav-menu a.active {
	background: rgba(255, 255, 255, 0.1);
	color: #ffd700;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main-content {
	min-height: 50vh;
	padding: 0;
	background: #f5f5dc;
}

/* ============================================
   STRATEGIC ASSESSMENTS SECTION
   ============================================ */
.strategic-section {
	padding: 60px 0;
	background: #f5f5dc;
}

.section-header {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 40px;
	padding-bottom: 20px;
	border-bottom: 2px solid #d4a574;
}

.section-icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #d4a574;
	border-radius: 50%;
	color: #1a1a1a;
	font-size: 20px;
	flex-shrink: 0;
}

.section-title {
	font-size: 2em;
	font-weight: 700;
	color: #1a1a1a;
	margin: 0;
	flex: 1;
}

.section-divider {
	flex: 1;
	height: 2px;
	/* background: #d4a574; */
}

.strategic-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 30px;
}

.strategic-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.strategic-article-small {
	position: relative;
	background: #e8e8e8;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}

.strategic-article-small:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.article-image-thumb {
	width: 100%;
	height: 180px;
	overflow: hidden;
	background: #1a1a1a;
}

.article-image-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.strategic-article-small:hover .article-image-thumb img {
	transform: scale(1.05);
}

.article-image-thumb a {
	display: block;
	width: 100%;
	height: 100%;
}

.badge-strategic {
	background: #d4a574;
	color: #1a1a1a;
	box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

.article-title-thumb {
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.5;
	margin: 0;
	padding: 15px;
}

.article-title-thumb a {
	color: #1a1a1a;
	transition: color 0.3s;
}

.article-title-thumb a:hover {
	color: #d4a574;
}

.strategic-article-large {
	position: relative;
	background: #e8e8e8;
	border-radius: 8px;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
}

.strategic-article-large:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.article-image-featured {
	width: 100%;
	height: 300px;
	overflow: hidden;
	background: #1a1a1a;
}

.article-image-featured img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.strategic-article-large:hover .article-image-featured img {
	transform: scale(1.05);
}

.article-image-featured a {
	display: block;
	width: 100%;
	height: 100%;
}

.article-title-featured {
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.4;
	margin: 0 0 15px 0;
	padding: 0 30px;
}

.article-title-featured a {
	color: #1a1a1a;
	transition: color 0.3s;
}

.article-title-featured a:hover {
	color: #d4a574;
}

.strategic-article-large .article-content {
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.strategic-article-large .article-meta {
	color: #666;
	margin-bottom: 15px;
	padding: 0 30px;
}

.strategic-article-large .article-excerpt {
	padding: 0 30px;
	margin-bottom: 20px;
}

.strategic-article-large .article-excerpt p {
	color: #444;
	font-size: 1em;
	line-height: 1.7;
	margin: 0;
}

.strategic-article-large .article-stats {
	padding: 0 30px;
}

/* ============================================
   FEATURED ARTICLES SECTION
   ============================================ */
.featured-section {
	position: relative;
	padding: 60px 0;
	background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
	overflow: hidden;
}

.featured-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 100%;
	background: 
		linear-gradient(45deg, transparent 30%, rgba(0, 150, 255, 0.05) 50%, transparent 70%),
		repeating-linear-gradient(
			90deg,
			transparent,
			transparent 2px,
			rgba(255, 255, 255, 0.02) 2px,
			rgba(255, 255, 255, 0.02) 4px
		);
	opacity: 0.3;
	filter: blur(20px);
	pointer-events: none;
}

.featured-section::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 50%;
	height: 100%;
	background: radial-gradient(circle at center,
		rgba(255, 150, 0, 0.05) 0%,
		rgba(0, 150, 255, 0.05) 50%,
		transparent 100%
	);
	opacity: 0.3;
	filter: blur(30px);
	pointer-events: none;
}

.featured-grid {
	display: grid;
	grid-template-columns: 1fr 2fr;
	gap: 30px;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
}

.articles-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	position: relative;
	z-index: 1;
}

.article-block {
	position: relative;
	background: rgba(40, 40, 40, 0.8);
	border-radius: 8px;
	padding: 0;
	overflow: hidden;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.05);
	display: flex;
	flex-direction: column;
}

.article-block:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
	background: rgba(45, 45, 45, 0.9);
}

.article-image {
	position: relative;
	width: 100%;
	height: 200px;
	overflow: hidden;
	background: #1a1a1a;
}

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

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

.article-image a {
	display: block;
	width: 100%;
	height: 100%;
}

.article-image-small {
	position: relative;
	width: 100%;
	height: 150px;
	overflow: hidden;
	background: #1a1a1a;
}

.article-image-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.article-block:hover .article-image-small img {
	transform: scale(1.05);
}

.article-image-small a {
	display: block;
	width: 100%;
	height: 100%;
}

.article-small {
	min-height: 400px;
}

.article-small .article-image {
	height: 250px;
}

.article-large {
	min-height: 500px;
}

.article-large .article-image {
	height: 350px;
}

.article-medium {
	min-height: 300px;
	display: flex;
	flex-direction: row;
	gap: 0;
}

.article-medium .article-image-small {
	width: 40%;
	height: 100%;
	flex-shrink: 0;
}

.article-medium .article-content {
	width: 60%;
	padding: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.article-badge {
	position: absolute;
	top: 15px;
	right: 15px;
	padding: 6px 15px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	z-index: 10;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.badge-articles {
	background: #8b7355;
	color: #fff;
	box-shadow: 0 2px 8px rgba(139, 115, 85, 0.4);
}

.badge-featured {
	background: #d4a574;
	color: #1a1a1a;
	box-shadow: 0 2px 8px rgba(212, 165, 116, 0.4);
}

.article-content {
	position: relative;
	z-index: 2;
	padding: 30px;
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.article-title {
	font-size: 1.8em;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
	color: #fff;
}

.article-title a {
	color: #fff;
	transition: color 0.3s;
}

.article-title a:hover {
	color: #ffd700;
}

.article-title-small {
	font-size: 1.2em;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 15px;
	color: #fff;
}

.article-title-small a {
	color: #fff;
	transition: color 0.3s;
}

.article-title-small a:hover {
	color: #ffd700;
}

.article-meta {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-bottom: 15px;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
}

.article-author {
	font-weight: 500;
}

.article-date {
	color: rgba(255, 255, 255, 0.6);
}

.article-stats {
	display: flex;
	gap: 15px;
	align-items: center;
	margin-top: auto;
}

.stat-item {
	display: flex;
	align-items: center;
	gap: 5px;
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
}

.stat-item i {
	font-size: 14px;
	opacity: 0.8;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
	background: #000;
	padding: 0;
	position: relative;
}

.footer-main {
	padding: 60px 0;
	background: #000;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

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

.footer-english {
	text-align: left;
	align-items: flex-start;
}

.footer-arabic {
	text-align: right;
	align-items: flex-end;
}

.footer-portrait {
	position: relative;
	margin-bottom: 25px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.footer-portrait img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid rgba(255, 255, 255, 0.1);
	margin-bottom: 15px;
}

.portrait-signature {
	font-size: 1.8em;
	font-weight: 700;
	color: #ffd700;
	font-family: 'Cairo', 'Noto Sans Arabic', serif;
	text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
	letter-spacing: 2px;
	margin-top: 10px;
}

.footer-info,
.footer-info {
	width: 100%;
}

.footer-name {
	color: #fff;
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 25px;
	font-weight: 400;
}

.footer-section-title {
	color: #fff;
	font-size: 1.8em;
	font-weight: 700;
	margin-bottom: 25px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-bottom: 30px;
	justify-content: flex-start;
}

.footer-arabic .footer-social {
	justify-content: flex-end;
}

.social-btn {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #2a2a2a;
	border: 2px solid #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 20px;
	transition: all 0.3s ease;
	text-decoration: none;
}

.social-btn:hover {
	background: #ffd700;
	border-color: #ffd700;
	color: #000;
	transform: translateY(-3px);
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.footer-design,
.footer-copyright {
	color: #888;
	font-size: 13px;
	margin-top: 20px;
	line-height: 1.6;
}

.footer-design a {
	color: #ffd700;
	text-decoration: none;
	transition: color 0.3s;
}

.footer-design a:hover {
	color: #fff;
}

/* ============================================
   CATEGORY PAGE STYLES
   ============================================ */
.category-header {
	padding: 40px 0;
	background: #f5f5f5;
	border-bottom: 2px solid #e0e0e0;
}

.category-title {
	font-size: 2.5em;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin: 0;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.articles-grid-section {
	padding: 60px 0;
	background: #fff;
}

.content-with-sidebar {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 40px;
	align-items: start;
}

.main-content-area {
	width: 100%;
}

.articles-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	margin-bottom: 40px;
}

.article-grid-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-grid-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.article-grid-item .article-image-small {
	width: 100%;
	height: 200px;
	overflow: hidden;
	position: relative;
}

.article-grid-item .article-image-small img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.article-grid-item:hover .article-image-small img {
	transform: scale(1.05);
}

.article-grid-item .article-content {
	padding: 20px;
}

.article-grid-item .article-title-small {
	font-size: 1.1em;
	line-height: 1.5;
	margin-bottom: 10px;
}

.article-grid-item .article-title-small a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s;
}

.article-grid-item .article-title-small a:hover {
	color: #c9a961;
}

.article-grid-item .article-meta {
	font-size: 0.9em;
	color: #666;
	margin-top: 10px;
}

.pagination {
	text-align: center;
	padding: 30px 0;
}

.pagination-link {
	display: inline-block;
	padding: 12px 30px;
	background: #1a1a1a;
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: background 0.3s ease;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.pagination-link:hover {
	background: #c9a961;
}

.pagination-link i {
	margin-right: 8px;
}

/* Sidebar Styles */
.sidebar {
	background: #f9f9f9;
	padding: 30px;
	border-radius: 8px;
	position: sticky;
	top: 20px;
}

.sidebar-widget {
	margin-bottom: 40px;
}

.sidebar-widget:last-child {
	margin-bottom: 0;
}

.sidebar-title {
	font-size: 1.4em;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid #c9a961;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.sidebar-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar-list li {
	margin-bottom: 12px;
	padding-right: 15px;
	position: relative;
}

.sidebar-list li:before {
	content: "â†’";
	position: absolute;
	right: 0;
	color: #c9a961;
	font-weight: bold;
}

.sidebar-list li a {
	color: #333;
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95em;
	display: block;
	padding: 5px 0;
}

.sidebar-list li a:hover {
	color: #c9a961;
	padding-right: 5px;
}

.sidebar-list li.current-cat a {
	color: #c9a961;
	font-weight: 600;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
	.hero-name {
		font-size: 3.5em;
	}
	
	.hero-subtitle {
		font-size: 1.2em;
	}
	
	.hero-foreground {
		display: none;
	}
}

@media (max-width: 768px) {
	.hero-banner {
		height: auto;
		min-height: auto;
	}
	
	.hero-name {
		font-size: 2.5em;
	}
	
	.hero-subtitle {
		font-size: 1em;
		padding: 0 20px;
	}
	
	.hero-portrait img {
		width: 150px;
		height: 150px;
	}
	
	.nav-content {
		flex-wrap: wrap;
	}
	
	.nav-menu {
		flex-direction: column;
		width: 100%;
		display: none;
		order: 3;
		background: #3d2817;
		margin-top: 10px;
		border-top: 1px solid rgba(255,255,255,0.1);
		padding-top: 5px;
	}
	
	.nav-menu.active {
		display: flex;
	}
	
	.nav-menu a {
		border-left: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		padding: 12px 15px;
		text-align: right;
	}
	
	.nav-menu li:last-child a {
		border-bottom: none;
	}
	
	/* Featured Section Responsive */
	.featured-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.articles-row {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.article-large,
	.article-small {
		min-height: auto;
	}
	
	.article-image {
		height: 200px !important;
	}
	
	.article-large .article-image {
		height: 250px !important;
	}
	
	.article-medium {
		flex-direction: column;
	}
	
	.article-medium .article-image-small {
		width: 100%;
		height: 200px;
	}
	
	.article-medium .article-content {
		width: 100%;
	}
	
	.article-title {
		font-size: 1.4em;
	}
	
	.article-title-small {
		font-size: 1.1em;
	}
	
	/* Strategic Section Responsive */
	.strategic-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.section-header {
		flex-wrap: wrap;
	}
	
	.section-title {
		font-size: 1.5em;
	}
	
	.article-image-featured {
		height: 250px;
	}
	
	.article-title-featured {
		font-size: 1.4em;
		padding: 0 20px;
	}
	
	.strategic-article-large .article-content,
	.strategic-article-large .article-meta,
	.strategic-article-large .article-excerpt,
	.strategic-article-large .article-stats {
		padding: 0 20px;
	}
	
	/* Footer Responsive */
	.footer-grid {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.footer-english,
	.footer-arabic {
		align-items: center;
		text-align: center;
	}
	
	.footer-arabic .footer-social {
		justify-content: center;
	}
	
	.footer-portrait img {
		width: 120px;
		height: 120px;
	}
	
	.portrait-signature {
		font-size: 1.5em;
	}
	
	/* Category Page Responsive */
	.content-with-sidebar {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.articles-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.category-title {
		font-size: 2em;
	}
	
	.sidebar {
		position: static;
	}
}

/* ============================================
   SINGLE POST PAGE STYLES
   ============================================ */
.single-post-section {
	padding: 60px 0;
	background: #fff;
}

.single-post {
	background: #fff;
}

.post-header-image {
	position: relative;
	width: 100%;
	height: 500px;
	overflow: hidden;
	margin-bottom: 40px;
	border-radius: 8px;
}

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

.post-badges {
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.post-header {
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 2px solid #e0e0e0;
}

.post-title {
	font-size: 2.5em;
	font-weight: 700;
	color: #1a1a1a;
	line-height: 1.3;
	margin-bottom: 20px;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.post-meta {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	font-size: 0.95em;
	color: #666;
}

.post-meta span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.post-meta i {
	color: #c9a961;
}

.post-content {
	font-size: 1.1em;
	line-height: 1.8;
	color: #333;
	margin-bottom: 40px;
}

.post-content p {
	margin-bottom: 20px;
}

.post-content h3 {
	font-size: 1.6em;
	font-weight: 700;
	color: #1a1a1a;
	margin: 30px 0 20px;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.post-image {
	width: 100%;
	height: auto;
	border-radius: 8px;
	margin: 30px 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.post-content a {
	color: #c9a961;
	text-decoration: none;
	transition: color 0.3s;
}

.post-content a:hover {
	color: #1a1a1a;
	text-decoration: underline;
}

.post-tags {
	margin: 40px 0;
	padding: 20px 0;
	border-top: 1px solid #e0e0e0;
	border-bottom: 1px solid #e0e0e0;
}

.tags-label {
	font-weight: 600;
	color: #1a1a1a;
	margin-left: 15px;
}

.post-tags a {
	display: inline-block;
	padding: 5px 15px;
	background: #f5f5f5;
	color: #666;
	text-decoration: none;
	border-radius: 20px;
	margin: 5px 5px 5px 0;
	font-size: 0.9em;
	transition: all 0.3s;
}

.post-tags a:hover {
	background: #c9a961;
	color: #fff;
}

.post-author-box {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 30px;
	background: #f9f9f9;
	border-radius: 8px;
	margin: 40px 0;
}

.author-avatar {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
}

.author-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.author-name {
	font-size: 1.2em;
	font-weight: 600;
	margin: 0;
}

.author-name a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s;
}

.author-name a:hover {
	color: #c9a961;
}

.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin: 40px 0;
	padding: 30px 0;
	border-top: 2px solid #e0e0e0;
	border-bottom: 2px solid #e0e0e0;
}

.nav-previous,
.nav-next {
	padding: 15px;
	background: #f9f9f9;
	border-radius: 8px;
}

.nav-label {
	display: block;
	font-size: 0.9em;
	color: #666;
	margin-bottom: 10px;
	font-weight: 600;
}

.nav-previous a,
.nav-next a {
	color: #1a1a1a;
	text-decoration: none;
	font-weight: 600;
	transition: color 0.3s;
	display: block;
}

.nav-previous a:hover,
.nav-next a:hover {
	color: #c9a961;
}

.related-posts {
	margin: 60px 0;
}

.related-title {
	font-size: 2em;
	font-weight: 700;
	color: #1a1a1a;
	margin-bottom: 30px;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.related-item {
	background: #fff;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.related-image {
	width: 100%;
	height: 150px;
	overflow: hidden;
}

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

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

.related-badge {
	position: absolute;
	top: 10px;
	right: 10px;
}

.related-item-title {
	font-size: 0.95em;
	line-height: 1.5;
	margin: 15px;
}

.related-item-title a {
	color: #1a1a1a;
	text-decoration: none;
	transition: color 0.3s;
}

.related-item-title a:hover {
	color: #c9a961;
}

.comments-section {
	margin: 60px 0;
	padding: 40px;
	background: #141414;
	border-radius: 8px;
}

.comments-title {
	font-size: 2em;
	font-weight: 700;
	color: #c9a961;
	margin-bottom: 30px;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.comment-form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.comment-form-note {
	color: #666;
	font-size: 0.9em;
	margin-bottom: 10px;
}

.comment-form textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"] {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: 5px;
	font-size: 1em;
	font-family: 'Noto Sans Arabic', 'Cairo', sans-serif;
	transition: border-color 0.3s;
}

.comment-form textarea:focus,
.comment-form input:focus {
	outline: none;
	border-color: #c9a961;
}

.comment-form textarea {
	min-height: 150px;
	resize: vertical;
}

.submit-btn {
	background: #c9a961;
	color: #fff;
	padding: 12px 30px;
	border: none;
	border-radius: 5px;
	font-size: 1em;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.submit-btn:hover {
	background: #c9a961;
}

.badge-events {
	background: #4a90e2;
}

/* Single Post Responsive */
@media (max-width: 768px) {
	.post-header-image {
		height: 300px;
	}
	
	.post-title {
		font-size: 1.8em;
	}
	
	.post-meta {
		flex-direction: column;
		gap: 10px;
	}
	
	.post-navigation {
		grid-template-columns: 1fr;
	}
	
	.related-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	
	.comments-section {
		padding: 20px;
	}
}

@media (max-width: 480px) {
	.hero-name {
		font-size: 2em;
	}
	
	.hero-subtitle {
		font-size: 0.9em;
	}
	
	.hero-portrait img {
		width: 120px;
		height: 120px;
	}
}

/* ============================================
   ABOUT US PAGE STYLES
   ============================================ */
   .about-us-section {
	padding: 60px 0;
	background: #fff;
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
}

.about-page-title {
	font-size: 3em;
	font-weight: 700;
	color: #1a1a1a;
	text-align: center;
	margin-bottom: 50px;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

.about-text-content {
	font-size: 1.15em;
	line-height: 1.9;
	color: #333;
	margin-bottom: 60px;
}

.about-text-content p {
	margin-bottom: 25px;
	text-align: right;
}

.about-text-content strong {
	color: #1a1a1a;
	font-weight: 700;
}

.partners-title {
	font-size: 2em;
	font-weight: 700;
	color: #1a1a1a;
	margin: 60px 0 40px;
	text-align: center;
	font-family: 'Cairo', 'Noto Sans Arabic', sans-serif;
}

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

.partner-item {
	background: #fff;
	padding: 25px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	min-height: 150px;
}

.partner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.partner-item img {
	max-width: 100%;
	max-height: 120px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: grayscale(100%);
	opacity: 0.7;
	transition: all 0.3s ease;
}

.partner-item:hover img {
	filter: grayscale(0%);
	opacity: 1;
}

/* About Us Responsive */
@media (max-width: 768px) {
	.about-page-title {
		font-size: 2em;
	}
	
	.about-text-content {
		font-size: 1em;
	}
	
	.partners-title {
		font-size: 1.5em;
	}
	
	.partners-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 20px;
	}
	
	.partner-item {
		padding: 15px;
		min-height: 120px;
	}
	
	.partner-item img {
		max-height: 80px;
	}
}

@media (max-width: 480px) {
	.hero-name {
		font-size: 2em;
	}
	
	.hero-subtitle {
		font-size: 0.9em;
	}
	
	.hero-portrait img {
		width: 120px;
		height: 120px;
	}
}
