html, body{
	padding: 0px;
	margin: 0px;
	position: relative;
}

@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Iurf6YBj_oCad4k1l4qkHrRpiYlJ.woff2') format('woff2');
  unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0898-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
  font-family: 'Tajawal';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/Iurf6YBj_oCad4k1l4qkHrFpiQ.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html *, body *{
	font-family: 'Tajawal', sans-serif;
}

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

header {
	background-color: white;
	padding: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #E1E1E1;
}

#logo {
	width: 100px;
	margin-bottom: 5px;
}

header nav {
	display: flex;
	gap: 10px;
}

header nav a {
    padding: 5px 12px;
    border-radius: 5px;
	text-decoration: none;
	cursor: pointer;
}

#play{
	border: 1px solid #76007e;
	background: #fff;
	color: #76007e;
}

#share{
	border: 1px solid #76007e;
	background: #76007e;
	color: white;
}

.menu {
	display: flex;
	gap: 20px;
	padding: 20px;
	align-items: center;
	justify-content: center;
}

.menu a {
	padding: 10px;
	cursor: pointer;
	color: #76007e;
	border-radius: 5px;
}

@media(max-width: 768px){
	.menu {
		flex-direction: column;
		
	}
	
	.menu a {
		padding: 5px;
		display:block;
		border-bottom: 1px solid #E1E1E1;
		width:100%;
		text-align: center;
	}
}

section nav a:hover {
	color: white!important;
	background: #76007e;
}

.seperator{
	width:100%;
	height: 500px;
	background-color: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
}

#board{
	width:70%;
	height:auto;
}

#message{
	font-size: 50px;
	text-align: center;
}

#shareAndPlay{
	border: 1px solid #76007e;
	background: #76007e;
	color: white;
	padding: 20px;
	font-size: 30px;
	width: 80%;
	border-radius: 5px;
	margin-top: 30px;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
}

#articals{
	margin-top: 20px;
}

.section-title{
	text-align:center;
	font-size: 30px;
	color: #76007e;
	text-decoration: inline;
	border-bottom: 1px solid #E1E1E1;
	padding: 10px;
}

.more{
	background: #76007e;
	border-radius: 5px;
	cursor: pointer;
	padding: 10px;
	color: white;
	display: inline-block;
	text-decoration: none;
	text-align: left;
	float: left;
	border:0px;
}

.carousel-item{
	background-color:#f5f5f5;
}

.light{
	background-color:#f5f5f5;
}

.carousel-image{
	width:50%;
	display: block;
	margin: auto;
	border-radius: 5px;
}

.contact-image{
	display:flex;
	align-items:center;
	justify-content:center;
	height: 100%;
	width: 100%;
	background-color:#f5f5f5;
	padding: 20px;
}

footer{
	font-family: 'Tajawal', sans-serif;
	padding: 10px;
	background-color:#f5f5f5;
	text-align: center;
	color: #76007e;
}

ol, ul {
	padding-right: 0rem!important;
	padding-left: 0px!important;
	text-align: right;
}

li{
	text-align: right;
}

.modal-header{
	justify-content: space-between;
}

.modal-header .btn-close{
    margin-right: auto!important;
    margin-left: 0px!important;
}

.table{
	margin-bottom: 0px;
}

.input-group{
	direction:ltr;
	width:100%;
}

.form-group .form-label {
	position: relative;
}

.form-group .form-label i {
	color: #3b82f6;
	font-size: 1.2rem;
	margin-left: 8px;
}

.form-label {
	font-weight: bold;
	color: #0f172a;
	font-size: 1.1rem;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}

.form-label::before {
	content: '';
	width: 4px;
	height: 20px;
	background: linear-gradient(45deg, #3b82f6, #f59e0b);
	border-radius: 2px;
}

.red{
    color: #e53e3e;
}

.green{
    color: #38a169;
}

input.green{
    border-color: #38a169;
    color: #38a169;
    font-weight:bold;
}

input.green:focus{
    color: #38a169;
}

input.red{
    border-color: #e53e3e;
    color: #e53e3e;
    font-weight:bold;
}

input.red:focus{
    color: red;
}

.subscribe-btn {
	background: linear-gradient(145deg, #007bff, #0056b3);
	color: #fff;
	padding: 15px 30px;
	font-size: 1.5rem;
	border: none;
	border-radius: 50px;
	transition: all 0.2s ease-in-out;
	box-shadow: 0 5px 15px rgba(0, 91, 187, 0.5);
}

.subscribe-btn:hover {
	background: #0056b3;
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 91, 187, 0.7);
}

.subscribe-container {
	animation: fadeIn 1.5s ease-in-out;
}

.btn-group{
    direction:ltr;
    width:100%;
}