@charset "utf-8";

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

     /* Header and Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.5s;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.5);
            height: 100px;
        }

        .header.sticky {
            background: #fff;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
.header.sticky .logo img{
/*	 filter: brightness(0) saturate(100%) invert(49%) sepia(86%) saturate(277%) hue-rotate(154deg) brightness(94%) contrast(89%);*/
}
        .header.sticky .logo,
        .header.sticky .nav-list a {
            color: #333;
        }

        .logo {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            text-decoration: none;
            display: flex;
            align-items: center;
            z-index: 1001;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .logo img {
             width: 144px;
            height: 82px;
            float: left;
            margin-top: 5px;
            margin-bottom: 5px;
        }

        .logo-img {
            height: 50px;
            margin-right: 10px;
        }

        .nav-container {
            display: flex;
            width: 100%;
            justify-content: space-between;
			flex-direction: row-reverse;
        }

        .nav-list {
            display: flex;
            list-style: none;
			flex-direction: row-reverse; /* items start from the right */
        }

        .nav-list.right-menu {
            margin-right: auto;  /* move to left side now */
        }

        .nav-list.left-menu {
              margin-left: auto; /* move to right side now */
        }

        .nav-list li {
	margin-top: 0;
	margin-right: 5px;
	margin-left: 5px;
	margin-bottom: 0;
	position: relative;
	font-family: 'Cairo', 'Amiri', sans-serif;
	font-weight: 400;
	font-size: 16px
        }

        .nav-list a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            font-size: 16px;
            padding: 5px 10px;
            position: relative;
            transition: 0.3s;
            display: flex;
            align-items: center;
        }

        .nav-list a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: #ff7846;
            left: 0;
            bottom: 0;
            transition: 0.3s;
        }

        .nav-list a:hover:after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1001;
			  position: absolute;
            left: 20px;
            background-color: var(--primary-color);
            top: 15px;
                        border-radius: 5px;
                        width: 50px;
                        height: 40px;
                        text-align: center;
                        vertical-align: middle;
                        padding-top: 8px
        }
/* Close button for mobile menu */
        .close-menu {
            display: none;
            position: fixed;
            top: 30px;
            right: 280px;
            width: 30px;
            height: 30px;
            background-color: var(--primary-color);
            border-radius: 50%;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }
        /* Dropdown Styles */
        .dropdown {
            position: relative;
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
			left: auto;
            width: 220px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 1000;
            padding: 10px 0;
			margin-top: 20px;
			text-align: right;
        }

        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
            padding: 0;
			list-style: none
        }

        .dropdown-menu a {
            color: #333 !important;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            position: relative;
            font-weight: 500;
			text-align: right;
    justify-content: flex-end;
        }

        .dropdown-menu a i {
           margin-left: 10px;   /* space on left side of icon */
    margin-right: 0;
    order: 2;            /* place icon after text */
            color: var(--primary-color);
            transition: transform 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: #fff5f2;
            padding-right: 25px;
        }

        .dropdown-menu a:hover i {
            transform: translateX(5px);
        }

        .dropdown-menu a:after {
            display: none;
        }

        .dropdown-menu a:before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(to right, var(--secondary-color), transparent);
            transition: width 0.3s ease;
			text-align: right
        }

        .dropdown-menu a:hover:before {
            width: 5px;
        }

        /* Arrow indicator */
         /* Arrow indicator - FIXED POSITION */
        .dropdown > a {
            display: inline-block;
            align-items: center;
        }
        
        .dropdown > a:after {
            content: '\f078';
            font-family: 'Font Awesome 5 Free';
            font-weight: 900;
            margin-right: 8px;
            font-size: 12px;
            transition: transform 0.3s ease;
            display: inline-block;
			right: auto;
    left: 0px;
    top: 18px;
        }

        .dropdown:hover > a:after {

            transform: rotate(180deg);
 content: '';
            position: absolute;
            width: 10px;
            height: 2px;
            background: none;
            left: 0;
            bottom: -10px;
            transition: 0.3s;
        }
       

        /* Mobile Responsive */
        @media (max-width: 768px) {
            body {
               
            }
 .nav-list.left-menu {
	margin: 0px;
        }
			.nav-list li {
	margin-top: 10px;
	margin-right: 25px;
	margin-left: 0;
	margin-bottom: 10px;
	text-align: right
            }
        .nav-list.right-menu {
             margin: 0px;
        }
            .header {
                padding: 15px;
                flex-wrap: wrap;
                height: auto;
                min-height: 80px;
				position: fixed
            }

            .menu-toggle {
                display: block;
                order: 1;
            }
 .menu-toggle {
          
            top: 20px;
                        
        }
           .logo {
                order: 2;
                margin: 0 auto;
                position: absolute;
                transform: none;
                                z-index: 2000;
			   left: 26%;
                                font-size: 17px;
                                text-align: center
            }
.logo.logoshow {
          right: 10px ;
            }
        .logo img {
             width: 140px;
        height: 72px;
            float: none;
            margin-top: 0px;
            margin-bottom: 0px;
        }
        .logo-img {
            height: 50px;
            margin-right: 10px;
        }
			.menu-toggle.hidden{
                                display: none
                        }
            .nav-container {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
/*	height: 100vh;*/
	background: #fff;
	flex-direction: column;
	padding: 80px 20px;
	transition: 0.5s;
	box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
	overflow-y: auto;
            }
.nav-container.active ~ .close-menu {
                display: flex;
            }
            .nav-container.active {
                right: 0;
            }

            .nav-list {
                flex-direction: column;
                width: 100%;
            }

            

            .nav-list a {
                color: #333;
                display: block;
                padding: 10px;
            }

            /* Mobile dropdown styles */
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                transform: none;
                display: none;
                margin: 10px 0;
                padding: 0 0 0 20px;
                background: #f9f9f9;
                border-radius: 5px;
				margin-top: 0px
            }

            .dropdown.active .dropdown-menu {
                display: block;
            }

            .dropdown > a:after {
                content: '\f078';
                position: absolute;
                left: 10px;
                transition: transform 0.3s ease;
            }

            .dropdown.active > a:after {
                transform: rotate(180deg);
            }
        }

        /* Demo content */
        .contentxz {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .contentxz h1 {
            color: #333;
            margin-bottom: 20px;
        }

        .contentxz p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        .scroll-placeholder {
            height: 1000px;
        }
