﻿/* =========================================
   SCS HEADER
========================================= */


:root {
    --navy: #032653;
    --navy-dark: #022247;
    --orange: #f15a16;
    --blue: #078acb;
    --text: #102d52;
    --white: #ffffff;
}


/* =========================================
   RESET
========================================= */

/* =========================================================
   SCS HEADER
========================================================= */

:root {
    --navy: #032653;
    --navy-dark: #022247;
    --orange: #f15a16;
    --blue: #078acb;
    --text: #102d52;
    --white: #ffffff;
}


/* =========================================================
   RESET
========================================================= */

.scs-header *,
.scs-header *::before,
.scs-header *::after {
    box-sizing: border-box;
}

.scs-header {
    width: 100%;
    font-family: "Roboto", Helvetica, sans-serif;
    position: relative;
    z-index: 9999;
}

.scs-header a {
    text-decoration: none;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

body {
    overflow-x: hidden;
}


/* =========================================================
   HEADER CONTAINER
========================================================= */

.scs-top-bar .scs-header-container,
.scs-navigation-bar .scs-header-container {
    width: calc(100% - 54px);
    max-width: 1190px;
    margin: 0 auto;
    padding: 0;
}


/* =========================================================
   TOP CONTACT BAR
========================================================= */

.scs-top-bar {
    width: 100%;
    height: 40px;
    background: #032653;
    color: #ffffff;
}

.scs-top-bar .scs-header-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   TOP BAR - LEFT
========================================================= */

.scs-top-left {
    display: flex;
    align-items: center;
    gap: 34px;
}

.scs-top-left a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.scs-top-left a:hover {
    color: var(--orange);
}

.scs-top-left .icon {
    color: var(--orange);
    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   TOP BAR - RIGHT
========================================================= */

.scs-top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.scs-location {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 14px;

    white-space: nowrap;
}

.location-icon {
    color: var(--orange);
    font-size: 15px;
}


/* =========================================================
   SOCIAL
========================================================= */

.scs-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scs-social a {
    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    transition: 0.2s ease;
}

.scs-social a:hover {
    color: var(--orange);
}


/* =========================================================
   MAIN NAVIGATION
========================================================= */

.scs-navigation-bar {
    width: 100%;
    height: 85px;

    background: #ffffff;

    border-bottom: 2px solid #dce5ef;

    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.04);
}

.scs-nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   LOGO
========================================================= */

.scs-logo {
    display: flex;
    align-items: center;

    width: 255px;

    flex-shrink: 0;
}

.scs-logo img {
    display: block;

    width: 235px;
    height: auto;

    max-height: 75px;

    object-fit: contain;
}


/* =========================================================
   DESKTOP NAVIGATION
========================================================= */

.scs-nav {
    display: flex;
    align-items: center;
    gap: 29px;
}

.scs-nav .get-touch {
    margin-right: 0;
}


/* =========================================================
   NORMAL NAV ITEMS
========================================================= */

.scs-nav > a {
    height: 100%;

    display: flex;
    align-items: center;

    position: relative;
    text-transform: capitalize;
    color: var(--text);

    font-size: 14px;
    font-weight: 700;
    text-transform: capitalize;
    white-space: nowrap;

    transition: color 0.2s ease;
}

.scs-nav > a:not(.get-touch):hover {
    color: var(--orange);
}


/* =========================================================
   ACTIVE NAV ITEM
========================================================= */

.scs-nav > a.active {
    color: var(--orange);
}

.scs-nav > a.active::after {
    content: "";

    position: absolute;

    bottom: 22px;

    left: 0;
    right: 0;

    height: 2px;

    background: var(--orange);
}


/* =========================================================
   Solutions DROPDOWN
========================================================= */

.scs-nav-dropdown {
    position: relative;

    height: 100%;

    display: flex;
    align-items: center;
}

.scs-dropdown-toggle {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 5px;

    position: relative;

    color: #102d52 !important;

    font-family: "Roboto", sans-serif;

    font-size: 14px;
    font-weight: 600;

    white-space: nowrap;
}

.scs-dropdown-toggle:hover {
    color: #f15a16 !important;
}

.dropdown-arrow {
    font-size: 11px;
    line-height: 1;

    transition: transform 0.2s ease;
}

.scs-nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================================
   DROPDOWN MENU
========================================================= */

.scs-dropdown-menu {
    position: absolute;

    top: 100%;
    left: 50%;

    width: 285px;

    transform: translateX(-50%) translateY(10px);

    background: #ffffff;

    border-top: 3px solid #f15a16;

    border-radius: 0 0 4px 4px;

    box-shadow: 0 12px 30px rgba(0, 30, 70, 0.16);

    padding: 6px 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}

.scs-nav-dropdown:hover > .scs-dropdown-menu {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* =========================================================
   DROPDOWN LINKS
========================================================= */

.scs-dropdown-menu a {
    display: block;

    width: 100%;

    padding: 11px 18px;

    color: #102d52 !important;

    background: #ffffff;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.35;

    white-space: normal;

    border-bottom: 1px solid #edf0f4;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}

.scs-dropdown-menu a:last-child {
    border-bottom: none;
}

.scs-dropdown-menu a:hover {
    color: #f15a16 !important;

    background: #f7f9fc;

    padding-left: 23px;
}


/* =========================================================
   GET IN TOUCH
========================================================= */

.scs-nav .get-touch {
    height: auto;

    min-width: 127px;

    padding: 14px 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--orange);

    color: #ffffff;

    border-radius: 3px;

    gap: 8px;

    font-size: 14px;

    transition: 0.25s ease;
}

.scs-nav .get-touch strong {
    font-size: 15px;
    line-height: 1;
}

.scs-nav .get-touch:hover {
    background: #d94e0d;
    color: #ffffff;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: none;

    background: transparent;

    padding: 7px;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .scs-header-container {
        max-width: 1320px;
    }

    .scs-nav {
        gap: 34px;
    }

    .scs-logo img {
        width: 250px;
    }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {

    .scs-header-container {
        max-width: 100%;
    }

    .scs-top-left {
        gap: 18px;
    }

    .scs-top-left a,
    .scs-location {
        font-size: 10px;
    }

    .scs-nav {
        gap: 17px;
    }

    .scs-nav > a {
        font-size: 12px;
        text-transform: capitalize;
    }

    .scs-logo {
        width: 215px;
    }

    .scs-logo img {
        width: 205px;
    }

}


/* =========================================================
   TABLET / MOBILE NAVIGATION
========================================================= */

@media (max-width: 900px) {

    /* Hide location + social */

    .scs-top-right {
        display: none !important;
    }


    /* Keep phone + email visible */

    .scs-top-bar .scs-header-container {
        justify-content: center;
    }

    .scs-top-left {
        width: 100%;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 22px;
    }


    .scs-top-left a {
        display: flex !important;

        align-items: center;

        white-space: nowrap;
    }


    /* Navigation */

    .scs-navigation-bar {
        height: 88px;
    }

    .scs-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .scs-logo img {
        width: 200px;
    }


    /* Mobile navigation dropdown */

    .mobile-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        background: #ffffff;

        padding: 10px 6%;

        border-top: 1px solid #e5e9ee;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .mobile-navigation.active {
        display: block;
    }

    .mobile-navigation a {
        display: block;

        padding: 14px 0;

        border-bottom: 1px solid #edf0f4;

        color: var(--text);

        font-size: 12px;

        font-weight: 700;
    }

    .mobile-navigation a:hover {
        color: var(--orange);
    }

    .mobile-navigation .mobile-get-touch {
        margin: 12px 0 5px;

        padding: 13px;

        text-align: center;

        background: var(--orange);

        color: #ffffff;

        border-bottom: none;
    }

}


/* =========================================================
   MOBILE - 600px
========================================================= */

@media (max-width: 600px) {

    /* -----------------------------------------
       TOP BAR
    ----------------------------------------- */

    .scs-top-bar {
        height: 36px;

        width: 100%;

        overflow: hidden;
    }

    .scs-top-bar .scs-header-container {
        width: 100%;

        padding: 0 10px;

        display: flex;

        align-items: center;

        justify-content: center;
    }


    /* PHONE + EMAIL */

    .scs-top-left {
        width: 100%;

        display: flex !important;

        align-items: center;

        justify-content: center;

        gap: 14px;

        overflow: hidden;
    }


    .scs-top-left a {
        display: flex !important;

        align-items: center;

        justify-content: center;

        gap: 4px;

        color: #ffffff;

        font-size: 10px;

        font-weight: 600;

        line-height: 1;

        white-space: nowrap;

        flex-shrink: 0;
    }


    /* IMPORTANT:
       DO NOT HIDE EMAIL */

    .scs-top-left a:nth-child(2) {
        display: flex !important;
    }


    .scs-top-left .icon {
        color: var(--orange);

        font-size: 11px;

        line-height: 1;
    }


    /* -----------------------------------------
       MAIN NAVIGATION
    ----------------------------------------- */

    .scs-navigation-bar {
        height: 78px;
    }


    .scs-navigation-bar .scs-header-container {
        width: 100%;

        padding-left: 15px;
        padding-right: 15px;
    }


    .scs-logo {
        width: auto;

        flex-shrink: 0;
    }


    .scs-logo img {
        width: 190px;

        max-width: 100%;

        max-height: 65px;

        object-fit: contain;
    }


    .mobile-menu-btn {
        width: 40px;

        height: 40px;

        flex-shrink: 0;
    }


    .mobile-menu-btn span {
        width: 25px;

        height: 2px;

        margin: 5px auto;
    }

}


/* =========================================================
   SMALL MOBILE - 400px
========================================================= */

@media (max-width: 400px) {

    .scs-top-bar {
        height: 34px;
    }


    .scs-top-bar .scs-header-container {
        padding-left: 6px;
        padding-right: 6px;
    }


    .scs-top-left {
        gap: 9px;
    }


    .scs-top-left a {
        font-size: 9px;

        gap: 3px;
    }


    .scs-top-left .icon {
        font-size: 10px;
    }


    .scs-logo img {
        width: 165px;

        max-height: 60px;
    }

}


/* =========================================================
   EXTRA SMALL MOBILE - 350px
========================================================= */

@media (max-width: 350px) {

    .scs-top-left {
        gap: 6px;
    }


    .scs-top-left a {
        font-size: 8px;
    }


    .scs-top-left .icon {
        font-size: 9px;
    }


    .scs-logo img {
        width: 155px;
    }

}

/* =========================================
   CONTAINER
========================================= */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: "Roboto", sans-serif;
}

body {
    overflow-x: hidden;
}

 
.scs-top-bar .scs-header-container,
.scs-navigation-bar .scs-header-container {
    width: calc(100% - 54px);
    max-width: 1190px;
    margin: 0 auto;
    padding: 0;
}

/* =========================================
   TOP BAR
========================================= */

.scs-top-bar {
    height: 40px;
    background: #032653;
    color: #ffffff;
}

.scs-top-bar .scs-header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LEFT SIDE */

.scs-top-left {
    display: flex;
    align-items: center;
    gap: 34px;
}

.scs-top-left a {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 500;

    white-space: nowrap;
}

.scs-top-left .icon {
    color: var(--orange);
    font-size: 17px;
}


/* RIGHT SIDE */

.scs-top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.scs-location {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;

    font-size: 14px;
    white-space: nowrap;
}

.location-icon {
    color: var(--orange);
    font-size: 15px;
}


/* SOCIAL */

.scs-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.scs-social a {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;

    transition: 0.2s ease;
}

.scs-social a:hover {
    color: var(--orange);
}


/* =========================================
   MAIN NAVIGATION
========================================= */

.scs-navigation-bar {
    height: 85px;

    background: #ffffff;

    border-bottom: 2px solid #dce5ef;

    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.04);
}

.scs-nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================
   LOGO
========================================= */

.scs-logo {
    display: flex;
    align-items: center;

    width: 255px;

    flex-shrink: 0;
}

.scs-logo img {
    display: block;

    width: 235px;
    height: auto;

    max-height: 75px;

    object-fit: contain;
}


/* =========================================
   NAVIGATION
========================================= */

.scs-nav {
    display: flex;
    align-items: center;
    gap: 29px;
}

.scs-nav .get-touch {
    margin-right: 0;
}
.scs-top-right {
    margin-right: 0;
}


/* NORMAL NAV ITEMS */

.scs-nav > a {
    height: 100%;

    display: flex;
    align-items: center;
    text-transform: capitalize;
    position: relative;

    color: var(--text);

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}


/* =========================================
   Solutions DROPDOWN
========================================= */

.scs-nav-dropdown {
    position: relative;
    height: 100%;

    display: flex;
    align-items: center;
}


/* Solutions BUTTON */

.scs-dropdown-toggle {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 5px;

    position: relative;

    color: #102d52 !important;

    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}


/* Hover */

.scs-dropdown-toggle:hover {
    color: #f15a16 !important;
}


/* Arrow */

.dropdown-arrow {
    font-size: 11px;
    line-height: 1;

    transition: transform 0.2s ease;
}


/* Rotate arrow */

.scs-nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN BOX
========================================= */

.scs-dropdown-menu {

    position: absolute;

    top: 100%;
    left: 50%;

    width: 285px;

    transform: translateX(-50%) translateY(10px);

    background: #ffffff;

    border-top: 3px solid #f15a16;

    border-radius: 0 0 4px 4px;

    box-shadow: 0 12px 30px rgba(0, 30, 70, 0.16);

    padding: 6px 0;

    /* VERY IMPORTANT */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 99999;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease,
        visibility 0.2s ease;
}


/* SHOW ONLY ON HOVER */

.scs-nav-dropdown:hover > .scs-dropdown-menu {

    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}


/* =========================================
   DROPDOWN LINKS
========================================= */

.scs-dropdown-menu a {

    display: block;

    width: 100%;

    padding: 11px 18px;

    color: #102d52 !important;

    background: #ffffff;

    font-family: "Roboto", sans-serif;

    font-size: 14px;

    font-weight: 500;

    line-height: 1.35;

    text-decoration: none;

    white-space: normal;

    border-bottom: 1px solid #edf0f4;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}


.scs-dropdown-menu a:last-child {
    border-bottom: none;
}


/* Hover item */

.scs-dropdown-menu a:hover {

    color: #f15a16 !important;

    background: #f7f9fc;

    padding-left: 23px;
}

/* HOVER */

.scs-nav > a:not(.get-touch):hover {
    color: var(--orange);
}


/* ACTIVE Home */

.scs-nav > a.active {
    color: var(--orange);
}


/* ORANGE UNDERLINE */

.scs-nav > a.active::after {
    content: "";

    position: absolute;

    bottom: 22px;

    left: 0;
    right: 0;

    height: 2px;

    background: var(--orange);
}


/* DROPDOWN */

.scs-nav .dropdown {
    gap: 5px;
}

.scs-nav .dropdown span {
    font-size: 11px;
    position: relative;
    top: -1px;
}


/* =========================================
   GET IN TOUCH
========================================= */

.scs-nav .get-touch {
    height: auto;

    min-width: 127px;

    padding: 14px 15px;

    justify-content: center;

    background: var(--orange);

    color: #ffffff;

    border-radius: 3px;

    gap: 8px;

    font-size: 14px;

    transition: 0.25s ease;
}

.scs-nav .get-touch strong {
    font-size: 15px;
    line-height: 1;
}

.scs-nav .get-touch:hover {
    background: #d94e0d;
    color: #ffffff;
}


/* =========================================
   MOBILE BUTTON
========================================= */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    padding: 7px;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);
}


/* =========================================
   MOBILE NAV
========================================= */

/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-btn {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    padding: 7px;

    cursor: pointer;

    position: relative;

    z-index: 10001;
}


/* HAMBURGER */

.mobile-menu-btn span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   HAMBURGER → X
========================================================= */

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE NAVIGATION
========================================================= */

.mobile-navigation {
    display: none;

    position: absolute;

    top: 100%;
    left: 0;
    right: 0;

    width: 100%;

    background: #ffffff;

    padding: 8px 30px 20px;

    border-top: 1px solid #dce5ef;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);

    z-index: 10000;

    max-height: calc(100vh - 110px);

    overflow-y: auto;
}


/* OPEN MENU */

.mobile-navigation.active {
    display: block;
}


/* =========================================================
   NORMAL MOBILE LINKS
========================================================= */

.mobile-navigation > a {
    display: flex;

    align-items: center;

    width: 100%;

    min-height: 43px;

    padding: 12px 0;

    border-bottom: 1px solid #e5eaf0;

    color: #102d52;

    font-family: "Roboto", sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        color 0.2s ease,
        padding-left 0.2s ease;
}


.mobile-navigation > a:hover {
    color: var(--orange);

    padding-left: 4px;
}


/* =========================================================
   Solutions WRAPPER
========================================================= */

.mobile-Solutions {
    width: 100%;

    border-bottom: 1px solid #e5eaf0;
}


/* =========================================================
   Solutions BUTTON
========================================================= */

.mobile-Solutions-toggle {
    width: 100%;

    min-height: 43px;

    padding: 12px 0;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border: none;

    background: #ffffff;

    color: #102d52;

    font-family: "Roboto", sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


.mobile-Solutions-toggle:hover {
    color: var(--orange);
}


/* =========================================================
   Solutions ARROW
========================================================= */

.mobile-Solutions-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    color: #102d52;

    font-size: 16px;

    line-height: 1;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


/* ROTATED ARROW WHEN OPEN */

.mobile-Solutions-toggle.active
.mobile-Solutions-arrow {
    transform: rotate(180deg);

    color: var(--orange);
}


/* =========================================================
   Solutions SUBMENU
========================================================= */

.mobile-Solutions-submenu {
    display: none;

    width: 100%;

    background: #f8fafc;
}


/* OPEN SUBMENU */

.mobile-Solutions-submenu.active {
    display: block;
}


/* =========================================================
   SUBMENU LINKS
========================================================= */

.mobile-Solutions-submenu a {
    display: block;

    width: 100%;

    padding: 12px 10px 12px 15px;

    border-top: 1px solid #e5eaf0;

    color: #18375d;

    font-family: "Roboto", sans-serif;

    font-size: 11px;

    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;

    transition:
        color 0.2s ease,
        background 0.2s ease,
        padding-left 0.2s ease;
}


.mobile-Solutions-submenu a:hover {
    color: var(--orange);

    background: #ffffff;

    padding-left: 20px;
}


/* =========================================================
   GET IN TOUCH
========================================================= */

.mobile-navigation .mobile-get-touch {
    display: flex;

    align-items: center;

    justify-content: center;

    margin-top: 15px;

    min-height: 45px;

    padding: 12px;

    background: var(--orange);

    color: #ffffff;

    border: none;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 700;
}


.mobile-navigation .mobile-get-touch:hover {
    padding-left: 0;

    background: #d94e0d;

    color: #ffffff;
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 900px) {

    .mobile-menu-btn {
        display: block;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .mobile-navigation {
        padding-left: 30px;
        padding-right: 30px;
    }

    .mobile-navigation > a,
    .mobile-Solutions-toggle {
        font-size: 12px;
    }

    .mobile-Solutions-submenu a {
        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .mobile-navigation {
        padding-left: 25px;
        padding-right: 25px;
    }

    .mobile-navigation > a,
    .mobile-Solutions-toggle {
        font-size: 11px;
    }

    .mobile-Solutions-submenu a {
        font-size: 10px;
    }

}

/* =========================================
   MOBILE Solutions DROPDOWN
========================================= */

.mobile-dropdown {
    width: 100%;
    border-bottom: 1px solid #edf0f4;
}


/* Solutions BUTTON */

.mobile-dropdown-toggle {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 14px 0;

    border: none;
    background: transparent;

    color: var(--text);

    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 700;

    text-align: left;

    cursor: pointer;
}


/* ARROW */

.mobile-dropdown-toggle span {
    font-size: 15px;
}

/* ONLY ARROW */
.mobile-dropdown-toggle .mobile-arrow {
   font-size: 15px;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;

    transform: rotate(0deg);
    transition: transform 0.25s ease;
}


/* ROTATE ARROW */

.mobile-dropdown.open
.mobile-dropdown-toggle .mobile-arrow {
    transform: rotate(180deg);
}


/* SUBMENU */

.mobile-dropdown-menu {
    display: none;

    width: 100%;

    background: #f7f9fc;
}


/* OPEN SUBMENU */

.mobile-dropdown.open
.mobile-dropdown-menu {
    display: block;
}


/* SUBMENU LINKS */

.mobile-dropdown-menu a {
    display: block;

    padding: 12px 10px 12px 15px;

    border-top: 1px solid #e5e9ee;

    color: #18375d;

    font-family: "Roboto", sans-serif;

    font-size: 11px;
    font-weight: 600;

    line-height: 1.4;

    text-decoration: none;
}


/* HOVER */

.mobile-dropdown-menu a:hover {
    color: var(--orange);
    background: #ffffff;
}

/* =========================================================
   FIX MOBILE Solutions TEXT ROTATION
========================================================= */

@media (max-width: 900px) {

    /* Solutions TEXT MUST NEVER ROTATE */

    .mobile-dropdown-toggle > span:first-child {
        transform: none !important;

        writing-mode: horizontal-tb !important;

        text-orientation: mixed !important;

        rotate: none !important;
    }


    /* ONLY ARROW ROTATES */

    .mobile-dropdown-toggle > .mobile-arrow {
        transform: none !important;

        rotate: 0deg !important;

        transition: transform 0.25s ease !important;
    }


    /* WHEN OPEN - ONLY ARROW */

    .mobile-dropdown.open
    .mobile-dropdown-toggle > .mobile-arrow {

        transform: rotate(180deg) !important;

        rotate: 0deg !important;
    }

}

/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .scs-header-container {
        max-width: 1320px;
    }

    .scs-nav {
        gap: 34px;
    }

    .scs-logo img {
        width: 250px;
    }

}


/* =========================================
   TABLET / SMALL DESKTOP
========================================= */

@media (max-width: 1100px) {

    .scs-header-container {
        max-width: 100%;
    }

    .scs-top-left {
        gap: 18px;
    }

    .scs-top-left a,
    .scs-location {
        font-size: 10px;
    }

    .scs-nav {
        gap: 17px;
    }

    .scs-nav > a {
        font-size: 12px;
        text-transform: capitalize;
    }

    .scs-logo {
        width: 215px;
    }

    .scs-logo img {
        width: 205px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .scs-top-right {
        display: none;
    }

    .scs-top-bar .scs-header-container {
        justify-content: center;
    }

    .scs-navigation {
        height: 88px;
    }

    .scs-navigation-bar {
        height: 88px;
    }

    .scs-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .scs-logo img {
        width: 200px;
    }

    .mobile-navigation {
        position: absolute;

        top: 100%;
        left: 0;
        right: 0;

        background: #ffffff;

        padding: 10px 6%;

        border-top: 1px solid #e5e9ee;

        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }

    .mobile-navigation.active {
        display: block;
    }

    .mobile-navigation a {
        display: block;

        padding: 14px 0;

        border-bottom: 1px solid #edf0f4;

        color: var(--text);

        font-size: 12px;
        font-weight: 700;
    }

    .mobile-navigation a:hover {
        color: var(--orange);
    }

    .mobile-navigation .mobile-get-touch {
        margin: 12px 0 5px;

        padding: 13px;

        text-align: center;

        background: var(--orange);

        color: #ffffff;

        border-bottom: none;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .scs-top-bar {
        height: 34px;
    }

    .scs-top-left {
        gap: 20px;
    }

    .scs-top-left a {
        font-size: 12px;
    }

    .scs-top-left a:nth-child(2) {
        display: none;
    }

    .scs-top-left .icon {
        font-size: 14px;
    }

    .scs-navigation-bar {
        height: 78px;
    }

    .scs-header-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .scs-logo {
        width: auto;
    }

    .scs-logo img {
        width: 190px;
        max-height: 65px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 400px) {

    .scs-logo img {
        width: 165px;
    }

    .scs-top-left a {
        font-size: 8px;
    }

}





/* =========================================
   SCS HERO SLIDER
========================================= */

.scs-hero-slider {
    position: relative;
    width: 100%;
}


/* =========================================
   SLIDER
========================================= */

.scs-slider-wrapper {
    position: relative;

    width: 100%;
    height: 430px;

    overflow: hidden;
}


/* =========================================
   SLIDES
========================================= */

.scs-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


.scs-slide.active {
    opacity: 1;
    visibility: visible;

    z-index: 2;
}


/* =========================================
   BACKGROUND IMAGE
========================================= */

.scs-slide-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.02);

    transition:
        transform 5s ease;
}


.scs-slide.active .scs-slide-bg {
    transform: scale(1);
}


/* =========================================
   IMAGE OVERLAY
========================================= */

.scs-slide-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.98) 0%,
            rgba(255,255,255,0.93) 28%,
            rgba(255,255,255,0.55) 48%,
            rgba(255,255,255,0.05) 75%
        );

}


/* =========================================
   HERO CONTAINER
========================================= */

.scs-hero-container {

    position: relative;

    width: calc(100% - 54px);

    max-width: 1190px;

    height: 100%;

    margin: 0 auto;

    display: flex;

    align-items: center;

    z-index: 3;
}


/* =========================================
   HERO CONTENT
========================================= */

.scs-hero-content {

    width: 530px;

    padding-top: 5px;

}


/* =========================================
   EYEBROW
========================================= */

.scs-hero-eyebrow {

    margin-bottom: 12px;

    color: #18375d;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;
    font-family:Roboto;

}


/* =========================================
   HERO HEADING
========================================= */

.scs-hero-content h1 {

    margin: 0;

    color: #0a2c55;

    font-size: 42px;

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -0.5px;
    font-family:Roboto;

}


.scs-hero-content h1 span {

    display: block;

    color: #f15a16;

}


/* =========================================
   HERO DESCRIPTION
========================================= */

.scs-hero-content p {

    margin: 15px 0 20px;

    color: #18375d;

    font-size: 13px;

    font-weight: 500;

    line-height: 1.5;

    font-family:Roboto;

}


/* =========================================
   HERO BUTTONS
========================================= */

.scs-hero-buttons {

    display: flex;

    align-items: center;

    gap: 12px;

}


.scs-hero-btn {

    min-width: 130px;

    min-height: 15px;

    padding: 10px 15px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    border-radius: 4px;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
    font-family:Roboto;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


/* PRIMARY */

.scs-hero-btn.primary {

    background: #f15a16;

    color: #ffffff;

    border: 1px solid #f15a16;
}


.scs-hero-btn.primary:hover {

    background: #d94c0c;

    border-color: #d94c0c;

    transform: translateY(-1px);
}


/* SECONDARY */

.scs-hero-btn.secondary {

    background: #ffffff;

    color: #12365e;

    border: 1px solid #12365e;
}


.scs-hero-btn.secondary:hover {

    background: #12365e;

    color: #ffffff;

    transform: translateY(-1px);
}


/* =========================================
   ARROWS
========================================= */

.scs-slider-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background: rgba(3,38,83,0.88);

    color: #ffffff;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    opacity: 0;

    transition:
        opacity 0.2s ease,
        background 0.2s ease;
}


.scs-slider-wrapper:hover
.scs-slider-arrow {

    opacity: 1;

}


.scs-slider-arrow:hover {

    background: #f15a16;

}


.scs-slider-arrow.prev {

    left: 25px;

}


.scs-slider-arrow.next {

    right: 25px;

}


/* =========================================
   DOTS
========================================= */

.scs-slider-dots {

    position: absolute;

    bottom: 75px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    align-items: center;

    gap: 8px;

    z-index: 10;
}


.scs-slider-dots button {

    width: 8px;

    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cbd3dc;

    cursor: pointer;

    transition:
        width 0.2s ease,
        background 0.2s ease;
}


.scs-slider-dots button.active {

    width: 22px;

    border-radius: 5px;

    background: #f15a16;

}


/* =========================================
   STATS PANEL
========================================= */

.scs-hero-stats {

    position: relative;

    width: calc(100% - 108px);

    max-width: 1190px;

    margin: -48px auto 0;

    min-height: 78px;

    padding: 12px 25px;

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    align-items: center;

    background: #032653;

    border-radius: 7px;

    color: #ffffff;

    z-index: 20;

    box-shadow:
        0 5px 15px rgba(0, 25, 60, 0.15);
}


/* =========================================
   STAT
========================================= */

.scs-hero-stat {

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 14px;

    border-right: 1px solid rgba(255,255,255,0.25);
}


.scs-hero-stat:last-child {

    border-right: 0;

}


.stat-icon {

    color: #f15a16;

    font-size: 28px;

    line-height: 1;

}


.scs-hero-stat strong {

    display: block;

    color: #ffffff;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;

}


.scs-hero-stat span {

    display: block;

    margin-top: 2px;

    color: #ffffff;

    font-size: 14px;

    line-height: 1.2;

    font-weight: 400;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .scs-hero-content h1 {

        font-size: 37px;

    }

    .scs-hero-content {

        width: 480px;

    }

    .scs-hero-stats {

        width: calc(100% - 54px);

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .scs-slider-wrapper {

        height: 480px;

    }


    .scs-slide-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(255,255,255,0.97) 0%,
                rgba(255,255,255,0.88) 48%,
                rgba(255,255,255,0.18) 100%
            );

    }


    .scs-hero-container {

        width: calc(100% - 30px);

        align-items: flex-start;

        padding-top: 55px;

    }


    .scs-hero-content {

        width: 100%;

        max-width: 560px;

    }


    .scs-hero-content h1 {

        font-size: 34px;

        line-height: 1.1;

    }


    .scs-hero-content p {

        font-size: 12px;

    }


    .scs-slider-arrow {

        opacity: 1;

        width: 34px;

        height: 34px;

        font-size: 24px;

    }


    .scs-slider-arrow.prev {

        left: 5px;

    }


    .scs-slider-arrow.next {

        right: 5px;

    }


    .scs-slider-dots {

        bottom: 18px;

    }


    .scs-hero-stats {

        width: calc(100% - 30px);

        margin-top: -20px;

        padding: 8px;

        grid-template-columns: repeat(2, 1fr);

    }


    .scs-hero-stat {

        min-height: 55px;

        padding: 8px;

    }


    .scs-hero-stat:nth-child(2) {

        border-right: 0;

    }


    .scs-hero-stat:nth-child(3),
    .scs-hero-stat:nth-child(4) {

        border-top: 1px solid rgba(255,255,255,0.2);

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

/* =========================================
   MOBILE HERO - FINAL
========================================= */

@media (max-width: 600px) {

    /* =====================================
       HERO / SLIDER HEIGHT
    ===================================== */

    .scs-hero,
    .scs-slider-wrapper {

        height: 380px;
        min-height: 380px;
        max-height: 380px;

        position: relative;

        overflow: hidden;
    }


    .scs-hero-slide {

        height: 380px;
        min-height: 380px;

    }


    .scs-hero-slide img,
    .scs-hero-bg {

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;

    }

    @media (max-width: 600px) {

    .scs-hero-buttons {

        gap: 7px;

        margin-top: 16px;

    }


    .scs-hero-btn,
    .scs-hero-buttons a {

        min-width: 0 !important;

        width: auto;

        height: 42px !important;

        min-height: 42px !important;

        padding: 8px 12px !important;

        font-size: 10px !important;

    }

}

    /* =====================================
       HERO CONTAINER
    ===================================== */

    .scs-hero-container {

        width: 100%;

        padding-top: 40px;

        position: relative;

        z-index: 5;

    }


    /* =====================================
       HERO CONTENT

       Keep content away from arrows
    ===================================== */

    .scs-hero-content {

        width: calc(100% - 90px);

        max-width: none;

        margin-left: 45px;
        margin-right: 45px;

        padding-top: 0;

        position: relative;

        z-index: 5;

    }


    /* =====================================
       EYEBROW
    ===================================== */

    .scs-hero-eyebrow,
    .scs-hero-content .eyebrow,
    .scs-hero-label {

        font-size: 10px;

        line-height: 1.3;

        max-width: 300px;

        margin-bottom: 8px;

    }


    /* =====================================
       HEADING
    ===================================== */

    .scs-hero-content h1 {

        max-width: 330px;

        margin: 0;

        font-size: 29px;

        line-height: 1.08;

        letter-spacing: -0.3px;

    }


    /* =====================================
       DESCRIPTION
    ===================================== */

    .scs-hero-content p {

        max-width: 320px;

        margin-top: 12px;

        font-size: 10px;

        line-height: 1.5;

    }


    /* =====================================
       BUTTONS
    ===================================== */

    .scs-hero-buttons {

        display: flex;

        align-items: center;

        gap: 8px;

        margin-top: 17px;

    }


    .scs-hero-buttons a,
    .scs-hero-btn {

        min-width: 120px;

        min-height: 40px;

        height: 40px;

        padding: 8px 11px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        font-size: 10px;

        white-space: nowrap;

    }


    .scs-hero-buttons a span,
    .scs-hero-btn span {

        font-size: 14px;

        margin-left: 5px;

    }


    /* =====================================
       SLIDER ARROWS

       IMPORTANT:
       Arrows stay outside content
    ===================================== */

    .scs-hero-arrow {

        position: absolute;

        top: 61%;

        transform: translateY(-50%);

        width: 35px;

        height: 35px;

        padding: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        z-index: 20;

        border-radius: 50%;

        font-size: 20px;

    }


    /* LEFT */

    .scs-hero-arrow.prev {

        left: 7px;

        right: auto;

    }


    /* RIGHT */

    .scs-hero-arrow.next {

        right: 7px;

        left: auto;

    }


    /* =====================================
       SLIDER DOTS
    ===================================== */

    .scs-hero-dots {

        position: absolute;

        left: 0;
        right: 0;

        bottom: 8px;

        z-index: 20;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 7px;

    }


    .scs-hero-dots button {

        width: 8px;

        height: 8px;

        padding: 0;

        border: none;

        border-radius: 50%;

    }


    .scs-hero-dots button.active {

        width: 21px;

        border-radius: 8px;

    }


    /* =====================================
       HERO STATS
    ===================================== */

    .scs-hero-stats {

        width: calc(100% - 24px);

        margin-top: -15px;

        border-radius: 5px;

    }


    .scs-hero-stat {

        gap: 8px;

    }


    .stat-icon {

        font-size: 22px;

    }


    .scs-hero-stat strong {

        font-size: 13px;

    }


    .scs-hero-stat span {

        font-size: 8px;

    }

}


/* =========================================
   TABLET HERO
   601px - 900px
========================================= */

@media (max-width: 900px) and (min-width: 601px) {

    .scs-hero,
    .scs-slider-wrapper {

        height: 430px;
        min-height: 430px;
        max-height: 430px;

        position: relative;

        overflow: hidden;
    }


    .scs-hero-slide {

        height: 430px;
        min-height: 430px;

    }


    .scs-hero-slide img,
    .scs-hero-bg {

        width: 100%;
        height: 100%;

        object-fit: cover;

        object-position: center;

    }


    /* =====================================
       HERO CONTAINER
    ====================================== */

    .scs-hero-container {

        width: 100%;

        padding-top: 55px;

        position: relative;

        z-index: 5;

    }


    /* =====================================
       HERO CONTENT
    ====================================== */

    .scs-hero-content {

        width: calc(100% - 160px);

        max-width: 650px;

        margin-left: 80px;
        margin-right: 80px;

        padding-top: 0;

        position: relative;

        z-index: 5;

    }


    /* =====================================
       EYEBROW
    ====================================== */

    .scs-hero-eyebrow,
    .scs-hero-content .eyebrow,
    .scs-hero-label {

        font-size: 11px;

        line-height: 1.35;

        margin-bottom: 10px;

    }


    /* =====================================
       HEADING
    ====================================== */

    .scs-hero-content h1 {

        max-width: 580px;

        margin: 0;

        font-size: 38px;

        line-height: 1.08;

        letter-spacing: -0.4px;

    }


    /* =====================================
       DESCRIPTION
    ====================================== */

    .scs-hero-content p {

        max-width: 500px;

        margin-top: 14px;

        font-size: 11px;

        line-height: 1.5;

    }


    /* =====================================
       BUTTONS
    ====================================== */

    .scs-hero-buttons {

        display: flex;

        align-items: center;

        gap: 10px;

        margin-top: 20px;

    }


    .scs-hero-buttons a,
    .scs-hero-btn {

        min-width: 145px;

        min-height: 43px;

        height: 43px;

        padding: 9px 14px;

        display: inline-flex;

        align-items: center;

        justify-content: center;

        font-size: 10px;

        white-space: nowrap;

    }


    /* =====================================
       ARROWS
    ====================================== */

    .scs-hero-arrow {

        position: absolute;

        top: 58%;

        transform: translateY(-50%);

        width: 38px;

        height: 38px;

        padding: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        z-index: 20;

        border-radius: 50%;

        font-size: 21px;

    }


    .scs-hero-arrow.prev {

        left: 15px;

        right: auto;

    }


    .scs-hero-arrow.next {

        right: 15px;

        left: auto;

    }


    /* =====================================
       DOTS
    ====================================== */

    .scs-hero-dots {

        position: absolute;

        left: 0;

        right: 0;

        bottom: 10px;

        z-index: 20;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 7px;

    }


    .scs-hero-dots button {

        width: 8px;

        height: 8px;

        padding: 0;

        border: none;

        border-radius: 50%;

    }


    .scs-hero-dots button.active {

        width: 21px;

        border-radius: 8px;

    }


    /* =====================================
       HERO STATS
    ====================================== */

    .scs-hero-stats {

        width: calc(100% - 60px);

        margin-left: auto;

        margin-right: auto;

        margin-top: -10px;

        border-radius: 6px;

    }


    .scs-hero-stat {

        gap: 8px;

    }


    .stat-icon {

        font-size: 23px;

    }


    .scs-hero-stat strong {

        font-size: 13px;

    }


    .scs-hero-stat span {

        font-size: 8px;

    }

}


/* =========================================
   OUR CORE Solutions
========================================= */

.scs-Solutions-section {

    width: 100%;

    background: #ffffff;

    padding: 42px 0 34px;

    font-family: "Roboto", sans-serif;

}


.scs-Solutions-container {

    width: calc(100% - 54px);

    max-width: 1190px;

    margin: 0 auto;

}


/* =========================================
   SECTION HEADING
========================================= */

.scs-section-heading {

    text-align: center;

    margin-bottom: 24px;

}


.scs-section-label {

    margin-bottom: 5px;

    color: #f15a16;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.2;

    text-transform: uppercase;

}


.scs-section-heading h2 {

    margin: 0;

    color: #082d58;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 700;

}


.scs-section-heading p {

    margin: 7px 0 0;

    color: #53657b;

    font-size: 12px;

    line-height: 1.5;

    font-weight: 400;

}


/* =========================================
   Solutions GRID
========================================= */

.scs-Solutions-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

}


/* =========================================
   SOLUTION CARD
========================================= */

.scs-solution-card {

    min-height: 198px;

    padding: 18px 13px 16px;

    background: #ffffff;

    border: 1px solid #dce3eb;

    border-radius: 5px;

    text-align: center;

    display: flex;

    flex-direction: column;

    align-items: center;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;

}


.scs-solution-card:hover {

    transform: translateY(-4px);

    border-color: #c8d4e1;

    box-shadow:
        0 8px 22px rgba(3, 38, 83, 0.10);

}


/* =========================================
   ICON
========================================= */

.scs-solution-icon {

    width: 54px;

    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 9px;

}


.scs-solution-icon img {

    display: block;

    width: 48px;

    height: 48px;

    object-fit: contain;

}


/* =========================================
   CARD HEADING
========================================= */

.scs-solution-card h3 {

    margin: 0 0 9px;

    color: #082d58;

    font-size: 14px;

    line-height: 1.35;

    font-weight: 700;

}


/* =========================================
   CARD DESCRIPTION
========================================= */

.scs-solution-card p {

    margin: 0;

    color: #53657b;

    font-size: 12px;

    line-height: 1.55;

    font-weight: 400;

}


/* =========================================
   EXPLORE BUTTON
========================================= */

.scs-Solutions-button {

    display: flex;

    justify-content: center;

    margin-top: 14px;

}


.scs-Solutions-button a {

    min-height: 31px;

    padding: 7px 16px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    color: #f15a16;

    background: #ffffff;

    border: 1px solid #f15a16;

    border-radius: 4px;

    font-family: "Roboto", sans-serif;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.scs-Solutions-button a span {

    font-size: 13px;

    line-height: 1;

}


.scs-Solutions-button a:hover {

    color: #ffffff;

    background: #f15a16;

}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .scs-Solutions-container {

        max-width: 1190px;

    }

    .scs-solution-card {

        min-height: 205px;

    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .scs-Solutions-grid {

        grid-template-columns:
            repeat(3, 1fr);

    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 750px) {

    .scs-Solutions-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

    .scs-solution-card {

        min-height: 205px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 550px) {

    .scs-Solutions-section {

        padding: 34px 0 30px;

    }

    .scs-Solutions-container {

        width: calc(100% - 30px);

    }

    .scs-section-heading {

        margin-bottom: 20px;

    }

    .scs-section-heading h2 {

        font-size: 22px;

    }

    .scs-section-heading p {

        font-size: 10px;

        max-width: 330px;

        margin-left: auto;
        margin-right: auto;

    }

    .scs-Solutions-grid {

        grid-template-columns: 1fr;

        gap: 10px;

    }

    .scs-solution-card {

        min-height: auto;

        padding: 20px 22px;

    }

    .scs-solution-card h3 {

        font-size: 12px;

    }

    .scs-solution-card p {

        max-width: 330px;

        font-size: 10px;

    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .scs-section-heading h2 {

        font-size: 20px;

    }

    .scs-solution-card {

        padding-left: 18px;
        padding-right: 18px;

    }

}



/* =========================================
   DOMAIN EXPERTISE
========================================= */

.scs-industries-section {
    width: 100%;
    background: #ffffff;
    padding: 30px 0 34px;

    font-family: "Roboto", sans-serif;
}


.scs-industries-container {
    width: calc(100% - 54px);
    max-width: 1190px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.scs-industries-section
.scs-section-heading {
    text-align: center;
    margin-bottom: 18px;
}


.scs-industries-section
.scs-section-label {
    margin-bottom: 5px;

    color: #f15a16;

    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}


.scs-industries-section
.scs-section-heading h2 {
    margin: 0;

    color: #082d58;

    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
}


/* =========================================
   INDUSTRY GRID
========================================= */

.scs-industries-grid {
    display: grid;

    grid-template-columns:
        repeat(8, 1fr);

    align-items: stretch;
}


/* =========================================
   INDUSTRY ITEM
========================================= */

.scs-industry-item {
    min-height: 105px;

    padding: 5px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    text-align: center;

    border-right: 1px dashed #cbd5df;
}


.scs-industry-item:last-child {
    border-right: none;
}


/* =========================================
   ICON
========================================= */

.scs-industry-icon {
    width: 48px;
    height: 48px;

    margin-bottom: 7px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.scs-industry-icon img {
    width: 60px;
    height: 60px;

    object-fit: contain;
    display: block;
}


/* =========================================
   TITLE
========================================= */

.scs-industry-item h3 {
    margin: 0;

    color: #18375d;

    font-family: "Roboto", sans-serif;

    font-size: 12px;
    line-height: 1.35;

    font-weight: 600;
}


/* =========================================
   HOVER
========================================= */

.scs-industry-item {
    transition: transform 0.2s ease;
}


.scs-industry-item:hover {
    transform: translateY(-3px);
}


.scs-industry-item:hover h3 {
    color: #f15a16;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .scs-industries-grid {
        grid-template-columns:
            repeat(4, 1fr);

        row-gap: 20px;
    }


    .scs-industry-item:nth-child(4),
    .scs-industry-item:nth-child(8) {
        border-right: none;
    }


    .scs-industry-item:nth-child(5) {
        border-right: 1px dashed #cbd5df;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .scs-industries-section {
        padding: 28px 0 30px;
    }


    .scs-industries-container {
        width: calc(100% - 30px);
    }


    .scs-industries-section
    .scs-section-heading h2 {
        font-size: 21px;
    }


    .scs-industries-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 18px;
    }


    .scs-industry-item {
        min-height: 100px;

        border-right: 1px dashed #cbd5df;
    }


    .scs-industry-item:nth-child(2n) {
        border-right: none;
    }


    .scs-industry-icon {
        width: 45px;
        height: 45px;
    }


    .scs-industry-icon img {
        width: 39px;
        height: 39px;
    }


    .scs-industry-item h3 {
        font-size: 12px;
    }

}


/* =========================================
   ABOUT SCS / WHY CHOOSE
========================================= */

.scs-about-section {
    width: 100%;

    background: #ffffff;

    font-family: "Roboto", sans-serif;
}


.scs-about-container {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr 1.15fr 1.35fr;

    min-height: 270px;
}


/* =========================================
   LEFT IMAGE
========================================= */

.scs-about-image {
    position: relative;

    min-height: 270px;

    overflow: hidden;
}


.scs-about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* Soft white fade toward content */

.scs-about-image::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 35%;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.95) 100%
        );
}


/* =========================================
   WHO WE ARE
========================================= */

.scs-about-content {
    padding: 25px 32px 25px 28px;

    background: #f7f7f7;

    display: flex;
    flex-direction: column;
    justify-content: center;

    position: relative;

    z-index: 2;
}


.scs-about-label {
    margin-bottom: 4px;

    color: #f15a16;

    font-size: 10px;

    line-height: 1.2;

    font-weight: 700;
}


.scs-about-content h2 {
    margin: 0 0 12px;

    color: #082d58;

    font-size: 25px;

    line-height: 1.15;

    font-weight: 700;
}


.scs-about-content p {
    margin: 0 0 9px;

    color: #4f6074;

    font-size: 12px;

    line-height: 1.55;

    font-weight: 400;
}


/* =========================================
   ABOUT BUTTON
========================================= */

.scs-about-btn {
    align-self: flex-start;

    margin-top: 6px;

    min-height: 32px;

    padding: 8px 13px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    background: #f15a16;

    color: #ffffff;

    border-radius: 3px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.scs-about-btn:hover {
    background: #d94c0c;

    transform: translateY(-1px);
}


.scs-about-btn span {
    font-size: 13px;
}


/* =========================================
   WHY CHOOSE SECTION
========================================= */

.scs-why-section {
    position: relative;

    min-height: 270px;

    overflow: hidden;

    background: #032653;

    color: #ffffff;
}


/* =========================================
   WHY CONTENT
========================================= */

.scs-why-content {
    position: relative;

    width: 70%;

    min-height: 270px;

    padding: 25px 20px 20px 28px;

    background:
        linear-gradient(
            90deg,
            #032653 0%,
            rgba(3,38,83,0.96) 72%,
            rgba(3,38,83,0.35) 100%
        );

    z-index: 3;
}


.scs-why-label {
    color: #ffffff;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 700;
}


.scs-why-line {
    width: 25px;

    height: 2px;

    margin-top: 8px;

    background: #f15a16;
}


/* =========================================
   WHY LIST
========================================= */

.scs-why-list {
    list-style: none;

    margin: 14px 0 0;

    padding: 0;
}


.scs-why-list li {
    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 9px;

    color: #ffffff;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 400;
}


.why-check {
    width: 17px;
    height: 17px;

    flex: 0 0 17px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #f15a16;

    border: 1px solid #f15a16;

    border-radius: 50%;

    font-size: 10px;

    font-weight: 700;
}


/* =========================================
   RIGHT ENGINEER IMAGE
========================================= */

.scs-why-image {
    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 43%;

    z-index: 1;
}


.scs-why-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    object-position: center;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .scs-about-container {
        grid-template-columns: 1fr 1.4fr;
    }


    .scs-about-image {
        min-height: 300px;
    }


    .scs-about-content {
        min-height: 300px;
    }


    .scs-why-section {
        grid-column: 1 / -1;

        min-height: 280px;
    }


    .scs-why-content {
        min-height: 280px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .scs-about-container {
        display: flex;

        flex-direction: column;
    }


    /* IMAGE */

    .scs-about-image {
        height: 210px;

        min-height: 210px;
    }


    .scs-about-image::after {
        width: 45%;
    }


    /* ABOUT */

    .scs-about-content {
        padding: 28px 20px;

        min-height: auto;
    }


    .scs-about-content h2 {
        font-size: 23px;
    }


    .scs-about-content p {
        font-size: 10px;

        line-height: 1.6;
    }


    /* WHY */

    .scs-why-section {
        min-height: 340px;
    }


    .scs-why-content {
        width: 100%;

        min-height: 340px;

        padding: 28px 20px;

        background:
            linear-gradient(
                90deg,
                #032653 0%,
                #032653 100%
            );
    }


    .scs-why-label {
        font-size: 19px;
    }


    .scs-why-list li {
        font-size: 10px;

        margin-bottom: 11px;
    }


    /* Hide background engineer image
       on small mobile */

    .scs-why-image {
        display: none;
    }

}
/* =========================================
   KEY PROJECTS ENGINEERED
========================================= */

.scs-key-projects {

    width: 100%;

    padding: 34px 0 28px;

    background: #ffffff;

    font-family: "Roboto", sans-serif;

    overflow: hidden;

}


/* =========================================
   CONTAINER
========================================= */

.scs-projects-container {

    width: calc(100% - 120px);

    max-width: 1120px;

    margin: 0 auto;

}


/* =========================================
   HEADING
========================================= */

.scs-project-heading {

    text-align: center;

    margin-bottom: 18px;

}


.scs-project-heading h2 {

    margin: 0;

    color: #082d58;

    font-size: 23px;

    line-height: 1.2;

    font-weight: 700;

}


.scs-project-heading span {

    display: block;

    width: 32px;

    height: 3px;

    margin: 8px auto 0;

    background: #f15a16;

}


/* =========================================
   SLIDER
========================================= */

.scs-project-slider {

    position: relative;

    width: 100%;

    display: flex;

    align-items: center;

}


/* =========================================
   VIEWPORT
========================================= */

.scs-project-viewport {

    width: 100%;

    overflow: hidden;

}


/* =========================================
   TRACK
========================================= */

.scs-project-track {

    display: flex;

    gap: 18px;

    transition:
        transform 0.45s ease;

    will-change: transform;

}


/* =========================================
   SLIDE
========================================= */

.scs-project-slide {

    flex: 0 0 calc(
        (100% - 54px) / 4
    );

    min-width: 0;

}


/* =========================================
   CARD
========================================= */

.scs-project-card {

    width: 100%;

    background: #ffffff;

    border: 1px solid #d9e1ea;

    border-radius: 6px;

    overflow: hidden;

    box-shadow:
        0 2px 8px rgba(3, 38, 83, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.scs-project-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 8px 20px rgba(3, 38, 83, 0.11);

}


/* =========================================
   PROJECT IMAGE
   FULL IMAGE - NO CROPPING
========================================= */

.scs-project-card-image {

    width: 100%;

    height: 155px;

    overflow: hidden;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

}


/* =========================================
   PROJECT IMAGE
========================================= */

.scs-project-card-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: contain;

    object-position: center;

    transition: none;

}


/* =========================================
   DISABLE IMAGE ZOOM
   Prevents accidental cropping
========================================= */

.scs-project-card:hover
.scs-project-card-image img {

    transform: none;

}


/* =========================================
   CONTENT
========================================= */

.scs-project-card-content {

    min-height: 155px;

    padding: 12px 15px 14px;

}


.scs-project-card-content h3 {

    margin: 0 0 9px;

    color: #082d58;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;

}


.scs-project-card-content ul {

    margin: 0;

    padding-left: 16px;

}


.scs-project-card-content li {

    margin-bottom: 6px;

    color: #53657b;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 400;

}


.scs-project-card-content li::marker {

    color: #082d58;

}


/* =========================================
   ARROWS
========================================= */

.scs-project-arrow {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 39px;

    height: 39px;

    padding: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: #f15a16;

    color: #ffffff;

    font-family: Arial, sans-serif;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    z-index: 10;

    box-shadow:
        0 3px 8px rgba(0, 0, 0, 0.12);

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.scs-project-arrow:hover {

    background: #d94c0c;

}


/* =========================================
   PREVIOUS ARROW
========================================= */

.scs-project-arrow.prev {

    left: -57px;

}


/* =========================================
   NEXT ARROW
========================================= */

.scs-project-arrow.next {

    right: -57px;

}


/* =========================================
   DOTS
========================================= */

.scs-project-dots {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 15px;

}


.scs-project-dots button {

    width: 10px;

    height: 10px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: #cbd1d8;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.scs-project-dots button.active {

    background: #f15a16;

    transform: scale(1.05);

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .scs-projects-container {

        width: calc(100% - 90px);

    }


    .scs-project-slide {

        flex: 0 0 calc(
            (100% - 18px) / 2
        );

    }


    .scs-project-arrow.prev {

        left: -43px;

    }


    .scs-project-arrow.next {

        right: -43px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .scs-key-projects {

        padding: 30px 0 25px;

    }


    .scs-projects-container {

        width: calc(100% - 50px);

    }


    .scs-project-heading {

        margin-bottom: 15px;

    }


    .scs-project-heading h2 {

        font-size: 20px;

    }


    /* ONE CARD AT A TIME */

    .scs-project-slide {

        flex: 0 0 100%;

    }


    .scs-project-track {

        gap: 0;

    }


    /* =====================================
       MOBILE IMAGE
       FULL IMAGE - NO CROPPING
    ====================================== */

    .scs-project-card-image {

        width: 100%;

        height: 190px;

        background: #ffffff;

        display: flex;

        align-items: center;

        justify-content: center;

    }


    .scs-project-card-image img {

        width: 100%;

        height: 100%;

        object-fit: contain;

        object-position: center;

        transform: none !important;

    }


    /* =====================================
       MOBILE CONTENT
    ====================================== */

    .scs-project-card-content {

        min-height: 155px;

        padding: 15px 18px 17px;

    }


    .scs-project-card-content h3 {

        font-size: 14px;

    }


    .scs-project-card-content li {

        font-size: 10px;

    }


    /* =====================================
       MOBILE ARROWS
    ====================================== */

    .scs-project-arrow {

        width: 34px;

        height: 34px;

        font-size: 25px;

    }


    .scs-project-arrow.prev {

        left: -18px;

    }


    .scs-project-arrow.next {

        right: -18px;

    }


    /* =====================================
       MOBILE DOTS
    ====================================== */

    .scs-project-dots {

        margin-top: 13px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .scs-projects-container {

        width: calc(100% - 42px);

    }


    .scs-project-card-image {

        height: 175px;

    }


    .scs-project-card-content {

        padding: 14px 15px 16px;

    }


    .scs-project-card-content h3 {

        font-size: 13px;

    }


    .scs-project-card-content li {

        font-size: 9px;

    }


    .scs-project-arrow {

        width: 32px;

        height: 32px;

        font-size: 23px;

    }


    .scs-project-arrow.prev {

        left: -15px;

    }


    .scs-project-arrow.next {

        right: -15px;

    }

}


/* =========================================
   SCS FOOTER
========================================= */

.scs-footer {

    width: 100%;

    margin: 0;

    padding: 0;

    font-family: "Roboto", sans-serif;

    background: #032653;

}


/* =========================================
   COMMON WIDTH
========================================= */

.scs-footer-wrap {

    width: calc(100% - 64px);

    max-width: 1300px;

    margin: 0 auto;

}


/* =========================================
   CTA SECTION
========================================= */

.scs-footer-cta {

    position: relative;

    min-height: 108px;

    background:
        linear-gradient(
            90deg,
            rgba(3,38,83,.96),
            rgba(4,48,91,.94)
        );

    border-bottom: 1px solid rgba(255,255,255,.12);

    overflow: hidden;
}


/* subtle engineering background */

.scs-footer-cta::before {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            transparent 0%,
            rgba(255,255,255,.025) 50%,
            transparent 100%
        );

    pointer-events: none;
}


.scs-footer-cta .scs-footer-wrap {

    min-height: 108px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    position: relative;

    z-index: 2;
}


/* =========================================
   CTA TEXT
========================================= */

.scs-cta-text h2 {

    margin: 0 0 5px;

    color: #ffffff;

    font-size: 25px;

    line-height: 1.15;

    font-weight: 700;

}


.scs-cta-text p {

    margin: 0;

    color: #e1e9f2;

    font-size: 11px;

    line-height: 1.4;

    font-weight: 400;

}


/* =========================================
   CTA BUTTONS
========================================= */

.scs-cta-actions {

    display: flex;

    align-items: center;

    gap: 28px;

    flex-shrink: 0;

}


.scs-btn {

    height: 56px;

    min-width: 235px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    border-radius: 5px;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    letter-spacing: .1px;

    transition: all .2s ease;

}


.scs-btn span {

    font-size: 21px;

    line-height: 1;

}


/* orange */

.scs-btn-orange {

    background: #f15a16;

    border: 1px solid #f15a16;

    color: #ffffff;

}


.scs-btn-orange:hover {

    background: #d94d0e;

    border-color: #d94d0e;

}


/* outline */

.scs-btn-outline {

    background: transparent;

    border: 2px solid rgba(255,255,255,.7);

    color: #ffffff;

}


.scs-btn-outline:hover {

    background: #ffffff;

    color: #032653;

}


/* =========================================
   MAIN FOOTER
========================================= */

.scs-footer-main {

    background: #032653;

    padding: 18px 0 16px;

}


.scs-footer-columns {

    display: grid;

    grid-template-columns:
        1.15fr
        1.35fr
        1.35fr
        1.15fr;

}


/* =========================================
   FOOTER COLUMNS
========================================= */

.scs-footer-company,
.scs-footer-links,
.scs-footer-Solutions,
.scs-footer-contact {

    min-height: 175px;

    padding: 0 38px;

    border-right:
        1px solid rgba(255,255,255,.16);

}


.scs-footer-company {

    padding-left: 0;

}


.scs-footer-contact {

    padding-right: 0;

    border-right: none;

}


/* =========================================
   LOGO
========================================= */

.scs-footer-logo {

    display: inline-block;

    margin-bottom: 4px;

}


.scs-footer-logo img {

    width: 195px;

    height: auto;

    display: block;

}


/* =========================================
   COMPANY DESCRIPTION
========================================= */

.scs-footer-description {

    max-width: 270px;

    margin: 2px 0 0;

    color: #d2dce7;

    font-size: 12px;

    line-height: 1.35;

}


/* =========================================
   SOCIAL
========================================= */

.scs-footer-social {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-top: 12px;

}


.scs-footer-social a {

    color: #ffffff;

    font-size: 17px;

    line-height: 1;

    font-weight: 700;

    text-decoration: none;

}


/* =========================================
   HEADINGS
========================================= */

.scs-footer-columns h3 {

    margin: 4px 0 15px;

    color: #ffffff;

    font-size: 11px;

    line-height: 1.2;

    font-weight: 700;

}


/* =========================================
   QUICK LINKS
========================================= */

.scs-quick-links-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

}


.scs-footer-columns ul {

    list-style: none;

    margin: 0;

    padding: 0;

}


.scs-footer-columns li {

    margin-bottom: 7px;

}


.scs-footer-columns li a {

    color: #d0dbe6;

    font-size: 12px;

    line-height: 1.25;

    text-decoration: none;

    font-weight: 400;

}


.scs-footer-columns li a:hover {

    color: #f15a16;

}


/* =========================================
   Solutions
========================================= */

.scs-footer-Solutions ul {

    max-width: 300px;

}


/* =========================================
   CONTACT
========================================= */

.scs-contact-row {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 12px;

}


.scs-contact-icon {

    width: 22px;

    flex: 0 0 22px;

    color: #ffffff;

    font-size: 17px;

    line-height: 1.2;

    text-align: center;

}


.scs-contact-row p {

    margin: 0;

    color: #d0dbe6;

    font-size: 12px;

    line-height: 1.45;

}


.scs-contact-row a {

    color: #d0dbe6;

    text-decoration: none;

}


.scs-contact-row a:hover {

    color: #f15a16;

}


/* =========================================
   COPYRIGHT
========================================= */

.scs-footer-bottom {

    min-height: 38px;

    background: #022047;

    border-top:
        1px solid rgba(255,255,255,.15);

}


.scs-footer-bottom-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.scs-footer-bottom p {

    margin: 0;

    color: #d0d9e4;

    font-size: 12px;

}


.scs-footer-legal {

    display: flex;

    align-items: center;

    gap: 14px;

}


.scs-footer-legal a {

    color: #d0d9e4;

    font-size: 12px;

    text-decoration: none;

}


.scs-footer-legal span {

    color: #8293a7;

    font-size: 12px;

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1050px) {

    .scs-footer-wrap {

        width: calc(100% - 40px);

    }


    .scs-cta-actions {

        gap: 12px;

    }


    .scs-btn {

        min-width: 190px;

    }


    .scs-footer-company,
    .scs-footer-links,
    .scs-footer-Solutions,
    .scs-footer-contact {

        padding-left: 20px;

        padding-right: 20px;

    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .scs-footer-wrap {

        width: calc(100% - 30px);

    }


    /* CTA */

    .scs-footer-cta {

        min-height: auto;

        padding: 25px 0;

    }


    .scs-footer-cta .scs-footer-wrap {

        min-height: auto;

        flex-direction: column;

        align-items: flex-start;

    }


    .scs-cta-text h2 {

        font-size: 21px;

    }


    .scs-cta-text p {

        font-size: 10px;

    }


    .scs-cta-actions {

        width: 100%;

        gap: 8px;

    }


    .scs-btn {

        min-width: 0;

        width: 50%;

        height: 45px;

        padding: 0 8px;

        font-size: 12px;

    }


    .scs-btn span {

        font-size: 17px;

    }


    /* FOOTER */

    .scs-footer-main {

        padding: 25px 0;

    }


    .scs-footer-columns {

        grid-template-columns: 1fr;

    }


    .scs-footer-company,
    .scs-footer-links,
    .scs-footer-Solutions,
    .scs-footer-contact {

        min-height: auto;

        padding: 20px 0;

        border-right: none;

        border-bottom:
            1px solid rgba(255,255,255,.13);

    }


    .scs-footer-company {

        padding-top: 0;

    }


    .scs-footer-contact {

        border-bottom: none;

    }


    .scs-footer-logo img {

        width: 190px;

    }


    /* COPYRIGHT */

    .scs-footer-bottom {

        padding: 10px 0;

    }


    .scs-footer-bottom-inner {

        min-height: auto;

        flex-direction: column;

        gap: 8px;

        text-align: center;

    }

}

/* =========================================================
   MOBILE TOP CONTACT BAR
========================================================= */

@media (max-width: 600px) {

    .scs-top-bar {
        width: 100%;
        height: 34px;

        display: flex;
        align-items: center;

        background: #082d58;

        overflow: hidden;
    }


    .scs-top-bar .scs-header-container {
        width: 100%;

        padding: 0 12px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* PHONE + EMAIL */

    .scs-top-left {
        width: 100%;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 18px;

        white-space: nowrap;
    }


    .scs-top-left a {
        display: inline-flex;

        align-items: center;

        gap: 5px;

        color: #ffffff;

        font-size: 10px;

        line-height: 1;

        font-weight: 600;

        text-decoration: none;

        white-space: nowrap;
    }


    /* ICON */

    .scs-top-left a .icon {
        color: #f15a16;

        font-size: 11px;

        line-height: 1;
    }


    /* RIGHT SIDE HIDDEN ON MOBILE */

    .scs-top-right {
        display: none !important;
    }

}

/* =========================================
   WHATSAPP FLOATING CHAT
========================================= */

.scs-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 9999;

    height: 50px;

    padding: 0 17px 0 12px;

    display: flex;

    align-items: center;

    gap: 9px;

    background: #25D366;

    color: #ffffff;

    text-decoration: none;

    border-radius: 28px;

    box-shadow:
        0 5px 18px rgba(0, 0, 0, 0.20);

    font-family: "Roboto", sans-serif;

    font-size: 12px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.scs-whatsapp:hover {

    color: #ffffff;

    text-decoration: none;

    transform: translateY(-3px);

    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.25);

}


/* =========================================
   WHATSAPP ICON
========================================= */

.scs-whatsapp-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}


.scs-whatsapp-icon svg {

    width: 30px;

    height: 30px;

    display: block;

}


/* =========================================
   TEXT
========================================= */

.scs-whatsapp-text {

    white-space: nowrap;

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .scs-whatsapp {

        right: 16px;

        bottom: 16px;

        width: 50px;

        height: 50px;

        padding: 0;

        border-radius: 50%;

        justify-content: center;

        gap: 0;

    }


    .scs-whatsapp-icon {

        width: 32px;

        height: 32px;

    }


    .scs-whatsapp-text {

        display: none;

    }

}