
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .header {
            background: #fff;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
			padding: 20px 15vw;
			font-family: "Cairo Play", sans-serif;
			font-optical-sizing: auto;
			font-weight: 427;
			font-style: normal;
			font-variation-settings:
				"slnt" -2;
                position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 999;
        }

        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 20px;
        }

        .logo img {
            max-width: 100px;
        }

        .navbar-icons a {
            color: #333;
            font-size: 30px;
            text-decoration: none;
            margin-left: 15px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle .bar {
            height: 3px;
            width: 25px;
            background-color: #333;
            margin: 5px 0;
            transition: 0.3s;
        }
		.navbar-menu {
    display: flex;
    margin: 0vw -6vw;
	font-weight: bold;
}
		@media (max-width: 992px) {
			.header {
			padding: 20px;
            
        }

    .navbar-menu {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .navbar-menu.active {
        display: flex;
        flex-direction: column;
    }

    .navbar-menu a {
        padding: 10px 22px;
        margin: 0;
        text-align: center;
        color: #333;
        font-size: 18px;
        transition: all 0.3s ease;
    }

    .navbar-menu a:hover {
        color: #007bff;
        transform: translateY(-3px);
    }
}


        @media (max-width: 768px) {
            .navbar-menu {
                display: none;
                position: absolute;
                top: 100px;
                left: 0;
                width: 100%;
                background-color: #fff;
                box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
                z-index: 1000;
            }

            .navbar-menu.active {
                display: flex;
                flex-direction: column;
            }

            .navbar-menu a {
                padding: 10px 22px;
                margin: 0;
                text-align: center;
                color: #333;
                font-size: 18px;
                transition: all 0.3s ease;
            }

            .navbar-menu a:hover {
                color: #007bff;
                transform: translateY(-3px);
            }

            .navbar-icons {
                display: flex;
                flex-direction: row;
                justify-content: flex-end;
            }

            .navbar-icons a {
                margin-left: 0;
            }

            .menu-toggle {
                display: flex;
                flex-direction: column;
                cursor: pointer;
            }

            .menu-toggle .bar {
                height: 3px;
                width: 25px;
                background-color: #333;
                margin: 5px 0;
                transition: 0.3s;
            }
          
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #007bff;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 20px;
            cursor: pointer;
            display: none;
        }

        .back-to-top i {
            line-height: 40px;
        }