/* Modern Header Styles - Matching Image Design */
.header-style-two {
    position: relative;
    z-index: 999;
}

.header-style-two .header-lower {
    background: transparent;
    padding: 0px 0;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 999;
    margin-top: 0;
    transition: all 0.3s ease;
}

.header-style-two .header-lower .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    position: relative;
}

.header-style-two .header-lower .main-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.header-style-two .header-lower .logo-box {
    min-width: auto;
    padding: 0;
    margin-right: 40px;
}

.header-style-two .header-lower .logo-box .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-style-two .header-lower .logo-box .logo img {
    height: 40px;
    width: auto;
}

.header-style-two .header-lower .logo-box .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: none;
}

.header-style-two .header-lower .nav-outer {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-style-two .header-lower .main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-style-two .header-lower .main-menu .navigation > li {
    position: relative;
}

.header-style-two .header-lower .main-menu .navigation > li > a {
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.header-style-two .header-lower .main-menu .navigation > li > a:hover,
.header-style-two .header-lower .main-menu .navigation > li.current > a {
    color: #000000;
}

.header-style-two .header-lower .main-menu .navigation > li > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown:hover > a i {
    transform: rotate(180deg);
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown > ul > li {
    position: relative;
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown > ul > li > a {
    display: block;
    padding: 12px 20px;
    color: #4a5568;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown > ul > li > a:hover {
    background-color: #f7fafc;
    color: #000000;
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 8px 0;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.header-style-two .header-lower .main-menu .navigation > li.dropdown > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.header-style-two .header-lower .header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 40px;
}

.header-style-two .header-lower .sign-in-link {
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-style-two .header-lower .sign-in-link:hover {
    color: #000000;
}

.header-style-two .header-lower .get-started-btn {
    background: #000000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-style-two .header-lower .get-started-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-style-two .header-lower .get-started-btn i {
    font-size: 12px;
}

.header-style-two .header-lower .mobile-nav-toggler {
    display: none;
}

@media only screen and (max-width: 1023.98px) {
    .header-style-two .header-lower .nav-container {
        padding: 0 20px;
    }

    .header-style-two .header-lower .main-box {
        padding: 12px 20px;
    }

    .header-style-two .header-lower .nav-outer {
        display: none;
    }

    .header-style-two .header-lower .header-actions .sign-in-link,
    .header-style-two .header-lower .header-actions .get-started-btn {
        display: none;
    }

    .header-style-two .header-lower .mobile-nav-toggler {
        display: block;
        cursor: pointer;
    }
}

/* Sticky Header Styles - Matching Floating Design */
.sticky-header {
    background: transparent;
    padding: 10px 0;
    box-shadow: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-header.fixed-header {
    opacity: 1;
    visibility: visible;
}

.sticky-header .nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 0px;
    position: relative;
}

.sticky-header .main-box {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.sticky-header .logo-box {
    min-width: auto;
    padding: 0;
    margin: 0px 10px;
    height: 55px;
}

.sticky-header .logo-box .logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-header .logo-box .logo img {
    height: 40px;
    width: auto;
}

.sticky-header .logo-box .logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    display: none;
}

.sticky-header .nav-outer {
    flex: 1;
    display: flex;
    justify-content: center;
}

.sticky-header .main-menu .navigation {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sticky-header .main-menu .navigation > li {
    position: relative;
}

.sticky-header .main-menu .navigation > li > a {
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.sticky-header .main-menu .navigation > li > a:hover,
.sticky-header .main-menu .navigation > li.current > a {
    color: #000000;
}

.sticky-header .main-menu .navigation > li > a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.sticky-header .main-menu .navigation > li.dropdown:hover > a i {
    transform: rotate(180deg);
}

.sticky-header .main-menu .navigation > li.dropdown > ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.sticky-header .main-menu .navigation > li.dropdown:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sticky-header .main-menu .navigation > li.dropdown > ul > li {
    position: relative;
}

.sticky-header .main-menu .navigation > li.dropdown > ul > li > a {
    display: block;
    padding: 12px 20px;
    color: #4a5568;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.sticky-header .main-menu .navigation > li.dropdown > ul > li > a:hover {
    background-color: #f7fafc;
    color: #000000;
}

.sticky-header .main-menu .navigation > li.dropdown > ul > li > ul {
    position: absolute;
    left: 100%;
    top: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 8px 0;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    list-style: none;
}

.sticky-header .main-menu .navigation > li.dropdown > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sticky-header .header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-left: 40px;
}

.sticky-header .sign-in-link {
    color: #4a5568;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sticky-header .sign-in-link:hover {
    color: #000000;
}

.sticky-header .get-started-btn {
    background: #000000;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sticky-header .get-started-btn:hover {
    background: #1a1a1a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-header .get-started-btn i {
    font-size: 12px;
}

.sticky-header .mobile-nav-toggler {
    display: none;
}

@media only screen and (max-width: 1023.98px) {
    .sticky-header .nav-container {
        padding: 0 20px;
    }

    .sticky-header .main-box {
        padding: 12px 20px;
    }

    .sticky-header .nav-outer {
        display: none;
    }

    .sticky-header .header-actions .sign-in-link,
    .sticky-header .header-actions .get-started-btn {
        display: none;
    }

    .sticky-header .mobile-nav-toggler {
        display: block;
        cursor: pointer;
    }
}

