#mainMenu2{ display:block;}

.top-header {
    background: #fff;
    padding: 20px;
}
.main-menu {
    background: #FFBF00;
    color: white;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFBF00; /* same as menu bg */
    z-index: 3000;
}
.new_header {
    background-color: #FFBF00;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
}

.new_header_container { overflow: visible; 
    display: flex;
    justify-content: center; /* center లో పెట్టడం */
    align-items: center;
    padding: 10px 20px;
}

/* Desktop Menu */
.new_header .nav-menu {
    display: flex;
}

.new_header .nav-menu ul {
    display: flex;
    justify-content: center; /* menu items center లో */
    list-style: none;
    margin: 0;
    padding: 0;
}

.new_header .nav-menu ul li {
    position: relative;
}

.new_header .nav-menu ul li a {
    color: white;
    text-decoration: none;
    padding: 6px 15px;
    display: block;
    font-weight: 500;
	font-size:15px;
}

.new_header .nav-menu ul li a:hover{color:#000;}
.new_header .nav-menu ul li .current{color:#fcb828;}

.new_header .register-btn {
    
    background: linear-gradient(to right, #ff6300, #ff6300);
    color: #FFF;
    padding: 0px 15px;
    border-radius: 20px;
    font-weight: bold;
}

.new_header .register-btn:hover{background: linear-gradient(to right, #ff6300, #ff6300); }
.register-btn a:hover{color:#FFF !important;}

.new_header .arrow {
    font-size: 14px;
}

/* Dropdown hidden by default */
.new_header .dropdown-content { min-width:230px !important;
	border-radius: 6px !important;
    border-bottom: 3px #ffae00 solid !important;
	    padding: 10px !important;
	
    display: none !important;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 5px;
    z-index: 999;
}

.new_header .dropdown-content li a {
    color: black;
    padding: 10px;
	color: #2f323c !important;
}

.new_header .dropdown-content li a:hover {
    background: #FFBF00;
    color:#FFF !important;
}

/* Desktop hover open */
@media (min-width: 769px) {
    .new_header .dropdown:hover .dropdown-content {
        display: block !important;
    }
}

/* Mobile Off-Canvas Menu */
.new_header .menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    color: white;
}

.new_header .close-btn {
    display: none;
    font-size: 26px;
    cursor: pointer;
    padding: 15px;
}

@media (max-width: 768px) {
    .new_header .menu-toggle {
        display: block;
    }
    .new_header .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 310px;
        height: 100%;
        background: white;
        flex-direction: column;
        overflow-y: auto;
        transition: right 0.3s ease;
        z-index: 1000;
    }
    .new_header .nav-menu.active {
        right: 0;
    }
    .new_header .nav-menu ul {
        flex-direction: column;
        width: 100%;
    }
    .new_header .nav-menu ul li {
        border-bottom: 1px solid #ddd;
    }
    .new_header .nav-menu ul li a {
        color: black;
    }
 .new_header .dropdown-content {
        display: none !important;
    }
    .new_header .dropdown.open > .dropdown-content {
        display: block !important;
    }

    .new_header .sub-dropdown {
        display: none !important;
    }
    .new_header .dropdown-sub.open > .sub-dropdown {
        display: block !important;
    }
    .new_header .close-btn {
        display: block;
        text-align: right;
        background: #FFBF00;
        color: white;
    }
}

/* Overlay default hidden */
 .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* black transparent */
    z-index: 900;
}

/* Show overlay when menu active */
 .overlay.active {
    display: block;
}



/* Always hide by default */
.sub-dropdown {
min-width:230px !important;
	border-radius: 6px !important;
    border-bottom: 3px #ffae00 solid !important;
	    padding: 10px !important;
		
    display: none !important; /* force hidden */
    position: absolute;
    left: 100%;
    top: 0;
    background: white;
    min-width: 160px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    border-radius: 5px;
    z-index: 999;
}

/* Desktop hover open */
@media (min-width: 769px) {
    .dropdown-sub:hover > .sub-dropdown {
        display: block !important;
    }
}

/* Mobile click open */
@media (max-width: 768px) {
    .new_header_container {
        justify-content: flex-end; 
    }
    .sub-dropdown {
        position: static;
        background: #e8e8e8;
        box-shadow: none;
        border-radius: 0;
    }
    .dropdown-sub.open > .sub-dropdown {
        display: block !important;
    }
}


.mobile-contact {
    display: none; /* defaultగా hidden */
    padding: 15px;
    background: #f5f5f5;
    font-size: 14px;
    color: #333;
}

.mobile-contact div {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .mobile-contact {
        display: block; 
    }
}


