/* Reset and general styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    padding-top: 0;
    background-color: white;
}

/* Navbar styles */
.nav-wrapper {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar {
    position: relative;
    padding: 20px 0;
    background-color: #fff;
}

.nav-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
}

/* Logo styles */
.logolinkblock {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar__xeroe-logo {
    width: 119px;
    height: 38px;
}

/* Navigation menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: auto;
    list-style: none;
}

/* Dropdown styles */
.dropdown_navbar {
    position: relative;
}

.dropdownmenus {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    padding-right: 32px;
    color: #333;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    background: none;
    border: none;
    position: relative;
}

.dropdown {
    margin-right: 0;
}

.icon-2.w-icon-dropdown-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-left: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: translateY(-50%) rotate(-45deg);
    pointer-events: none;
}

.dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown_navbar:hover .dropdown-list {
    display: block;
}

.dropdownlink {
    display: block;
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s;
    white-space: nowrap;
}

.dropdownlink:hover {
    background-color: #f5f5f5;
}

/* Button styles */
.nav-contact-us-btn {
    display: none !important;
}

/* Update create-account button styles */
.create-account {
    padding: 12px 24px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    border: 2px solid #333;
    border-radius: 25px;
    transition: all 0.2s;
}

.create-account:hover {
    background-color: #333;
    color: #fff;
}

/* Update Get in touch button styles */
.nav-get-in-touch-button {
    padding: 12px 24px;
    background-color: #6ebd45; /* Green background */
    color: #fff !important; /* White text */
    border: 2px solid #6ebd45;
    border-radius: 25px; /* Rounded corners like sign up button */
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
}

.nav-get-in-touch-button:hover {
    background-color: #6ebd45; /* Darker green on hover */
    border-color: #6ebd45;
    color: #fff !important;
}

/* Hide unnecessary elements */
.use_cases_dropdown,
.sus,
.dropdown-list-2,
div[data-hover="false"].w-dropdown {
    display: none !important;
}

/* Mobile menu styles */
.menu-button {
    display: none;
    padding: 12px;
    cursor: pointer;
    background: none;
    border: none;
    margin-left: auto;
}

.menu-icon {
    width: 24px;
    height: 2px;
    background-color: #333;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #333;
    left: 0;
}

.menu-icon::before {
    top: -6px;
}

.menu-icon::after {
    bottom: -6px;
}

/* Update mobile styles for create-account */
@media (max-width: 991px) {
    .menu-button {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.w--open {
        display: flex;
    }

    .dropdown_navbar {
        width: 100%;
    }

    .dropdown-list {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .dropdownmenus {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown_navbar:hover .dropdown-list {
        display: none;
    }

    .dropdown_navbar.w--open .dropdown-list {
        display: block;
    }

    .nav-contact-us-btn,
    .create-account,
    .nav-get-in-touch-button {
        width: 100%;
        text-align: center;
        margin: 8px 0;
    }

    .create-account {
        text-align: center;
        margin: 8px 0;
        display: inline-block;
    }
}

/* Section Styles */
.hero-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    text-align: left;
}

.hero-section h1 {
    font-size: 24px;
    color: #2196F3;
    margin-bottom: 15px;
}

.hero-section p {
    color: black;
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.6;
}

.hero-section p strong {
    color: #2196F3;
}

.hero-section a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.hero-section a:hover {
    text-decoration: underline;
}

/* Add this style for the login link */
.nav-link-2 {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    transition: color 0.2s;
}

.nav-link-2:hover {
    color: #0066FF;
}

/* Fix company dropdown styles */
.dropdown-11.w-dropdown {
    position: relative;
}

.dropdown-11 .dropdown-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 8px 0;
    z-index: 1000;
}

.dropdown-11:hover .dropdown-list {
    display: block;
}

/* Mobile styles for company dropdown */
@media (max-width: 991px) {
    .dropdown-11 .dropdown-list {
        position: static;
        box-shadow: none;
        width: 100%;
    }

    .dropdown-11:hover .dropdown-list {
        display: none;
    }

    .dropdown-11.w--open .dropdown-list {
        display: block;
    }
}

/* Banner image styles */
.banner-image {
    width: 100%;
    margin-top: 80px;
    margin-bottom: 40px;
    overflow: hidden;
    height: 400px; /* Set a specific height */
}

.full-width-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Adjust first hero section margin */
.hero-section:first-of-type {
    margin-top: 40px;
}
