
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
   /* background-color: #333;*/
   /* padding: 10px 20px;*/
    position: relative;
   /* padding-right: 100px;*/
   /* min-height: 55px;*/
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: fixed;
    top: 10px;
    right: 20px;
    z-index: 9999;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #f50;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(0px, 0px);
     position: fixed;
     /*margin-top: 15px;*/
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(0px, 0px);
     position: fixed;
    /* margin-top: 15px;*/
}

.nav-wrapper {
    padding-top: 10%;
    display: none;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    transition: transform 0.8s ease;
    position: fixed;
     top: 0; /* Position at the top */
    left: 0; /* Position at the left */
    background-color: #33333382;/* Set the background color */
    z-index: 1000; /* Ensure it's above other content */
	touch-action: none;
}


.nav-list {
    list-style: none;
    margin-top: 0;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    background-color: #343434;
    display: none;
    position: absolute;
    top: 0;
    z-index: 100;
    overflow-y: auto;
}

.dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    flex-shrink: 0;
    background-color: #343434;
    display: none;
    position: absolute;
    top: 0;
    z-index: 100;
}



.nav-item {
    border-bottom: 1px solid #3b3b3b;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block !important;
    position: relative;
}

.nav-link:hover {
    transition: width 5s;
}

.dropdown-link {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    display: block !important;
    position: relative;
}

/*
.nav-link::after, .dropdown-link::after {
    content: '>';
    position: absolute;
    height: 1px;
    left: 0;
    bottom: 0;
    width: 0;
    background-color: #575757;
    border-bottom: 1px solid #f50;
    transition: width .5s;
}
*/
/*
.nav-link::after, .dropdown-link::after {
    content: ''; 
    position: absolute;
    right: 10px; 
    top: 50%; 
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent; 
    border-right: 5px solid transparent; 
    border-top: 7px solid #fff; 
    transition: transform 0.5s; 
	transform: rotate(-90deg);
}
*/
.nav-link:hover:after, .dropdown-link:hover:after {
    width: 100%;
}

.back-btn {
    color: #f50 !important;
    text-decoration: none;
    padding: 45px 15px 0px 15px;
    display: block;
    position: fixed;
    top: 0;
    background: #343434;
    width: 85%;
    z-index: 10000;
	font-size: 16px !important;
    font-weight: bold;
}

ul li a:hover {
    color: #f50;
}

/* a:visited {
    color: #fff !important;
} */

a {
    align-items: center;
    display: flex;
	font-size: 15px;
}

@media (max-width: 1024px) {

    .social-media-wrap li a img {
        max-width: 40px !important;
    }

    .phoneUSA, .phoneIND {
            padding: 10px 15px;
            display: flex;
     }
     .phoneUSA a, .phoneIND a {
        display: contents;
        color: #fff;
     }
    .phoneUSA::before {
        content: url('https://iskylar.com/wp-content/uploads/2024/08/iSkylar-USA-1.png');
        position: relative;
        padding-right: 5px;
        bottom: -2px;
    }

    .phoneIND::before {
        content: url('https://iskylar.com/wp-content/uploads/2024/08/iSkylar-India.png');
        position: relative;
        padding-right: 5px;
        bottom: -2px;
    }

.social-media-wrap {
    padding: 10px 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
  
}

.social-media-wrap img {
    padding: 10px;
}

/* Add dropdown icon after every dropdown menu item */
/*  .menu-item-has-children::after {
    content: url('https://iskylartech.com/wp-content/uploads/2024/07/right-arrow-svgrepo-com-1.svg');
    position: absolute;
    right: 20px;
	width: 20px;
    height: 20px;
    transform: translateY(-150%);
    color: #fff; 
    font-size: 14px;   
} 

*/

	.menu-item-has-children {
		position: relative;
	}

/*	
.menu-item-has-children::after {
    content: ''; 
    position: absolute; 
    right: 10px; 
    top: 50%; 
    transform: translateY(-50%);
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent; 
    border-top: 7px solid #fff; 
    transition: transform 0.5s; 
	transform: rotate(-90deg);
}
*/

.menu-item-has-children::after {
    content: ''; /* Clear the content for the pseudo-element */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px; /* Adjust the width based on the SVG dimensions */
    height: 12px; /* Adjust the height based on the SVG dimensions */
    background: url('https://iskylar.com/wp-content/uploads/2024/10/nav-arrow.svg') no-repeat center;
    background-size: contain; /* Ensure the SVG scales correctly */
    transition: transform 0.5s ease; /* Add smooth rotation transition */
}

    .mmenu-toggle {
        display: none;
    }
    .menu-toggle {
		position: fixed;
        margin-right: 100px;
        display: flex;
        margin: 15px 100px 15px 0px;

    }

    .nav-wrapper.active {
        display: flex;
    }
	
	.nav-wrapper.active .site-content {
       overflow: hidden !important;
    }

    .nav-list.active {
        padding-top: 10%;
        display: flex;
        flex-direction: column;
        height: 100vh !important;
    }

    .dropdown-menu.active {
        padding-top: 13%;
        display: flex;
        flex-direction: column;
        height: 100vh !important;
    }
}

@media (max-width: 700px) {
/*	.nav-list.active {
		width: 85%;
        padding: 20px;;
		background-color: #343434;
    }
	*/
 .menu-toggle {
		position: fixed;
        margin-right: 100px;
        display: flex;
        margin: 15px 100px 15px 0px;

    }
	
	.nav-list.active {
		width: 85%;
        padding-top: 15%;
		background-color: #343434;
		padding-bottom: 35%;
		overflow-y: scroll;
    }
	.dropdown-menu.active {
	    width: 85%;
        padding-top: 25%;
		z-index: 99999;
		padding-bottom: 35%;
		overflow-y: scroll;
		position: fixed;
    }
}

body.menu-open {
	    touch-action: none;
		position: relative;
		max-height: 100vh;
	
}