.elementor-23 .elementor-element.elementor-element-77b287fe > .elementor-background-overlay{background-color:#FFFFFF;opacity:0.5;}.elementor-23 .elementor-element.elementor-element-77b287fe{padding:0px 0px 0px 0px;}.elementor-23 .elementor-element.elementor-element-1707795c > .elementor-element-populated{padding:0px 0px 0px 0px;}.elementor-23 .elementor-element.elementor-element-c6b3904 > .elementor-widget-container{padding:0px 0px 0px 0px;}.elementor-23 .elementor-element.elementor-element-c6b3904{z-index:9999;}.elementor-23:not(.elementor-motion-effects-element-type-background), .elementor-23 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:1024px){.elementor-23 .elementor-element.elementor-element-c6b3904{width:var( --container-widget-width, 753px );max-width:753px;--container-widget-width:753px;--container-widget-flex-grow:0;}}/* Start custom CSS for html, class: .elementor-element-c6b3904 */:root {
            --color-primary: #070B47;
            --color-primary-darker: #050830;
            --color-neutral-darkest: #000;
            --color-white: #fff;
        }

@media (min-width: 1200px) {
    .page-header .entry-title, .site-footer .footer-inner, .site-footer:not(.dynamic-footer), .site-header .header-inner, .site-header:not(.dynamic-header), body:not([class*=elementor-page-]) .site-main {
        max-width: 1980px;
    }
}

.main-nav {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    background-color: #fff;
    /* Add overflow-x: hidden; to body if you absolutely want to prevent
       horizontal scroll caused by content, but this might clip the header content */
    /* overflow-x: hidden; */ /* Use with caution */
}

/* Utility Classes for Responsiveness */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Header Styles */
.site-header {
    background-color: #fff; /* This background spans the full viewport width */
    padding: 15px  0 15px 0; /* Vertical padding for the header bar itself */
    position: sticky;
    top: 0;
    width: 100%; /* Ensures the header bar itself is full viewport width */
}


.header-container {
    width: 1980px;      /* FIXED WIDTH for the content area */
    margin-left: auto;  /* Centers this 1980px container if viewport is wider */
    margin-right: auto;
    padding-left: 20px;   /* Padding *inside* the 1980px container */
    padding-right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box; /* Ensures padding is included in the 1980px width */
}

/* Logo Styles */
.logo {
    /* flex-shrink: 0; */ /* Might be useful */
}
.logo a {
    display: inline-block;
}
.logo img {
    max-height: 35px; /* Adjust based on your logo's aspect ratio */
    display: block;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
    /* Allow nav to take space, or set a specific flex-grow if needed
       For instance, if you want nav to be more centered between logo and CTAs:
       flex-grow: 1;
       display: flex;
       justify-content: center; */
}

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.nav-menu li {
    position: relative;
    margin-left: 30px; /* Spacing for a wide layout */
}
.nav-menu li:first-child {
    margin-left: 0;
}

.nav-menu li a {
    text-decoration: none;
    color: #070B47;
    /* Text/Regular/Normal */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
    padding: 10px 0;
    display: block; /* Adjust for 1980px context if needed */
    transition: color 0.2s ease-in-out;
}

.nav-menu li a:hover,
.dropdown-menu li a:hover {
    color: #0056b3;
}

/* Dropdown Arrow */
.dropdown-arrow {
    font-size: 0.7em;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.2s ease-in-out;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%; /* Position it right below the parent li's bottom edge */
    left: 0;
    background-color: #ffffff;
    list-style: none;
    padding: 8px 0;         /* Padding INSIDE the dropdown box is fine */
    /* margin: 8px 0 0 0; */ /* REMOVE or COMMENT OUT this line (was the issue) */
    margin: 0;              /* Explicitly set all margins to 0 for the dropdown */
    min-width: 220px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8e8e8;
    border-radius: 4px;
    z-index: 1010; /* Ensure it's above other elements */
}

.dropdown-menu li {
    margin-left: 0;
}

.dropdown-menu li a {
    padding: 10px 20px;
    font-weight: normal;
    font-size: 15px;
    white-space: nowrap;
    color: #333;
}
.dropdown-menu li a:hover {
    background-color: #f5f5f5;
    color: #0A2351;
}

.dropdown:hover .dropdown-menu {
    display: block;
}
.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* CTA Button Styles */
.cta-buttons {
    display: flex;
    align-items: center;
    /* flex-shrink: 0; */ /* Might be useful */
}

.cta-button {
    display: inline-block;
    padding: 10px 25px; /* Slightly larger buttons */
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 15px;
    margin-left: 15px;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    line-height: 1.5;
    cursor: pointer;
    text-align: center;
    white-space: nowrap; /* Prevent buttons from wrapping */
}

.cta-button-outline {
    background-color: #fff;
    color: #070B47;

/* Text/Regular/Normal */
font-family: Roboto;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 150%; /* 24px */
    border: 2px solid #0A2351;
}
.cta-button-outline:hover {
    background-color: #0A2351;
    color: #fff;
}

.cta-button-solid {
    background-color: #0A2351;
    color: #91A1E5;
    border: 2px solid #0A2351;
    color: var(--Periwinkle, #91A1E5);
    /* Text/Regular/Normal */
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */
}
.cta-button-solid:hover {
    background-color: #001a41;
    border-color: #001a41;
}

/* Hamburger Menu Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto; /* Pushes it to right within .main-nav on mobile */
}

.hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #0A2351;
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Responsive Styles - Tablet and Mobile */
/* These breakpoints now operate *within* the context of a viewport that might be showing
   only a portion of the 1980px wide header-container if the viewport is smaller. */

/* Example: If the viewport width becomes less than 992px, the mobile nav features activate.
   However, the header-container itself remains 1980px wide. */
@media (max-width: 992px) { /* This breakpoint might feel very early if content is 1980px */
    .desktop-only { display: none; } /* Hide desktop CTAs sooner */
    .mobile-only { display: list-item; } /* Show mobile CTAs in nav menu */

    .main-nav {
        order: 1; /* Move nav toggle to the right of logo */
        margin-left: auto;
        width: auto; /* Ensure it doesn't try to fill space */
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        /* Position relative to the viewport, not the 1980px container's edge if scrolled */
        top: calc(100% + 1px); /* Below the .site-header */
        left: 0; /* Align to viewport left */
        width: 100vw; /* Full viewport width for mobile menu */
        background-color: #fff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0px 5px 10px rgba(0,0,0,0.1);
        padding: 10px 0;
        box-sizing: border-box;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        margin-left: 0;
        text-align: left;
    }

    .nav-menu li a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-menu li:last-child a {
        border-bottom: none;
    }

    /* Mobile Dropdown adjustments */
    .dropdown-menu {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-top: 1px dashed #ddd;
        margin-top: 0;
        padding-left: 0;
        background-color: #f9f9f9;
    }
    .dropdown-menu li a {
        padding-left: 35px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobile CTA buttons within the nav */
    .nav-menu .nav-item-cta {
        padding: 0; /* Remove li padding, button will handle it */
        /* border-bottom: 1px solid #f0f0f0; */ /* Already handled by li a */
    }
    
    
    .nav-menu .nav-item-cta .cta-button {
        width: 100%; /* Full width inside the li */
        margin: 0;
        border-radius: 0; /* Flat look in mobile menu */
        padding: 12px 20px; /* Match other nav items */
        text-align: left;
        border-left: none;
        border-right: none;
        border-top: none; /* Assuming border-bottom from li a logic */
       
    }
    .nav-menu .nav-item-cta:last-of-type .cta-button {
        /* border-bottom: none; /* If it's truly the last item */
    }
     .nav-menu .nav-item-cta .cta-button-outline {
        border-bottom: 1px solid #f0f0f0; /* Keep separator */
     }
     .nav-menu .nav-item-cta:last-of-type .cta-button-outline {
        border-bottom: none;
     }

.contact_btn{
    color:white!important;
    }
    /* Hamburger Animation when active */
    .nav-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .nav-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width:480px){
    .logo {
        min-width: 250px;
        margin-left:-20px;
    }
    .main-nav{
        width: 80px;
        padding:0px;
        margin:0;
    }
    .header-container {
        width: 300px;
    }
    .nav-toggle{
        width: 40px;
    }
}/* End custom CSS */