.elementor-11 .elementor-element.elementor-element-73c3eb2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11 .elementor-element.elementor-element-f34f748{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-f34f748 *//* Root Variables */
    :root {
        --anl-soft-white: #F8FAFC;
        --anl-warm-white: #FFF;
        --anl-soft-navy: #10243C;
        --anl-charcoal: #2D3748;
        --anl-olive: #6B7D6A;
        --anl-teal: #2E6F6C;
        --anl-ochre: #C49A53;
        --anl-muted-gray: #E6ECF0;
        --anl-font-serif: 'DM Serif Text', serif;
        --anl-font-sans: 'Inter', sans-serif;
        --anl-spacing-xs: 8px;
        --anl-spacing-sm: 12px;
        --anl-spacing-md: 16px;
        --anl-spacing-lg: 24px;
        --anl-spacing-xl: 32px;
        --anl-spacing-2xl: 48px;
        --anl-spacing-3xl: 64px;
        --anl-transition-fast: 0.2s ease;
        --anl-transition-smooth: 0.3s ease;
        --anl-transition-gentle: 0.5s ease;
        --anl-shadow-soft: 0 4px 12px rgba(16, 36, 60, 0.08);
        --anl-shadow-medium: 0 8px 24px rgba(16, 36, 60, 0.12);
        --anl-shadow-strong: 0 16px 48px rgba(16, 36, 60, 0.16);
        --anl-z-base: 1;
        --anl-z-overlay: 100;
        --anl-z-sidebar: 200;
        --anl-z-header: 300;
    }

    /* Google Fonts Import */
    @import url('https://fonts.googleapis.com/css2?family=DM+Serif+Text:ital@0;1&family=Inter:wght@300;400;500;600;700&display=swap');

    /* Reset for Header Section */
    .anl-header-container * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    /* Header Container */
    .anl-header-container {
        position: relative;
        width: 100%;
        z-index: var(--anl-z-header);
    }

    .anl-main-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: var(--anl-z-header);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(16, 36, 60, 0.08);
        transition: var(--anl-transition-smooth);
    }

    .anl-header-bg-layer {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(248, 250, 252, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
        z-index: -1;
    }

    .anl-header-inner-wrap {
        max-width: 1400px;
        margin: 0 auto;
        padding: var(--anl-spacing-md) var(--anl-spacing-lg);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--anl-spacing-lg);
        
    }

    /* Logo */
    .anl-logo-container {
        position: relative;
        z-index: 10;
    }

    .anl-logo-link {
        display: block;
        text-decoration: none;
    }

    .anl-logo-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .anl-logo-image {
        height: 50px;
        max-width: 200px!important;
        width: auto;
        object-fit: contain;
        transition: var(--anl-transition-smooth);
    }

    .anl-logo-text-area {
        display: flex;
        flex-direction: column;
    }

    .anl-logo-tagline {
        font-size: 0.75rem;
        font-weight: 500;
        color: var(--anl-olive);
        letter-spacing: 0.5px;
        margin-top: 2px;
        font-family: var(--anl-font-sans);
    }

    /* Navigation - UPDATED */
    .anl-desktop-navigation {
        display: none;
    }

    .anl-nav-menu-list {
        display: flex;
        align-items: center;
        gap: 8px;
        position: relative;
        list-style: none;
        height: 100%;
    }

    .anl-nav-menu-link {
        position: relative;
        padding: 10px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--anl-soft-navy);
        border-radius: 8px;
        transition: all var(--anl-transition-fast);
        text-decoration: none;
        font-family: var(--anl-font-sans);
        display: inline-flex;
        align-items: center;
    }

    .anl-nav-menu-link:hover {
        color: var(--anl-ochre);
        background: rgba(196, 154, 83, 0.08);
    }

    .anl-nav-menu-link.anl-nav-active {
        color: var(--anl-ochre);
        background: rgba(196, 154, 83, 0.12);
    }

    .anl-nav-menu-link::after {
        content: attr(data-text);
        position: absolute;
        bottom: -4px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 80%;
        height: 2px;
        background: var(--anl-ochre);
        border-radius: 2px;
        transition: transform var(--anl-transition-smooth);
    }

    .anl-nav-menu-link:hover::after,
    .anl-nav-menu-link.anl-nav-active::after {
        transform: translateX(-50%) scaleX(1);
    }

    /* Header CTA - UPDATED */
    .anl-header-cta-wrapper {
        display: none;
        align-items: center;
        height: 100%;
    }

    .anl-header-cta-button {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: linear-gradient(135deg, var(--anl-ochre) 0%, #b38847 100%);
        color: var(--anl-soft-white);
        font-weight: 600;
        font-size: 14px;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(196, 154, 83, 0.25);
        transition: all var(--anl-transition-fast);
        text-decoration: none;
        font-family: var(--anl-font-sans);
    }

    .anl-header-cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(196, 154, 83, 0.35);
    }

    .anl-cta-button-text {
        white-space: nowrap;
    }

    .anl-cta-button-icon {
        display: flex;
        align-items: center;
        transition: var(--anl-transition-fast);
    }

    .anl-header-cta-button:hover .anl-cta-button-icon {
        transform: translateX(3px);
    }

    /* Hamburger Menu */
    .anl-mobile-menu-trigger {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 8px;
        z-index: 10;
        background: none;
        border: none;
        cursor: pointer;
    }

    .anl-hamburger-icon-box {
        width: 28px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .anl-hamburger-bar {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--anl-soft-navy);
        border-radius: 2px;
        transition: all var(--anl-transition-smooth);
        position: relative;
    }

    .anl-hamburger-bar::before,
    .anl-hamburger-bar::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 2px;
        background: var(--anl-soft-navy);
        border-radius: 2px;
        transition: all var(--anl-transition-smooth);
    }

    .anl-hamburger-bar::before {
        top: -8px;
    }

    .anl-hamburger-bar::after {
        bottom: -8px;
    }

    .anl-mobile-menu-trigger.anl-menu-open .anl-hamburger-bar {
        background: transparent;
    }

    .anl-mobile-menu-trigger.anl-menu-open .anl-hamburger-bar::before {
        top: 0;
        transform: rotate(45deg);
    }

    .anl-mobile-menu-trigger.anl-menu-open .anl-hamburger-bar::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    .anl-hamburger-label {
        font-size: 11px;
        font-weight: 600;
        color: var(--anl-soft-navy);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: var(--anl-font-sans);
    }

    /* Decorative Elements */
    .anl-header-decoration {
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 100%;
        pointer-events: none;
        overflow: hidden;
    }

    .anl-decorative-dot {
        position: absolute;
        width: 4px;
        height: 4px;
        background: var(--anl-ochre);
        border-radius: 50%;
        opacity: 0.3;
    }

    .anl-dot-position-1 {
        top: 20%;
        right: 10%;
        animation: anl-float-animation 3s ease-in-out infinite;
    }

    .anl-dot-position-2 {
        top: 60%;
        right: 25%;
        animation: anl-float-animation 4s ease-in-out infinite 1s;
    }

    .anl-dot-position-3 {
        top: 40%;
        right: 40%;
        animation: anl-float-animation 3.5s ease-in-out infinite 0.5s;
    }

    @keyframes anl-float-animation {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-8px);
        }
    }

    /* Sidebar Overlay */
    .anl-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(16, 36, 60, 0.8);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        z-index: calc(var(--anl-z-sidebar) - 1);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .anl-sidebar-overlay.anl-overlay-active {
        opacity: 1;
        visibility: visible;
    }

    /* Sidebar Panel */
    .anl-mobile-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 380px;
        height: 100vh;
        background: linear-gradient(135deg, 
            rgba(16, 36, 60, 0.98) 0%, 
            rgba(16, 36, 60, 0.95) 100%);
        z-index: var(--anl-z-sidebar);
        display: flex;
        flex-direction: column;
        padding: var(--anl-spacing-xl);
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.2);
    }

    .anl-mobile-sidebar.anl-sidebar-open {
        right: 0;
        z-index: 99999;
    }

    .anl-sidebar-bg-texture {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 30%, rgba(196, 154, 83, 0.05) 0%, transparent 50%),
            radial-gradient(circle at 80% 70%, rgba(46, 111, 108, 0.05) 0%, transparent 50%);
        pointer-events: none;
    }

    .anl-sidebar-header-section {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: var(--anl-spacing-xl);
        position: relative;
        z-index: 1;
    }

    .anl-sidebar-branding h2 {
        font-family: var(--anl-font-serif);
        font-size: 24px;
        font-weight: 400;
        color: var(--anl-soft-white);
        margin-bottom: 4px;
    }

    .anl-sidebar-branding span {
        color: var(--anl-ochre);
    }

    .anl-sidebar-tagline {
        font-size: 12px;
        color: rgba(248, 250, 252, 0.7);
        font-weight: 500;
        letter-spacing: 0.5px;
        font-family: var(--anl-font-sans);
    }

    .anl-sidebar-close-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(248, 250, 252, 0.1);
        border-radius: 8px;
        color: var(--anl-soft-white);
        font-size: 20px;
        transition: all var(--anl-transition-fast);
        border: none;
        cursor: pointer;
    }

    .anl-sidebar-close-btn:hover {
        background: rgba(248, 250, 252, 0.15);
        transform: rotate(90deg);
    }

    .anl-sidebar-navigation-area {
        flex: 1;
        position: relative;
        z-index: 1;
        margin-bottom: var(--anl-spacing-xl);
    }

    .anl-sidebar-menu-items {
        display: flex;
        flex-direction: column;
        gap: 8px;
        list-style: none;
    }

    .anl-sidebar-nav-link {
        display: flex;
        align-items: center;
        gap: var(--anl-spacing-md);
        padding: 16px 20px;
        background: rgba(248, 250, 252, 0.05);
        border: 1px solid rgba(248, 250, 252, 0.1);
        border-radius: 12px;
        color: var(--anl-soft-white);
        font-weight: 500;
        transition: all var(--anl-transition-smooth);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        font-family: var(--anl-font-sans);
    }

    .anl-sidebar-nav-link:hover {
        background: rgba(196, 154, 83, 0.15);
        border-color: rgba(196, 154, 83, 0.3);
        transform: translateX(8px);
    }

    .anl-sidebar-link-number {
        font-size: 13px;
        font-weight: 700;
        color: var(--anl-ochre);
        min-width: 28px;
    }

    .anl-sidebar-link-text {
        flex: 1;
        font-size: 15px;
    }

    .anl-sidebar-link-arrow {
        display: flex;
        align-items: center;
        opacity: 0;
        transform: translateX(-8px);
        transition: all var(--anl-transition-fast);
    }

    .anl-sidebar-nav-link:hover .anl-sidebar-link-arrow {
        opacity: 1;
        transform: translateX(0);
    }

    .anl-sidebar-cta-section {
        margin-bottom: var(--anl-spacing-xl);
        position: relative;
        z-index: 1;
    }

    .anl-sidebar-cta-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 18px 24px;
        background: linear-gradient(135deg, var(--anl-ochre) 0%, #b38847 100%);
        color: var(--anl-soft-white);
        font-weight: 600;
        font-size: 15px;
        border-radius: 50px;
        box-shadow: 0 8px 24px rgba(196, 154, 83, 0.3);
        transition: all var(--anl-transition-fast);
        text-decoration: none;
        font-family: var(--anl-font-sans);
    }

    .anl-sidebar-cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 32px rgba(196, 154, 83, 0.4);
    }

    .anl-sidebar-social-section {
        padding: var(--anl-spacing-lg) 0;
        border-top: 1px solid rgba(248, 250, 252, 0.1);
        border-bottom: 1px solid rgba(248, 250, 252, 0.1);
        margin-bottom: var(--anl-spacing-lg);
        position: relative;
        z-index: 1;
    }

    .anl-social-section-title {
        font-size: 13px;
        font-weight: 600;
        color: rgba(248, 250, 252, 0.7);
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: var(--anl-spacing-md);
        font-family: var(--anl-font-sans);
    }

    .anl-social-links-container {
        display: flex;
        gap: 12px;
    }

    .anl-social-icon-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(248, 250, 252, 0.1);
        border: 1px solid rgba(248, 250, 252, 0.15);
        border-radius: 50%;
        color: var(--anl-soft-white);
        font-size: 18px;
        transition: all var(--anl-transition-fast);
        text-decoration: none;
    }

    .anl-social-icon-link:hover {
        background: var(--anl-ochre);
        border-color: var(--anl-ochre);
        transform: translateY(-3px);
    }

    .anl-sidebar-footer-section {
        position: relative;
        z-index: 1;
    }

    .anl-sidebar-footer-info {
        margin-bottom: var(--anl-spacing-sm);
    }

    .anl-footer-company-label {
        font-size: 11px;
        color: rgba(248, 250, 252, 0.5);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 2px;
        font-family: var(--anl-font-sans);
    }

    .anl-footer-company-name {
        font-size: 14px;
        font-weight: 600;
        color: var(--anl-ochre);
        font-family: var(--anl-font-sans);
    }

    .anl-footer-copyright {
        font-size: 12px;
        color: rgba(248, 250, 252, 0.6);
        font-family: var(--anl-font-sans);
    }

    /* Responsive Design */
    @media screen and (min-width: 768px) {
        .anl-header-inner-wrap {
            padding: var(--anl-spacing-lg) var(--anl-spacing-xl);
        }

        .anl-logo-image {
            height: 45px;
            max-width: 180px;
        }

        .anl-desktop-navigation {
            display: block;
        }

        .anl-mobile-menu-trigger {
            display: none;
        }

        .anl-mobile-sidebar {
            width: 420px;
        }

        .anl-logo-tagline {
            font-size: 0.7rem;
        }
    }

    @media screen and (min-width: 1024px) {
        .anl-header-cta-wrapper {
            display: flex;
        }

        .anl-nav-menu-link {
            font-size: 15px;
            padding: 12px 24px;
        }
    }

    @media screen and (min-width: 1440px) {
        .anl-header-inner-wrap {
            max-width: 1400px;
            padding: var(--anl-spacing-lg) var(--anl-spacing-2xl);
        }
    }

    @media (max-width: 768px) {
        .anl-logo-image {
            height: 40px;
            max-width: 160px;
        }

        .anl-logo-text-area {
            display: none;
        }
    }

    @media (max-width: 480px) {
        .anl-logo-image {
            height: 36px;
            max-width: 140px;
        }
    }

    /* Scrollbar */
    .anl-mobile-sidebar::-webkit-scrollbar {
        width: 6px;
    }

    .anl-mobile-sidebar::-webkit-scrollbar-track {
        background: rgba(16, 36, 60, 0.05);
        border-radius: 10px;
    }

    .anl-mobile-sidebar::-webkit-scrollbar-thumb {
        background: var(--anl-ochre);
        border-radius: 10px;
    }

    .anl-mobile-sidebar::-webkit-scrollbar-thumb:hover {
        background: #b38847;
    }

    a.anl-header-cta-button:hover {
        color: white;
    }
    
    
    @media(max-width:480px){
        img.anl-logo-image {
        max-width: 165px !important;
}
    }/* End custom CSS */