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

.top-bar {
    width: 100%;
    background: #051c46;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-content {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


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

.top-contact {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.contact-item i {
    color: #f97316;
    font-size: 13px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    color: #f97316;
}

.contact-item:hover i {
    color: #ffffff;
}


/* =========================================
   DIVIDER
========================================= */

.contact-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.20);
}


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

.top-social {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;
    background: transparent;

    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: 50%;

    font-size: 12px;

    transition: all 0.3s ease;
}

.top-social a:hover {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;
    transform: translateY(-2px);
}


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

@media (max-width: 991px) {

    .top-bar-content {
        min-height: 42px;
    }

    .top-contact {
        gap: 12px;
    }

    .contact-item {
        font-size: 12px;
    }

    .top-social {
        gap: 5px;
    }

    .top-social a {
        width: 27px;
        height: 27px;
    }
}


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

@media (max-width: 767px) {

    .top-bar-content {
        min-height: 40px;
        padding: 0 10px;
    }

    .top-contact {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .contact-item {
        font-size: 11px;
        gap: 5px;
    }

    .contact-item i {
        font-size: 11px;
    }

    .contact-divider {
        height: 13px;
    }

    .top-social {
        display: none;
    }
}


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

@media (max-width: 420px) {

    .top-bar-content {
        padding: 0 6px;
    }

    .top-contact {
        gap: 7px;
    }

    .contact-item {
        font-size: 10px;
    }

    .contact-item i {
        font-size: 10px;
    }

    .contact-divider {
        height: 11px;
    }
}
 /* =========================================
    PREMIUM IT NAVBAR
 ========================================= */

.it-navbar {
    width: 100%;
    height: 82px;

    position: sticky !important;
    top: 0 !important;

    z-index: 9999 !important;

    background: #ffffff;

    border-bottom: 1px solid #edf0f4;

    font-family: 'Manrope', sans-serif;

    transition: box-shadow 0.3s ease;
}


/* =========================================
   NAV WRAPPER
========================================= */

.it-nav-wrapper {
    height: 82px;

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

    gap: 30px;
}


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

.it-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}
.it-logo img {
    display: block;
    width: 215px;
    height: auto;
    max-height: 65px;
    object-fit: contain;
}
/* LOGO ICON */
.logo-mark {
    width: 42px;
    height: 42px;

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

    background: #111827;

    color: #ffffff;

    border-radius: 11px;

    font-size: 17px;

    position: relative;

    overflow: hidden;

    transition: all 0.4s ease;
}
/* ORANGE DETAIL */
.logo-mark::after {
    content: "";

    position: absolute;

    width: 9px;
    height: 9px;

    background: #f97316;

    right: -2px;
    bottom: -2px;

    border-radius: 50%;
}
.it-logo:hover .logo-mark {
    transform: rotate(-4deg) translateY(-2px);
    background: #f97316;
}
/* LOGO TEXT */
.logo-text {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.logo-text strong {
    color: #111827;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 1px;
}

.logo-text span {
    margin-top: 5px;

    color: #64748b;

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

    letter-spacing: 2.5px;
}


/* =========================================
   DESKTOP MENU
========================================= */

.it-desktop-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* =========================================
   NAV MENU
========================================= */

.it-nav-menu {
    display: flex;
    align-items: center;

    list-style: none;

    margin: 0;
    padding: 0;

    gap: 5px;
}

.it-nav-menu li {
    margin: 0;
    padding: 0;
}


.it-nav-menu li a {
    position: relative;

    display: flex;
    align-items: center;

    height: 82px;

    padding: 0 13px;

    color: #334155;

    text-decoration: none;

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

    transition: all 0.3s ease;
}


/* =========================================
   PREMIUM HOVER LINE
========================================= */

.it-nav-menu li a::after {
    content: "";

    position: absolute;

    left: 13px;
    right: 13px;

    bottom: 18px;

    height: 2px;

    background: #f97316;

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.35s ease;
}

.it-nav-menu li a:hover {
    color: #f97316;
}

.it-nav-menu li a:hover::after,
.it-nav-menu li a.active::after {
    transform: scaleX(1);
}


/* ACTIVE */

.it-nav-menu li a.active {
    color: #f97316;
}


/* =========================================
   GET STARTED BUTTON
========================================= */

.it-nav-button {
    min-height: 43px;

    padding: 0 18px;

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

    gap: 10px;

    color: #ffffff !important;

    background: #051c46;

    border-radius: 7px;

    text-decoration: none;

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

    position: relative;

    overflow: hidden;

    transition: all 0.35s ease;
}


/* BUTTON SHINE */

.it-nav-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: rgba(255,255,255,0.12);

    transform: skewX(-25deg);

    transition: left 0.6s ease;
}


.it-nav-button:hover::before {
    left: 140%;
}


.it-nav-button i {
    font-size: 11px;

    transition: transform 0.3s ease;
}

.it-nav-button:hover {
    background: #f97316;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.20);
}

.it-nav-button:hover i {
    transform: translateX(4px);
}


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

.it-mobile-toggle {
    width: 43px;
    height: 43px;

    display: none;

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

    gap: 5px;

    border: 1px solid #e2e8f0;

    background: #ffffff;

    border-radius: 9px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.it-mobile-toggle span {
    width: 19px;
    height: 2px;

    background: #111827;

    border-radius: 5px;

    transition: all 0.3s ease;
}


.it-mobile-toggle:hover {
    border-color: #f97316;
    background: #fff7ed;
}


.it-mobile-toggle:hover span {
    background: #f97316;
}
/* =========================================================
   PREMIUM DESKTOP DROPDOWN
========================================================= */

.it-nav-menu > li {
    position: relative;
}


/* Dropdown parent */

.it-dropdown-link {
    display: flex !important;
    align-items: center;
    gap: 7px;
}


/* Chevron */

.it-dropdown-link i {
    font-size: 9px;

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


/* Rotate arrow */

.it-dropdown:hover > .it-dropdown-link i {
    transform: rotate(180deg);
}


/* =========================================
   DROPDOWN PANEL
========================================= */

.it-dropdown-menu {
    position: absolute;

    top: calc(100% + 18px);
    left: 50%;

    width: 350px;

    margin: 0;
    padding: 10px;

    list-style: none;

    background: #ffffff;

    border-radius: 13px;

    border: 1px solid #e9edf3;

    box-shadow:
        0 22px 55px rgba(7, 29, 73, 0.16);

    opacity: 0;
    visibility: hidden;

    transform:
        translate(-50%, 12px);

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

    z-index: 9999;
}


/* Small orange top line */

.it-dropdown-menu::before {
    content: "";

    position: absolute;

    top: 0;
    left: 22px;
    right: 22px;

    height: 3px;

    background: linear-gradient(
        90deg,
        #f58220,
        #ff9b4a
    );

    border-radius: 0 0 5px 5px;
}


/* Show dropdown */

.it-dropdown:hover > .it-dropdown-menu {
    opacity: 1;
    visibility: visible;

    transform:
        translate(-50%, 0);
}


/* =========================================
   DROPDOWN ITEMS
========================================= */

.it-dropdown-menu li {
    margin: 0;
}


.it-dropdown-menu li a {
    display: flex !important;

    align-items: center;

    gap: 12px;

    width: 100%;

    padding: 12px 11px;

    box-sizing: border-box;

    border-radius: 9px;

    color: #17233d !important;

    text-decoration: none;

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


.it-dropdown-menu li a:hover {
    background: #f5f8fc;

    transform: translateX(4px);
}


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

.it-dropdown-icon {
    flex: 0 0 39px;

    width: 39px;
    height: 39px;

    display: flex;

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

    border-radius: 9px;

    background: rgba(245, 130, 32, 0.09);

    color: #f58220;

    font-size: 14px;

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


.it-dropdown-menu li a:hover .it-dropdown-icon {
    background: #f58220;

    color: #ffffff;
}


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

.it-dropdown-menu li a > span:last-child {
    display: flex;

    flex-direction: column;

    gap: 2px;

    min-width: 0;
}


.it-dropdown-menu strong {
    display: block;

    color: #071d49;

    font-size: 12.5px;

    line-height: 1.35;

    font-weight: 700;
}


.it-dropdown-menu small {
    display: block;

    color: #8a93a2;

    font-size: 10.5px;

    line-height: 1.4;
}


/* =========================================
   DIFFERENT DROPDOWN WIDTHS
========================================= */

.it-solutions-menu {
    width: 340px;
}


.it-company-menu {
    width: 350px;
}


/* =========================================
   DESKTOP NAVBAR ACTIVE STATE
========================================= */

.it-nav-menu > li > a.active,
.it-nav-menu > li:hover > .it-dropdown-link {
    color: #f58220 !important;
}
.it-dropdown::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    top: 100%;

    height: 20px;
}
/* =========================================
   MOBILE MENU
========================================= */

.it-mobile-menu {
    position: fixed;

    top: 0;
    right: 0;

    width: min(390px, 88%);

    height: 100vh;

    background: #ffffff;

    z-index: 2001;

    transform: translateX(100%);

    transition: transform 0.45s cubic-bezier(.77,0,.18,1);

    box-shadow: -15px 0 50px rgba(15, 23, 42, 0.12);

    overflow-y: auto;
}


.it-mobile-menu.show {
    transform: translateX(0);
}


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

.it-menu-overlay {
    position: fixed;

    inset: 0;

    background: rgba(15, 23, 42, 0.55);

    backdrop-filter: blur(3px);

    z-index: 2000;

    opacity: 0;
    visibility: hidden;

    transition: all 0.35s ease;
}


.it-menu-overlay.show {
    opacity: 1;
    visibility: visible;
}


body.menu-open {
    overflow: hidden;
}


/* =========================================
   MOBILE MENU HEADER
========================================= */

.mobile-menu-header {
    height: 82px;

    padding: 0 24px;

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

    border-bottom: 1px solid #edf0f4;
}


.mobile-close {
    width: 38px;
    height: 38px;

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

    border: 1px solid #e2e8f0;

    border-radius: 50%;

    background: #ffffff;

    color: #111827;

    cursor: pointer;

    transition: all 0.3s ease;
}


.mobile-close:hover {
    background: #f97316;
    border-color: #f97316;
    color: #ffffff;

    transform: rotate(90deg);
}


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

.mobile-menu-content {
    padding: 20px 24px 30px;
}
/* =========================================================
   MOBILE DROPDOWN / ACCORDION
========================================================= */

.mobile-dropdown {
    width: 100%;
}


/* Dropdown button */

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

    border: 0;

    cursor: pointer;

    background: transparent;

    font-family: inherit;

    text-align: left;
}


/* Keep normal mobile link appearance */

.mobile-dropdown-toggle span {
    display: flex;

    align-items: center;

    gap: 14px;
}


/* Arrow */

.mobile-dropdown-arrow {
    transition:
        transform 0.3s ease;
}


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

.mobile-dropdown-content {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    padding-left: 17px;
    padding-right: 8px;

    transition:
        max-height 0.35s ease,
        opacity 0.25s ease;
}


/* Open submenu */

.mobile-dropdown.open
.mobile-dropdown-content {
    max-height: 500px;

    opacity: 1;
}


/* Rotate arrow */

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

    color: #f58220;
}


/* =========================================
   SUBMENU LINK
========================================= */

.mobile-dropdown-content a {
    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 44px;

    padding: 8px 12px;

    margin-bottom: 3px;

    border-radius: 8px;

    color: #647086;

    text-decoration: none;

    font-size: 12px;

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


.mobile-dropdown-content a i {
    width: 19px;

    text-align: center;

    color: #f58220;

    font-size: 12px;
}


.mobile-dropdown-content a:hover,
.mobile-dropdown-content a:active {
    background: #f5f8fc;

    color: #071d49;

    transform: translateX(3px);
}


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

@media (max-width: 767px) {

    .mobile-dropdown-content {
        padding-left: 13px;
    }

    .mobile-dropdown-content a {
        min-height: 42px;

        font-size: 11.5px;
    }
}


@media (max-width: 480px) {

    .mobile-dropdown-content {
        padding-left: 8px;
    }

    .mobile-dropdown-content a {
        padding: 7px 10px;

        font-size: 11px;
    }
}

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

.mobile-nav-link {
    min-height: 58px;

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

    padding: 0 5px;

    border-bottom: 1px solid #eef2f7;

    color: #1e293b;

    text-decoration: none;

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

    transition: all 0.3s ease;
}


.mobile-nav-link span {
    display: flex;
    align-items: center;
    gap: 13px;
}


.mobile-nav-link span i {
    width: 31px;
    height: 31px;

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

    border-radius: 7px;

    background: #f8fafc;

    color: #64748b;

    font-size: 12px;

    transition: all 0.3s ease;
}


.mobile-nav-link > i {
    color: #94a3b8;

    font-size: 11px;

    transition: all 0.3s ease;
}


.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #f97316;

    padding-left: 7px;
}


.mobile-nav-link:hover span i,
.mobile-nav-link.active span i {
    color: #ffffff;
    background: #f97316;
}


.mobile-nav-link:hover > i {
    color: #f97316;
    transform: translateX(4px);
}


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

.mobile-cta {
    margin-top: 25px;

    min-height: 52px;

    padding: 0 20px;

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

    background: #111827;

    border-radius: 8px;

    color: #ffffff;

    text-decoration: none;

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

    transition: all 0.3s ease;
}


.mobile-cta i {
    transition: transform 0.3s ease;
}


.mobile-cta:hover {
    background: #f97316;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.20);
}


.mobile-cta:hover i {
    transform: translateX(5px);
}


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

.mobile-menu-contact {
    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid #edf0f4;

    display: flex;
    flex-direction: column;

    gap: 14px;
}


.mobile-menu-contact a {
    display: flex;
    align-items: center;

    gap: 10px;

    color: #64748b;

    text-decoration: none;

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


.mobile-menu-contact a i {
    width: 27px;
    height: 27px;

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

    color: #f97316;

    background: #fff7ed;

    border-radius: 6px;

    font-size: 10px;
}

/* =========================================
   REMOVE BOOTSTRAP CONTAINER SIDE SPACE
   FOR IT NAVBAR + TOP BAR
========================================= */

.top-bar > .container,
.it-navbar > .container {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}


/* =========================================
   NAVBAR FULL WIDTH
========================================= */

.it-nav-wrapper {
    width: 100%;
}
/* =========================================================
   FULL WIDTH CONTAINER
========================================================= */

.top-bar > .container,
.it-navbar > .container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 35px;
    padding-right: 35px;
}

/* =========================================================
   LARGE DESKTOP - 1200px+
========================================================= */
@media (min-width: 1200px) {

    .top-bar > .container,
    .it-navbar > .container {
        max-width: 100%;
        padding-left: 35px;
        padding-right: 35px;
    }

    .it-navbar {
        height: 82px;
    }

    .it-nav-wrapper {
        width: 100%;
        height: 82px;
    }

    /* Actual logo */
    .it-logo img {
        width: 215px;
        height: auto;
        max-height: 115px;
        object-fit: contain;
    }
}
/* =========================================================
   LAPTOP - 1051px to 1199px
========================================================= */
@media (min-width: 1051px) and (max-width: 1199px) {

    .top-bar > .container,
    .it-navbar > .container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .it-navbar {
        height: 78px;
    }

    .it-nav-wrapper {
        height: 78px;
    }

    /* Slightly smaller logo */
    .it-logo img {
        width: 195px;
        height: auto;
        max-height: 60px;
    }

    /* Reduce menu spacing */
    .it-desktop-menu {
        gap: 12px;
    }

    .it-nav-menu {
        gap: 2px;
    }

    .it-nav-menu li a {
        height: 78px;
        padding: 0 8px;
        font-size: 12px;
    }

    .it-nav-menu li a::after {
        left: 8px;
        right: 8px;
        bottom: 17px;
    }

    .it-nav-button {
        min-height: 41px;
        padding: 0 14px;
        font-size: 11px;
    }
}
/* =========================================================
   TABLET + MOBILE - 1050px AND BELOW
========================================================= */
@media (max-width: 1050px) {

    /* -------------------------------
       NAVBAR
    ------------------------------- */

    .it-navbar {
        height: 68px;
    }

    .it-nav-wrapper {
        width: 100%;
        height: 68px;

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


    /* -------------------------------
       HIDE DESKTOP MENU
    ------------------------------- */

    .it-desktop-menu {
        display: none;
    }


    /* -------------------------------
       SHOW MOBILE BUTTON
    ------------------------------- */

    .it-mobile-toggle {
        display: flex;

        width: 42px;
        height: 42px;

        flex-shrink: 0;
    }


    /* -------------------------------
       ACTUAL LOGO
    ------------------------------- */

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

        height: 52px;

        flex-shrink: 1;
        min-width: 0;
    }

    .it-logo img {
        display: block;

        width: 180px;
        height: auto;

        max-height: 50px;

        object-fit: contain;
    }
}
/* =========================================================
   TABLET - 768px to 1050px
========================================================= */
@media (min-width: 768px) and (max-width: 1050px) {

    .top-bar > .container,
    .it-navbar > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .it-navbar {
        height: 68px;
    }

    .it-nav-wrapper {
        height: 68px;
    }

    .it-logo {
        height: 52px;
    }

    .it-logo img {
        width: 180px;
        max-height: 50px;
    }
}
/* =========================================================
   MOBILE - 767px AND BELOW
========================================================= */
@media (max-width: 767px) {

    /* -------------------------------
       CONTAINER
    ------------------------------- */

    .top-bar > .container,
    .it-navbar > .container {
        padding-left: 12px;
        padding-right: 12px;
    }


    /* -------------------------------
       NAVBAR
    ------------------------------- */

    .it-navbar {
        height: 62px;
    }

    .it-nav-wrapper {
        height: 62px;
    }


    /* -------------------------------
       LOGO
    ------------------------------- */

    .it-logo {
        height: 50px;

        display: flex;
        align-items: center;

        max-width: calc(100% - 55px);
    }

    .it-logo img {
        width: 165px;
        height: auto;

        max-height: 46px;

        object-fit: contain;
    }


    /* -------------------------------
       HAMBURGER
    ------------------------------- */

    .it-mobile-toggle {
        width: 40px;
        height: 40px;

        flex-shrink: 0;

        border-radius: 8px;
    }

    .it-mobile-toggle span {
        width: 18px;
        height: 2px;
    }
}
/* =========================================================
   SMALL MOBILE - 480px AND BELOW
========================================================= */
@media (max-width: 480px) {

    .top-bar > .container,
    .it-navbar > .container {
        padding-left: 10px;
        padding-right: 10px;
    }


    /* -------------------------------
       NAVBAR
    ------------------------------- */

    .it-navbar {
        height: 58px;
    }

    .it-nav-wrapper {
        height: 58px;
    }


    /* -------------------------------
       LOGO
    ------------------------------- */

    .it-logo {
        height: 46px;

        max-width: calc(100% - 50px);
    }

    .it-logo img {
        width: 150px;
        max-height: 70px;
    }


    /* -------------------------------
       HAMBURGER
    ------------------------------- */

    .it-mobile-toggle {
        width: 38px;
        height: 38px;

        border-radius: 8px;
    }

    .it-mobile-toggle span {
        width: 17px;
    }
}
/* =========================================================
   VERY SMALL MOBILE - 360px AND BELOW
========================================================= */
@media (max-width: 360px) {

    .top-bar > .container,
    .it-navbar > .container {
        padding-left: 8px;
        padding-right: 8px;
    }


    /* -------------------------------
       NAVBAR
    ------------------------------- */

    .it-navbar {
        height: 56px;
    }

    .it-nav-wrapper {
        height: 56px;
    }


    /* -------------------------------
       LOGO
    ------------------------------- */

    .it-logo {
        height: 44px;
    }

    .it-logo img {
        width: 138px;
        max-height: 40px;
    }


    /* -------------------------------
       HAMBURGER
    ------------------------------- */

    .it-mobile-toggle {
        width: 36px;
        height: 36px;
    }
}
/* ==  MOBILE MENU == */
@media (max-width: 1050px) {

    .mobile-menu-header {
        height: 68px;
        padding: 0 22px;
    }

    .mobile-menu-content {
        padding: 20px 22px 30px;
    }
}
/* =========================================================
   SMALL MOBILE MENU
========================================================= */
@media (max-width: 480px) {

    .mobile-menu-header {
        height: 62px;
        padding: 0 18px;
    }

    .mobile-menu-content {
        padding: 15px 18px 25px;
    }
}
/* =========================================================
   FINAL NAVBAR STICKY OVERRIDE
   PLACE THIS AT THE VERY END
========================================================= */

.it-navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
}


/* Keep navbar parent from interfering with sticky */
.it-navbar,
.it-navbar > .container,
.it-nav-wrapper {
    transform: none !important;
}


/* Don't allow an accidental overflow rule
   on the immediate navbar containers */
.it-navbar > .container {
    overflow: visible !important;
}


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

@media (max-width: 1050px) {

    .it-navbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 9999 !important;
    }

}


/* =========================================================
   MOBILE MENU MUST STAY ABOVE NAVBAR
========================================================= */

.it-mobile-menu {
    z-index: 20001 !important;
}

.it-menu-overlay {
    z-index: 20000 !important;
}
/* =========================================================
   FOOTER ROOT
========================================================= */

.oxf-footer {
    width: 100%;
    margin: 0;
    padding: 0;

    background: #051c46;
    color: #ffffff;

    font-family: 'Manrope', sans-serif;

    position: relative;
    overflow: hidden;
}


/* subtle premium background detail */

.oxf-footer::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -220px;
    right: -100px;

    border-radius: 50%;

    border: 1px solid rgba(249, 115, 22, 0.08);

    pointer-events: none;
}

.oxf-footer::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    bottom: -190px;
    left: -80px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.04);

    pointer-events: none;
}


/* =========================================================
   CONTAINER
   UNIQUE CONTAINER - NO BOOTSTRAP DEPENDENCY
========================================================= */

.oxf-container {
    width: 100%;
    max-width: 1280px;

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

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


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

.oxf-main {
    position: relative;
    z-index: 1;

    padding-top: 45px;
    padding-bottom: 35px;
}


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

.oxf-grid {
    display: grid;

    grid-template-columns:
        1.45fr
        0.75fr
        1fr
        1.2fr;

    column-gap: 48px;

    align-items: start;
}


/* =========================================================
   BRAND
========================================================= */

.oxf-brand {
    max-width: 350px;
}


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

.oxf-logo {
    width: fit-content;

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

    text-decoration: none;

    margin-bottom: 17px;
    border-radius: 12px;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.12);

    padding: 7px 11px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.oxf-logo img {
    display: block;

    width: 190px;
    height: auto;

    max-height: 58px;

    object-fit: cover;

    border-radius: 7px;

    transition: transform 0.35s ease;
}


.oxf-logo:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.20);
}


.oxf-logo:hover img {
    transform: scale(1.02);
}


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

.oxf-description {
    margin: 0;

    max-width: 335px;

    color: #b7c4d7;

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

    line-height: 1.75;
}


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

.oxf-social {
    display: flex;
    align-items: center;

    gap: 8px;

    margin-top: 19px;
}


.oxf-social a {
    width: 32px;
    height: 32px;

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

    color: #ffffff;

    text-decoration: none;

    border: 1px solid rgba(255, 255, 255, 0.20);

    border-radius: 50%;

    font-size: 12px;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.oxf-social a:hover {
    background: #f97316;

    border-color: #f97316;

    color: #ffffff;

    transform: translateY(-3px);
}


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

.oxf-title {
    position: relative;

    margin: 2px 0 21px;

    padding: 0;

    color: #ffffff;

    font-size: 16px;
    font-weight: 800;

    line-height: 1.3;
}


/* orange accent */

.oxf-title::after {
    content: "";

    display: block;

    width: 32px;
    height: 2px;

    margin-top: 9px;

    background: #f97316;

    border-radius: 10px;
}


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

.oxf-links {
    list-style: none;

    padding: 0;
    margin: 0;
}


.oxf-links li {
    padding: 0;
    margin: 0 0 12px;
}


.oxf-links li:last-child {
    margin-bottom: 0;
}


.oxf-links a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #b7c4d7;

    text-decoration: none;

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

    line-height: 1.45;

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


.oxf-links a i {
    color: #f97316;

    font-size: 9px;

    transition: transform 0.3s ease;
}


.oxf-links a:hover {
    color: #ffffff;

    transform: translateX(4px);
}


.oxf-links a:hover i {
    transform: translateX(2px);
}


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

.oxf-contact-row {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    margin-bottom: 17px;
}


.oxf-contact-row:last-child {
    margin-bottom: 0;
}


/* contact icon */

.oxf-contact-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

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

    border-radius: 8px;

    background: rgba(249, 115, 22, 0.10);

    border: 1px solid rgba(249, 115, 22, 0.22);

    color: #f97316;

    font-size: 12px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.oxf-contact-row:hover .oxf-contact-icon {
    background: #f97316;

    border-color: #f97316;

    color: #ffffff;
}


/* contact text */

.oxf-contact-info {
    min-width: 0;

    display: flex;
    flex-direction: column;

    gap: 3px;
}


.oxf-contact-label {
    color: #7185a2;

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

    text-transform: uppercase;

    letter-spacing: 0.8px;
}


.oxf-contact-info a,
.oxf-contact-info > span:not(.oxf-contact-label) {
    color: #dce4ef;

    text-decoration: none;

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

    line-height: 1.5;

    overflow-wrap: anywhere;

    transition: color 0.3s ease;
}


.oxf-contact-info a:hover {
    color: #f97316;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.oxf-bottom {
    position: relative;
    z-index: 1;

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

    background: rgba(0, 0, 0, 0.12);
}


.oxf-bottom-inner {
    min-height: 58px;

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

    gap: 20px;
}


/* copyright */

.oxf-copyright {
    margin: 0;

    color: #91a1b8;

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

    line-height: 1.5;
}


/* legal */

.oxf-legal {
    display: flex;
    align-items: center;

    gap: 13px;
}


.oxf-legal a {
    color: #aab7c9;

    text-decoration: none;

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

    transition: color 0.3s ease;
}


.oxf-legal a:hover {
    color: #f97316;
}


.oxf-legal span {
    width: 3px;
    height: 3px;

    flex: 0 0 3px;

    border-radius: 50%;

    background: #f97316;
}
/* =========================================================
   LARGE LAPTOP
========================================================= */
@media (max-width: 1199px) {

    .oxf-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .oxf-grid {
        grid-template-columns:
            1.3fr
            0.8fr
            1fr
            1.1fr;

        column-gap: 30px;
    }

    .oxf-logo img {
        width: 180px;
    }

    .oxf-description {
        font-size: 12.5px;
    }

    .oxf-title {
        font-size: 15px;
    }

    .oxf-links a {
        font-size: 12px;
    }
}
/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {

    .oxf-main {
        padding-top: 40px;
        padding-bottom: 32px;
    }

    .oxf-grid {
        grid-template-columns:
            1.2fr
            1fr
            1fr;

        gap: 32px;
    }

    .oxf-brand {
        grid-column: 1 / -1;

        max-width: 600px;
    }

    .oxf-description {
        max-width: 550px;

        font-size: 13px;
    }

    .oxf-logo img {
        width: 190px;
    }

    .oxf-title {
        font-size: 15px;
    }

    .oxf-links a {
        font-size: 12.5px;
    }

    .oxf-contact-info a,
    .oxf-contact-info > span:not(.oxf-contact-label) {
        font-size: 12px;
    }
}
/* =========================================================
   FOOTER MOBILE
   CENTER ALL COLUMNS PROPERLY
========================================================= */

@media (max-width: 767px) {

    .oxf-container {
        width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }


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

    .oxf-main {
        padding-top: 34px;
        padding-bottom: 27px;
    }


    /* =========================================
       FOOTER GRID
    ========================================= */

    .oxf-grid {
        display: grid;

        grid-template-columns: 1fr;

        gap: 28px;

        width: 100%;

        justify-items: center;

        align-items: start;

        text-align: center;
    }


    /* =========================================
       BRAND COLUMN
    ========================================= */

    .oxf-brand {
        width: 100%;
        max-width: 400px;

        grid-column: auto;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        text-align: center;
    }


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

    .oxf-logo {
        display: inline-flex;

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

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

        margin-bottom: 14px;

        padding: 6px 9px;

        border-radius: 10px;
    }


    .oxf-logo img {
        display: block;

        width: 175px;

        max-height: 52px;

        object-fit: cover;

        border-radius: 6px;
    }


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

    .oxf-description {
        width: 100%;

        max-width: 360px;

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

        color: #b7c4d7;

        font-size: 12px;

        line-height: 1.7;

        text-align: center;
    }


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

    .oxf-social {
        width: 100%;

        display: flex;

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

        gap: 7px;

        margin-top: 16px;
    }


    .oxf-social a {
        width: 31px;
        height: 31px;

        display: inline-flex;

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

        flex: 0 0 31px;

        font-size: 11px;
    }


    /* =========================================
       EACH FOOTER COLUMN
    ========================================= */

    .oxf-grid > div:not(.oxf-brand) {
        width: 100%;

        max-width: 300px;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: flex-start;

        text-align: center;
    }


    /* =========================================
       COLUMN TITLES
    ========================================= */

    .oxf-title {
        width: 100%;

        margin: 0 0 16px;

        font-size: 15px;

        text-align: center;
    }


    .oxf-title::after {
        width: 32px;

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


    /* =========================================
       FOOTER LINKS
    ========================================= */

    .oxf-links {
        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: center;

        justify-content: center;

        list-style: none;

        padding: 0;
        margin: 0;
    }


    .oxf-links li {
        width: 100%;

        display: flex;

        justify-content: center;

        margin-bottom: 10px;

        padding: 0;
    }


    .oxf-links a {
        display: inline-flex;

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

        gap: 9px;

        font-size: 12px;

        text-align: center;

        transform: none;
    }


    .oxf-links a:hover {
        transform: translateY(-1px);
    }


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

    .oxf-contact-row {
        width: 100%;

        max-width: 280px;

        display: flex;

        align-items: center;

        justify-content: flex-start;

        gap: 10px;

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

        margin-bottom: 13px;

        text-align: left;
    }


    .oxf-contact-icon {
        width: 32px;
        height: 32px;

        flex: 0 0 32px;

        display: flex;

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


    .oxf-contact-info {
        min-width: 0;

        display: flex;

        flex-direction: column;

        align-items: flex-start;

        text-align: left;
    }


    .oxf-contact-info a,
    .oxf-contact-info > span:not(.oxf-contact-label) {
        font-size: 12px;

        text-align: left;
    }


    /* =========================================
       BOTTOM BAR
    ========================================= */

    .oxf-bottom-inner {
        min-height: auto;

        padding-top: 14px;
        padding-bottom: 14px;

        display: flex;

        flex-direction: column;

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

        text-align: center;

        gap: 8px;
    }


    .oxf-copyright {
        width: 100%;

        margin: 0;

        font-size: 10px;

        text-align: center;
    }


    .oxf-legal {
        display: flex;

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

        gap: 10px;
    }


    .oxf-legal a {
        font-size: 10px;
    }

}


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

@media (max-width: 480px) {

    .oxf-container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .oxf-main {
        padding-top: 30px;
        padding-bottom: 24px;
    }


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

    .oxf-grid {
        grid-template-columns: 1fr;

        gap: 24px;

        justify-items: center;

        text-align: center;
    }


    /* =========================================
       BRAND
    ========================================= */

    .oxf-brand {
        width: 100%;

        max-width: 340px;

        align-items: center;

        text-align: center;
    }


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

    .oxf-logo {
        padding: 5px 8px;

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

        border-radius: 9px;
    }


    .oxf-logo img {
        width: 155px;

        max-height: 47px;

        border-radius: 6px;
    }


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

    .oxf-description {
        width: 100%;

        max-width: 320px;

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

        font-size: 11.5px;

        line-height: 1.7;

        text-align: center;
    }


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

    .oxf-social {
        justify-content: center;

        margin-top: 15px;
    }


    /* =========================================
       OTHER COLUMNS
    ========================================= */

    .oxf-grid > div:not(.oxf-brand) {
        width: 100%;

        max-width: 280px;

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

        align-items: center;

        text-align: center;
    }


    /* =========================================
       TITLES
    ========================================= */

    .oxf-title {
        width: 100%;

        font-size: 14px;

        margin-bottom: 14px;

        text-align: center;
    }


    .oxf-title::after {
        margin-left: auto;
        margin-right: auto;
    }


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

    .oxf-links {
        width: 100%;

        align-items: center;

        text-align: center;
    }


    .oxf-links li {
        width: 100%;

        justify-content: center;

        margin-bottom: 9px;
    }


    .oxf-links a {
        justify-content: center;

        font-size: 11.5px;

        text-align: center;
    }


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

    .oxf-contact-row {
        max-width: 260px;

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

        justify-content: flex-start;

        text-align: left;
    }


    .oxf-contact-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;
    }


    .oxf-contact-info a,
    .oxf-contact-info > span:not(.oxf-contact-label) {
        font-size: 11.5px;

        text-align: left;
    }


    .oxf-contact-label {
        font-size: 9px;
    }


    /* =========================================
       BOTTOM
    ========================================= */

    .oxf-bottom-inner {
        padding-top: 13px;
        padding-bottom: 13px;

        gap: 7px;
    }


    .oxf-copyright {
        font-size: 9px;

        text-align: center;
    }


    .oxf-legal {
        justify-content: center;

        gap: 9px;
    }


    .oxf-legal a {
        font-size: 9px;
    }

}


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

@media (max-width: 360px) {

    .oxf-container {
        padding-left: 12px;
        padding-right: 12px;
    }


    .oxf-grid {
        gap: 22px;
    }


    .oxf-brand {
        max-width: 300px;
    }


    .oxf-logo img {
        width: 145px;

        max-height: 43px;
    }


    .oxf-description {
        max-width: 285px;

        font-size: 11px;
    }


    .oxf-title {
        font-size: 13px;
    }


    .oxf-links a {
        font-size: 11px;
    }


    .oxf-contact-row {
        max-width: 245px;
    }


    .oxf-contact-info a,
    .oxf-contact-info > span:not(.oxf-contact-label) {
        font-size: 11px;
    }

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

@media (max-width: 360px) {

    .oxf-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oxf-logo img {
        width: 145px;
        max-height: 43px;
    }

    .oxf-description {
        font-size: 11px;
    }

    .oxf-title {
        font-size: 13px;
    }

    .oxf-links a {
        font-size: 11px;
    }

    .oxf-contact-info a,
    .oxf-contact-info > span:not(.oxf-contact-label) {
        font-size: 11px;
    }
}
/* =========================================================
   PREMIUM IT HERO
   UNIQUE PREFIX: ITX
========================================================= */


/* =========================================================
   HERO ROOT
========================================================= */

.itx-hero {
    width: 100%;
    height: 590px;

    position: relative;

    overflow: hidden;

    background: #051c46;
}


/* =========================================================
   CAROUSEL
========================================================= */

.itx-carousel,
.itx-carousel-inner,
.itx-slide {
    width: 100%;
    height: 100%;
}


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

.itx-slide {
    position: relative;

    overflow: hidden;
}


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

.itx-slide-bg {
    position: absolute;

    inset: 0;

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

    transform: scale(1.04);

    transition:
        transform 7s cubic-bezier(.22,.61,.36,1);

    will-change: transform;
}


/* =========================================================
   BACKGROUND VARIATIONS
   Replace these URLs with your actual hero images
========================================================= */

.itx-bg-one {
    background-image:
        url("../img/banner-3.png");
}

.itx-bg-two {
    background-image:
        url("../img/b2.png");
}

.itx-bg-three {
    background-image:
        url("../img/b1.png");
}


/* =========================================================
   IMAGE ZOOM ON ACTIVE SLIDE
========================================================= */

.itx-slide.active .itx-slide-bg {
    transform: scale(1);
}
/* =========================================
   LIGHTER PREMIUM OVERLAY
========================================= */

.itx-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 28, 70, 0.72) 0%,
            rgba(5, 28, 70, 0.58) 38%,
            rgba(5, 28, 70, 0.28) 68%,
            rgba(5, 28, 70, 0.38) 100%
        );

    z-index: 1;
}


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

.itx-container {
    width: 100%;
    max-width: 1280px;

    height: 100%;

    margin: 0 auto;

    padding-left: 30px;
    padding-right: 30px;

    position: relative;

    z-index: 5;
}


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

.itx-slide-content {
    height: 100%;

    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: 35px;
}


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

.itx-content {
    max-width: 650px;

    padding-bottom: 25px;
}


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

.itx-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 7px 12px;

    margin-bottom: 19px;

    color: #ffb27d;

    background: rgba(249,115,22,0.08);

    border: 1px solid rgba(249,115,22,0.22);

    border-radius: 50px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.3px;
}


.itx-eyebrow i {
    color: #f97316;

    font-size: 10px;
}


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

.itx-content h1 {
    margin: 0;

    max-width: 650px;

    color: #ffffff;

    font-family: 'Manrope', sans-serif;

    font-size: clamp(38px, 4.1vw, 62px);

    font-weight: 800;

    line-height: 1.08;

    letter-spacing: -2px;
}


.itx-content h1 span {
    display: block;

    color: #f97316;
}


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

.itx-content p {
    max-width: 560px;

    margin: 22px 0 0;

    color: #c7d2e3;

    font-size: 14px;

    line-height: 1.8;

    font-weight: 400;
}


/* =========================================================
   ACTIONS
========================================================= */

.itx-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    margin-top: 28px;
}


/* PRIMARY */

.itx-primary-btn {
    min-height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 0 19px;

    color: #ffffff;

    background: #f97316;

    border: 1px solid #f97316;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    overflow: hidden;

    position: relative;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}


.itx-primary-btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background: rgba(255,255,255,.18);

    transform: skewX(-25deg);

    transition: left .6s ease;
}


.itx-primary-btn:hover::before {
    left: 140%;
}


.itx-primary-btn:hover {
    color: #ffffff;

    background: #ea650d;

    border-color: #ea650d;

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(249,115,22,.25);
}


.itx-primary-btn i {
    font-size: 10px;

    transition: transform .3s ease;
}


.itx-primary-btn:hover i {
    transform: translateX(4px);
}


/* SECONDARY */

.itx-secondary-btn {
    min-height: 47px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 0 18px;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.30);

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    background: rgba(255,255,255,.04);

    backdrop-filter: blur(5px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.itx-secondary-btn:hover {
    color: #ffffff;

    background: rgba(255,255,255,.10);

    border-color: #f97316;

    transform: translateY(-3px);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.itx-visual {
    width: 100%;
    height: 100%;

    display: flex;

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

    position: relative;
}


/* =========================================================
   ORBIT VISUAL
========================================================= */

.itx-tech-orbit {
    width: 360px;
    height: 360px;

    position: relative;

    display: flex;

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


/* rings */

.itx-orbit-ring {
    position: absolute;

    border-radius: 50%;

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


.itx-ring-one {
    width: 270px;
    height: 270px;

    animation: itxRotate 18s linear infinite;
}


.itx-ring-two {
    width: 350px;
    height: 350px;

    border-style: dashed;

    border-color: rgba(249,115,22,.28);

    animation: itxRotateReverse 25s linear infinite;
}


/* core */

.itx-core {
    width: 105px;
    height: 105px;

    display: flex;

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

    border-radius: 50%;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            #f97316,
            #c94d06
        );

    border: 8px solid rgba(255,255,255,.08);

    box-shadow:
        0 0 0 15px rgba(249,115,22,.05),
        0 15px 45px rgba(0,0,0,.30);

    font-size: 32px;

    z-index: 3;
}


/* floating cards */

.itx-floating-card {
    position: absolute;

    min-width: 82px;

    padding: 10px 12px;

    display: flex;

    align-items: center;

    gap: 7px;

    color: #ffffff;

    background: rgba(8,29,66,.75);

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

    border-radius: 9px;

    backdrop-filter: blur(10px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    font-size: 10px;

    font-weight: 700;

    z-index: 5;
}


.itx-floating-card i {
    color: #f97316;

    font-size: 12px;
}


.itx-card-one {
    top: 20px;
    right: 25px;

    animation: itxFloat 4s ease-in-out infinite;
}


.itx-card-two {
    bottom: 45px;
    left: 0;

    animation: itxFloat 4.5s ease-in-out infinite .5s;
}


.itx-card-three {
    bottom: 8px;
    right: 35px;

    animation: itxFloat 5s ease-in-out infinite 1s;
}


/* =========================================================
   DASHBOARD VISUAL
========================================================= */

.itx-dashboard {
    width: 430px;
    height: 285px;

    border-radius: 13px;

    overflow: hidden;

    background: rgba(7,25,57,.78);

    border: 1px solid rgba(255,255,255,.14);

    box-shadow:
        0 30px 70px rgba(0,0,0,.28);

    backdrop-filter: blur(10px);

    transform: perspective(1000px)
               rotateY(-8deg)
               rotateX(3deg);

    animation: itxDashboardFloat 5s ease-in-out infinite;
}


.itx-dashboard-top {
    height: 32px;

    display: flex;

    align-items: center;

    gap: 5px;

    padding-left: 12px;

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


.itx-dashboard-top span {
    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: rgba(255,255,255,.35);
}


.itx-dashboard-body {
    display: flex;

    height: calc(100% - 32px);
}


.itx-dashboard-sidebar {
    width: 65px;

    padding: 18px 12px;

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


.itx-dashboard-sidebar span {
    display: block;

    width: 100%;
    height: 6px;

    margin-bottom: 14px;

    border-radius: 5px;

    background: rgba(255,255,255,.10);
}


.itx-dashboard-sidebar span:first-child {
    background: rgba(249,115,22,.55);
}


.itx-dashboard-content {
    flex: 1;

    padding: 18px;
}


.itx-chart-header {
    display: flex;

    justify-content: space-between;
}


.itx-chart-header span {
    width: 75px;
    height: 8px;

    border-radius: 5px;

    background: rgba(255,255,255,.14);
}


.itx-chart-header span:last-child {
    width: 40px;

    background: rgba(249,115,22,.45);
}


.itx-chart {
    height: 115px;

    margin-top: 20px;

    display: flex;

    align-items: flex-end;

    gap: 10px;

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


.itx-chart div {
    flex: 1;

    border-radius: 4px 4px 0 0;

    background: rgba(249,115,22,.65);

    animation: itxChart 2.5s ease-in-out infinite alternate;
}


.itx-chart div:nth-child(1) {
    height: 35%;
}

.itx-chart div:nth-child(2) {
    height: 55%;
}

.itx-chart div:nth-child(3) {
    height: 45%;
}

.itx-chart div:nth-child(4) {
    height: 72%;
}

.itx-chart div:nth-child(5) {
    height: 62%;
}

.itx-chart div:nth-child(6) {
    height: 88%;
}


.itx-chart-cards {
    display: flex;

    gap: 8px;

    margin-top: 15px;
}


.itx-chart-cards span {
    flex: 1;

    height: 22px;

    border-radius: 5px;

    background: rgba(255,255,255,.08);
}


/* =========================================================
   NETWORK VISUAL
========================================================= */

.itx-network {
    width: 390px;
    height: 350px;

    position: relative;
}


.itx-network-node {
    width: 62px;
    height: 62px;

    position: absolute;

    display: flex;

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

    border-radius: 50%;

    color: #ffffff;

    background: rgba(8,30,68,.9);

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

    box-shadow:
        0 10px 30px rgba(0,0,0,.20);

    font-size: 17px;

    z-index: 4;
}


.itx-network-node i {
    color: #f97316;
}


.node-main {
    top: 145px;
    left: 164px;

    width: 75px;
    height: 75px;

    background: #f97316;

    border: 8px solid rgba(255,255,255,.08);

    font-size: 22px;
}


.node-main i {
    color: #ffffff;
}


.node-one {
    top: 45px;
    left: 35px;
}


.node-two {
    top: 35px;
    right: 25px;
}


.node-three {
    bottom: 25px;
    left: 55px;
}


.node-four {
    bottom: 20px;
    right: 45px;
}


/* network lines */

.itx-network-line {
    position: absolute;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(249,115,22,.65),
            transparent
        );

    transform-origin: center;

    z-index: 1;
}


.line-one {
    width: 190px;

    top: 130px;
    left: 82px;

    transform: rotate(34deg);
}


.line-two {
    width: 190px;

    top: 130px;
    right: 75px;

    transform: rotate(-34deg);
}


.line-three {
    width: 175px;

    bottom: 110px;
    left: 85px;

    transform: rotate(-30deg);
}


.line-four {
    width: 175px;

    bottom: 110px;
    right: 80px;

    transform: rotate(30deg);
}


/* =========================================================
   CONTROLS
========================================================= */

.itx-control {
    width: 52px;

    opacity: 1;

    top: auto;
    bottom: 34px;

    height: 42px;

    z-index: 10;
}


.itx-prev {
    left: 30px;
}


.itx-next {
    right: 30px;
}


.itx-control-icon {
    width: 38px;
    height: 38px;

    display: flex;

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

    border: 1px solid rgba(255,255,255,.18);

    border-radius: 50%;

    color: #ffffff;

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(6px);

    font-size: 11px;

    transition: all .3s ease;
}


.itx-control:hover .itx-control-icon {
    background: #f97316;

    border-color: #f97316;

    transform: translateY(-2px);
}


/* =========================================================
   INDICATORS
========================================================= */

.itx-indicators {
    position: absolute;

    bottom: 49px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 6px;

    margin: 0;
}


.itx-indicators button {
    width: 24px;
    height: 3px;

    padding: 0;

    margin: 0;

    border: 0;

    border-radius: 20px;

    background: rgba(255,255,255,.28);

    opacity: 1;

    transition:
        width .4s ease,
        background .4s ease;
}


.itx-indicators button.active {
    width: 45px;

    background: #f97316;
}


/* =========================================================
   SLIDE CONTENT ANIMATION
========================================================= */

.itx-slide .itx-content {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .8s ease .2s,
        transform .8s cubic-bezier(.22,1,.36,1) .2s;
}


.itx-slide.active .itx-content {
    opacity: 1;

    transform: translateY(0);
}


.itx-slide .itx-visual {
    opacity: 0;

    transform: translateX(35px) scale(.97);

    transition:
        opacity 1s ease .35s,
        transform 1s cubic-bezier(.22,1,.36,1) .35s;
}


.itx-slide.active .itx-visual {
    opacity: 1;

    transform: translateX(0) scale(1);
}


/* =========================================================
   CAROUSEL TRANSITION
========================================================= */

.itx-carousel .carousel-item {
    transition:
        opacity 1.15s ease-in-out !important;
}


.itx-carousel .carousel-item-next,
.itx-carousel .carousel-item-prev,
.itx-carousel .carousel-item.active {
    display: block;
}


.itx-carousel .carousel-item-next:not(.carousel-item-start),
.itx-carousel .active.carousel-item-end {
    opacity: 0;
}


.itx-carousel .carousel-item-prev:not(.carousel-item-end),
.itx-carousel .active.carousel-item-start {
    opacity: 0;
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes itxRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes itxRotateReverse {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


@keyframes itxFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@keyframes itxDashboardFloat {

    0%,
    100% {
        transform:
            perspective(1000px)
            rotateY(-8deg)
            rotateX(3deg)
            translateY(0);
    }

    50% {
        transform:
            perspective(1000px)
            rotateY(-8deg)
            rotateX(3deg)
            translateY(-8px);
    }
}


@keyframes itxChart {

    from {
        opacity: .65;
    }

    to {
        opacity: 1;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .itx-hero {
        height: 560px;
    }

    .itx-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .itx-slide-content {
        gap: 20px;
    }

    .itx-content h1 {
        font-size: 48px;
    }

    .itx-content p {
        font-size: 13px;
    }

    .itx-tech-orbit {
        transform: scale(.88);
    }

    .itx-dashboard {
        transform:
            perspective(1000px)
            rotateY(-6deg)
            rotateX(3deg)
            scale(.88);
    }

    .itx-network {
        transform: scale(.88);
    }
}


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

@media (max-width: 991px) {

    .itx-hero {
        height: 620px;
    }

    .itx-slide-content {
        grid-template-columns: 1fr;

        text-align: center;

        align-content: center;

        gap: 0;
    }

    .itx-content {
        max-width: 700px;

        margin: 0 auto;

        padding-bottom: 0;
    }

    .itx-eyebrow {
        margin-bottom: 14px;
    }

    .itx-content h1 {
        font-size: 44px;
    }

    .itx-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .itx-actions {
        justify-content: center;
    }

    .itx-visual {
        display: none;
    }

    .itx-control {
        bottom: 28px;
    }

    .itx-indicators {
        bottom: 43px;
    }

    .itx-prev {
        left: 18px;
    }

    .itx-next {
        right: 18px;
    }
}


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

@media (max-width: 767px) {

    .itx-hero {
        height: 600px;
    }

    .itx-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .itx-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(5, 28, 70, 0.48) 0%,
                rgba(5, 28, 70, 0.62) 65%,
                rgba(5, 28, 70, 0.76) 100%
            );
    }

    .itx-slide-content {
        align-content: center;

        padding-bottom: 25px;
    }

    .itx-content h1 {
        font-size: clamp(32px, 9vw, 42px);

        line-height: 1.1;

        letter-spacing: -1.3px;
    }

    .itx-content p {
        margin-top: 17px;

        font-size: 12px;

        line-height: 1.7;

        max-width: 520px;
    }

    .itx-eyebrow {
        padding: 6px 10px;

        font-size: 9.5px;
    }

    .itx-actions {
        margin-top: 23px;

        flex-direction: column;

        width: 100%;

        gap: 9px;
    }

    .itx-primary-btn,
    .itx-secondary-btn {
        width: min(100%, 270px);

        min-height: 44px;

        font-size: 11px;
    }

    .itx-control {
        width: 42px;

        bottom: 20px;
    }

    .itx-control-icon {
        width: 34px;
        height: 34px;

        font-size: 9px;
    }

    .itx-prev {
        left: 8px;
    }

    .itx-next {
        right: 8px;
    }

    .itx-indicators {
        bottom: 35px;
    }

    .itx-indicators button {
        width: 18px;
        height: 2px;
    }

    .itx-indicators button.active {
        width: 34px;
    }
}


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

@media (max-width: 480px) {

    .itx-hero {
        height: 570px;
    }

    .itx-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .itx-slide-content {
        padding-bottom: 22px;
    }

    .itx-eyebrow {
        margin-bottom: 12px;

        font-size: 9px;
    }

    .itx-content h1 {
        font-size: 31px;

        letter-spacing: -1px;
    }

    .itx-content p {
        font-size: 11.5px;

        line-height: 1.65;

        margin-top: 15px;
    }

    .itx-actions {
        margin-top: 20px;
    }

    .itx-primary-btn,
    .itx-secondary-btn {
        min-height: 43px;

        width: min(100%, 250px);
    }

    .itx-control {
        bottom: 16px;
    }

    .itx-indicators {
        bottom: 30px;
    }
}


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

@media (max-width: 360px) {

    .itx-hero {
        height: 550px;
    }

    .itx-content h1 {
        font-size: 28px;
    }

    .itx-content p {
        font-size: 10.8px;
    }

    .itx-primary-btn,
    .itx-secondary-btn {
        min-height: 41px;

        font-size: 10.5px;
    }
}
/* ABOUT US  SECTION */

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

    position: relative;

    overflow: hidden;

    background: #ffffff;

    font-family: 'Manrope', sans-serif;

    padding: 95px 0;
}


/* subtle background glow */

.ox-about-section::before {
    content: "";

    position: absolute;

    width: 430px;
    height: 430px;

    left: -300px;
    top: 50px;

    border-radius: 50%;

    background: rgba(249,115,22,0.035);

    pointer-events: none;
}


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

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

    max-width: 1280px;

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

    padding-left: 30px;
    padding-right: 30px;

    position: relative;

    z-index: 2;
}


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

.ox-about-grid {
    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    align-items: center;

    gap: 85px;
}


/* =========================================================
   LEFT VISUAL
========================================================= */

.ox-about-visual {
    height: 490px;

    position: relative;

    width: 100%;
}


/* =========================================================
   MAIN IMAGE
========================================================= */

.ox-about-image-main {
    position: absolute;

    top: 15px;
    left: 0;

    width: 78%;
    height: 405px;

    overflow: hidden;

    border-radius: 22px;

    background: #e8edf4;

    box-shadow:
        0 25px 60px rgba(15,23,42,0.16);

    z-index: 2;
}


/* main image */

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

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.22,1,.36,1);
}


/* dark image overlay */

.ox-about-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 45%,
            rgba(5,28,70,0.78) 100%
        );

    z-index: 2;

    pointer-events: none;
}


/* image hover */

.ox-about-image-main:hover img {
    transform: scale(1.06);
}


/* =========================================================
   MAIN IMAGE CAPTION
========================================================= */

.ox-about-image-caption {
    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    z-index: 4;

    display: flex;

    align-items: center;

    gap: 11px;
}


.ox-about-image-caption span {
    width: 32px;
    height: 32px;

    display: flex;

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

    border-radius: 8px;

    background: #f97316;

    color: #ffffff;

    font-size: 10px;

    font-weight: 800;
}


.ox-about-image-caption strong {
    color: #ffffff;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: -.2px;
}


/* =========================================================
   SECONDARY IMAGE
========================================================= */

.ox-about-image-secondary {
    position: absolute;

    right: 0;
    bottom: 0;

    width: 48%;
    height: 260px;

    overflow: hidden;

    border-radius: 19px;

    background: #e8edf4;

    border: 7px solid #ffffff;

    box-shadow:
        0 20px 50px rgba(15,23,42,0.18);

    z-index: 4;
}


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

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.22,1,.36,1);
}


.ox-about-secondary-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            145deg,
            rgba(5,28,70,0.08),
            rgba(5,28,70,0.42)
        );

    pointer-events: none;
}


.ox-about-image-secondary:hover img {
    transform: scale(1.08);
}


/* =========================================================
   SECONDARY IMAGE BUTTON
========================================================= */

.ox-about-secondary-badge {
    width: 39px;
    height: 39px;

    position: absolute;

    right: 14px;
    bottom: 14px;

    display: flex;

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

    border-radius: 50%;

    background: #ffffff;

    color: #f97316;

    font-size: 11px;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.18);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


.ox-about-image-secondary:hover .ox-about-secondary-badge {
    background: #f97316;

    color: #ffffff;

    transform: rotate(45deg);
}


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

.ox-about-experience {
    position: absolute;

    left: -18px;
    bottom: 42px;

    width: 128px;

    padding: 16px 17px;

    background: #ffffff;

    border-radius: 13px;

    border: 1px solid #edf0f4;

    box-shadow:
        0 18px 45px rgba(15,23,42,0.13);

    z-index: 6;

    animation:
        oxAboutImageFloat 5s ease-in-out infinite;
}


.ox-about-experience strong {
    display: block;

    color: #f97316;

    font-size: 25px;

    font-weight: 800;

    line-height: 1;
}


.ox-about-experience span {
    display: block;

    margin-top: 6px;

    color: #64748b;

    font-size: 10px;

    font-weight: 700;

    line-height: 1.4;
}


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

.ox-about-image-decoration {
    position: absolute;

    right: 18px;
    top: 5px;

    display: grid;

    grid-template-columns: repeat(4, 5px);

    gap: 6px;

    z-index: 1;
}


.ox-about-image-decoration span {
    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: #f97316;

    opacity: .35;
}


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

.ox-about-content {
    max-width: 650px;
}


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

.ox-about-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #f97316;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.4px;
}


.ox-about-eyebrow > span {
    width: 27px;
    height: 2px;

    display: block;

    background: #f97316;

    border-radius: 10px;
}


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

.ox-about-content h2 {
    margin: 15px 0 20px;

    color: #071b3d;

    font-size: clamp(36px, 3.5vw, 50px);

    line-height: 1.12;

    letter-spacing: -1.7px;

    font-weight: 700;
}


.ox-about-content h2 strong {
    display: block;

    color: #f97316;

    font-weight: 800;
}


/* =========================================================
   INTRO
========================================================= */

.ox-about-intro {
    margin: 0 0 13px;

    color: #334155;

    font-size: 16px;

    line-height: 1.75;

    font-weight: 600;
}


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

.ox-about-text {
    margin: 0;

    color: #64748b;

    font-size: 13.5px;

    line-height: 1.85;

    font-weight: 400;
}


/* =========================================================
   SERVICES
========================================================= */

.ox-about-services {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 20px;

    margin-top: 27px;
}


.ox-about-service {
    display: flex;

    align-items: center;

    gap: 11px;

    padding: 11px 0;

    border-bottom: 1px solid #edf1f5;

    transition: transform .3s ease;
}


.ox-about-service:hover {
    transform: translateX(4px);
}


.ox-about-service-icon {
    width: 37px;
    height: 37px;

    flex: 0 0 37px;

    display: flex;

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

    border-radius: 9px;

    background: #fff5ed;

    color: #f97316;

    font-size: 13px;

    transition: all .3s ease;
}


.ox-about-service:hover .ox-about-service-icon {
    background: #f97316;

    color: #ffffff;

    transform: translateY(-2px);
}


.ox-about-service strong {
    display: block;

    color: #172033;

    font-size: 13px;

    font-weight: 800;
}


.ox-about-service div span {
    display: block;

    margin-top: 3px;

    color: #7a8799;

    font-size: 13px;
}


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

.ox-about-button {
    display: inline-flex;

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

    gap: 11px;

    min-height: 46px;

    margin-top: 27px;

    padding: 0 19px;

    color: #ffffff;

    background: #051c46;

    border-radius: 7px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 800;

    transition:
        background .3s ease,
        transform .3s ease,
        box-shadow .3s ease;
}


.ox-about-button i {
    font-size: 10px;

    transition: transform .3s ease;
}


.ox-about-button:hover {
    color: #ffffff;

    background: #f97316;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(249,115,22,0.20);
}


.ox-about-button:hover i {
    transform: translateX(4px);
}


/* =========================================================
   FLOAT ANIMATION
========================================================= */

@keyframes oxAboutImageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .ox-about-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .ox-about-grid {
        gap: 55px;
    }

    .ox-about-visual {
        height: 450px;
    }

    .ox-about-image-main {
        height: 370px;
    }

    .ox-about-image-secondary {
        height: 235px;
    }

    .ox-about-content h2 {
        font-size: 43px;
    }

    .ox-about-intro {
        font-size: 15px;
    }
}


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

@media (max-width: 991px) {

    .ox-about-section {
        padding: 75px 0;
    }

    .ox-about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }

    .ox-about-visual {
        width: min(600px, 100%);

        height: 450px;

        margin: 0 auto;
    }

    .ox-about-content {
        max-width: 720px;

        margin: 0 auto;

        text-align: center;
    }

    .ox-about-eyebrow {
        justify-content: center;
    }

    .ox-about-content h2 {
        font-size: 42px;
    }

    .ox-about-services {
        text-align: left;
    }

    .ox-about-button {
        margin-left: auto;
        margin-right: auto;
    }
}


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

@media (max-width: 767px) {

    .ox-about-section {
        padding: 60px 0;
    }

    .ox-about-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .ox-about-grid {
        gap: 42px;
    }


    /* VISUAL */

    .ox-about-visual {
        height: 350px;

        width: 100%;
    }


    .ox-about-image-main {
        top: 10px;
        left: 0;

        width: 76%;
        height: 295px;

        border-radius: 17px;
    }


    .ox-about-image-secondary {
        width: 48%;
        height: 190px;

        right: 0;
        bottom: 0;

        border-width: 5px;

        border-radius: 15px;
    }


    .ox-about-image-caption {
        left: 15px;
        right: 15px;
        bottom: 14px;

        gap: 8px;
    }


    .ox-about-image-caption span {
        width: 28px;
        height: 28px;

        font-size: 8px;
    }


    .ox-about-image-caption strong {
        font-size: 11px;
    }


    .ox-about-experience {
        left: -5px;
        bottom: 22px;

        width: 105px;

        padding: 12px;

        border-radius: 10px;
    }


    .ox-about-experience strong {
        font-size: 21px;
    }


    .ox-about-experience span {
        font-size: 8.5px;
    }


    .ox-about-float-one {
        display: none;
    }


    .ox-about-image-decoration {
        right: 8px;
        top: 0;
    }


    /* CONTENT */

    .ox-about-eyebrow {
        font-size: 9px;

        letter-spacing: 1px;
    }


    .ox-about-content h2 {
        margin-top: 13px;

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1px;
    }


    .ox-about-intro {
        font-size: 13.5px;

        line-height: 1.7;
    }


    .ox-about-text {
        font-size: 12px;

        line-height: 1.75;
    }


    /* SERVICES */

    .ox-about-services {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: 21px;
    }


    .ox-about-service {
        padding: 11px 0;
    }


    .ox-about-service strong {
        font-size: 12px;
    }


    .ox-about-service div span {
        font-size: 14px;
    }


    /* BUTTON */

    .ox-about-button {
        margin-top: 22px;

        min-height: 44px;

        font-size: 11px;
    }
}


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

@media (max-width: 480px) {

    .ox-about-section {
        padding: 52px 0;
    }

    .ox-about-container {
        padding-left: 14px;
        padding-right: 14px;
    }


    /* VISUAL */

    .ox-about-visual {
        height: 305px;
    }


    .ox-about-image-main {
        width: 77%;
        height: 255px;

        border-radius: 15px;
    }


    .ox-about-image-secondary {
        width: 49%;
        height: 165px;

        border-width: 4px;

        border-radius: 13px;
    }


    .ox-about-image-caption {
        left: 11px;
        bottom: 11px;
    }


    .ox-about-image-caption span {
        width: 25px;
        height: 25px;
    }


    .ox-about-image-caption strong {
        font-size: 9px;
    }


    .ox-about-secondary-badge {
        width: 32px;
        height: 32px;

        right: 9px;
        bottom: 9px;

        font-size: 9px;
    }


    .ox-about-experience {
        left: -2px;
        bottom: 13px;

        width: 94px;

        padding: 10px;
    }


    .ox-about-experience strong {
        font-size: 19px;
    }


    .ox-about-experience span {
        font-size: 8px;
    }


    /* CONTENT */

    .ox-about-content h2 {
        font-size: 30px;

        letter-spacing: -.8px;
    }


    .ox-about-intro {
        font-size: 12.5px;
    }


    .ox-about-text {
        font-size: 11.5px;
    }


    .ox-about-service-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 11px;
    }


    .ox-about-service strong {
        font-size: 11px;
    }


    .ox-about-button {
        width: 100%;

        max-width: 270px;
    }
}


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

@media (max-width: 360px) {

    .ox-about-visual {
        height: 285px;
    }

    .ox-about-image-main {
        height: 235px;
    }

    .ox-about-image-secondary {
        height: 150px;
    }

    .ox-about-experience {
        width: 88px;
    }

    .ox-about-content h2 {
        font-size: 27px;
    }

    .ox-about-intro {
        font-size: 12px;
    }

    .ox-about-text {
        font-size: 11px;
    }
}
/* SERVICES SECTION */

.oxs-section {
    width: 100%;

    position: relative;

    overflow: hidden;

    background: #f7f8fa;

    font-family: 'Manrope', sans-serif;

    padding: 30px 0;
}


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

.oxs-container {
    width: 100%;

    max-width: 1280px;

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

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


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

.oxs-header {
    display: grid;

    grid-template-columns: 1fr 0.75fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 48px;
}


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

.oxs-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #f97316;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.oxs-eyebrow > span {
    width: 28px;
    height: 2px;

    background: #f97316;

    border-radius: 10px;
}


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

.oxs-header-left h2 {
    margin: 14px 0 0;

    color: #071b3d;

    font-size: clamp(36px, 3.5vw, 50px);

    line-height: 1.12;

    letter-spacing: -1.7px;

    font-weight: 700;
}


.oxs-header-left h2 strong {
    display: block;

    color: #f97316;

    font-weight: 800;
}


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

.oxs-header-text {
    max-width: 490px;

    margin: 0;

    color: #667487;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.oxs-grid {
    display: grid;

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

    gap: 22px;
}


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

.oxs-card {
    width: 100%;

    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e6eaf0;

    border-radius: 14px;

    box-shadow:
        0 8px 25px rgba(15, 23, 42, 0.045);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;
}


.oxs-card:hover {
    transform: translateY(-7px);

    border-color: rgba(249,115,22,0.30);

    box-shadow:
        0 20px 45px rgba(15,23,42,0.11);
}


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

.oxs-image {
    width: 100%;

    height: 225px;

    position: relative;

    overflow: hidden;

    background: #dfe5ec;
}


.oxs-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1);
}


.oxs-card:hover .oxs-image img {
    transform: scale(1.07);
}


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

.oxs-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(5,28,70,0.02) 25%,
            rgba(5,28,70,0.62) 100%
        );

    transition:
        background .45s ease;
}


.oxs-card:hover .oxs-image-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(5,28,70,0.08) 20%,
            rgba(5,28,70,0.70) 100%
        );
}


/* =========================================================
   NUMBER
========================================================= */

.oxs-card-number {
    position: absolute;

    top: 16px;
    left: 17px;

    color: rgba(255,255,255,0.86);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1px;

    z-index: 2;
}


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

.oxs-image-icon {
    width: 46px;
    height: 46px;

    position: absolute;

    right: 16px;
    bottom: 16px;

    display: flex;

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

    background: rgba(255,255,255,0.95);

    color: #f97316;

    border-radius: 10px;

    font-size: 16px;

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

    transition:
        background .35s ease,
        color .35s ease,
        transform .45s cubic-bezier(.22,1,.36,1);
}


.oxs-card:hover .oxs-image-icon {
    background: #f97316;

    color: #ffffff;

    transform:
        translateY(-3px)
        rotate(-4deg);
}


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

.oxs-card-content {
    min-height: 154px;

    display: flex;

    flex-direction: column;

    padding: 21px 21px 23px;
}


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

.oxs-card-content h3 {
    margin: 0;

    color: #14233b;

    font-size: 16px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: -.25px;

    transition:
        color .3s ease;
}


.oxs-card:hover .oxs-card-content h3 {
    color: #f97316;
}


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

.oxs-card-content p {
    margin: 9px 0 0;

    color: #69778a;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 400;
}


/* =========================================================
   SINGLE CTA
========================================================= */

.oxs-footer {
    display: flex;

    justify-content: center;

    margin-top: 42px;
}


.oxs-button {
    min-height: 49px;

    display: inline-flex;

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

    gap: 12px;

    padding: 0 22px;

    position: relative;

    overflow: hidden;

    color: #ffffff;

    background: #071f4d;

    border-radius: 7px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition:
        background .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


/* orange sweep */

.oxs-button::before {
    content: "";

    position: absolute;

    top: 0;
    left: -110%;

    width: 100%;
    height: 100%;

    background: #f97316;

    transform: skewX(-18deg);

    transition:
        left .5s cubic-bezier(.22,1,.36,1);
}


.oxs-button span,
.oxs-button i {
    position: relative;

    z-index: 2;
}


.oxs-button i {
    font-size: 10px;

    transition:
        transform .35s ease;
}


.oxs-button:hover {
    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 13px 28px rgba(7,31,77,0.18);
}


.oxs-button:hover::before {
    left: 0;
}


.oxs-button:hover i {
    transform: translateX(5px);
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .oxs-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .oxs-header {
        gap: 45px;
    }

    .oxs-image {
        height: 205px;
    }

    .oxs-card-content {
        min-height: 160px;
    }
}


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

@media (max-width: 991px) {

    .oxs-section {
        padding: 75px 0;
    }

    .oxs-header {
        grid-template-columns: 1fr;

        gap: 17px;

        margin-bottom: 35px;
    }

    .oxs-header-text {
        max-width: 680px;
    }

    .oxs-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 18px;
    }

    .oxs-image {
        height: 215px;
    }
}


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

@media (max-width: 767px) {

    .oxs-section {
        padding: 60px 0;
    }

    .oxs-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* header */

    .oxs-header {
        text-align: center;

        margin-bottom: 30px;
    }

    .oxs-eyebrow {
        justify-content: center;

        font-size: 9px;
    }

    .oxs-header-left h2 {
        margin-top: 12px;

        font-size: 34px;

        line-height: 1.12;

        letter-spacing: -1px;
    }

    .oxs-header-text {
        max-width: 540px;

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

        font-size: 12.5px;

        line-height: 1.75;
    }


    /* cards */

    .oxs-grid {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .oxs-card {
        border-radius: 13px;
    }

    .oxs-image {
        height: 220px;
    }

    .oxs-card-content {
        min-height: auto;

        padding: 19px 19px 21px;
    }

    .oxs-card-content h3 {
        font-size: 15px;
    }

    .oxs-card-content p {
        font-size: 13px;

        line-height: 1.7;
    }


    /* button */

    .oxs-footer {
        margin-top: 30px;
    }

    .oxs-button {
        min-height: 47px;

        padding: 0 20px;

        font-size: 13px;
    }
}


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

@media (max-width: 480px) {

    .oxs-section {
        padding: 52px 0;
    }

    .oxs-container {
        padding-left: 14px;
        padding-right: 14px;
    }


    /* heading */

    .oxs-header-left h2 {
        font-size: 30px;

        letter-spacing: -.8px;
    }

    .oxs-header-text {
        font-size: 12px;
    }


    /* cards */

    .oxs-grid {
        gap: 14px;
    }

    .oxs-image {
        height: 195px;
    }

    .oxs-card-content {
        padding: 18px;
    }

    .oxs-card-content h3 {
        font-size: 14px;
    }

    .oxs-card-content p {
        margin-top: 8px;

        font-size: 13px;

        line-height: 1.65;
    }


    .oxs-image-icon {
        width: 41px;
        height: 41px;

        right: 13px;
        bottom: 13px;

        font-size: 14px;
    }


    /* CTA */

    .oxs-footer {
        margin-top: 25px;
    }

    .oxs-button {
        width: 100%;

        max-width: 260px;

        min-height: 46px;

        font-size: 13px;
    }
}


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

@media (max-width: 360px) {

    .oxs-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oxs-header-left h2 {
        font-size: 27px;
    }

    .oxs-header-text {
        font-size: 11.5px;
    }

    .oxs-image {
        height: 180px;
    }

    .oxs-card-content {
        padding: 16px;
    }

    .oxs-card-content h3 {
        font-size: 13.5px;
    }

    .oxs-card-content p {
        font-size: 12.5px;
    }
}
/* =========================================================
   ORANGE IT SOLUTIONS
   COMPACT WHY CHOOSE US STRIP

   UNIQUE PREFIX:
   oxi-strip-
========================================================= */


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

.oxi-strip-section {
    width: 100%;

    min-height: 270px;

    position: relative;

    display: flex;

    align-items: stretch;

    overflow: hidden;

    background: #061d46;

    font-family: 'Manrope', sans-serif;

    color: #ffffff;
}


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

.oxi-strip-bg {
    position: absolute;

    inset: 0;

    background-image:
        url('../images/why-choose-us.jpg');

    background-size: cover;

    background-position: center;

    opacity: .32;

    z-index: 0;
}


/* =========================================================
   BLUE OVERLAY
========================================================= */

.oxi-strip-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,25,62,.97) 0%,
            rgba(5,30,70,.94) 42%,
            rgba(4,27,65,.90) 100%
        );

    z-index: 1;
}


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

.oxi-strip-container {
    width: 100%;

    max-width: 1280px;

    min-height: 270px;

    margin: 0 auto;

    padding: 30px;

    display: grid;

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

    position: relative;

    z-index: 2;
}


/* =========================================================
   INTRO
========================================================= */

.oxi-strip-intro {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-right: 35px;

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


/* =========================================================
   LABEL
========================================================= */

.oxi-strip-label {
    display: block;

    margin-bottom: 5px;

    color: #ff8a3d;

    font-size: 12px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.1px;
}


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

.oxi-strip-intro h2 {
    margin: 0;

    color: #ffffff;

    font-size: 25px;

    line-height: 1.12;

    letter-spacing: -.7px;

    font-weight: 700;
}


.oxi-strip-intro h2 strong {
    display: block;

    font-weight: 800;
}


.oxi-strip-intro h2 strong span {
    color: #f97316;
}


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

.oxi-strip-intro p {
    max-width: 285px;

    margin: 9px 0 11px;

    color: #a9bad1;

    font-size: 13px;

    line-height: 1.6;
}


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

.oxi-strip-button {
    width: fit-content;

    min-height: 27px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 0 10px;

    color: #ffffff;

    border: 1px solid rgba(255,255,255,.30);

    border-radius: 4px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .3s ease;
}


.oxi-strip-button i {
    font-size: 11px;

    transition:
        transform .3s ease;
}


.oxi-strip-button:hover {
    color: #ffffff;

    background: #f97316;

    border-color: #f97316;

    transform: translateY(-2px);
}


.oxi-strip-button:hover i {
    transform: translateX(3px);
}


/* =========================================================
   FEATURE
========================================================= */

.oxi-strip-feature {
    min-width: 0;

    position: relative;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 25px 18px 20px;

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

    transition:
        background .35s ease,
        transform .35s ease;
}


.oxi-strip-feature:last-child {
    border-right: 0;
}


.oxi-strip-feature:hover {
    background: rgba(255,255,255,.035);

    transform: translateY(-2px);
}


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

.oxi-strip-icon {
    width: 32px;
    height: 32px;

    margin-bottom: 12px;

    display: flex;

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

    border-radius: 7px;

    font-size: 11px;

    transition:
        transform .35s ease,
        background .35s ease,
        color .35s ease;
}


.oxi-strip-feature:hover .oxi-strip-icon {
    transform:
        translateY(-3px)
        rotate(-4deg);
}


/* blue */

.oxi-icon-blue {
    color: #69a9ff;

    background: rgba(71,145,255,.12);

    border: 1px solid rgba(71,145,255,.25);
}


/* orange */

.oxi-icon-orange {
    color: #ff873b;

    background: rgba(249,115,22,.12);

    border: 1px solid rgba(249,115,22,.25);
}


/* light */

.oxi-icon-light {
    color: #d8e7ff;

    background: rgba(216,231,255,.09);

    border: 1px solid rgba(216,231,255,.18);
}


/* =========================================================
   NUMBER
========================================================= */

.oxi-strip-number {
    position: absolute;

    top: 22px;

    right: 18px;

    color: rgba(255,255,255,.25);

    font-size: 8px;

    font-weight: 800;

    letter-spacing: .8px;

    transition:
        color .3s ease;
}


.oxi-strip-feature:hover .oxi-strip-number {
    color: #f97316;
}


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

.oxi-strip-feature h3 {
    margin: 0;

    color: #ffffff;

    font-size: 13px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: -.1px;

    transition:
        color .3s ease;
}


.oxi-strip-feature:hover h3 {
    color: #ff965b;
}


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

.oxi-strip-feature p {
    margin: 7px 0 0;

    color: #8fa5c0;

    font-size: 12px;

    line-height: 1.55;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .oxi-strip-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .oxi-strip-intro {
        padding-right: 25px;
    }

    .oxi-strip-feature {
        padding-left: 14px;
        padding-right: 14px;
    }

    .oxi-strip-intro h2 {
        font-size: 22px;
    }

    .oxi-strip-feature h3 {
        font-size: 12px;
    }

    .oxi-strip-feature p {
        font-size: 8.5px;
    }
}


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

@media (max-width: 991px) {

    .oxi-strip-section {
        min-height: auto;
    }

    .oxi-strip-container {
        min-height: auto;

        grid-template-columns:
            1fr 1fr;

        padding: 35px 25px;
    }

    .oxi-strip-intro {
        grid-column: 1 / -1;

        padding-right: 0;

        padding-bottom: 25px;

        border-right: 0;

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

        align-items: center;

        text-align: center;
    }

    .oxi-strip-intro p {
        max-width: 550px;
    }

    .oxi-strip-feature {
        min-height: 140px;

        padding: 22px;

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

    .oxi-strip-feature:nth-child(3) {
        border-right: 0;
    }

    .oxi-strip-feature:nth-child(5),
    .oxi-strip-feature:nth-child(6) {
        border-bottom: 0;
    }
}


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

@media (max-width: 767px) {

    .oxi-strip-container {
        padding: 38px 18px;
    }

    .oxi-strip-intro h2 {
        font-size: 27px;
    }

    .oxi-strip-intro p {
        font-size: 11px;

        line-height: 1.65;
    }

    .oxi-strip-button {
        min-height: 30px;

        font-size: 11px;
    }

    .oxi-strip-feature {
        min-height: 125px;

        padding: 19px 16px;
    }

    .oxi-strip-feature h3 {
        font-size: 13px;
    }

    .oxi-strip-feature p {
        font-size: 10.5px;

        line-height: 1.55;
    }

    .oxi-strip-icon {
        width: 34px;
        height: 34px;

        font-size: 11px;
    }
}


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

@media (max-width: 480px) {

    .oxi-strip-container {
        grid-template-columns: 1fr;

        padding: 35px 15px;
    }

    .oxi-strip-intro {
        padding-bottom: 25px;
    }

    .oxi-strip-intro h2 {
        font-size: 25px;
    }

    .oxi-strip-intro p {
        max-width: 330px;

        font-size: 13px;
    }

    .oxi-strip-feature {
        min-height: 105px;

        padding: 17px 13px;

        border-right: 0 !important;

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

    .oxi-strip-feature:last-child {
        border-bottom: 0;
    }

    .oxi-strip-feature h3 {
        font-size: 13px;
    }

    .oxi-strip-feature p {
        max-width: 330px;

        font-size: 12px;
    }

    .oxi-strip-number {
        right: 13px;
    }
}


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

@media (max-width: 360px) {

    .oxi-strip-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oxi-strip-intro h2 {
        font-size: 23px;
    }

    .oxi-strip-intro p {
        font-size: 10px;
    }

    .oxi-strip-feature {
        min-height: 100px;
    }

    .oxi-strip-feature h3 {
        font-size: 12.5px;
    }

    .oxi-strip-feature p {
        font-size: 10px;
    }
}
/* FEATURED PROJECTS SECTION */

.oxp-section {
    width: 100%;

    position: relative;

    overflow: hidden;

    background: #ffffff;

    font-family: 'Manrope', sans-serif;

    padding: 26px 0;
}


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

.oxp-container {
    width: 100%;

    max-width: 1280px;

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

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


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

.oxp-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 38px;
}


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

.oxp-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    color: #f97316;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.oxp-eyebrow > span {
    width: 28px;
    height: 2px;

    display: block;

    background: #f97316;

    border-radius: 10px;
}


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

.oxp-heading h2 {
    margin: 13px 0 0;

    color: #071b3d;

    font-size: clamp(36px, 3.4vw, 48px);

    line-height: 1.12;

    letter-spacing: -1.5px;

    font-weight: 700;
}


.oxp-heading h2 strong {
    color: #f97316;

    font-weight: 800;
}


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

.oxp-navigation {
    display: flex;

    align-items: center;

    gap: 8px;

    flex-shrink: 0;
}
.oxp-navigation button {
    width: 43px;
    height: 43px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid #082657;
    border-radius: 7px;

    background: #082657;
    color: #ffffff;

    font-size: 12px;

    cursor: pointer;

    transition:
        background .35s ease,
        color .35s ease,
        border-color .35s ease,
        transform .35s ease,
        box-shadow .35s ease;
}


/* Premium hover */

.oxp-navigation button:hover {
    background: #f97316;

    border-color: #f97316;

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 10px 22px rgba(249,115,22,0.20);
}


/* Disabled arrow */

.oxp-navigation button.swiper-button-disabled {
    opacity: .45;

    cursor: default;

    transform: none;

    box-shadow: none;
}


/* Disabled hover should stay blue */

.oxp-navigation button.swiper-button-disabled:hover {
    background: #082657;

    border-color: #082657;

    color: #ffffff;

    transform: none;
}
/* =========================================================
   SWIPER
========================================================= */

.oxp-swiper {
    width: 100%;

    overflow: hidden;
}


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

.oxp-swiper .swiper-slide {
    height: auto;

    display: flex;
}


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

.oxp-card {
    width: 100%;

    min-width: 0;

    display: flex;

    flex-direction: column;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e4e9ef;

    border-radius: 13px;

    text-decoration: none;

    box-shadow:
        0 7px 25px rgba(15,23,42,0.045);

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        border-color .4s ease,
        box-shadow .45s ease;
}


.oxp-card:hover {
    transform: translateY(-7px);

    border-color: rgba(249,115,22,.30);

    box-shadow:
        0 20px 42px rgba(15,23,42,.11);
}


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

.oxp-image {
    width: 100%;

    height: 205px;

    position: relative;

    overflow: hidden;

    background: #e6ebf1;
}


.oxp-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .8s cubic-bezier(.22,1,.36,1);
}


.oxp-card:hover .oxp-image img {
    transform: scale(1.07);
}


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

.oxp-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(4,25,62,0) 45%,
            rgba(4,25,62,.50) 100%
        );

    opacity: .85;

    transition:
        opacity .45s ease;
}


.oxp-card:hover .oxp-image-overlay {
    opacity: 1;
}


/* =========================================================
   PROJECT ARROW
========================================================= */

.oxp-project-arrow {
    width: 37px;
    height: 37px;

    position: absolute;

    right: 13px;
    bottom: 13px;

    display: flex;

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

    border-radius: 7px;

    background: rgba(255,255,255,.96);

    color: #f97316;

    font-size: 10px;

    box-shadow:
        0 7px 18px rgba(0,0,0,.14);

    opacity: 0;

    transform:
        translateY(8px);

    transition:
        opacity .35s ease,
        transform .45s cubic-bezier(.22,1,.36,1),
        background .3s ease,
        color .3s ease;
}


.oxp-card:hover .oxp-project-arrow {
    opacity: 1;

    transform:
        translateY(0);
}


.oxp-project-arrow:hover {
    background: #f97316;

    color: #ffffff;
}


/* =========================================================
   PROJECT NAME
========================================================= */

.oxp-project-name {
    min-height: 78px;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 16px 17px;
}


/* number */

.oxp-project-name > span {
    color: #a1adbb;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .7px;

    flex-shrink: 0;

    transition:
        color .3s ease;
}


/* title */

.oxp-project-name h3 {
    margin: 0;

    color: #17243a;

    font-size: 14px;

    line-height: 1.4;

    font-weight: 800;

    letter-spacing: -.15px;

    transition:
        color .3s ease;
}


.oxp-card:hover .oxp-project-name h3 {
    color: #f97316;
}


.oxp-card:hover .oxp-project-name > span {
    color: #f97316;
}


/* =========================================================
   LARGE LAPTOP
========================================================= */

@media (max-width: 1199px) {

    .oxp-container {
        padding-left: 25px;
        padding-right: 25px;
    }

    .oxp-image {
        height: 190px;
    }

    .oxp-project-name h3 {
        font-size: 13.5px;
    }
}


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

@media (max-width: 991px) {

    .oxp-section {
        padding: 72px 0;
    }

    .oxp-header {
        margin-bottom: 30px;
    }

    .oxp-image {
        height: 200px;
    }

    .oxp-project-name {
        min-height: 75px;
    }
}


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

@media (max-width: 767px) {

    .oxp-section {
        padding: 60px 0;
    }

    .oxp-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    /* header */

    .oxp-header {
        align-items: center;

        margin-bottom: 26px;
    }

    .oxp-eyebrow {
        font-size: 9px;
    }

    .oxp-heading h2 {
        margin-top: 11px;

        font-size: 32px;

        letter-spacing: -.9px;
    }


    /* navigation */

    .oxp-navigation {
        gap: 6px;
    }

    .oxp-navigation button {
        width: 38px;
        height: 38px;

        font-size: 10px;

        border-radius: 6px;
    }


    /* cards */

    .oxp-image {
        height: 205px;
    }

    .oxp-project-name {
        min-height: 72px;

        padding: 15px;
    }

    .oxp-project-name h3 {
        font-size: 14px;
    }


    /* keep arrow visible on touch devices */

    .oxp-project-arrow {
        opacity: 1;

        transform: translateY(0);
    }
}


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

@media (max-width: 480px) {

    .oxp-section {
        padding: 52px 0;
    }

    .oxp-container {
        padding-left: 14px;
        padding-right: 14px;
    }


    .oxp-header {
        align-items: flex-end;

        margin-bottom: 23px;
    }

    .oxp-heading h2 {
        font-size: 28px;

        letter-spacing: -.7px;
    }

    .oxp-navigation button {
        width: 35px;
        height: 35px;

        font-size: 9px;
    }


    .oxp-image {
        height: 195px;
    }


    .oxp-project-name {
        min-height: 68px;

        padding: 14px;
    }


    .oxp-project-name > span {
        font-size: 9px;
    }


    .oxp-project-name h3 {
        font-size: 13px;
    }


    .oxp-project-arrow {
        width: 34px;
        height: 34px;

        right: 11px;
        bottom: 11px;
    }
}


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

@media (max-width: 360px) {

    .oxp-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .oxp-heading h2 {
        font-size: 26px;
    }

    .oxp-image {
        height: 180px;
    }

    .oxp-project-name h3 {
        font-size: 12.5px;
    }
}
/* RESULTS - STARTS SECTION */
.oxi-impact-section {
    width: 100%;

    position: relative;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #f8fafc 100%
        );

    font-family: 'Manrope', sans-serif;

    padding: 45px 0 50px;

    overflow: hidden;
}


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

.oxi-impact-container {
    width: 100%;

    max-width: 1240px;

    margin: 0 auto;

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


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

.oxi-impact-heading {
    text-align: center;

    margin-bottom: 32px;
}


/* =========================================================
   LABEL
========================================================= */

.oxi-impact-label {
    display: block;

    margin-bottom: 6px;

    color: #f97316;

    font-size: 12px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: 1.4px;
}


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

.oxi-impact-heading h2 {
    margin: 0;

    color: #071f4d;

    font-size: clamp(36px, 3.4vw, 48px);

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: -.7px;
}


.oxi-impact-heading h2 strong {
    color: #f97316;

    font-weight: 800;
}


/* =========================================================
   IMPACT ROW
========================================================= */

.oxi-impact-row {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    border-top: 1px solid #e1e7ef;

    border-bottom: 1px solid #e1e7ef;
}


/* =========================================================
   IMPACT ITEM
========================================================= */

.oxi-impact-item {
    min-width: 0;

    min-height: 78px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 13px;

    padding: 10px 15px;

    border-right: 1px solid #e1e7ef;

    transition:
        transform .35s cubic-bezier(.22,1,.36,1),
        background .35s ease;
}


.oxi-impact-item:first-child {
    border-left: 1px solid #e1e7ef;
}


.oxi-impact-item:hover {
    background: #ffffff;

    transform: translateY(-3px);
}


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

.oxi-impact-icon {
    width: 39px;
    height: 39px;

    flex: 0 0 39px;

    display: flex;

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

    color: #2764ff;

    font-size: 18px;

    transition:
        color .35s ease,
        transform .4s cubic-bezier(.22,1,.36,1);
}


.oxi-impact-item:hover .oxi-impact-icon {
    color: #f97316;

    transform:
        translateY(-3px)
        scale(1.08);
}


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

.oxi-impact-content {
    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: center;
}


/* =========================================================
   NUMBER
========================================================= */

.oxi-impact-content strong {
    color: #145eff;

    font-size: 23px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: -.6px;

    transition:
        color .3s ease;
}


.oxi-impact-item:hover .oxi-impact-content strong {
    color: #f97316;
}


/* =========================================================
   LABEL
========================================================= */

.oxi-impact-content span {
    display: block;

    margin-top: 5px;

    color: #5d6b7e;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 600;

    white-space: nowrap;
}


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

@media (max-width: 1100px) {

    .oxi-impact-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .oxi-impact-item {
        gap: 8px;

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

    .oxi-impact-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 16px;
    }

    .oxi-impact-content strong {
        font-size: 20px;
    }

    .oxi-impact-content span {
        font-size: 8px;
    }
}


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

@media (max-width: 991px) {

    .oxi-impact-section {
        padding: 42px 0 45px;
    }

    .oxi-impact-heading {
        margin-bottom: 27px;
    }

    .oxi-impact-heading h2 {
        font-size: 23px;
    }

    .oxi-impact-row {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }

    .oxi-impact-item {
        min-height: 75px;

        padding: 11px 15px;
    }

    .oxi-impact-item:nth-child(3) {
        border-right: 0;
    }

    .oxi-impact-item:nth-child(4),
    .oxi-impact-item:nth-child(5),
    .oxi-impact-item:nth-child(6) {
        border-top: 1px solid #e1e7ef;
    }

    .oxi-impact-item:nth-child(4) {
        border-left: 1px solid #e1e7ef;
    }

    .oxi-impact-icon {
        width: 37px;
        height: 37px;

        flex-basis: 37px;

        font-size: 17px;
    }

    .oxi-impact-content strong {
        font-size: 21px;
    }

    .oxi-impact-content span {
        font-size: 8.5px;
    }
}


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

@media (max-width: 767px) {

    .oxi-impact-section {
        padding: 38px 0 40px;
    }

    .oxi-impact-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .oxi-impact-heading {
        margin-bottom: 23px;
    }

    .oxi-impact-label {
        font-size: 9px;

        letter-spacing: 1.2px;
    }

    .oxi-impact-heading h2 {
        font-size: 22px;

        letter-spacing: -.5px;
    }


    /* 2 columns */

    .oxi-impact-row {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .oxi-impact-item {
        min-height: 70px;

        justify-content: flex-start;

        gap: 10px;

        padding: 11px 13px;
    }


    .oxi-impact-item:nth-child(2),
    .oxi-impact-item:nth-child(4),
    .oxi-impact-item:nth-child(6) {
        border-right: 0;
    }


    .oxi-impact-item:nth-child(3),
    .oxi-impact-item:nth-child(5) {
        border-left: 1px solid #e1e7ef;
    }


    .oxi-impact-item:nth-child(3),
    .oxi-impact-item:nth-child(4),
    .oxi-impact-item:nth-child(5),
    .oxi-impact-item:nth-child(6) {
        border-top: 1px solid #e1e7ef;
    }


    .oxi-impact-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 15px;
    }


    .oxi-impact-content strong {
        font-size: 19px;
    }


    .oxi-impact-content span {
        font-size: 8px;
    }
}


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

@media (max-width: 480px) {

    .oxi-impact-section {
        padding: 34px 0 36px;
    }

    .oxi-impact-container {
        padding-left: 13px;
        padding-right: 13px;
    }

    .oxi-impact-heading {
        margin-bottom: 20px;
    }

    .oxi-impact-heading h2 {
        font-size: 20px;
    }

    .oxi-impact-item {
        min-height: 65px;

        gap: 8px;

        padding: 9px 9px;
    }

    .oxi-impact-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        font-size: 14px;
    }

    .oxi-impact-content strong {
        font-size: 18px;
    }

    .oxi-impact-content span {
        font-size: 7.5px;
    }
}


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

@media (max-width: 360px) {

    .oxi-impact-container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .oxi-impact-heading h2 {
        font-size: 19px;
    }

    .oxi-impact-item {
        gap: 6px;

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

    .oxi-impact-icon {
        width: 28px;
        height: 28px;

        flex-basis: 28px;

        font-size: 13px;
    }

    .oxi-impact-content strong {
        font-size: 17px;
    }

    .oxi-impact-content span {
        font-size: 7px;
    }
}
/* ================================
   COMPACT DESKTOP DROPDOWN
   ================================ */

@media (min-width: 1200px) {

    .it-dropdown-menu {
        width: 280px !important;
        padding: 6px !important;
        margin: 0 !important;
        top: calc(100% + 5px) !important;
        border-radius: 12px !important;
    }

    .it-dropdown-menu li {
        margin: 0 !important;
        padding: 0 !important;
    }

    .it-dropdown-menu li a {
        min-height: auto !important;
        height: 42px !important;
        padding: 0 14px !important;
        margin: 1px 0 !important;

        display: flex !important;
        align-items: center !important;

        gap: 0 !important;
        line-height: 1 !important;
        border-radius: 8px !important;
    }

    /* Hide desktop icons */
    .it-dropdown-menu .it-dropdown-icon,
    .it-dropdown-menu li a > i {
        display: none !important;
    }

    /* Dropdown text */
    .it-dropdown-menu li a span {
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Hover */
    .it-dropdown-menu li a:hover {
        padding-left: 18px !important;
    }
}
/* ==========================================
   FIX DROPDOWN HOVER LINE OVER TEXT
   DESKTOP ONLY
   ========================================== */

@media (min-width: 1200px) {

    .it-dropdown-menu li a {
        border: none !important;
        border-bottom: none !important;
        box-shadow: none !important;

        position: relative !important;
        text-decoration: none !important;
    }

    /* Remove any existing hover line */
    .it-dropdown-menu li a::before,
    .it-dropdown-menu li a::after {
        display: none !important;
        content: none !important;
    }

    .it-dropdown-menu li a:hover {
        border: none !important;
        border-bottom: none !important;
        box-shadow: none !important;

        padding-left: 18px !important;
        background: #fff7f0 !important;
    }

    /* Keep dropdown's top orange accent */
    .it-dropdown-menu {
        border-top: 3px solid #ff7a00 !important;
    }
}

