	/**
 * Header CSS for juuzbot_kps theme
 * This file contains styles specific to the header section of the juuzbot_kps WordPress theme.
 * It ensures a cohesive design and responsive layout for the header across all devices.
 */

	/* =============================
   HEADER
============================= */
	.custom-header {
	    width: 100%;
	    background: #f89205;
	    box-shadow: #a9949536 0px 4px 8px;
	    position: relative;
	    z-index: 1002;
	    padding: 12px 0;

	}

	.custom-navbar {
	    max-width: 1200px;
	    margin: 0 auto;
	    padding: 0 20px;
	    gap: 60px;
	    /* adjust this value */
	    display: flex;
	    align-items: center;
	    justify-content: space-between;
	}

	/* =============================
   LOGO
============================= */
	.custom-brand {
	    display: flex;
	    align-items: center;
	    text-decoration: none;
	}

	.custom-brand img {
	    width: 160px;
	    height: auto;
	    display: block;
	}

	/* =============================
   MENU BASE
============================= */
	.custom-menu-inner {
	    list-style: none;
	    margin: 0;
	    padding: 0;
	}

	.custom-menu-inner .current-menu-item a {
	    color: #fff;
	}

	.custom-menu-inner li a {
	    text-decoration: none;
	    font-size: 16px;
	    font-weight: 600;
	    text-transform: uppercase;
	    letter-spacing: .5px;
	    color: #000;
	    transition: .3s;
	}

	.custom-menu-inner li a:hover {
	    opacity: .8;
	}

	/* =============================
   MOBILE MENU
============================= */
	.custom-menu {
	    position: fixed;
	    top: 0;
	    left: -290px;
	    width: 290px;
	    height: 100vh;
	    background: #fff;
	    padding: 60px 20px 20px;
	    transition: .4s;
	    z-index: 1001;
	    display: flex;
	    flex-direction: column;
	}

	.custom-menu.active {
	    transform: translateX(290px);
	}

	.custom-menu-inner {
	    display: flex;
	    flex-direction: column;
	    gap: 18px;
	}

	.mobile-menu-logo {
	    display: none;
	    text-align: center;
	    margin-bottom: 20px;
	    padding-bottom: 15px;
	    border-bottom: 1px solid rgba(0, 0, 0, .08);
	}

	.mobile-menu-logo img {
	    max-height: 60px;
	    width: auto;
	}

	@media(max-width:768px) {
	    .custom-menu-inner li a {
	        color: #f89205 !important;
	    }

	    .mobile-menu-logo {
	        display: block;
	    }
	}

	/* =============================
   BURGER
============================= */
	.custom-wrapper {
	    display: flex;
	    align-items: center;
	    gap: 15px;
	    z-index: 1003;
	}

	.custom-burger {
	    width: 25px;
	    height: 18px;
	    cursor: pointer;
	    display: flex;
	    flex-direction: column;
	    justify-content: space-between;
	}

	.custom-burger span {
	    width: 100%;
	    height: 2px;
	    background: #fff;
	    transition: .3s;
	}

	.custom-burger.active span:nth-child(1) {
	    transform: translateY(8px) rotate(45deg);
	}

	.custom-burger.active span:nth-child(2) {
	    opacity: 0;
	}

	.custom-burger.active span:nth-child(3) {
	    transform: translateY(-8px) rotate(-45deg);
	}

	/* =============================
   OVERLAY
============================= */
	.menu-overlay {
	    position: fixed;
	    top: 0;
	    left: 0;
	    width: 100%;
	    height: 100%;
	    background: rgba(0, 0, 0, .5);
	    visibility: hidden;
	    opacity: 0;
	    transition: .3s;
	    z-index: 1000;
	}

	.menu-overlay.active {
	    visibility: visible;
	    opacity: 1;
	}

	/* =============================
   DROPDOWN
============================= */
	.menu-item-has-children {
	    position: relative;
	}

	.sub-menu {
	    max-height: 0;
	    overflow: hidden;
	    list-style: none;
	    padding-left: 15px;
	    transition: .3s;
	}

	.menu-item-has-children.active .sub-menu {
	    max-height: 200px;
	    margin-top: 10px;
	    padding: 10px 15px;
	}

	/* =============================
   DESKTOP
============================= */
	@media(min-width:768px) {

	    .custom-burger,
	    .menu-overlay,
	    .custom-wrapper {
	        display: none;
	    }

	    .custom-menu {
	        position: static;
	        transform: none !important;
	        background: transparent;
	        height: auto;
	        width: auto;
	        padding: 0;
	    }

	    .custom-menu-inner {
	        flex-direction: row;
	        align-items: center;
	        gap: 30px;
	    }

	    .sub-menu {
	        position: absolute;
	        top: 100%;
	        left: 0;
	        background: #fff;
	        border: 1px solid #f89205;
	        opacity: 0;
	        visibility: hidden;
	        transform: translateY(10px);
	        max-height: none;
	        min-width: 180px;
	        border-radius: 8px;
	    }

	    .menu-item-has-children:hover .sub-menu {
	        opacity: 1;
	        visibility: visible;
	        transform: translateY(0);
	    }

	    .sub-menu li a {
	        padding: 10px 20px;
	        display: block;
	        color: #f89205;
	    }

	    .sub-menu li a:hover {
	        background: #fff;
	    }
	}

	/* =============================
   LEFT → RIGHT HOVER UNDERLINE
============================= */
	.custom-menu-inner>li>a {
	    position: relative;
	    display: inline-block;
	    padding-bottom: 4px;
	}

	.custom-menu-inner>li>a::after {
	    content: "";
	    position: absolute;
	    left: 0;
	    bottom: 0;
	    width: 0;
	    height: 3px;
	    background: #fff;
	    /* underline color */
	    transition: width 0.35s ease;
	}

	.custom-menu-inner>li>a:hover::after {
	    width: 100%;
	}

