/*=========================================================
    STAAFIAA HORIZON
    TOP BAR + PREMIUM HEADER
=========================================================*/

:root {

    --sh-navy: #071a2b;
    --sh-navy-light: #0c2942;

    --sh-blue: #176bff;
    --sh-blue-dark: #0d55d9;

    --sh-cyan: #37d6e8;

    --sh-white: #ffffff;
    --sh-light: #f5f8fb;

    --sh-text: #172331;
    --sh-muted: #687684;

    --sh-border: rgba(7, 26, 43, 0.10);

}


/*=========================================================
    GLOBAL
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--sh-text);
}


a {
    text-decoration: none;
}


button {
    border: 0;
    outline: none;
}


/*=========================================================
    TOP BAR
=========================================================*/

.sh-topbar {

    position: relative;

    background:
        linear-gradient(
            90deg,
            #061725 0%,
            #0a2439 55%,
            #071a2b 100%
        );

    color: #ffffff;

    z-index: 1001;

}


.sh-topbar-inner {

    min-height: 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.sh-topbar-left,
.sh-topbar-right {

    display: flex;

    align-items: center;

    gap: 18px;

}


.sh-top-contact {

    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 14px;

    font-weight: 500;

    transition: 0.3s ease;

}


.sh-top-contact:hover {
    color: #ffffff;
}


.sh-top-icon {

    width: 24px;

    height: 24px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: var(--sh-cyan);

}


.sh-top-divider {

    width: 1px;

    height: 14px;

    background: rgba(255, 255, 255, 0.18);

}


.sh-top-location {

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 14px;

    letter-spacing: 0.4px;

    color: rgba(255, 255, 255, 0.68);

}


.sh-top-location i {
    color: var(--sh-cyan);
}


.sh-social-links {

    display: flex;

    align-items: center;

    gap: 7px;

}


.sh-social-links a {

    width: 25px;

    height: 25px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: rgba(255, 255, 255, 0.65);

    font-size: 14px;

    transition: 0.3s ease;

}


.sh-social-links a:hover {

    color: #ffffff;

    background: var(--sh-blue);

    transform: translateY(-2px);

}


/*=========================================================
    MAIN HEADER
=========================================================*/

.sh-header {

    position: relative;

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border-bottom: 1px solid var(--sh-border);

    z-index: 1000;

    transition:
        box-shadow 0.3s ease,
        transform 0.3s ease,
        background 0.3s ease;

}


.sh-header.sh-sticky {

    position: fixed;

    top: 0;

    left: 0;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 15px 50px rgba(7, 26, 43, 0.10);

    animation: shHeaderDown 0.4s ease;

}


@keyframes shHeaderDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }

}


.sh-navbar {

    min-height: 88px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/*=========================================================
    LOGO
=========================================================*/

.sh-logo {

    display: inline-flex;

    align-items: center;

    gap: 11px;

    flex-shrink: 0;

}


.sh-logo-mark {

    position: relative;

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px 4px 13px 4px;

    background:
        linear-gradient(
            135deg,
            var(--sh-blue),
            #0045bd
        );

    color: #ffffff;

    box-shadow:
        0 9px 22px rgba(23, 107, 255, 0.28);

    overflow: hidden;

}


.sh-logo-mark::before {

    content: "";

    position: absolute;

    width: 28px;

    height: 70px;

    top: -18px;

    right: -12px;

    transform: rotate(35deg);

    background: rgba(255, 255, 255, 0.15);

}


.sh-logo-mark span {

    position: relative;

    font-size: 23px;

    font-weight: 800;

    z-index: 1;

}


.sh-logo-text {

    display: flex;

    flex-direction: column;

    line-height: 1;

}


.sh-logo-text strong {

    color: var(--sh-navy);

    font-size: 18px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.sh-logo-text span {

    margin-top: 5px;

    color: var(--sh-blue);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 4px;

}


/*=========================================================
    DESKTOP NAVIGATION
=========================================================*/

.sh-desktop-nav {
    margin-left: auto;
}


.sh-nav-list {

    list-style: none;

    margin: 0;

    padding: 0;

    display: flex;

    align-items: center;

    gap: 4px;

}


.sh-nav-item {
    position: relative;
}


.sh-nav-link {

    position: relative;

    min-height: 88px;

    padding: 0 14px;

    display: flex;

    align-items: center;

    gap: 6px;

    color: #263746;

    font-size: 19px;

    font-weight: 600;

    transition: 0.3s ease;

}


.sh-nav-link::after {

    content: "";

    position: absolute;

    left: 14px;

    right: 14px;

    bottom: 0;

    height: 3px;

    border-radius: 5px 5px 0 0;

    background: var(--sh-blue);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.3s ease;

}


.sh-nav-link:hover,
.sh-nav-item.active .sh-nav-link {

    color: var(--sh-blue);

}


.sh-nav-link:hover::after,
.sh-nav-item.active .sh-nav-link::after {

    transform: scaleX(1);

}


.sh-nav-link > i {

    font-size: 15px;

    transition: transform 0.3s ease;

}


.sh-has-dropdown:hover .sh-nav-link > i {
    transform: rotate(180deg);
}


/*=========================================================
    DROPDOWN BASE
=========================================================*/

.sh-dropdown {

    position: absolute;

    top: calc(100% + 14px);

    left: 50%;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(12px);

    background: #ffffff;

    border:
        1px solid
        rgba(7, 26, 43, 0.08);

    border-radius: 18px;

    box-shadow:
        0 30px 80px
        rgba(7, 26, 43, 0.16);

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease,
        transform 0.25s ease;

}


.sh-dropdown::before {

    content: "";

    position: absolute;

    top: -18px;

    left: 0;

    width: 100%;

    height: 20px;

}


.sh-has-dropdown:hover > .sh-dropdown {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform:
        translateX(-50%)
        translateY(0);

}


/*=========================================================
    SERVICES MEGA DROPDOWN
=========================================================*/

.sh-services-dropdown {

    width: 620px;

    padding: 12px;

    display: grid;

    grid-template-columns:
        190px 1fr;

    gap: 10px;

}


.sh-dropdown-header {

    padding: 24px 20px;

    border-radius: 13px;

    background:
        linear-gradient(
            145deg,
            #071a2b,
            #0d3454
        );

    overflow: hidden;

}


.sh-dropdown-header span {

    display: inline-block;

    margin-bottom: 13px;

    color: var(--sh-cyan);

    font-size: 15px;

    font-weight: 800;

    letter-spacing: 1.8px;

}


.sh-dropdown-header p {

    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 17px;

    line-height: 1.7;

}


.sh-dropdown-links {

    display: flex;

    flex-direction: column;

    gap: 3px;

}


.sh-dropdown-link {

    position: relative;

    padding: 10px;

    display: grid;

    grid-template-columns:
        38px 1fr 20px;

    align-items: center;

    gap: 11px;

    border-radius: 10px;

    transition: 0.25s ease;

}


.sh-dropdown-link:hover {
    background: #f4f8fc;
}


.sh-dropdown-icon {

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 9px;

    background:
        rgba(23, 107, 255, 0.08);

    color: var(--sh-blue);

    font-size: 16px;

    transition: 0.3s ease;

}


.sh-dropdown-link:hover
.sh-dropdown-icon {

    background: var(--sh-blue);

    color: #ffffff;

}


.sh-dropdown-link strong {

    display: block;

    margin-bottom: 3px;

    color: var(--sh-navy);

    font-size: 15px;

    font-weight: 700;

}


.sh-dropdown-link small {

    display: block;

    color: var(--sh-muted);

    font-size: 15px;

    line-height: 1.4;

}


.sh-link-arrow {

    color: #a8b3bd;

    font-size: 14px;

    transition: 0.3s ease;

}


.sh-dropdown-link:hover
.sh-link-arrow {

    color: var(--sh-blue);

    transform:
        translate(2px, -2px);

}


/*=========================================================
    INDUSTRIES DROPDOWN
=========================================================*/

.sh-industries-dropdown {

    width: 340px;

    padding: 13px;

}


.sh-dropdown-label {

    display: block;

    padding: 8px 12px 14px;

    color: #8a98a5;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

}


.sh-industries-dropdown > a {

    padding: 14px 12px;

    display: grid;

    grid-template-columns:
        30px 1fr 20px;

    align-items: center;

    border-radius: 10px;

    color: var(--sh-navy);

    font-size: 14px;

    font-weight: 600;

    transition: 0.25s ease;

}


.sh-industries-dropdown > a:hover {

    background: #f4f8fc;

    color: var(--sh-blue);

    padding-left: 16px;

}


.sh-industry-number {

    color: #a4b0bb;

    font-size: 11px;

    font-weight: 700;

}


.sh-industries-dropdown > a i {

    font-size: 15px;

    transition: transform 0.3s ease;

}


.sh-industries-dropdown > a:hover i {
    transform: translateX(4px);
}


/*=========================================================
    HEADER ACTIONS
=========================================================*/

.sh-header-actions {

    display: flex;

    align-items: center;

    gap: 12px;

    flex-shrink: 0;

}


.sh-hire-btn {

    position: relative;

    height: 50px;

    padding:
        0 7px
        0 21px;

    display: inline-flex;

    align-items: center;

    gap: 15px;

    border-radius: 50px;

    background: var(--sh-navy);

    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    overflow: hidden;

    transition: 0.35s ease;

}


.sh-hire-btn::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            var(--sh-blue),
            #0957db
        );

    transform: translateX(-101%);

    transition: transform 0.4s ease;

}


.sh-hire-btn:hover::before {
    transform: translateX(0);
}


.sh-hire-btn > span {
    position: relative;
    z-index: 1;
}


.sh-hire-btn-icon {

    width: 36px;

    height: 36px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: var(--sh-navy);

    transition:
        transform 0.35s ease,
        color 0.35s ease;

}


.sh-hire-btn:hover {
    color: #ffffff;
}


.sh-hire-btn:hover
.sh-hire-btn-icon {

    color: var(--sh-blue);

    transform: rotate(45deg);

}


/*=========================================================
    MOBILE MENU BUTTON
=========================================================*/

.sh-menu-toggle {

    width: 48px;

    height: 48px;

    display: none;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 6px;

    border-radius: 50%;

    background: var(--sh-navy);

    cursor: pointer;

}


.sh-menu-toggle span {

    width: 19px;

    height: 2px;

    border-radius: 10px;

    background: #ffffff;

}


.sh-menu-toggle span:last-child {
    width: 12px;
}


/*=========================================================
    MOBILE MENU
=========================================================*/

.sh-mobile-menu {

    position: fixed;

    top: 0;

    right: 0;

    width: min(420px, 92%);

    height: 100vh;

    padding: 24px;

    display: flex;

    flex-direction: column;

    background: #ffffff;

    z-index: 2000;

    transform: translateX(105%);

    transition:
        transform 0.45s
        cubic-bezier(0.77, 0, 0.18, 1);

    overflow-y: auto;

}


.sh-mobile-menu.active {
    transform: translateX(0);
}


.sh-mobile-menu-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 24px;

    border-bottom:
        1px solid
        var(--sh-border);

}


.sh-mobile-close {

    width: 44px;

    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f2f5f8;

    color: var(--sh-navy);

    cursor: pointer;

    font-size: 17px;

}


.sh-mobile-nav {

    padding: 22px 0;

}


.sh-mobile-nav > a,
.sh-mobile-dropdown-btn {

    width: 100%;

    min-height: 54px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom:
        1px solid
        rgba(7, 26, 43, 0.08);

    background: transparent;

    color: var(--sh-navy);

    font-size: 16px;

    font-weight: 650;

    text-align: left;

    cursor: pointer;

}


.sh-mobile-dropdown-btn i {

    font-size: 14px;

    transition: transform 0.3s ease;

}


.sh-mobile-dropdown.active
.sh-mobile-dropdown-btn i {

    transform: rotate(45deg);

}


.sh-mobile-dropdown-content {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.4s ease;

}


.sh-mobile-dropdown-content a {

    display: block;

    padding:
        12px 10px
        12px 18px;

    color: var(--sh-muted);

    font-size: 13px;

    border-left:
        2px solid
        rgba(23, 107, 255, 0.18);

}


.sh-mobile-dropdown-content a:hover {

    color: var(--sh-blue);

    border-color: var(--sh-blue);

}


.sh-mobile-bottom {

    margin-top: auto;

    padding: 22px;

    border-radius: 18px;

    background: var(--sh-navy);

}


.sh-mobile-bottom p {

    margin-bottom: 15px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 13px;

    line-height: 1.6;

}


.sh-mobile-hire-btn {

    width: 100%;

    height: 50px;

    padding: 0 17px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-radius: 10px;

    background: var(--sh-blue);

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

}


.sh-mobile-hire-btn:hover {
    color: #ffffff;
}


.sh-mobile-contact {

    margin-top: 18px;

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.sh-mobile-contact a {

    display: flex;

    align-items: center;

    gap: 9px;

    color: rgba(255, 255, 255, 0.66);

    font-size: 11px;

}


/*=========================================================
    MOBILE OVERLAY
=========================================================*/

.sh-menu-overlay {

    position: fixed;

    inset: 0;

    background:
        rgba(3, 14, 24, 0.68);

    backdrop-filter: blur(4px);

    -webkit-backdrop-filter: blur(4px);

    z-index: 1999;

    opacity: 0;

    visibility: hidden;

    transition: 0.35s ease;

}


.sh-menu-overlay.active {

    opacity: 1;

    visibility: visible;

}


/*=========================================================
    RESPONSIVE
=========================================================*/

@media (max-width: 1199px) {

    .sh-nav-link {

        padding-left: 9px;

        padding-right: 9px;

        font-size: 12px;

    }


    .sh-nav-link::after {

        left: 9px;

        right: 9px;

    }


    .sh-logo-text strong {
        font-size: 16px;
    }


    .sh-logo-text span {
        letter-spacing: 3px;
    }

}


@media (max-width: 991px) {

    .sh-topbar-right {
        display: none;
    }


    .sh-topbar-inner {
        justify-content: center;
    }


    .sh-desktop-nav {
        display: none;
    }


    .sh-menu-toggle {
        display: flex;
    }


    .sh-navbar {
        min-height: 76px;
    }


    .sh-hire-btn {
        height: 46px;
    }

}


@media (max-width: 575px) {

    .sh-topbar {
        display: none;
    }


    .sh-navbar {
        min-height: 72px;
    }


    .sh-logo-mark {

        width: 40px;

        height: 40px;

    }


    .sh-logo-text strong {
        font-size: 14px;
    }


    .sh-logo-text span {

        margin-top: 4px;

        font-size: 8px;

        letter-spacing: 2.8px;

    }


    .sh-hire-btn {
        display: none;
    }


    .sh-menu-toggle {

        width: 44px;

        height: 44px;

    }


    .sh-mobile-menu {

        width: 100%;

        padding: 20px;

    }

}

/*=========================================================
    HEADER LOGO IMAGE
=========================================================*/

.sh-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.sh-logo-img {
    display: block;
    width: auto;
    height: 90px;
    object-fit: contain;
}


/* TABLET */

@media (max-width: 991px) {

    .sh-logo-img {
        height: 70px;
    }

}


/* MOBILE */

@media (max-width: 575px) {

    .sh-logo-img {
        height: 70px;
    }

}