/*
	Theme Name: Hello Elementor Old
	Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
	Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
	Author: Elementor Team
	Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
	Version: 3.4.4
	Stable tag: 3.4.4
	Requires at least: 6.0
	Tested up to: 6.8
	Requires PHP: 7.4
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: hello-elementor
	Tags: accessibility-ready, flexible-header, custom-colors, custom-menu, custom-logo, featured-images, rtl-language-support, threaded-comments, translation-ready,
*/
:root {
	--main-color: #F37B74;
	--second-color: #274A66;
	--font-size: 1rem;
	--font-size-title: 1.2rem;
}

body {
	font-family: 'Almarai', sans-serif;
	font-size: var(--font-size);
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.entry-title {
	display: none !important;
}

header {
	width: 100%;
	display: flex;
	justify-content: center;
	background-color: #004B6A;

}

.header-container {
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.header-content {
	width: 80%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: flex-start;
}

.logo img {
	height: 150px;
	margin: 30px 0px;

}

.header-images {
	display: flex;
	justify-content: space-between;
	width: 95%;
}


.header-images div img {
	object-fit: cover;
	height: 150px;
	/* width: 100px; */
	border-radius: 10px;

}

.images-opacity {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 -25px;
}

.side-img {
	width: 40%;
	object-fit: cover;
}

.logo-opacity {
	width: 150px;
	position: absolute;
	z-index: 2;
}

/* fade effect */
.left {
	-webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-image: linear-gradient(to right, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
}

.right {
	-webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-image: linear-gradient(to left, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.1));
}

nav {
	display: flex;
	align-items: center;
}

nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;

}

nav ul li {
	margin: 0 10px;
}

nav ul li a {
	text-decoration: none;
	color: white;
	transition: color 300ms ease;
}

nav ul li a:hover {
	color: var(--main-color)
}

nav button {
	color: white;
	border: none;
	background-color: transparent;
	height: 30px;
	width: 30px;
	margin-left: 10px;
	cursor: pointer;
}

.hamburger {
	display: none;

}

.main-nav {
	display: flex;
}

@media (max-width:1000px) {
	.hamburger {
		display: inline;
	}

	.main-nav {
		display: none;
	}

	.logo img {
		height: 50px;
	}

	.header-images {
		display: none;

	}
}

@media (max-width:1290px) {

	.header-images div:first-child,
	.header-images div:last-child {
		display: none;

	}

}

.nav-hamburger {
	position: fixed;
	top: 0;
	right: -100%;
	width: 200px;
	height: 100vh;
	z-index: 1000;
	background-color: #004B6A;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	color: white;
	transition: right 0.3s ease;
	overflow-y: auto;

}

.display-menu {
	right: 0;
}

.nav-hamburger ul {
	list-style: none;
	padding: 0;
}

.nav-hamburger li {
	padding: 10px;

}

.nav-hamburger li a {
	color: white;
	display: inline-block;
	text-decoration: none;
	font-weight: 600;
	width: 100%;
	padding: 5px;
	position: relative;
	padding-right: 5px;
}

.nav-hamburger li a::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 0px;
	background-color: var(--main-color);
	transform: scaleY(0);
	transform-origin: top;
	transition: transform 0.3s ease;

}

.nav-hamburger li a:hover {
	color: var(--main-color);
	transform: translateX(-15px);
}

.nav-hamburger li a:hover::before {
	width: 5px;
	right: -15px;
	transform: scaleY(1);
}

#more {
	position: relative;
}


#more-nav {
	display: none;
	position: absolute;
	background-color: #004a6aec;
	padding: 5px 0;
	margin-top: 5px;
	min-width: 120px;
	border-radius: 4px;
	z-index: 1000;
}

#more:hover #more-nav {
	display: block;
}

#more-nav:hover {
	display: block;
}

#more-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
	flex-direction: column;
}

#more-nav ul li a {
	display: block;
	padding: 8px 15px;
	color: white;
	text-decoration: none;
	white-space: nowrap;
	font-weight: normal;
}

#more-nav ul li a:hover {
	color: var(--main-color);
}



/* Search popup styles */
.input-container {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.input-container.active {
	opacity: 1;
	visibility: visible;
}

.search-form {
	background-color: white;
	padding: 30px;
	border-radius: 15px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	display: flex;
	align-items: center;
	gap: 15px;
	min-width: 400px;
	transform: scale(0.8);
	transition: transform 0.3s ease;
}

.input-container.active .search-form {
	transform: scale(1);
}

.search-form input {
	flex: 1;
	padding: 15px 20px;
	border: 2px solid #e0e0e0;
	border-radius: 10px;
	font-size: 16px;
	font-family: 'Almarai', sans-serif;
	outline: none;
	transition: border-color 0.3s ease;
}

.search-form input:focus {
	border-color: var(--main-color);
}

.search-form input::placeholder {
	color: #999;
}

.search-form button {
	background-color: var(--main-color);
	border: none;
	padding: 15px 20px;
	border-radius: 10px;
	color: white;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-form button:hover {
	background-color: #e56b64;
}

.search-form button i {
	font-size: 18px;
}

/* Responsive design for search popup */
@media (max-width: 768px) {
	.search-form {
		min-width: 90%;
		padding: 20px;
		margin: 0 20px;
	}

	.search-form input {
		padding: 12px 15px;
		font-size: 14px;
	}

	.search-form button {
		padding: 12px 15px;
	}
}

/* Close button for search popup (optional enhancement) */
.input-container::before {
	content: "✕";
	position: absolute;
	top: 30px;
	right: 30px;
	color: white;
	font-size: 30px;
	cursor: pointer;
	z-index: 10000;
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.input-container::before:hover {
	opacity: 1;
}

/* styling stories */
/* rgb(169, 184, 195) */
.stories {
	background-color: #f4f4f4;
	display: flex;
	justify-content: center;
	width: 100%;
}


/* .shorts-grid {
    width: 75%;
    display: flex;
    justify-content: space-between; 
    padding: 20px;
} */
.shorts-grid {
	width: 75%;
	display: flex;
	overflow-x: auto;
	gap: 15px;
	padding: 20px;
	scroll-snap-type: x mandatory;
}

/* .short {
    cursor: pointer;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
    width: 120px;
    height: 200px;
    border: 0.5px solid #274A66;
} */

.short {
	flex: 0 0 auto;
	width: 150px;
	height: 220px;
	cursor: pointer;
	background-color: white;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	border: 5px solid #004B6A;
	scroll-snap-align: start;
	transition: transform 0.2s ease;
}

.short img {
	width: 100%;
	display: block;
}



.short:hover {
	transform: scale(1.05);
}

/* Modal styles */
.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
	backdrop-filter: blur(8px);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	background: #000;
	padding: 0;
	height: 80%;
	border-radius: 10px;
	max-width: 300px;

	/* width: 90%; */
}

.modal-content video {
	width: 100%;
	height: 100%;
	border-radius: 10px;
}

.close-btn {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}

/* Responsive styles for shorts section */
@media (max-width: 768px) {
	.short {
		width: 120px;
		height: 180px;
	}
}

@media (max-width: 480px) {
	.short {
		width: 100px;
		height: 160px;
	}
}

@media (max-width: 480px) {
	.shorts-grid {
		width: 85%;
		gap: 8px;
		padding: 10px;
	}

	.short {
		width: 100px;
		height: 160px;
	}

	.short img {
		height: auto;
	}

	.modal-content {
		height: auto;
		max-width: 90%;
	}
}

/* -------------hot news--------- */
.hot-news {
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 20px 0;
}

.hot-news-container {
	width: 75%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.sport-news {
	width: 100%;
	display: flex;
	justify-content: space-around;
	border: 0.5px solid black;
}

.sport-news legend {
	font-size: 1.6rem;
	font-weight: 600;
}

.hot-news-side {
	width: 22%;
	background-color: #f4f4f4;
	padding-bottom: 10px;
	/* height: 300px; */
	/* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
	/* box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px; */
	/* display: flex;
    flex-direction: column;
    justify-content: space-between; */
}

.hot-news-side a {
	color: inherit;
	text-decoration: none;
}

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

.hot-news-side div {
	padding: 5px;
}

.hot-news-side h3 {
	color: #999;
}

.hot-news-side h3,
.hot-news-side p {
	font-size: var(--font-size);
	margin-bottom: -5px;
}

.green-mark {
	position: relative;
}

.green-mark::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 0;
	bottom: 0;
	width: 2px;
	/* height: 100%; */
	background-color: var(--main-color);
}

.news-content {
	color: #999;
}

/* jj */
.slider-container {
	width: 45%;
	/* height: 350px; */
	overflow: hidden;
	position: relative;
	/* box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); */
	background: white;
}

.slides,
.slides_sport {
	display: flex;
	transition: transform 0.4s ease-in-out;
}

.slide,
.slide_sport {
	border-radius: 0 !important;

	min-width: 100%;
	box-sizing: border-box;
	text-align: center;

}

.slide a,
.slide_sport a {
	color: inherit;
	text-decoration: none;
}

.slide img,
.slide_sport img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}

.subtitle {
	font-weight: bold;
	font-size: var(--font-size);
	margin: 10px 0;
}

.description {
	font-size: var(--font-size);
	color: #555;
}

.slide-content {
	text-align: right;
	padding: 10px;
}

/* -------news-end */
.news-end {
	width: 27%;
}

.news-end-up {
	/* height: 200px; */
	background-color: #f4f4f4;
	width: 100%;
}

.news-end-up img {
	width: 100%;
}


/* news-end-down */

.news-end-down video {
	width: 100%;
	margin-top: 40px;
	cursor: pointer;
	width: 100%;
	cursor: pointer;
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;

}

.news-end-down video::-webkit-media-controls {
	display: none;
}

.news-container {
	max-width: 400px;
	margin: 0 auto;
	background: white;
	border-radius: 8px;
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	border: solid #f4f4f4 0.5px;
	overflow: hidden;
}

.news-header {
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
	color: black;
	text-align: right;
	padding: 5px;
	font-weight: bold;
	margin: 10px 0;
}

.news-item a {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding: 5px 6px;
	border-bottom: 1px solid #eee;
	transition: background-color 0.2s;
	color: inherit;
	text-decoration: none;
}



.news-item:hover {
	background-color: #f8f9fa;
}

.news-item:last-child {
	border-bottom: none;
}

.news-content {
	flex: 1;
	/* margin-left: 10px; */
}

.news-text {
	color: #333;
	/* font-size: 14px; */
	/* line-height: 1.4; */
	text-align: right;
}

.news-time {
	color: #888;
	min-width: 40px;
	text-align: left;
}

.news-item:nth-child(even) {
	background-color: #fafafa;
}

.news-item:nth-child(even):hover {
	background-color: #f0f0f0;
}

@media (max-width: 1024px) {

	.hot-news-container,
	.sport-news {
		width: 90%;
		gap: 15px;
	}

	.hot-news-side,
	.slider-container,
	.news-end {
		width: 32%;
	}

	.slider-container {
		height: auto;
	}

	.slide img {
		height: auto;
	}
}

@media (max-width: 768px) {

	.hot-news-container,
	.sport-news {
		flex-direction: column;
		align-items: center;
	}

	.hot-news-side,
	.slider-container,
	.news-end {
		width: 100%;
	}

	.slider-container {
		height: auto;
	}

	.slide img {
		height: auto;
	}

	.news-container {
		max-width: 100%;
	}
}

@media (max-width: 480px) {

	.subtitle,
	.description,
	.news-text {
		font-size: 14px;
	}

	.hot-news-side img {
		height: auto;
	}

	.news-time {
		font-size: 12px;
	}
}

/* shows alnissa2 imkn ila b9it 3a9el */
.show {
	display: flex;
	justify-content: center;
	width: 100%;
}

.show-container {
	width: 75%;
}

.header {
	text-align: right;
	border-bottom: 0.5px solid black;
	margin-bottom: 30px;
}

.header a {
	color: #333;
	font-size: var(--font-size);
	font-weight: bold;
	text-decoration: none;
	transition: color 300ms ease;
}

.header a:hover {
	color: var(--main-color);
}

.video-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 10px;
	padding: 0 20px;
	max-width: 1400px;
	margin: 0 auto;
}

.video-item {
	position: relative;
	/* border-radius: 12px; */
	overflow: hidden;
	cursor: pointer;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
	width: 100%;
	height: 140px;
	object-fit: cover;
	display: block;
}

.video-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 40px 15px 15px;
	color: white;
}

.video-overlay img {
	/* width: 100%; */
	height: 100%;
}

.play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.video-item:hover .play-button {
	background: rgba(0, 0, 0, 0.9);
	transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 20px solid white;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	margin-right: -3px;
}

.video-title {
	font-size: 14px;
	font-weight: bold;
	text-align: right;
	line-height: 1.4;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.channel-logo {
	position: absolute;
	top: 15px;
	left: 15px;
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 12px;
	color: #333;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.video-item:nth-child(1) {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.video-item:nth-child(2) {
	background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.video-item:nth-child(3) {
	background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.video-item:nth-child(4) {
	background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

@media (max-width: 768px) {
	.show-container {
		width: 90%;
	}

	.video-gallery {
		grid-template-columns: 1fr;
		padding: 0 15px;
	}

	.video-thumbnail {
		height: 170px;
	}

	.header {
		padding: 15px 20px;
	}

	.header h1 {
		font-size: 20px;
	}
}

/* 9ism alvideo 7assaba ma 9arayto bi al3arabia  */
.videos-section {
	margin-top: 20px;
	width: 100%;
	display: flex;
	justify-content: center;
}

.video-section {
	width: 75%;
	margin: 0 auto;
	background: white;
	border: 1px solid black;
	/* border-radius: 8px; */
	overflow: hidden;
	/* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); */
}

.section-header {
	background: white;
	padding: 15px 20px;
	border-bottom: 1px solid #333;
	text-align: right;
}

.section-title {
	font-size: 1.3rem;
	font-weight: bold;
	color: #333;
}

.content-wrapper {
	display: flex;
}

.sidebar {
	/* flex: 0 0 350px; */
	background: #f8f9fa;
	/* border-left: 2px solid #333; */
	padding: 20px;
}

.sidebar-item {
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
}

.sidebar-item:hover {
	background: white;
	padding: 10px;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.sidebar-item:last-child {
	border-bottom: none;
}

.sidebar-text {
	flex: 1;
	text-align: right;
	margin-left: 15px;
}


.sidebar-title {
	font-size: 0.8rem;
	color: #333;
	line-height: 1.4;
	font-weight: normal;
}

.sidebar-thumb {
	flex: 0 0 80px;
	height: 60px;
	border-radius: 6px;
	overflow: hidden;
	position: relative;
}

.sidebar-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sidebar-thumb::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 10px;
	height: 10px;
	background: rgba(0, 0, 0, 0.7);
	border-radius: 50%;
}


.main-video {
	position: relative;
	width: 100%;
	/* max-width: 800px; */
	/* margin: 0 auto; */
	/* aspect-ratio: 16/9; */
	/* border-radius: 12px; */
	overflow: hidden;
	cursor: pointer;
	transition: all 0.3s ease;
	/* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
}

.main-video:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.main-video img {
	width: 100%;
	height: 85%;
	object-fit: cover;

}


.video-title-area {
	/* background: #fff; */
	backdrop-filter: blur(10px);
	padding: 20px;
	text-align: right;
	font-size: 1.1rem;
	font-weight: 600;
	line-height: 1.4;
	/* color: white; */
	/* margin-bottom: 10px; */
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.play-button-large {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 80px;
	height: 80px;
	background: rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-video:hover .play-button-large {
	background: white;
	transform: translate(-50%, -50%) scale(1.15);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.play-button-large::after {
	content: '';
	width: 0;
	height: 0;
	border-left: 25px solid #333;
	border-top: 15px solid transparent;
	border-bottom: 15px solid transparent;
	margin-left: 5px;
}

@media (max-width: 768px) {
	.video-section {
		width: 87%;
	}

	.content-wrapper {
		flex-direction: column;
	}

	.sidebar {
		flex: none;
		border-left: none;
		border-top: 2px solid #333;
		order: 2;
	}

}

/* ---------broadcast-------- */
.broadcast {
	display: flex;
	justify-content: center;
}

.broadcast-container {
	width: 72%;
	margin: 20px 0;
	background-color: #004B6A;
	color: white;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 15px 20px;
	flex-wrap: wrap;
}

.broadcast-text {
	margin-right: 20px;
}

.broadcast-text h2 {
	font-size: 1.2rem;
	font-weight: 400;
}

.broadcast-text p {
	color: #aaa;
	font-size: 1rem;
}

.broadcast-input {
	display: flex;
	align-items: center;
	border-bottom: 1px solid #aaa;
	padding-bottom: 5px;
}

.broadcast-input input {
	background-color: #004B6A;
	color: white;
	border: none;
	outline: none;
	font-size: 1.1rem;
	padding: 5px;
}

.broadcast-input button {
	background: transparent;
	border: none;
	cursor: pointer;
}

.broadcast-input img {
	width: 20px;
	height: 20px;
}

@media (max-width: 768px) {
	.broadcast-container {
		width: 80%;
		flex-direction: column;
		text-align: center;
	}

	.broadcast-text {
		margin: 0 0 15px 0;
	}
}

/* ------weather------- */
.weather {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	color: white;
}

.weather-container {
	width: 75%;
	background-color: #004B6A;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 10px;
	align-items: start;
	padding: 10px 0;
}

.prayer {
	margin-right: 10px;
}

.prayer-header {
	background-color: #004B6A;
	padding: 20px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.city-select {
	background-color: transparent;
	border: none;
	color: white;
	font-size: var(--font-size);
	font-weight: bold;
	appearance: none;
	cursor: pointer;
	padding: 5px;
	outline: none;
}

.city-select option {
	background-color: #004B6A;
	color: white;
}

.city-name {
	font-size: var(--font-size);
	font-weight: bold;
	color: white;
}

.prayer-times-title {
	font-size: var(--font-size-title);
	color: white;
	margin-top: 5px;
}

.prayer-times {
	background-color: #004B6A;
}

.prayer-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	/* padding: 15px 25px; */
	border-bottom: 1px solid var(--main-color);
	margin-bottom: 15px;
}



.prayer-name {
	font-size: var(--font-size);
	color: white;
	font-weight: normal;
}

.prayer-time {
	font-size: var(--font-size);
	color: var(--main-color);
	font-weight: bold;
	font-family: 'Courier New', monospace;
}

@media (max-width: 768px) {
	.weather-container {
		width: 90%;
		grid-template-columns: 1fr;
		gap: 15px;
	}

	.prayer-times {
		margin-left: 10px;
	}
}


.money-container {
	margin-left: 10px;
}

.money-header {
	padding: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.money-title {
	font-size: var(--font-size-title);
	font-weight: bold;
	color: white;
}

.buy-sell-label {
	font-size: var(--font-size);
	color: white;
}

.currency-row {
	background-color: white;
	margin-bottom: 15px;
	padding: 8px 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-radius: 5px;

}

.currency-name {
	font-size: var(--font-size);
	color: black;
	font-weight: bold;
}

.rates-container {
	background-color: var(--main-color);
	padding: 8px 15px;
	border-radius: 3px;
	color: black;
	font-weight: bold;
	font-size: var(--font-size);
}

@media (max-width: 480px) {
	.money-container {
		margin: 10px;
		max-width: none;
	}

	.currency-row {
		padding: 12px 15px;
	}

	.money-header {
		padding: 15px;
	}
}

.weather-city {
	max-width: 400px;
	margin: 0 auto;
}

.weather-header {
	text-align: center;
	margin-bottom: 30px;
}

.weather-title {
	font-size: 20px;
	font-weight: bold;
	color: white;
	margin-bottom: 20px;
}

.current-weather {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.sun-icon {
	font-size: 60px;
	margin-left: 20px;
}

.temperature-main {
	font-size: 48px;
	font-weight: bold;
	color: white;
	margin-left: 10px;
}

.temperature-details {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	color: var(--main-color);
	font-size: 14px;
	font-weight: bold;
}

.weather-info {
	text-align: center;
	color: #ccc;
	font-size: var(--font-size);
}

.weather-info div {
	margin-bottom: 10px;
}

.forecast {
	display: flex;
	justify-content: space-around;
	align-items: center;
}

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

.day-name {
	font-size: var(--font-size);
	color: white;
	margin-bottom: 15px;
	font-weight: bold;
}

.forecast-icon {
	font-size: 40px;
	margin-bottom: 15px;
}

.forecast-temps {
	color: var(--main-color);
	font-size: 14px;
	font-weight: bold;
}

/* Responsive design */
@media (max-width: 480px) {
	.weather-city {
		margin: 10px;
		max-width: none;
		padding: 0 10px;
	}

	.current-weather {
		flex-direction: column;
		text-align: center;
	}

	.sun-icon {
		margin-left: 0;
		margin-bottom: 10px;
	}

	.temperature-main {
		margin-left: 0;
	}
}

/* ---Footer--- */
footer {
	background-color: #004B6A;
	color: #fff;
	display: flex;
	justify-content: center;
	padding: 40px 20px 20px;
}

.footer-container {
	width: 75%;
	max-width: 1200px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}


.contact-us h2 {
	color: var(--main-color);
	font-size: var(--font-size-title);
	margin-bottom: 15px;
}

.contact-us ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-us ul li {
	margin-bottom: 20px;
}

.contact-us ul li a {
	color: #fff;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-us ul li a:hover {
	color: var(--main-color);
}

/* Social Media Section */
.social-media h2 {
	font-size: var(--font-size-title);
	margin-bottom: 15px;
}

.socialMedia-icons ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	gap: 15px;
}

.socialMedia-icons ul li a {
	color: var(--main-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.socialMedia-icons ul li a svg {
	width: 30px;
	height: 30px;
	transition: transform 0.3s ease, color 0.3s ease;
}



.socialMedia-icons ul li a:hover svg {
	color: white;
	transform: scale(1.1);
}

/* Logo and Copyright */
.logo-footer {
	margin-top: 20px;
	text-align: center;
}

.logo-footer-middle {
	align-self: center;
}

.logo-footer-middle img {
	width: 500px;

}

.logo-footer img {
	width: 100px;
	height: auto;
}

.socialMedia-icons {
	margin-top: 30px;
}

.social-media p {
	margin-top: 30px;
	font-size: var(--font-size);
	color: #aaa;
}

/* Responsive Styles */
@media (max-width: 1006px) {
	.footer-container {
		width: 100%;
		flex-direction: column;
		align-items: center;
		text-align: center;
		gap: 30px;

	}

	.logo-footer-middle img {
		width: 300px;
	}

	.socialMedia-icons ul {
		justify-content: center;
		flex-wrap: wrap;
	}
}

@media (min-width:768px) {
	.logo-footer-middle img {
		width: 300px;
	}

}

@media (max-width:1000px) {
	.add-container {
		display: none;
	}

}

/* end footer */
.add-section {
	display: flex;
	justify-content: center;
	margin: 40px 0;
}

.add-container {
	width: 1000px;
	height: 200px;
	background-color: #f4f4f4;
}

.add-container img {
	width: 100%;
}