
/* =========================================================
   TOP CONTACT BAR
========================================================= */
.os-topbar {
    width: 100%;
    height: 50px;
    background: #ffd52e;
    color: #fff;
}

.os-topbar .container {
    height: 100%;
}

.os-topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LEFT + RIGHT */

.os-topbar-left,
.os-topbar-right {
    display: flex;
    align-items: center;
    gap: 28px;
}


/* CONTACT ITEM */

.os-top-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #001631;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}


    /* ICON */

    .os-top-item i {
        color: black;
        font-size: 16px;
    }


    /* =========================================================
   TOPBAR HOVER
========================================================= */

    .os-top-item:hover {
        color: #4a4545;
    }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .os-topbar {
        height: auto;
        padding: 10px 0;
    }

    .os-topbar-inner {
        flex-direction: column;
        gap: 8px;
    }

    .os-topbar-left,
    .os-topbar-right {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
}


@media (max-width: 575px) {

    .os-topbar {
        padding: 8px 0;
    }

    .os-topbar-left,
    .os-topbar-right {
        gap: 10px 18px;
    }

    .os-top-item {
        font-size: 11px;
    }

        .os-top-item i {
            font-size: 13px;
        }
}


/* =========================================================
   NAVBAR
========================================================= */

.os-navbar {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #fff;
    min-height: 86px;
    border-bottom: 1px solid #e7edf3;
    transition: all .3s ease;
}


    /* STICKY */

    .os-navbar.os-navbar-sticky {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 25px rgba(0,0,0,.08);
        animation: osNavDown .3s ease;
    }


@keyframes osNavDown {

    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


/* =========================================================
   MAIN NAV CONTAINER
========================================================= */

.os-navbar-container {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


/* =========================================================
   LOGO
========================================================= */

.os-logo {
    display: flex;
    align-items: center;
    gap: 12px;
 /*   flex-shrink: 0*/;
}

.os-logo img {
max-width: 69%;
 margin-left: -100px;
}

.bg-yellow {
    background-color: #ffd52e;
}

/* LOGO SYMBOL */

.os-logo-symbol {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--os-blue);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}


    .os-logo-symbol:before {
        content: "";
        width: 19px;
        height: 19px;
        border-radius: 50%;
        background: var(--os-yellow);
        position: absolute;
    }


    .os-logo-symbol span {
        position: absolute;
        width: 52px;
        height: 2px;
        background: var(--os-yellow);
    }


        .os-logo-symbol span:nth-child(1) {
            transform: rotate(0deg);
        }

        .os-logo-symbol span:nth-child(2) {
            transform: rotate(45deg);
        }

        .os-logo-symbol span:nth-child(3) {
            transform: rotate(90deg);
        }

        .os-logo-symbol span:nth-child(4) {
            transform: rotate(135deg);
        }


/* =========================================================
   OPTICAL SENSORS FOOTER
========================================================= */

.os-footer {
    position: relative;
    background: #052b55;
    color: #fff;
    overflow: hidden;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.os-footer-main {
    position: relative;
    padding: 70px 0 55px;
    background: radial-gradient(circle at 85% 20%, rgba(245,196,0,.08), transparent 25%), linear-gradient(135deg, #062d59 0%, #041f40 100%);
}


    /* Decorative circle */

    .os-footer-main:before {
        content: "";
        position: absolute;
        width: 360px;
        height: 360px;
        right: -180px;
        bottom: -180px;
        border: 1px solid rgba(245,196,0,.15);
        border-radius: 50%;
    }

    .os-footer-main:after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        left: -120px;
        top: -100px;
        border: 1px solid rgba(255,255,255,.06);
        border-radius: 50%;
    }


/* =========================================================
   FOOTER COLUMNS
========================================================= */

.os-footer-column {
    position: relative;
    z-index: 2;
    margin-bottom: 25px;
}


/* =========================================================
   BRAND
========================================================= */

.os-footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}


    /* Logo */

    .os-footer-brand .os-logo-symbol {
        width: 58px;
        height: 58px;
        flex-shrink: 0;
    }


    /* Logo title */

    .os-footer-brand .os-logo-title {
        color: #fff;
        font-size: 21px;
        font-weight: 800;
    }


/* Description */

.os-footer-text {
    max-width: 400px;
    margin: 0 0 24px;
    color: rgba(255,255,255,.68);
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.os-social {
    display: flex;
    gap: 9px;
}

    .os-social a {
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(245,196,0,.5);
        border-radius: 50%;
        color: #f5c400;
        font-size: 15px;
        text-decoration: none;
        transition: .3s ease;
    }

        .os-social a:hover {
            background: #f5c400;
            color: #052b55;
            transform: translateY(-4px);
        }


/* =========================================================
   FOOTER HEADING
========================================================= */

.os-footer-heading {
    position: relative;
    margin: 4px 0 24px;
    padding-bottom: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


    /* Yellow line */

    .os-footer-heading:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 42px;
        height: 3px;
        border-radius: 10px;
        background: #f5c400;
    }


/* =========================================================
   QUICK LINKS
========================================================= */

.os-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .os-footer-links li {
        margin-bottom: 12px;
    }

        .os-footer-links li a {
            display: inline-flex;
            align-items: center;
            color: rgba(255,255,255,.72);
            font-size: 15px;
            text-decoration: none;
            transition: .25s ease;
        }


            /* Arrow */

            .os-footer-links li a:before {
                content: "›";
                margin-right: 9px;
                color: #f5c400;
                font-size: 19px;
                line-height: 1;
                transition: .25s ease;
            }


            .os-footer-links li a:hover {
                color: #fff;
                transform: translateX(5px);
            }


                .os-footer-links li a:hover:before {
                    margin-right: 12px;
                }


/* =========================================================
   CONTACT
========================================================= */

.os-footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 19px;
}


/* Icon */

.os-footer-contact-icon {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(245,196,0,.1);
    border: 1px solid rgba(245,196,0,.35);
    color: #f5c400;
    font-size: 15px;
}


/* Contact content */

.os-footer-contact-content {
    color: rgba(255,255,255,.7);
    font-size: 15px;
    line-height: 1.7;
}

    .os-footer-contact-content strong {
        display: block;
        margin-bottom: 2px;
        color: #fff;
        font-size: 13px;
        font-weight: 700;
    }

    .os-footer-contact-content a {
        color: rgba(255,255,255,.7);
        text-decoration: none;
    }

        .os-footer-contact-content a:hover {
            color: #f5c400 !important;
        }


/* =========================================================
   FOOTER BOTTOM - YELLOW
========================================================= */

.os-footer-bottom {
    position: relative;
    z-index: 5;
    background: #f5c400;
    padding: 17px 0;
}


/* Bottom inner */


/* Copyright */

.os-footer-bottom p {
    margin: 0;
    color: #062d59;
    font-size: 15px;
    font-weight: 600;
}


/* Bottom links */

.os-footer-bottom-links {
    display: flex;
    gap: 22px;
}

    .os-footer-bottom-links a {
        position: relative;
        color: #062d59;
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
    }

        .os-footer-bottom-links a:hover {
            color: #fff;
        }


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .os-footer-main {
        padding: 55px 0 35px;
    }

    .os-footer-column {
        margin-bottom: 35px;
    }

    .os-footer-bottom-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
}


@media (max-width: 575px) {

    .os-footer-main {
        padding: 45px 0 25px;
    }

    .os-footer-brand .os-logo-title {
        font-size: 18px;
    }

    .os-footer-text {
        font-size: 15px;
    }

    .os-footer-heading {
        font-size: 14px;
    }

    .os-footer-bottom {
        padding: 15px 10px;
    }

        .os-footer-bottom p {
            font-size: 10px;
        }

    .os-footer-bottom-links {
        gap: 15px;
    }

        .os-footer-bottom-links a {
            font-size: 10px;
        }
}

/* ================================
   BACK TO TOP
================================ */

.os-back-top {
    position: fixed !important;
    right: 25px;
    bottom: 25px;
    width: 52px;
    height: 52px;
    background: #063b78;
    color: #fff !important;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    font-size: 20px;
    z-index: 999999;
    box-shadow: 0 5px 15px rgba(0,0,0,.20);
    transition: all .3s ease;
}

    .os-back-top:hover {
        background: #f5c400;
        color: #063b78 !important;
        transform: translateY(-4px);
    }

    .os-back-top i {
        line-height: 1;
    }


/* MOBILE */

@media (max-width: 767px) {

    .os-back-top {
        width: 45px;
        height: 45px;
        right: 15px;
        bottom: 15px;
        font-size: 17px;
    }
}

/* =========================================================
   LOGO TEXT
========================================================= */

.os-logo-text {
    display: flex;
    flex-direction: column;
}


.os-logo-title {
    color: var(--os-blue);
    font-size: 21px;
    line-height: 1.1;
    font-weight: 800;
    white-space: nowrap;
}


.os-logo-subtitle {
    color: #7a8795;
    font-size: 9px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 5px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.os-nav-wrapper {
    display: flex;
    align-items: center;
    margin-left: auto;
    margin-right: -55px;
}


.os-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0;
    padding: 0;
    list-style: none;
}


    /* NAV ITEM */

    .os-nav > li {
        position: relative;
    }


        /* NAV LINK */

        .os-nav > li > a {
            position: relative;
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 32px 17px;
            color: #25384c;
            font-size: 15px;
            font-weight: 600;
            white-space: nowrap;
            transition: all .25s ease;
        }


            /* HOVER */

            .os-nav > li > a:hover {
                color: var(--os-blue);
            }


            /* ACTIVE / HOVER LINE */

            .os-nav > li > a:after {
                content: "";
                position: absolute;
                left: 17px;
                bottom: 18px;
                width: 0;
                height: 3px;
                border-radius: 5px;
                background: var(--os-yellow);
                transition: width .25s ease;
            }


        .os-nav > li:hover > a:after,
        .os-nav > li.active > a:after {
            width: calc(100% - 34px);
        }


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.os-dropdown-link i {
    font-size: 9px;
    transition: transform .25s ease;
}


.os-dropdown:hover .os-dropdown-link i {
    transform: rotate(180deg);
}


/* DROPDOWN BOX */

.os-dropdown-menu {
    position: absolute;
    top: calc(100% - 5px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 235px;
    margin: 0;
    padding: 10px 0;
    list-style: none;
    background: #fff;
    border-radius: 6px;
    border-top: 3px solid var(--os-yellow);
    box-shadow: 0 15px 35px rgba(0,0,0,.14);
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}


/* SHOW DROPDOWN */

.os-dropdown:hover .os-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* DROPDOWN ITEM */

.os-dropdown-menu li {
    width: 100%;
}


    /* DROPDOWN LINK */

    .os-dropdown-menu li a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 12px 18px;
        color: #304258;
        font-size: 13px;
        font-weight: 500;
        transition: all .2s ease;
    }


        /* DROPDOWN HOVER */

        .os-dropdown-menu li a:hover {
            color: var(--os-blue);
            background: #f4f8fc;
            padding-left: 23px;
        }


/* =========================================================
   REQUEST QUOTE
========================================================= */

.os-nav-cta {
    margin-left: 12px;
}


    .os-nav-cta a {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 13px 20px !important;
        background: var(--os-blue);
        color: #fff !important;
        border-radius: 6px;
        font-size: 14px !important;
        font-weight: 700 !important;
        transition: all .25s ease;
    }


        .os-nav-cta a:hover {
            background: var(--os-dark);
            transform: translateY(-2px);
        }


        .os-nav-cta a:after {
            display: none !important;
        }


/* =========================================================
               MOBILE BUTTON
            ========================================================= */

.os-menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: var(--os-blue);
    font-size: 30px;
    padding: 5px;
    cursor: pointer;
}

.color-white {
    color: white !important;
}

/* =========================================================
       APPLICATIONS SCROLLER
    ========================================================= */
.fog-applications-section {
    padding: 45px 0 25px;
    background: #f4f8fc;
    overflow: hidden;
}


/* =========================================================
       HEADING
    ========================================================= */

.fog-app-heading {
    text-align: center;
    margin-bottom: 45px;
}

    .fog-app-heading > span {
        display: block;
        color: #f5c400;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    .fog-app-heading h2 {
        margin: 0;
        color: #063b78;
        font-size: 36px;
        line-height: 1.2;
        font-weight: 800;
    }

.fog-app-line {
    width: 50px;
    height: 4px;
    margin: 14px auto 16px;
    background: #f5c400;
    border-radius: 10px;
}

.fog-app-heading p {
    margin: 0 auto;
    max-width: 730px;
    color: #687789;
    font-size: 15px;
    line-height: 1.7;
}


/* =========================================================
       SLIDER
    ========================================================= */

.fog-app-slider {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}


/* =========================================================
       VIEWPORT
    ========================================================= */

.fog-app-viewport {
    width: 100%;
    overflow: hidden;
    padding: 10px 5px 25px;
}


/* =========================================================
       TRACK
    ========================================================= */

.fog-app-track {
    display: flex;
    gap: 25px;
    transition: transform .65s cubic-bezier(.22,.61,.36,1);
    will-change: transform;
}


/* =========================================================
       CARD
    ========================================================= */

.fog-app-card {
    position: relative;
    flex: 0 0 calc((100% - 50px) / 3);
    height: 365px;
    border-radius: 14px;
    overflow: hidden;
    background: #063b78;
    box-shadow: 0 12px 30px rgba(3,45,93,.13);
    transition: .4s ease;
}


/* =========================================================
       IMAGE
    ========================================================= */

.fog-app-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .fog-app-image img {
        width: 100%;
        height: 88%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
    }


/* =========================================================
       OVERLAY
    ========================================================= */

.fog-app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(2,31,66,.98) 0%, rgba(2,31,66,.78) 30%, rgba(2,31,66,.15) 65%, rgba(2,31,66,.05) 100% );
}


/* =========================================================
       HOVER
    ========================================================= */

.fog-app-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(3,45,93,.22);
}

    .fog-app-card:hover .fog-app-image img {
        transform: scale(1.08);
    }


/* =========================================================
       ICON
    ========================================================= */

.fog-app-icon {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #063b78;
    border: 2px solid #f5c400;
    color: #f5c400;
    font-size: 19px;
    box-shadow: 0 8px 20px rgba(0,0,0,.25);
    transition: .3s ease;
}

.fog-app-card:hover .fog-app-icon {
    background: #f5c400;
    color: #063b78;
    transform: rotate(8deg) scale(1.08);
}


/* =========================================================
       CONTENT
    ========================================================= */

.fog-app-content {
    position: absolute;
    left: 25px;
    right: 25px;
    bottom: 25px;
    z-index: 5;
}

.fog-app-number {
    display: block;
    color: #f5c400;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.fog-app-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 750;
}

.fog-app-content p {
    margin: 0;
    color: rgba(255,255,255,.78);
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
       ARROWS
    ========================================================= */


.fog-app-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 46px;
    height: 46px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(245,196,0,.8);
    border-radius: 50%;
    background: #063b78;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
    transition: all .3s ease;
}

    .fog-app-arrow:hover {
        background: #f5c400;
        transform: translateY(-50%) scale(1.08);
    }

.fog-arrow-left {
    width: 10px;
    height: 10px;
    border-left: 2px solid #f5c400;
    border-bottom: 2px solid #f5c400;
    transform: rotate(45deg);
    margin-left: 4px;
}

.fog-app-arrow:hover .fog-arrow-left {
    border-color: #063b78;
}

.fog-arrow-right {
    width: 10px;
    height: 10px;
    border-right: 2px solid #f5c400;
    border-top: 2px solid #f5c400;
    transform: rotate(45deg);
    margin-right: 4px;
}

.fog-app-arrow:hover .fog-arrow-right {
    border-color: #063b78;
}


/* POSITION */

.fog-app-prev {
    left: -23px;
}

.fog-app-next {
    right: -23px;
}
/* =========================================================
       TABLET
    ========================================================= */

@media (max-width: 991px) {

    .fog-app-prev {
        left: 5px;
    }

    .fog-app-next {
        right: 5px;
    }
}


/* =========================================================
       MOBILE
    ========================================================= */

@media (max-width: 767px) {

    .fog-app-arrow {
        width: 40px;
        height: 40px;
    }

    .fog-app-prev {
        left: 8px;
    }

    .fog-app-next {
        right: 8px;
    }
}

/* =========================================================
       BOTTOM PROGRESS
    ========================================================= */

.fog-app-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1150px;
    margin: 5px auto 0;
}


/* progress */

.fog-app-progress {
    position: relative;
    height: 3px;
    flex: 1;
    background: #d7e1eb;
    border-radius: 10px;
    overflow: hidden;
}

    .fog-app-progress span {
        display: block;
        width: 16.66%;
        height: 100%;
        background: #f5c400;
        border-radius: 10px;
        transition: width .5s ease;
    }


/* counter */

.fog-app-counter {
    min-width: 60px;
    color: #063b78;
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

    .fog-app-counter b {
        margin: 0 4px;
        color: #a3afbc;
    }


/* =========================================================
       TABLET
    ========================================================= */

@media (max-width: 991px) {

    .fog-app-card {
        flex: 0 0 calc((100% - 25px) / 2);
        height: 350px;
    }

    .fog-app-prev {
        left: 5px;
    }

    .fog-app-next {
        right: 5px;
    }

    .fog-app-arrow {
        width: 40px;
        height: 40px;
    }
}


/* =========================================================
       MOBILE
    ========================================================= */

@media (max-width: 767px) {

    .fog-applications-section {
        padding: 65px 0;
    }

    .fog-app-heading {
        margin-bottom: 30px;
    }

        .fog-app-heading h2 {
            font-size: 28px;
        }

        .fog-app-heading p {
            font-size: 12px;
        }

    .fog-app-card {
        flex: 0 0 100%;
        height: 350px;
    }

    .fog-app-track {
        gap: 15px;
    }

    .fog-app-arrow {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .fog-app-prev {
        left: 10px;
    }

    .fog-app-next {
        right: 10px;
    }

    .fog-app-content h3 {
        font-size: 20px;
    }
}

/* =========================================================
       FOG SENSOR PRODUCT PAGE
    ========================================================= */

.fog-product-section {
    width: 100%;
    padding: 48px 0;
    /* background: #f5f8fc;*/
    font-family: "Inter", Arial, sans-serif;
    color: #26384b;
}

.fog-product-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
       HEADER
    ========================================================= */

.fog-product-header {
    text-align: center;
    max-width: auto;
    margin: 0 auto 25px;
}

.fog-product-label {
    display: inline-block;
    color: #079af0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fog-product-header h1 {
    margin: 0 0 15px;
    color: #063b78;
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.fog-product-header p {
/*    max-width: 700px;*/
    margin: auto;
    color: #687789;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
       INTRO
    ========================================================= */

.fog-product-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 40, 80, .08);
    margin-bottom: 20px;
}


/* IMAGE */

.fog-product-image-box {
    width: 100%;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f6fb;
    border-radius: 12px;
    padding: 30px;
}

    .fog-product-image-box img {
        width: 100%;
        max-width: 500px;
        height: 320px;
        object-fit: contain;
    }


/* CONTENT */

.fog-product-intro-content h2 {
    color: #063b78;
    font-size: 28px;
    line-height: 1.25;
    margin: 0 0 18px;
}

.fog-product-intro-content p {
    color: #687789;
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.fog-product-points {
    padding: 0;
    margin: 22px 0 0;
    list-style: none;
}

    .fog-product-points li {
        position: relative;
        padding-left: 28px;
        margin-bottom: 11px;
        color: #405366;
        font-size: 13px;
    }

        .fog-product-points li:before {
            content: "✓";
            position: absolute;
            left: 0;
            top: -1px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #063b78;
            color: #f5c400;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 11px;
            font-weight: 800;
        }


/* =========================================================
       SECTION HEADING
    ========================================================= */

.fog-section-heading {
    margin-bottom: 30px;
}

    .fog-section-heading span {
        display: block;
        color: #f5c400;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 2px;
        margin-bottom: 8px;
        text-align: center;
    }

    .fog-section-heading h2 {
        position: relative;
        display: inline-block;
        margin: 0;
        color: #063b78;
        font-size: 32px;
        font-weight: 800;
    }

        .fog-section-heading h2:after {
            content: "";
            display: block;
            width: 50px;
            height: 3px;
            background: #f5c400;
            margin-top: 10px;
            border-radius: 5px;
        }


/* =========================================================
       DESCRIPTION
    ========================================================= */

.fog-product-description {
    margin-bottom: 65px;
}

    .fog-product-description p {
        max-width: 950px;
        color: #687789;
        font-size: 13px;
        line-height: 1.85;
        margin-bottom: 13px;
    }


/* =========================================================
       FEATURE CARDS
    ========================================================= */

.fog-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 75px;
}

.fog-feature-card {
    position: relative;
    background: #fff;
    padding: 28px 22px;
    border-radius: 12px;
    border: 1px solid #e2eaf2;
    overflow: hidden;
    transition: .3s ease;
}

    .fog-feature-card:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: #f5c400;
    }

    .fog-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 30px rgba(0, 40, 80, .1);
    }

.fog-feature-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #063b78;
    color: #f5c400;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 18px;
}

.fog-feature-card h3 {
    margin: 0 0 9px;
    color: #063b78;
    font-size: 16px;
    font-weight: 750;
}

.fog-feature-card p {
    margin: 0;
    color: #687789;
    font-size: 11px;
    line-height: 1.7;
}


/* =========================================================
       SPECIFICATION
    ========================================================= */

.fog-specification-section {
    margin-bottom: 5px;
}

.fog-spec-table-wrapper {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 40, 80, .08);
    border: 1px solid #e2eaf2;
}

.fog-spec-table {
    width: 100%;
    border-collapse: collapse;
}

    .fog-spec-table tr {
        transition: .2s ease;
    }

        .fog-spec-table tr:hover {
            background: #f5f9fd;
        }

    .fog-spec-table td {
        padding: 16px 22px;
        border-bottom: 1px solid #e7edf3;
        font-size: 15px;
        line-height: 1.5;
    }

    .fog-spec-table tr:last-child td {
        border-bottom: none;
    }

    .fog-spec-table td:first-child {
        width: 40%;
        color: #063b78;
        font-weight: 700;
        background: #f7faff;
    }

    .fog-spec-table td:last-child {
        color: #596b7c;
    }


/* =========================================================
       APPLICATION
    ========================================================= */

.fog-application-section {
    margin-bottom: 70px;
}

.fog-application-content {
    display: grid;
    grid-template-columns: 45% 55%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 40, 80, .08);
}

.fog-application-image {
    min-height: 370px;
}

    .fog-application-image img {
        width: 100%;
        height: 100%;
        min-height: 370px;
        object-fit: cover;
    }

.fog-application-text {
    padding: 40px;
}

    .fog-application-text > p {
        color: #687789;
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 25px;
    }

.fog-application-list {
    display: grid;
    gap: 17px;
}

    .fog-application-list div {
        padding-left: 18px;
        border-left: 3px solid #f5c400;
    }

    .fog-application-list strong {
        display: block;
        color: #063b78;
        font-size: 14px;
        margin-bottom: 3px;
    }

    .fog-application-list span {
        display: block;
        color: #687789;
        font-size: 11px;
        line-height: 1.5;
    }


/* =========================================================
       DOWNLOAD BOX
    ========================================================= */

.fog-download-box {
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 35px 40px;
    border-radius: 0px;
    background: linear-gradient(110deg, #063b78, #0d5595);
    box-shadow: 0 15px 35px rgba(0, 40, 80, .15);
}

    .fog-download-box span {
        color: #f5c400;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 2px;
    }

    .fog-download-box h2 {
        color: #fff;
        font-size: 25px;
        margin: 7px 0;
    }

    .fog-download-box p {
        color: rgba(255,255,255,.75);
        font-size: 15px;
        margin: 0;
    }

.fog-download-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 20px;
    background: #f5c400;
    color: #032d5d !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    transition: .25s ease;
}

    .fog-download-btn:hover {
        background: #ffd52c;
        transform: translateY(-2px);
    }

    .fog-download-btn span {
        color: #032d5d;
        font-size: 16px;
    }


/* =========================================================
       TABLET
    ========================================================= */

@media (max-width: 991px) {

    .fog-product-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fog-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fog-application-content {
        grid-template-columns: 1fr;
    }

    .fog-application-image {
        min-height: 300px;
    }

        .fog-application-image img {
            min-height: 300px;
        }
}


/* =========================================================
       MOBILE
    ========================================================= */

@media (max-width: 767px) {

    .fog-product-section {
        padding: 45px 0;
    }

    .fog-product-container {
        width: 92%;
    }

    .fog-product-header {
        margin-bottom: 35px;
    }

        .fog-product-header h1 {
            font-size: 34px;
        }

        .fog-product-header p {
            font-size: 12px;
        }

    .fog-product-intro {
        padding: 20px;
        margin-bottom: 45px;
    }

    .fog-product-image-box {
        min-height: 250px;
        padding: 15px;
    }

        .fog-product-image-box img {
            height: 230px;
        }

    .fog-product-intro-content h2 {
        font-size: 23px;
    }

    .fog-feature-grid {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }

    .fog-section-heading h2 {
        font-size: 26px;
    }

    .fog-spec-table-wrapper {
        overflow-x: auto;
    }

    .fog-spec-table {
        min-width: 600px;
    }

    .fog-application-text {
        padding: 25px;
    }

    .fog-download-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 28px;
    }

        .fog-download-box h2 {
            font-size: 21px;
        }
}


/* =========================================================
       SMALL MOBILE
    ========================================================= */

@media (max-width: 480px) {

    .fog-product-header h1 {
        font-size: 29px;
    }

    .fog-product-intro-content p,
    .fog-product-description p {
        font-size: 12px;
    }

    .fog-product-points li {
        font-size: 12px;
    }

    .fog-spec-table td {
        padding: 13px 15px;
        font-size: 11px;
    }
}



/* =========================================================
       FOG SENSOR HERO - IMAGE ONLY
    ========================================================= */
.fogx-hero {
    position: relative;
    width: 100%;
    height: 550px;
    min-height: 550px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    background-size: cover;
    margin-top: -45px;
}

    /* Optional dark/white overlay */
    .fogx-hero::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 30, 65, 0.15);
        z-index: 1;
    }

/* =========================================================
           FOG SENSOR PAGE - COMPLETE CSS
           Replace your existing <style> with this
        ========================================================= */

.fogx-page {
    --fogx-blue: #073f7d;
    --fogx-dark: #032d5d;
    --fogx-deep: #021f42;
    --fogx-yellow: #f5c400;
    --fogx-light: #f4f8fc;
    --fogx-text: #26384b;
    --fogx-muted: #687789;
    font-family: "Inter", Arial, sans-serif;
    color: var(--fogx-text);
    background: #fff;
    overflow: hidden;
    width: 100%;
}

    .fogx-page *,
    .fogx-page *::before,
    .fogx-page *::after {
        box-sizing: border-box;
    }


    /* =========================================================
           GLOBAL
        ========================================================= */

    .fogx-page img {
        max-width: 100%;
    }

    .fogx-page a {
        text-decoration: none !important;
    }


/* =========================================================
           BLUE CURVED SHAPE
        ========================================================= */

.fogx-hero-blue {
    position: absolute;
    top: 0;
    left: 0;
    width: 470px;
    height: 195px;
    background: var(--fogx-blue);
    border-bottom-right-radius: 100% 90%;
    z-index: 1;
    animation: fogxBlueReveal 1s ease-out both;
}


    /* Yellow curved line */

    .fogx-hero-blue::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -14px;
        width: 490px;
        height: 4px;
        background: var(--fogx-yellow);
        border-radius: 50%;
        transform: rotate(-5deg);
        transform-origin: left center;
        animation: fogxLineReveal 1.2s ease-out .25s both;
    }


/* =========================================================
           HERO CONTAINER
        ========================================================= */

.fogx-hero-container {
    position: relative;
    z-index: 5;
}

.fogx-hero-row {
    min-height: 520px;
    display: flex;
    align-items: center;
}


/* =========================================================
           HERO LEFT
        ========================================================= */

.fogx-hero-left {
    width: 52%;
    padding: 55px 0 50px;
    position: relative;
    z-index: 10;
}


/* COMPANY AREA */

.fogx-company {
    color: #fff;
    margin-bottom: 72px;
    padding-left: 3px;
    animation: fogxFadeDown .8s ease-out .15s both;
}

.fogx-company-name {
    font-size: 15px;
    line-height: 1.3;
    font-weight: 800;
    margin-bottom: 8px;
}

.fogx-company-info {
    font-size: 9px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
}

    .fogx-company-info div {
        white-space: nowrap;
    }

    .fogx-company-info span {
        color: var(--fogx-yellow);
        margin-right: 5px;
    }


/* =========================================================
           HERO TEXT
        ========================================================= */

.fogx-overline {
    display: inline-block;
    color: var(--fogx-blue);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 7px;
    position: relative;
    animation: fogxFadeUp .7s ease-out .35s both;
}


.fogx-title {
    margin: 0;
    color: var(--fogx-blue);
    font-size: 52px;
    line-height: .90;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    animation: fogxTitleReveal .9s cubic-bezier(.22,.61,.36,1) .4s both;
}

    .fogx-title span {
        display: block;
        color: var(--fogx-dark);
    }


.fogx-tagline {
    margin-top: 14px;
    color: var(--fogx-blue);
    font-size: 12px;
    line-height: 1.5;
    font-weight: 800;
    animation: fogxFadeUp .7s ease-out .55s both;
}

    .fogx-tagline span {
        color: var(--fogx-dark);
    }


.fogx-description {
    max-width: 440px;
    margin: 11px 0 17px;
    color: #536272;
    font-size: 10px;
    line-height: 1.65;
    animation: fogxFadeUp .7s ease-out .65s both;
}


/* =========================================================
           HERO BUTTONS
        ========================================================= */

.fogx-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    animation: fogxFadeUp .7s ease-out .75s both;
}

.fogx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 8px 17px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 700;
    transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
    position: relative;
    overflow: hidden;
}

    .fogx-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 70%;
        height: 100%;
        background: linear-gradient( 90deg, transparent, rgba(255,255,255,.35), transparent );
        transition: left .55s ease;
    }

    .fogx-btn:hover::before {
        left: 130%;
    }

    .fogx-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 18px rgba(0,0,0,.14);
    }

.fogx-btn-primary {
    background: var(--fogx-blue);
    color: #fff !important;
}

    .fogx-btn-primary:hover {
        background: var(--fogx-dark);
        color: #fff !important;
    }

.fogx-btn-yellow {
    background: var(--fogx-yellow);
    color: var(--fogx-dark) !important;
}

    .fogx-btn-yellow:hover {
        background: #ffd329;
        color: var(--fogx-dark) !important;
    }


/* =========================================================
           HERO RIGHT / PRODUCT
        ========================================================= */

.fogx-hero-right {
    width: 48%;
    position: relative;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fogxProductReveal 1s ease-out .25s both;
}


.fogx-product-card {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Product background glow */

.fogx-product-glow {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient( circle, rgba(255,255,255,.95) 0%, rgba(255,255,255,.65) 35%, rgba(255,255,255,0) 72% );
    animation: fogxGlow 4s ease-in-out infinite;
}


/* Product image */

.fogx-product-image {
    position: relative;
    z-index: 2;
    width: 88%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 25px rgba(0,0,0,.18));
    animation: fogxFloat 4.5s ease-in-out infinite, fogxProductScale 1s ease-out .35s both;
}


/* =========================================================
           PRODUCT FALLBACK
        ========================================================= */

.fogx-product-fallback {
    display: none;
    width: 300px;
    height: 205px;
    border: 2px solid #7f8d9c;
    border-radius: 22px;
    background: linear-gradient( 145deg, #eef3f7, #aebbc7 );
    box-shadow: 0 25px 40px rgba(0,0,0,.18);
    position: relative;
    animation: fogxFloat 4s ease-in-out infinite;
}

    .fogx-product-fallback::before,
    .fogx-product-fallback::after {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #071a2d;
        border: 8px solid #9ba9b5;
        box-shadow: inset 0 0 0 7px #162d42;
    }

    .fogx-product-fallback::before {
        left: 42px;
    }

    .fogx-product-fallback::after {
        right: 42px;
    }


/* =========================================================
           FEATURE BAR
        ========================================================= */

.fogx-feature-wrap {
    position: relative;
    z-index: 20;
    margin-top: -38px;
    padding: 0 15px;
}

.fogx-feature-bar {
    width: 100%;
    max-width: 1120px;
    margin: auto;
    background: var(--fogx-blue);
    border-radius: 7px;
    box-shadow: 0 14px 30px rgba(0,0,0,.17);
    display: grid;
    grid-template-columns: repeat(6,1fr);
    overflow: hidden;
    animation: fogxBarReveal .9s ease-out .7s both;
    height: 170px;
}


.fogx-feature-item {
    min-height: 82px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    transition: background .3s ease, transform .3s ease;
}

    .fogx-feature-item:hover {
        background: rgba(255,255,255,.06);
        transform: translateY(-2px);
    }


    /* Divider */

    .fogx-feature-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 0;
        top: 22%;
        width: 1px;
        height: 56%;
        background: rgba(245,196,0,.65);
    }


.fogx-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 13px;
    border: 1px solid var(--fogx-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fogx-yellow);
    font-size: 38px;
    transition: transform .35s ease, background .35s ease;
}

.fogx-feature-item:hover .fogx-feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: rgba(245,196,0,.08);
}

.fogx-feature-item h4 {
    margin: 0;
    color: #fff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 500;
}


/* =========================================================
           COMMON SECTION
        ========================================================= */

.fogx-section {
    padding: 45px 0;
}

.fogx-section-light {
    background: var(--fogx-light);
}


/* =========================================================
           SECTION HEADING
        ========================================================= */

.fogx-heading {
    margin-bottom: 30px;
}

    .fogx-heading small {
        display: block;
        color: var(--fogx-yellow);
        font-size: 20px;
        font-weight: 900;
        letter-spacing: 2px;
        margin-bottom: 7px;
    }

    .fogx-heading h2 {
        color: var(--fogx-blue);
        font-size: 29px;
        line-height: 1.15;
        font-weight: 800;
        margin: 0;
    }

        .fogx-heading h2::after {
            content: "";
            display: block;
            width: 43px;
            height: 3px;
            background: var(--fogx-yellow);
            border-radius: 10px;
            margin-top: 10px;
        }

    .fogx-heading p {
        max-width: auto;
        color: var(--fogx-muted);
        font-size: 15px;
        line-height: 1.7;
        margin-top: 11px;
        margin-bottom: 0;
    }


.fogx-center {
    text-align: center;
}

    .fogx-center h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .fogx-center p {
        margin-left: auto;
        margin-right: auto;
    }


/* =========================================================
           OVERVIEW
        ========================================================= */

.fogx-overview {
    padding-top: 72px;
}

.fogx-overview-image {
    width: 100%;
    height: 315px;
    object-fit: cover;
    border-radius: 9px;
    box-shadow: 0 15px 30px rgba(0,0,0,.12);
    transition: transform .5s ease, box-shadow .5s ease;
}

    .fogx-overview-image:hover {
        transform: scale(1.015);
        box-shadow: 0 20px 40px rgba(0,0,0,.16);
    }

.fogx-overview-content {
    padding-left: 28px;
    animation: fogxFadeRight .8s ease-out both;
}

    .fogx-overview-content p {
        color: var(--fogx-muted);
        font-size: 15px;
        line-height: 1.75;
    }


/* =========================================================
           CHECK LIST
        ========================================================= */

.fogx-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
}

    .fogx-list li {
        position: relative;
        padding-left: 21px;
        margin-bottom: 8px;
        color: #435568;
        font-size: 15px;
        line-height: 1.5;
    }

        .fogx-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--fogx-blue);
            font-weight: 900;
        }

    .fogx-list li {
        animation: fogxListReveal .5s ease-out both;
    }

        .fogx-list li:nth-child(1) {
            animation-delay: .1s;
        }

        .fogx-list li:nth-child(2) {
            animation-delay: .17s;
        }

        .fogx-list li:nth-child(3) {
            animation-delay: .24s;
        }

        .fogx-list li:nth-child(4) {
            animation-delay: .31s;
        }

        .fogx-list li:nth-child(5) {
            animation-delay: .38s;
        }

        .fogx-list li:nth-child(6) {
            animation-delay: .45s;
        }

        .fogx-list li:nth-child(7) {
            animation-delay: .52s;
        }


/* =========================================================
           FEATURE CARDS
        ========================================================= */

.fogx-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e0e8f0;
    border-radius: 8px;
    padding: 21px 17px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    position: relative;
    overflow: hidden;
    height: 225px;
    margin-bottom: 20px;
}

    .fogx-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--fogx-yellow);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .4s ease;
    }

    .fogx-card:hover::before {
        transform: scaleX(1);
    }

    .fogx-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 16px 30px rgba(0,0,0,.09);
        border-color: rgba(6,59,120,.18);
    }


.fogx-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf4fb;
    color: var(--fogx-blue);
    font-size: 26px;
    margin-bottom: 12px;
    transition: transform .35s ease, background .35s ease;
}

.fogx-card:hover .fogx-card-icon {
    transform: rotateY(180deg) scale(1.08);
    background: #e4effb;
}


.fogx-card h3 {
    color: var(--fogx-blue);
    font-size: 15px;
    font-weight: 750;
    margin: 0 0 7px;
    margin-bottom: 13px;
}

.fogx-card p {
    color: var(--fogx-muted);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}


/* =========================================================
           SPECIFICATIONS
        ========================================================= */

.fogx-spec {
    background: var(--fogx-blue);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(3,45,93,.20);
    transition: transform .35s ease, box-shadow .35s ease;
}

    .fogx-spec:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 45px rgba(3,45,93,.24);
    }


.fogx-spec-header {
    padding: 18px 23px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

    .fogx-spec-header h3 {
        margin: 0;
        color: #fff;
        font-size: 20px;
        font-weight: 800;
    }

    .fogx-spec-header span {
        color: var(--fogx-yellow);
    }


.fogx-spec-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

    .fogx-spec-table td {
        padding: 11px 22px;
        border-bottom: 1px solid rgba(255,255,255,.10);
        font-size: 9px;
        vertical-align: middle;
    }

    .fogx-spec-table tr {
        transition: background .25s ease;
    }

        .fogx-spec-table tr:hover {
            background: rgba(255,255,255,.045);
        }

        .fogx-spec-table tr:last-child td {
            border-bottom: 0;
        }

    .fogx-spec-table td:first-child {
        width: 42%;
        color: var(--fogx-yellow);
        font-weight: 700;
    }

    .fogx-spec-table td:last-child {
        color: rgba(255,255,255,.9);
    }


/* =========================================================
           APPLICATIONS
        ========================================================= */

.fogx-app-card {
    height: 245px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: linear-gradient( 145deg, #164c84, #032a59 );
    box-shadow: 0 12px 25px rgba(0,0,0,.12);
    transition: transform .4s ease, box-shadow .4s ease;
}

    .fogx-app-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 35px rgba(0,0,0,.17);
    }


.fogx-app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .76;
    transition: transform .7s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
}

.fogx-app-card:hover .fogx-app-image {
    transform: scale(1.09);
    opacity: .88;
}


.fogx-app-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(2,31,66,.96) 0%, rgba(2,31,66,.48) 48%, rgba(2,31,66,.05) 100% );
    z-index: 1;
}


.fogx-app-content {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 3;
    transform: translateY(4px);
    transition: transform .35s ease;
}

.fogx-app-card:hover .fogx-app-content {
    transform: translateY(0);
}


.fogx-app-content h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 750;
    margin: 0 0 5px;
}

.fogx-app-content p {
    color: rgba(255,255,255,.80);
    font-size: 9px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
           ADVANTAGES
        ========================================================= */

.fogx-check {
    display: flex;
    gap: 11px;
    padding: 13px 0;
    border-bottom: 1px solid #e3eaf1;
    transition: padding-left .3s ease;
}

    .fogx-check:hover {
        padding-left: 6px;
    }

    .fogx-check:last-child {
        border-bottom: 0;
    }


.fogx-check-icon {
    flex: 0 0 31px;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--fogx-blue);
    color: var(--fogx-yellow);
    font-size: 11px;
    font-weight: 900;
    transition: transform .35s ease;
}

.fogx-check:hover .fogx-check-icon {
    transform: scale(1.1) rotate(8deg);
}


.fogx-check h4 {
    color: var(--fogx-blue);
    font-size: 12px;
    margin: 0 0 3px;
}

.fogx-check p {
    color: var(--fogx-muted);
    font-size: 9px;
    line-height: 1.5;
    margin: 0;
}


/* =========================================================
           CTA
        ========================================================= */

.fogx-cta {
    padding: 55px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient( 110deg, #062f61, #124f8e );
}


    .fogx-cta::before {
        content: "";
        position: absolute;
        width: 240px;
        height: 240px;
        left: -100px;
        bottom: -150px;
        border: 1px solid rgba(245,196,0,.20);
        border-radius: 50%;
        animation: fogxCtaCircle 7s ease-in-out infinite;
    }


    .fogx-cta::after {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        right: -120px;
        top: -220px;
        border: 1px solid rgba(245,196,0,.28);
        border-radius: 50%;
        animation: fogxCtaCircle 8s ease-in-out infinite reverse;
    }


    .fogx-cta h2 {
        color: #fff;
        font-size: 30px;
        line-height: 1.15;
        font-weight: 850;
        margin: 0 0 9px;
        position: relative;
        z-index: 2;
    }

        .fogx-cta h2 span {
            color: var(--fogx-yellow);
        }

    .fogx-cta p {
        max-width: 610px;
        color: rgba(255,255,255,.78);
        font-size: 10px;
        line-height: 1.7;
        margin-bottom: 17px;
        position: relative;
        z-index: 2;
    }

    .fogx-cta .fogx-btn {
        position: relative;
        z-index: 3;
    }


/* =========================================================
           ANIMATIONS
        ========================================================= */

@@keyframes fogxBlueReveal {

    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@@keyframes fogxLineReveal {

    from {
        opacity: 0;
        transform: rotate(-5deg) scaleX(0);
        transform-origin: left;
    }

    to {
        opacity: 1;
        transform: rotate(-5deg) scaleX(1);
        transform-origin: left;
    }
}


@@keyframes fogxFadeDown {

    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@@keyframes fogxFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@@keyframes fogxFadeRight {

    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@@keyframes fogxTitleReveal {

    from {
        opacity: 0;
        transform: translateY(35px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@@keyframes fogxProductReveal {

    from {
        opacity: 0;
        transform: translateX(60px) scale(.92);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}


@@keyframes fogxProductScale {

    from {
        opacity: 0;
        transform: scale(.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@@keyframes fogxFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


@@keyframes fogxGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: .65;
    }

    50% {
        transform: scale(1.12);
        opacity: .95;
    }
}


@@keyframes fogxBarReveal {

    from {
        opacity: 0;
        transform: translateY(30px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


@@keyframes fogxListReveal {

    from {
        opacity: 0;
        transform: translateX(-12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


@@keyframes fogxCtaCircle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.08) rotate(12deg);
    }
}


/* =========================================================
           CARD LOAD ANIMATION
        ========================================================= */

.fogx-card {
    animation: fogxCardReveal .7s ease-out both;
}

.row > div:nth-child(1) .fogx-card {
    animation-delay: .05s;
}

.row > div:nth-child(2) .fogx-card {
    animation-delay: .12s;
}

.row > div:nth-child(3) .fogx-card {
    animation-delay: .19s;
}

.row > div:nth-child(4) .fogx-card {
    animation-delay: .26s;
}

.row > div:nth-child(5) .fogx-card {
    animation-delay: .33s;
}

.row > div:nth-child(6) .fogx-card {
    animation-delay: .40s;
}


@@keyframes fogxCardReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================================
           REDUCED MOTION
        ========================================================= */

@@media (prefers-reduced-motion: reduce) {

    .fogx-page *,
    .fogx-page *::before,
    .fogx-page *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}


/* =========================================================
           LARGE DESKTOP
        ========================================================= */

@@media (min-width: 1400px) {

    .fogx-hero {
        min-height: 550px;
    }

    .fogx-hero-row {
        min-height: 550px;
    }

    .fogx-hero-blue {
        width: 520px;
        height: 215px;
    }

        .fogx-hero-blue::after {
            width: 545px;
        }

    .fogx-title {
        font-size: 56px;
    }

    .fogx-feature-bar {
        max-width: 1223px;
    }
}


/* =========================================================
           TABLET
        ========================================================= */

@@media (max-width: 991px) {

    .fogx-hero {
        min-height: auto;
        background: linear-gradient( 180deg, rgba(248,250,252,.96), rgba(248,250,252,.88) ), url("../images/fog-road.jpg") center / cover no-repeat;
    }


    .fogx-hero-blue {
        width: 100%;
        height: 195px;
        border-bottom-right-radius: 70% 80%;
    }

        .fogx-hero-blue::after {
            width: 100%;
        }


    .fogx-hero-row {
        min-height: auto;
        display: block;
    }


    .fogx-hero-left,
    .fogx-hero-right {
        width: 100%;
    }


    .fogx-hero-left {
        padding: 38px 0 10px;
    }


    .fogx-company {
        margin-bottom: 65px;
    }


    .fogx-title {
        font-size: 50px;
    }


    .fogx-description {
        max-width: 600px;
    }


    .fogx-hero-right {
        padding: 5px 0 45px;
    }


    .fogx-product-card {
        min-height: 280px;
    }


    .fogx-product-image {
        width: 75%;
        max-width: 450px;
    }


    .fogx-feature-wrap {
        margin-top: -25px;
    }


    .fogx-feature-bar {
        grid-template-columns: repeat(3,1fr);
    }


    .fogx-feature-item:nth-child(3)::after {
        display: none;
    }


    .fogx-overview-content {
        padding-left: 0;
        margin-top: 28px;
    }


    .fogx-overview-image {
        height: 300px;
    }
}


/* =========================================================
           MOBILE
        ========================================================= */

@@media (max-width: 767px) {

    .fogx-hero-blue {
        height: 175px;
        border-bottom-right-radius: 70% 75%;
    }


    .fogx-company {
        margin-bottom: 55px;
    }


    .fogx-company-name {
        font-size: 14px;
    }


    .fogx-company-info {
        font-size: 8px;
    }


    .fogx-title {
        font-size: 42px;
        letter-spacing: -1.5px;
    }


    .fogx-tagline {
        font-size: 11px;
    }


    .fogx-description {
        font-size: 9px;
        max-width: 100%;
    }


    .fogx-product-card {
        min-height: 240px;
    }


    .fogx-product-image {
        width: 88%;
    }


    .fogx-product-glow {
        width: 260px;
        height: 260px;
    }


    .fogx-feature-wrap {
        padding: 0 10px;
        margin-top: -15px;
    }


    .fogx-feature-bar {
        grid-template-columns: repeat(2,1fr);
        border-radius: 7px;
    }


    .fogx-feature-item {
        min-height: 90px;
    }


        .fogx-feature-item:nth-child(even)::after {
            display: none;
        }


    .fogx-feature-icon {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }


    .fogx-feature-item h4 {
        font-size: 15px;
    }


    .fogx-section {
        padding: 50px 0;
    }


    .fogx-heading h2 {
        font-size: 27px;
    }


    .fogx-overview {
        padding-top: 55px;
    }


    .fogx-overview-image {
        height: 260px;
    }


    .fogx-overview-content {
        margin-top: 25px;
    }


    .fogx-card {
        padding: 20px 17px;
    }


    .fogx-app-card {
        height: 230px;
    }


    .fogx-spec-header {
        padding: 17px 18px;
    }


        .fogx-spec-header h3 {
            font-size: 18px;
        }


    .fogx-spec-table td {
        padding: 10px 14px;
        font-size: 8px;
    }


    .fogx-cta {
        padding: 48px 0;
    }


        .fogx-cta h2 {
            font-size: 27px;
        }


        .fogx-cta p {
            font-size: 9px;
        }
}


/* =========================================================
           SMALL MOBILE
        ========================================================= */

@@media (max-width: 480px) {

    .fogx-hero-blue {
        height: 160px;
    }


    .fogx-company {
        margin-bottom: 48px;
    }


    .fogx-company-name {
        font-size: 12px;
    }


    .fogx-company-info {
        font-size: 7px;
    }


    .fogx-overline {
        font-size: 7px;
        letter-spacing: 1.5px;
    }


    .fogx-title {
        font-size: 36px;
        line-height: .92;
    }


    .fogx-tagline {
        font-size: 10px;
    }


    .fogx-description {
        font-size: 8px;
        line-height: 1.6;
    }


    .fogx-btn {
        min-height: 32px;
        padding: 7px 13px;
        font-size: 8px;
    }


    .fogx-product-card {
        min-height: 210px;
    }


    .fogx-product-image {
        width: 100%;
    }


    .fogx-feature-item {
        min-height: 82px;
        padding: 8px 5px;
    }


    .fogx-feature-icon {
        width: 27px;
        height: 27px;
        font-size: 10px;
        margin-bottom: 4px;
    }


    .fogx-feature-item h4 {
        font-size: 7px;
    }


    .fogx-section {
        padding: 43px 0;
    }


    .fogx-heading {
        margin-bottom: 25px;
    }


        .fogx-heading small {
            font-size: 7px;
        }


        .fogx-heading h2 {
            font-size: 24px;
        }


        .fogx-heading p {
            font-size: 8px;
        }


    .fogx-overview-image {
        height: 220px;
    }


    .fogx-list li {
        font-size: 8px;
    }


    .fogx-card h3 {
        font-size: 12px;
    }


    .fogx-card p {
        font-size: 8px;
    }


    .fogx-app-card {
        height: 215px;
    }


    .fogx-app-content h3 {
        font-size: 14px;
    }


    .fogx-app-content p {
        font-size: 8px;
    }


    .fogx-spec-table td {
        padding: 9px 11px;
        font-size: 7px;
    }


    .fogx-cta h2 {
        font-size: 23px;
    }
}

/* =========================================================
   MOUNTING SECTION
========================================================= */

.fog-mounting-section {
    position: relative;
    padding: 40px 0;
    background: #f4f8fc;
    overflow: hidden;
}


    /* BACKGROUND DECORATION */

    .fog-mounting-section:before {
        content: "";
        position: absolute;
        width: 450px;
        height: 450px;
        left: -250px;
        top: 100px;
        border-radius: 50%;
        background: rgba(6, 59, 120, .035);
    }

    .fog-mounting-section:after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        right: -160px;
        bottom: 50px;
        border-radius: 50%;
        border: 1px solid rgba(245, 196, 0, .20);
    }


/* =========================================================
   HEADING
========================================================= */

.fog-mounting-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

    .fog-mounting-heading span {
        display: block;
        margin-bottom: 8px;
        color: #f5c400;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: 2.5px;
        text-transform: uppercase;
    }

    .fog-mounting-heading h2 {
        margin: 0;
        color: #063b78;
        font-size: 38px;
        line-height: 1.15;
        font-weight: 850;
    }

        .fog-mounting-heading h2:after {
            content: "";
            display: block;
            width: 55px;
            height: 4px;
            margin: 14px auto 0;
            background: #f5c400;
            border-radius: 10px;
        }

    .fog-mounting-heading p {
        margin: 16px auto 0;
        color: #687789;
        font-size: 15px;
        line-height: 1.7;
    }


/* =========================================================
   MAIN LAYOUT
========================================================= */

.fog-mounting-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* =========================================================
   IMAGE AREA
========================================================= */

.fog-mounting-image-area {
    position: relative;
    padding: 20px;
}

.fog-mounting-image-box {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 45px rgba(3, 45, 93, .16);
    transform: translateY(0);
    transition: transform .4s ease, box-shadow .4s ease;
}

    .fog-mounting-image-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 55px rgba(3, 45, 93, .22);
    }


.fog-mounting-image {
    display: block;
    width: 100%;
    height: 390px;
    object-fit: cover;
    transition: transform .6s ease;
}

.fog-mounting-image-box:hover .fog-mounting-image {
    transform: scale(1.05);
}


/* IMAGE GLOW */

.fog-image-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    right: -60px;
    top: -60px;
    border-radius: 50%;
    background: rgba(245,196,0,.18);
    filter: blur(10px);
    z-index: 1;
}


/* IMAGE LABEL */

.fog-image-label {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(3,45,93,.90);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(5px);
}

    .fog-image-label i {
        color: #f5c400;
    }


/* =========================================================
   FLOATING BADGE
========================================================= */

.fog-mounting-badge {
    position: absolute;
    right: -5px;
    bottom: -5px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
    animation: fogMountFloat 4s ease-in-out infinite;
}

.fog-badge-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #063b78;
    color: #f5c400;
    font-size: 17px;
}

.fog-mounting-badge strong {
    display: block;
    color: #063b78;
    font-size: 12px;
}

.fog-mounting-badge small {
    display: block;
    margin-top: 3px;
    color: #7a8795;
    font-size: 9px;
}


@@keyframes fogMountFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}


/* =========================================================
   CONTENT
========================================================= */

.fog-mounting-content {
    position: relative;
}

.fog-content-number {
    position: absolute;
    right: 0;
    top: -25px;
    color: rgba(6,59,120,.06);
    font-size: 90px;
    font-weight: 900;
    line-height: 1;
}

.fog-mounting-content h3 {
    position: relative;
    margin: 0 0 15px;
    color: #063b78;
    font-size: 27px;
    font-weight: 800;
}

.fog-mounting-content > p {
    position: relative;
    margin: 0 0 12px;
    color: #687789;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================================
   INSTALLATION POINTS
========================================================= */

.fog-installation-points {
    margin-top: 25px;
}

.fog-install-point {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #dce5ed;
}

    .fog-install-point:last-child {
        border-bottom: 0;
    }

.fog-install-icon {
    flex: 0 0 43px;
    width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #e8f1fa;
    color: #063b78;
    font-size: 17px;
    transition: all .3s ease;
}

.fog-install-point:hover .fog-install-icon {
    background: #063b78;
    color: #f5c400;
    transform: rotate(8deg) scale(1.08);
}

.fog-install-point h4 {
    margin: 0 0 4px;
    color: #063b78;
    font-size: 13px;
    font-weight: 750;
}

.fog-install-point p {
    margin: 0;
    color: #687789;
    font-size: 12px;
    line-height: 1.6;
}


/* =========================================================
   BRACKET BOX
========================================================= */

.fog-bracket-box {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 65px 1fr 230px;
    align-items: center;
    gap: 22px;
    margin-top: 65px;
    padding: 25px 28px;
    background: #063b78;
    border-radius: 14px;
    box-shadow: 0 18px 35px rgba(3,45,93,.18);
    overflow: hidden;
}

    .fog-bracket-box:after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        right: -100px;
        top: -100px;
        border: 1px solid rgba(245,196,0,.3);
        border-radius: 50%;
    }

.fog-bracket-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(245,196,0,.12);
    border: 1px solid rgba(245,196,0,.5);
    color: #f5c400;
    font-size: 24px;
}

.fog-bracket-content span {
    color: #f5c400;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.fog-bracket-content h3 {
    margin: 4px 0 6px;
    color: #fff;
    font-size: 18px;
    font-weight: 750;
}

.fog-bracket-content p {
    margin: 0;
    max-width: 650px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.6;
}

.fog-bracket-feature {
    position: relative;
    z-index: 2;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,.15);
}

    .fog-bracket-feature i {
        display: block;
        margin-bottom: 6px;
        color: #f5c400;
        font-size: 20px;
    }

    .fog-bracket-feature strong {
        display: block;
        color: #fff;
        font-size: 15px;
    }

    .fog-bracket-feature small {
        color: rgba(255,255,255,.6);
        font-size: 15px;
    }


/* =========================================================
   BOTTOM INFO
========================================================= */

.fog-mounting-bottom {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 20px;
    background: #fff;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,.07);
}

.fog-bottom-item {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 20px;
    border-right: 1px solid #e2e8ee;
}

    .fog-bottom-item:last-child {
        border-right: 0;
    }

.fog-bottom-icon {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #edf4fb;
    color: #063b78;
    font-size: 16px;
}

.fog-bottom-item strong {
    display: block;
    color: #063b78;
    font-size: 15px;
}

.fog-bottom-item span {
    display: block;
    margin-top: 3px;
    color: #7a8795;
    font-size: 15px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@@media (max-width: 991px) {

    .fog-mounting-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .fog-mounting-image-area {
        max-width: 700px;
        width: 100%;
        margin: auto;
    }

    .fog-bracket-box {
        grid-template-columns: 60px 1fr;
    }

    .fog-bracket-feature {
        grid-column: 2;
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.15);
        padding: 15px 0 0;
    }
}


@media (max-width: 767px) {

    .fog-mounting-section {
        padding: 65px 0;
    }

    .fog-mounting-heading h2 {
        font-size: 30px;
    }

    .fog-mounting-image {
        height: 300px;
    }

    .fog-mounting-badge {
        right: 5px;
    }

    .fog-bracket-box {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 22px;
    }

    .fog-bracket-feature {
        grid-column: auto;
    }

    .fog-mounting-bottom {
        grid-template-columns: 1fr;
    }

    .fog-bottom-item {
        border-right: 0;
        border-bottom: 1px solid #e2e8ee;
    }

        .fog-bottom-item:last-child {
            border-bottom: 0;
        }
}


@media (max-width: 480px) {

    .fog-mounting-heading h2 {
        font-size: 26px;
    }

    .fog-mounting-image-area {
        padding: 8px;
    }

    .fog-mounting-image {
        height: 250px;
    }

    .fog-mounting-badge {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -15px 15px 0;
        z-index: 5;
    }
}

.footer-logo {
    height: auto;
    width: 250px;
}


.fogx-hero1 {
    position: relative;
    width: 100%;
    min-height: 470px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    overflow: hidden;
    margin-top: 0px;
    border-bottom: 1px solid #ffd52e;
    border-top: 1px solid #ffd52e;
}

/* =========================================================
   OPTICAL SENSORS - ABOUT / PRODUCTS / STATS
========================================================= */

.os-about-section,
.os-range-section,
.os-all-products,
.os-statistics-section {
    position: relative;
    overflow: hidden;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.os-about-section {
    padding: 40px 0;
    background: #ffffff;
}

.os-about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 70px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.os-section-heading {
    margin-bottom: 50px;
}

    .os-section-heading.center {
        text-align: center;
    }

    .os-section-heading span {
        display: block;
        margin-bottom: 10px;
        color: #079af0;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
    }

    .os-section-heading h2 {
        margin: 0;
        color: #073b73;
        font-size: 42px;
        line-height: 1.15;
        font-weight: 600;
        text-transform: uppercase;
    }

    .os-section-heading p {
        max-width: 700px;
        margin: 18px auto 0;
        color: #687b90;
        font-size: 16px;
        line-height: 1.8;
    }

.os-heading-line {
    width: 55px;
    height: 4px;
    margin-top: 18px;
    background: #f4bd00;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
}

.os-section-heading.center .os-heading-line {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   ABOUT GALLERY
========================================================= */

.os-about-gallery {
    position: relative;
    width: 100%;
    max-width: 620px;
}


/* MAIN IMAGE BOX */

.os-about-main-image {
    position: relative;
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 22px;
    background: #eef3f8;
    box-shadow: 0 25px 60px rgba(3, 29, 58, .16);
}


    /* MAIN IMAGE */
    .os-about-main-image img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        object-position: center;
        padding: 25px;
        opacity: 1;
        transform: scale(1);
        transition: opacity .45s ease, transform .7s ease;
    }

    /* IMAGE HOVER */
    .os-about-main-image:hover img {
        transform: scale(1.02);
    }


    /* BLUE IMAGE OVERLAY */

    .os-about-main-image::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: linear-gradient( 135deg, rgba(7, 59, 115, .08), transparent 45%, rgba(3, 29, 58, .18) );
    }


/* =========================================================
   IMAGE NUMBER BADGE
========================================================= */

.os-about-image-number {
    position: absolute;
    z-index: 5;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    height: 32px;
    padding: 0 12px;
    border-radius: 50px;
    background: #073b73;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(3,29,58,.2);
}


/* =========================================================
   THUMBNAIL WRAPPER
========================================================= */

.os-about-thumbs {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 5px 4px 10px;
    scrollbar-width: thin;
    scrollbar-color: #073b73 transparent;
}


    /* REMOVE WEBKIT DEFAULT */

    .os-about-thumbs::-webkit-scrollbar {
        height: 5px;
    }

    .os-about-thumbs::-webkit-scrollbar-track {
        background: transparent;
    }

    .os-about-thumbs::-webkit-scrollbar-thumb {
        background: #073b73;
        border-radius: 20px;
    }


/* =========================================================
   THUMBNAIL
========================================================= */

.os-about-thumb {
    width: 130px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f4f7fa;
    border-radius: 12px;
    padding: 10px;
    margin-top:5px;
}

    .os-about-thumb img {
        width: 72%;
        height: 72%;
        object-fit: contain;
        display: block;
    }

    /* HOVER */

    .os-about-thumb:hover {
        transform: translateY(-5px);
        border-color: #f4bd00;
        box-shadow: 0 12px 25px rgba(7,59,115,.18);
        margin-top: 5px;
    }

        .os-about-thumb:hover img {
            transform: scale(1.08);
        }


    /* ACTIVE */

    .os-about-thumb.active {
        border-color: #073b73;
        box-shadow: 0 0 0 3px rgba(244,189,0,.35), 0 12px 25px rgba(7,59,115,.18);
        transform: translateY(-4px);
    }


/* =========================================================
   ABOUT CONTENT
========================================================= */

.os-about-content {
    max-width: 600px;
}

.os-small-label {
    display: inline-block;
    margin-bottom: 14px;
    color: #079af0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.os-about-content h3 {
    margin: 0 0 20px;
    color: #073b73;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 800;
}

.os-about-content p {
    margin-bottom: 15px;
    color: #68798d;
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   ABOUT FEATURES
========================================================= */

.os-about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 28px 0;
}

    .os-about-features > div {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px;
        background: #f5f8fc;
        border: 1px solid #e8eef5;
        border-radius: 12px;
        transition: .3s ease;
    }

        .os-about-features > div:hover {
            transform: translateY(-4px);
            background: #ffffff;
            border-color: #d9e4ef;
            box-shadow: 0 10px 25px rgba(7,59,115,.08);
        }

    .os-about-features i {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 43px;
        height: 43px;
        flex-shrink: 0;
        border-radius: 50%;
        background: #073b73;
        color: #f4bd00;
        font-size: 18px;
    }

    .os-about-features strong {
        display: block;
        color: #173957;
        font-size: 15px;
    }

    .os-about-features small {
        display: block;
        margin-top: 3px;
        color: #8190a0;
        font-size: 12px;
    }


/* =========================================================
   BUTTON
========================================================= */

.os-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    background: #073b73;
    color: #fff !important;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s ease;
    box-shadow: 0 8px 20px rgba(7,59,115,.15);
}

    .os-primary-btn:hover {
        background: #f4bd00;
        color: #073b73 !important;
        transform: translateY(-3px);
        box-shadow: 0 12px 25px rgba(244,189,0,.25);
    }


/* =========================================================
   PRODUCT RANGE
========================================================= */

.os-range-section {
    padding: 95px 0;
    background: #f5f8fc;
    margin-bottom:30px;
}

.os-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.os-product-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5ebf2;
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(7,59,115,.07);
    transition: .4s ease;
}

    .os-product-card:hover {
        transform: translateY(-9px);
        box-shadow: 0 22px 50px rgba(7,59,115,.15);
    }


/* PRODUCT IMAGE */

.os-product-image {
    position: relative;
    height: 230px;
    overflow: hidden;
    background: #edf3f8;
}

    .os-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 25px;
        transition: .5s ease;
    }

.os-product-card:hover .os-product-image img {
    transform: scale(1.08);
}

.os-product-number {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #073b73;
    color: #f4bd00;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
}


/* PRODUCT CONTENT */

.os-product-content {
    padding: 25px;
}

.os-product-category {
    color: #079af0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
}

.os-product-content h3 {
    margin: 7px 0 10px;
    color: #073b73;
    font-size: 22px;
    font-weight: 800;
}

.os-product-content p {
    min-height: 72px;
    margin-bottom: 18px;
    color: #75869a;
    font-size: 13px;
    line-height: 1.7;
}

.os-product-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #073b73;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

    .os-product-content a i {
        transition: .3s ease;
    }

    .os-product-content a:hover i {
        transform: translateX(5px);
    }


/* =========================================================
   ALL PRODUCTS
========================================================= */

.os-all-products {
    padding: 95px 0;
    background: #031d3a;
}

.os-products-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 10% 30%, rgba(0,116,210,.30), transparent 30% ), radial-gradient( circle at 90% 70%, rgba(244,189,0,.08), transparent 25% );
}

.os-section-heading.light h2 {
    color: #ffffff;
}

.os-section-heading.light p {
    color: rgba(255,255,255,.65);
}


/* SHOWCASE */

.os-product-showcase {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.os-showcase-item {
    text-align: center;
    text-decoration: none;
    transition: .4s ease;
}

    .os-showcase-item:hover {
        transform: translateY(-10px);
    }

.os-showcase-circle {
    width: 180px;
    height: 180px;
    padding: 6px;
    border: 2px solid rgba(255,255,255,.8);
    border-radius: 50%;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);
}

    .os-showcase-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        transition: .5s ease;
    }

.os-showcase-item:hover .os-showcase-circle img {
    transform: scale(1.1);
}

.os-showcase-item h4 {
    margin: 18px 0 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
}

.os-showcase-item span {
    color: #f4bd00;
    font-size: 11px;
}


/* =========================================================
   STATISTICS
========================================================= */

.os-statistics-section {
    padding: 90px 0;
    background: #f6f9fc;
}

.os-statistics-wrapper {
    display: grid;
    grid-template-columns: 32% 68%;
    align-items: center;
    gap: 50px;
}

.os-stat-intro span {
    color: #079af0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
}

.os-stat-intro h2 {
    margin: 12px 0;
    color: #073b73;
    font-size: 35px;
    line-height: 1.2;
    font-weight: 800;
}

.os-stat-intro p {
    color: #718196;
    font-size: 15px;
    line-height: 1.7;
}


/* STATS */

.os-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.os-stat-card {
    position: relative;
    padding: 30px 15px;
    text-align: center;
    background: #ffffff;
    border-radius: 12px;
    border-bottom: 4px solid #f4bd00;
    box-shadow: 0 10px 30px rgba(7,59,115,.07);
    transition: .35s ease;
}

    .os-stat-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 20px 40px rgba(7,59,115,.13);
    }

.os-stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #073b73;
    color: #f4bd00;
    font-size: 25px;
}

.os-stat-card strong {
    display: block;
    color: #073b73;
    font-size: 28px;
    font-weight: 800;
}

.os-stat-card span {
    display: block;
    margin-top: 4px;
    color: #8290a0;
    font-size: 15px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .os-about-grid {
        gap: 40px;
    }

    .os-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .os-product-showcase {
        gap: 40px;
    }
}


@media (max-width: 991px) {

    .os-about-grid {
        grid-template-columns: 1fr;
    }

    .os-about-gallery {
        max-width: 700px;
        margin: auto;
    }

    .os-about-content {
        max-width: 750px;
        margin: auto;
    }

    .os-statistics-wrapper {
        grid-template-columns: 1fr;
    }

    .os-stat-intro {
        text-align: center;
        max-width: 600px;
        margin: auto;
    }
}


@media (max-width: 767px) {

    .os-about-section,
    .os-range-section,
    .os-all-products,
    .os-statistics-section {
        padding: 65px 0;
    }

    .os-section-heading h2 {
        font-size: 30px;
    }

    .os-about-content h3 {
        font-size: 29px;
    }

    .os-about-main-image {
        height: 300px;
    }

    .os-about-features {
        grid-template-columns: 1fr;
    }

    .os-product-grid {
        grid-template-columns: 1fr;
    }

    .os-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .os-product-showcase {
        gap: 35px;
    }

    .os-showcase-circle {
        width: 140px;
        height: 140px;
    }

    .os-about-thumb {
        flex-basis: 85px;
        width: 85px;
        height: 65px;
    }
}


@media (max-width: 480px) {

    .os-stat-grid {
        grid-template-columns: 1fr;
    }

    .os-showcase-circle {
        width: 125px;
        height: 125px;
    }

    .os-product-showcase {
        gap: 25px;
    }

    .os-about-main-image {
        height: 260px;
    }
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 991px) {

    /* NAVBAR */
    .os-navbar {
        position: relative;
        z-index: 9999;
    }

        .os-navbar .container {
            width: 100%;
            max-width: 100%;
            padding: 0 15px;
        }

    .os-navbar-container {
        min-height: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }


    /* =====================================================
       LOGO
    ===================================================== */

    .os-logo {
        display: flex;
        align-items: center;
        position: relative;
        z-index: 10001;
    }

        .os-logo img {
            width: auto;
            max-width: 170px;
            height: auto;
            display: block;
        }


    /* =====================================================
       HAMBURGER
    ===================================================== */

    .os-menu-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0;
        background: transparent;
        border: 0;
        color: #063b73;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        position: relative;
        z-index: 10002;
    }

        .os-menu-toggle:focus {
            outline: none;
            box-shadow: none;
        }


    /* =====================================================
       MOBILE NAV WRAPPER
    ===================================================== */

    .os-nav-wrapper {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        display: none;
        background: #ffffff;
        border-top: 1px solid #e5edf3;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        z-index: 9998;
    }

        .os-nav-wrapper.active {
            display: block;
        }


    /* =====================================================
       MAIN NAV
    ===================================================== */

    .os-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 8px 0 15px;
        list-style: none;
    }

        .os-nav > li {
            width: 100%;
            margin: 0;
            padding: 0;
        }


            /* =====================================================
       NAV LINKS
    ===================================================== */

            .os-nav > li > a {
                width: 100%;
                min-height: 50px;
                display: flex;
                align-items: center;
                padding: 14px 20px;
                color: #063b73;
                background: #ffffff;
                font-size: 16px;
                font-weight: 600;
                text-decoration: none;
                border-bottom: 1px solid #edf2f6;
                transition: all .25s ease;
            }

                .os-nav > li > a:hover {
                    background: #f3f8fb;
                    color: #087d9c;
                }


    /* =====================================================
       PRODUCTS DROPDOWN LINK
    ===================================================== */

    .os-dropdown {
        width: 100%;
        position: relative;
    }

    .os-dropdown-link {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 15px;
        cursor: pointer;
    }

        .os-dropdown-link > span:first-child {
            flex: 1;
        }


    /* =====================================================
       PLUS BUTTON
    ===================================================== */

    .mobile-dropdown-icon {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        background: #063b73;
        color: #ffffff;
        font-family: Arial, sans-serif;
        font-size: 21px;
        font-weight: 400;
        line-height: 1;
        transition: transform .3s ease, background .3s ease, color .3s ease;
    }


    /* OPEN STATE */

    .os-dropdown.active .mobile-dropdown-icon {
        background: #f5bd00;
        color: #063b73;
        transform: rotate(45deg);
    }


    /* =====================================================
       DROPDOWN MENU
    ===================================================== */

    .os-dropdown-menu {
        position: static !important;
        width: 100% !important;
        display: none !important;
        margin: 0 !important;
        padding: 5px 0 !important;
        background: #f5f9fc !important;
        border: 0 !important;
        box-shadow: none !important;
        list-style: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    .os-dropdown.active .os-dropdown-menu {
        display: block !important;
    }


    /* =====================================================
       DROPDOWN ITEMS
    ===================================================== */

    .os-dropdown-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .os-dropdown-menu li a {
            position: relative;
            width: 100%;
            display: block !important;
            padding: 12px 20px 12px 42px !important;
            color: #36566e !important;
            background: transparent !important;
            font-size: 14px !important;
            font-weight: 500;
            text-decoration: none;
            border-bottom: 1px solid #e1eaf0 !important;
            transition: all .25s ease;
        }


            /* Small yellow bullet */

            .os-dropdown-menu li a::before {
                content: "";
                position: absolute;
                left: 23px;
                top: 50%;
                width: 6px;
                height: 6px;
                transform: translateY(-50%);
                background: #f5bd00;
                border-radius: 50%;
            }


            /* Dropdown hover */

            .os-dropdown-menu li a:hover {
                padding-left: 47px !important;
                color: #063b73 !important;
                background: #eef7fa !important;
            }

                .os-dropdown-menu li a:hover::before {
                    background: #063b73;
                }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

    .os-navbar .container {
        padding: 0 12px;
    }

    .os-navbar-container {
        min-height: 64px;
    }


    /* LOGO */

    .os-logo img {
        width: auto;
        max-width: 150px;
        height: auto;
    }


    /* HAMBURGER */

    .os-menu-toggle {
        width: 42px;
        height: 42px;
        font-size: 29px;
    }


    /* NAV */

    .os-nav-wrapper {
        max-height: calc(100vh - 64px);
    }

    .os-nav > li > a {
        min-height: 48px;
        padding: 13px 16px;
        font-size: 15px;
    }


    /* PLUS */

    .mobile-dropdown-icon {
        width: 29px;
        height: 29px;
        flex-basis: 29px;
        font-size: 20px;
    }


    /* DROPDOWN */

    .os-dropdown-menu li a {
        padding: 11px 16px 11px 38px !important;
        font-size: 14px !important;
    }

        .os-dropdown-menu li a::before {
            left: 20px;
        }

        .os-dropdown-menu li a:hover {
            padding-left: 43px !important;
        }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 380px) {

    .os-logo img {
        max-width: 260px;
        margin-left: 6px;
    }

    .os-menu-toggle {
        width: 40px;
        height: 40px;
        font-size: 27px;
    }

    .os-nav > li > a {
        padding-left: 14px;
        padding-right: 14px;
    }

    .mobile-dropdown-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
    }
}


