.page-wrapper2 {
    background-color: #fff;
    color: light-dark(#000, #fff);
    display: grid;
    place-items: center;
	padding: 5px 0px 0px 20px;
	

}
 .cta-button span {
	color: white;
	
 }
.topbannerimag{
	position:absolute; 
	top:0;
	 left:0; 
	 width:100%;
	  z-index:50; 
	  pointer-events:none;
	   top:60px;
}
.page-wrapper2:first-of-type {
    color-scheme: light;
}

.main-header {
    container: mainHeaderContainer / inline-size;
    padding-block: clamp(0.5rem, 3vw, 0.75rem);
    padding-inline-start: clamp(1.25rem, 5vw, 1.5rem);
    padding-inline-end: clamp(0.5rem, 3vw, 0.75rem);
    margin-inline: auto;
    width: min(88rem, 95%);
    border-radius: 0.75rem;
    column-gap: 5cqi;
    position: relative;
}

.header-container {
    display: flex;
    align-items: center;
    gap: 5cqi;
    position: relative;
}

.brand-logo {
    flex-shrink: 0;
    font-size: 2em;
    margin-inline-end: auto; 
    text-decoration: none;
    z-index: 1001;
}

.logo-image {
    max-height: 50px;
    width: auto;
}

.brand-logo:hover {
    color: light-dark(
        color-mix(in srgb, #000 20%, #0085ff),
        color-mix(in srgb, #fff 20%, #0085ff)
    );
}

/* Fixed Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    position: relative;
    padding: 4px;
    margin-left: auto;
}

.menu-bar {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #333;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    border-radius: 2px;
}

/* Enhanced Hamburger Animation */
.mobile-menu-btn.menu-open .menu-bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.menu-open .menu-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-btn.menu-open .menu-bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.cta-button {
    margin-inline-start: auto; 
    border: 0;
    border-radius: 0.375rem;
    padding-block: 0.5em;
    padding-inline-start: 1.25em;
    padding-inline-end: 1em;
    display: flex;
    align-items: center;
    column-gap: 0.5em;
    background-color: #69cb6a;
    border: 1px solid light-dark(#ddd, #444);
    cursor: pointer;
    z-index: 1001;
}

.cta-button:hover {
    background-color: #55adca;
}

.cta-button * {
    flex-shrink: 0;
}

.cta-button svg {
    font-size: 1.5em;
}

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0.5cqi;
    z-index: 1000;
}

.nav-item {
    text-decoration: none;
    display: inline-block;
    border-radius: 0.375rem;
    background-color: transparent;
    padding: 0.5em 0.75em;
    color: #0085ff;
    border: none;
    cursor: pointer;
    font: inherit;
    white-space: nowrap;
}

.nav-item:hover {
    background-color: light-dark(#eee, #333);
}

.nav-dropdown {
	position: relative;
	z-index: 999999;
}

.dropdown-btn::after {
    content: '\25BC';
    margin-left: 5px;
    font-size: 0.6em;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
	 bottom: auto; 
    background-color: #fff;
    border: 1px solid #ccc;
    display: none;
    flex-direction: column;
    min-width: 220px;
  z-index: 10001 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    overflow: hidden;

}

.sub-menu-item {
    padding: 0.75em 1em;
    text-decoration: none;
    color: #000;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    display: block;
	z-index: 999999 !important;
	position: relative;
}

.sub-menu-item:hover {
    background-color: #f0f0f0;
}

.nav-dropdown:hover .sub-menu {
    display: flex;
}

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 80px 0 20px 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 10000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .primary-nav.nav-open {
        right: 0;
    }

    .nav-item {
        width: 100%;
        padding: 18px 25px;
        border-bottom: 1px solid #f0f0f0;
        text-align: left;
        display: block;
        font-size: 16px;
        color: #333;
        margin: 0;
    }

    .nav-item:hover {
        background-color: #f8f9fa;
        color: #0085ff;
    }

    .nav-dropdown {
        width: 100%;
    }

    .dropdown-btn {
        width: 100%;
        text-align: left;
        justify-content: space-between;
        display: flex;
        align-items: center;
        border-bottom: 1px solid #f0f0f0;
        padding: 18px 25px;
        background-color: transparent;
        font-size: 16px;
        color: #333;
    }

    .dropdown-btn:hover {
        background-color: #f8f9fa;
        color: #0085ff;
    }

    .dropdown-btn::after {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.dropdown-active .dropdown-btn::after {
        transform: rotate(180deg);
    }

    .sub-menu {
        position: static;
        display: none;
        width: 100%;
        border: none;
        box-shadow: none;
        background-color: #f8f9fa;
        margin: 0;
        z-index: 10001;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-dropdown.dropdown-active .sub-menu {
        display: flex;
        max-height: 400px;
    }

    .sub-menu-item {
        padding: 15px 45px;
        border-bottom: 1px solid #e9ecef;
        font-size: 15px;
        color: #555;
    }

    .sub-menu-item:hover {
        background-color: #e9ecef;
        color: #0085ff;
    }

    .sub-menu-item:last-child {
        border-bottom: none;
    }
}

@container mainHeaderContainer (max-width: 30rem) {
    .cta-button {
        aspect-ratio: 1;
        padding-inline: 0.5em;
    }

    .cta-button span {
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        white-space: nowrap;
        width: 1px;
		color: white;
    }
}

/* Mobile Overlay */
.mobile-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-backdrop.backdrop-active {
    opacity: 1;
    visibility: visible;
}

button {
    padding: 0;
    border: 0;
    border-radius: 0;
    font: inherit;
    color: inherit;
    background-color: transparent;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}


@media only screen and (max-width: 767px) {
 .topbannerimag{
	position:absolute; 
	top:0;
	 left:0; 
	 width:100%;
	  z-index:50; 
	  pointer-events:none;
	   top:77px;
}

}