.elementor-240 .elementor-element.elementor-element-e01cd08{--display:flex;--margin-top:-20px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}/* Start custom CSS for html, class: .elementor-element-b9bc4f5 *//* --- AHBAT CONSULTING HEADER --- */

.ahbat-header {
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background-color: #0a0c10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    font-family: inherit;
    z-index: 1000;
}

.ahbat-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Styling */
.ahbat-logo {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
}

.logo-dot {
    color: #3b82f6;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* Desktop Navigation */
.ahbat-nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ahbat-nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.ahbat-nav-link:hover {
    color: #ffffff;
}

/* Contact Button */
.ahbat-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.ahbat-contact-btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.ahbat-contact-btn svg {
    transition: transform 0.3s ease;
}

.ahbat-contact-btn:hover svg {
    transform: translateX(4px);
}

/* --- MOBILE MENU UTILITIES (Hidden on Desktop) --- */
.mobile-toggle { display: none; }
.hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.hamburger span { width: 25px; height: 2px; background-color: #fff; transition: all 0.3s ease; }
.ahbat-action-mobile { display: none; }


/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 850px) {
    /* Adjust Logo for smaller screens */
    .ahbat-logo { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 0; 
        font-size: 1.2rem; 
    }
    .logo-dot { 
        font-size: 0.65rem; 
        letter-spacing: 3px; 
    }

    /* Hide Desktop Button, Show Hamburger */
    .ahbat-action-desktop { display: none; }
    .hamburger { display: flex; }

    /* Mobile Dropdown Navigation Styling */
    .ahbat-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0a0c10;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .ahbat-nav-list {
        flex-direction: column;
        gap: 25px;
        padding: 30px 0;
        text-align: center;
    }

    .ahbat-action-mobile {
        display: flex;
        padding-bottom: 30px;
    }

    /* CSS Magic: When Checkbox is Checked -> Open Menu */
    .mobile-toggle:checked ~ .ahbat-nav {
        max-height: 400px; /* Expands the menu */
    }

    /* CSS Magic: Hamburger to 'X' Animation */
    .mobile-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}/* End custom CSS */