@charset "utf-8";

/* CSS Document */
body {
	overflow-x: hidden;
}


#csocialabove {
	width: 19%;
	height: auto;
	position: absolute;
	top: 30px;
	left: 4.5%;
	float: left;
	padding-top: 0px;
	padding-left: 0%;
	z-index: 160;
	direction: rtl;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.45),
		0 2px 6px rgba(0, 0, 0, 0.35)
}

#csocialabove .fa-facebook,
#csocialabove .fa-twitter,
#csocialabove .fa-instagram,
#csocialabove .fa-youtube,
#csocialabove .fa-whatsapp {
	width: 28px;
	height: 28px;
	line-height: 30px;
	float: right;
	font-size: 21px;
	margin-right: 5px;
	border-radius: 4px;
	margin-top: 8px;
	color: #ffffff;
	transition: 1s
}

#csocialabove .fab:hover {
	color: var(--primary-color);
}

#csocialabove span {
	float: right;
	margin-right: 5px;
	margin-top: 11px;
	color: #ffffff;
	font-weight: 600;
	direction: rtl
}

.cmen {
	margin-top: 0px;
	background-color: rgba(255, 255, 255, 1);
	padding-top: 30px;
	padding-bottom: 30px;
	margin-left: 0px;
	margin-right: 0px;
	width: 100%;
	top: 0px
}

.bckmenu {
	width: 100%;
	background-color: #d1cdcc;
	position: absolute;
	top: 0px;
	height: 100px
}

#addressabove {
	width: auto;
	height: auto;
	position: absolute;
	top: 40px;
	right: 7.5%;
	float: none;
	padding-top: 0px;
	padding-left: 0%;
	z-index: 150;
	text-align: right;
	direction: rtl;
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.45),
		0 2px 6px rgba(0, 0, 0, 0.35)
}

#addressabove span,
#addressabove p span {
	margin-right: 10px;
	margin-top: 8px;
	color: #ffffff;
}

#addressabove p {
	margin-right: 10px;
	margin-top: 8px;
	color: #ffffff;
	font-size: 16px;
	font-weight: bold;
	line-height: 10px
}

.uppabove {
	width: 100%;
	height: 50px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 150;
	/*	background-color: rgba(5,5,5,0.7);*/
	/*	border-bottom: solid 1px rgba(255, 255, 255, 0.12);*/
	display: none
}

#clogo {
	width: 14%;
	height: auto;
	position: absolute;
	top: 0px;
	float: none;
	padding-top: 0px;
	padding-left: 0%;
	z-index: 150;
	transition: 1s;
	left: 50%;
	transform: translate(-50%, 25%);
	/* This moves the div back to the center */

}

#clogo img {
	width: 164px;
	height: 82px;
	margin-top: 0px;

}

#cmenu {

	height: auto;
	position: fixed;

	right: 0%;

	float: right;
	padding-top: 20px;
	padding-bottom: 15px;
	z-index: 150;
	left: 0%;
	transition: 1s;
	display: flex;
	justify-content: center;
	/* This centers the menu horizontally */
	align-items: center;
	border-top: 1px solid rgba(255, 255, 255, 0.43);
	border-bottom: 1px solid rgba(255, 255, 255, 0.43);
}

.cmenz {
	margin-left: 7.5%;
	margin-right: 7.5%;
	width: 85%;
	top: 100px;
}

.menu-container {
	position: relative;
}

.menu-toggle {
	cursor: pointer;
	font-size: 30px;
	display: none;
	/* Hidden by default, shown in mobile */
}

nav {
	display: flex;
}

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

nav ul li {
	position: relative;
	font-family: 'Poppins ', sans-serif;
	font-size: 18px;
	font-weight: bold;
	text-transform: uppercase;
	/*
	text-shadow:
		0 1px 2px rgba(0, 0, 0, 0.45),
		0 2px 6px rgba(0, 0, 0, 0.35)
*/
}

nav ul li a {
	display: block;
	padding: 15px;
	color: white;
	text-decoration: none;
	position: relative;
	/* Add relative positioning for arrow */
	font-family: 'Poppins ', sans-serif;
	font-size: 15px;
	font-weight: bold;
	transition: color 0.3s ease;
}

nav ul li a:hover {
	color: var(--primary-color) !important;
}

.submenu li a i {
	margin-left: 8px;
	color: var(--primary-color);
}

.arrow {
	margin-left: 10px;
	/* Space between text and arrow */
	transition: transform 0.3s ease;
	/* Animation for arrow rotation */
	display: inline-block;
	/* Allow transformation */
	transform: rotate(210deg);
	/* Default position - arrow down */
}

nav ul li a:hover .arrow {
	transform: rotate(270deg);
	/* Arrow points up on hover */
}

/*
.submenu {
    
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    z-index: 1000;
	transition: 1s
}

nav ul li:hover .submenu {
    display: block; 
}
*/
.submenu {
	display: block;
	/* Allow transitions to work */
	max-height: 0;
	/* Hidden by default */
	overflow: hidden;
	/* Prevent content overflow */
	opacity: 0;
	/* Hidden by default */
	transition: max-height 0.4s ease, opacity 0.4s ease;
	/* Smooth transition */
	background-color: #ffffff;
	/* Submenu background */
	position: absolute;
	border-radius: 5px;
	width: auto
}

.menu ul li:hover .submenu {
	max-height: 200px;
	/* Maximum height of submenu (adjust as needed) */
	opacity: 1;
	/* Fully visible */
	transition: max-height 0.4s ease, opacity 0.4s ease;
	/* Smooth transition */
}

.submenu li a {
	color: #000000 !important;
}

.namemob {
	display: none
}

@media screen and (max-width: 1100px) {
	#cmenu {
		width: 9%;
		height: 40px;
		position: absolute;
		top: 25px;
		right: auto;
		left: 15px;
		float: left;
		padding-top: 0px;
		padding-left: 0%;
		padding-right: 0%;
		background-color: transparent;
		border: none;
		z-index: 102;
	}

	.menu-toggle {
		display: block;
		/* Show toggle on mobile */
		position: absolute;
		top: -25px;
		left: -20px;
		z-index: 102;
		float: left;
		color: var(--white);
		background-color: var(--primary-color);
		padding-bottom: 2px;
		padding-top: 2px;
		padding-right: 10px;
		padding-left: 10px;
	}

	nav {
		display: block;

		position: fixed;
		top: 70px;
		right: 0;
		height: 100%;
		width: 80%;
		background-color: #2ca4dd;

		/* Start hidden */
		transform: translateX(100%) scale(0.98);
		opacity: 0;

		/* Smooth animation */
		transition:
			transform 0.45s cubic-bezier(0.4, 0, 0.2, 1),
			opacity 0.3s ease;

		will-change: transform;
	}

	nav.active {
		transform: translateX(0) scale(1);
		opacity: 1;
	}

	nav ul li {
		opacity: 0;
		transform: translateX(20px);
		transition: 0.3s ease;
	}

	nav.active ul li {
		opacity: 1;
		transform: translateX(0);
	}

	nav.active ul li:nth-child(1) {
		transition-delay: 0.05s;
	}

	nav.active ul li:nth-child(2) {
		transition-delay: 0.10s;
	}

	nav.active ul li:nth-child(3) {
		transition-delay: 0.15s;
	}

	nav.active ul li:nth-child(4) {
		transition-delay: 0.20s;
	}

	nav.active ul li:nth-child(5) {
		transition-delay: 0.25s;
	}

	.maro {
		margin-top: 40px
	}

	.namemob {
		display: block;
		width: 100%;
		height: 40px;
		background-color: #276b8c;
		margin-left: 0%;
		position: absolute;
		line-height: 40px;
		font-size: 21px;
		color: #ffffff;
		font-family: 'Poppins ', sans-serif;
	}


	nav ul {
		flex-direction: column;
		width: 90%;
		float: right;
		text-align: right
	}

	nav ul li {
		width: 100%;
		border-bottom: solid #ffffff 1px;
		margin-right: 20px
	}

	nav ul li a {
		display: block;
		padding: 0px;
		padding-top: 15px;
		padding-bottom: 15px;
		color: #FFFFFF;
		text-decoration: none;
		position: relative;
		/* Add relative positioning for arrow */
		width: 100%;
		text-align: right;
	}

	.submenu {
		position: static;
		/* Change position for mobile */
		display: none;
		/* Keep submenus hidden */
	}

	nav ul li.active .submenu {
		display: block;
		/* Show submenu on click */
		transition: max-height 0.3s ease;

		width: 100%;
	}

	#clogo {
		width: 100%;
		height: 70px;
		position: absolute;
		top: -20px;
		background-color: white;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 101;
	}

	#clogo img {
		width: auto;
		max-height: 50px;
		margin: 0;
	}

	#addressabove {
		display: none
	}

	.bckmenu {
		width: 100%;
		background-color: #d1cdcc;
		position: absolute;
		top: 0px;
		height: 100px
	}

	.cmenz {
		margin-left: 7.5%;
		margin-right: 7.5%;
		width: 85%;
		top: 150px;
	}

	.cmen {
		margin-top: 0px;
		background-color: rgba(255, 255, 255, 1);
		padding-top: 30px;
		padding-bottom: 30px;
		margin-left: 0px;
		margin-right: 0px;
		width: 100%
	}

	#csocialabove {
		width: auto;
		height: auto;
		position: absolute;
		top: 10px;
		right: 1%;
		float: right;
		padding-top: 0px;
		padding-left: 0%;
		z-index: 160;
		display: none
	}

	#csocialabove {

		display: none
	}
}