:root {
    --brand: #001648;
    --brand-2: #0a2470;
    --brand-soft: #001138;
    --accent: #ff7a29;
    --accent-2: #3b82f6;
    --muted: #9ca6bf;
    --line: rgba(255, 255, 255, .08);
    --radius: 12px;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: normal;
    color: #555555;
    margin: 0;
    background: #f6f8fc;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit
}

ul {
    list-style: none;
    padding: 0;
    margin: 0
}

/* ================== HEADER ================== */
.ol-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 1px 0 rgba(10, 36, 112, .06);
    transition: box-shadow .3s var(--ease);
}

.ol-header.scrolled {
    box-shadow: 0 10px 30px -18px rgba(10, 36, 112, .35)
}

/* Top utility strip */
.ol-topbar {
    background: linear-gradient(90deg, var(--brand) 0%, var(--brand-2) 100%);
    color: #cfd6ea;
    font-size: 13px;
    overflow: hidden;
    max-height: 44px;
    will-change: max-height;
    transition: max-height .4s var(--ease), padding .4s var(--ease), opacity .3s var(--ease);
}

.ol-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.ol-topbar a {
    color: #cfd6ea;
    transition: color .2s var(--ease)
}

.ol-topbar a:hover {
    color: #fff
}

.ol-topbar-left {
    display: flex;
    gap: 22px;
    flex-wrap: wrap
}

.ol-topbar-left span {
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.ol-topbar-left i {
    color: var(--accent)
}

.ol-topbar-socials {
    display: flex;
    gap: 14px
}

.ol-topbar-socials a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .06);
    transition: background .2s var(--ease), transform .2s var(--ease);
}

.ol-topbar-socials a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px)
}

.ol-header.scrolled .ol-topbar {
    max-height: 0;
    padding: 0;
    opacity: 0
}

/* Main nav row */
.ol-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    transition: padding .3s var(--ease);
}

.ol-header.scrolled .ol-nav {
    padding: 10px 0
}

.ol-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

.ol-logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), var(--accent-2));
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 8px 20px -10px rgba(59, 130, 246, .55);
}

.ol-logo-text {
    font-weight: 800;
    font-size: 22px;
    color: var(--brand);
    letter-spacing: .2px
}

.ol-logo-text span {
    color: var(--accent)
}

/* Desktop menu */
.ol-menu {
    display: flex;
    align-items: center;
    gap: 6px
}

.ol-menu>li>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-weight: 600;
    font-size: 15px;
    color: #1a2340;
    border-radius: 10px;
    position: relative;
    transition: color .2s var(--ease), background .2s var(--ease);
}

.ol-menu>li>a::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s var(--ease);
}

.ol-menu>li>a:hover,
.ol-menu>li>a.active {
    color: var(--brand)
}

.ol-menu>li>a:hover::after,
.ol-menu>li>a.active::after {
    transform: scaleX(1)
}

/* Dropdown */
.ol-has-drop {
    position: relative
}

.ol-drop {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 240px;
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 20px 50px -20px rgba(10, 36, 112, .35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s var(--ease);
    border: 1px solid rgba(10, 36, 112, .06);
}

.ol-drop li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: #1a2340;
    transition: background .2s var(--ease), color .2s var(--ease), padding-left .2s var(--ease);
}

.ol-drop li a i {
    color: var(--accent);
    width: 18px
}

.ol-drop li a:hover {
    background: #f2f5fb;
    color: var(--brand);
    padding-left: 16px
}

.ol-has-drop:hover .ol-drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

/* CTA */
.ol-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    background: var(--brand);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .4px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .25s var(--ease);
    box-shadow: 0 10px 24px -14px rgba(0, 22, 72, .8);
}

.ol-cta:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px -14px rgba(255, 122, 41, .6)
}

.ol-cta i {
    transition: transform .25s var(--ease)
}

.ol-cta:hover i {
    transform: translateX(3px)
}

/* Hamburger */
.ol-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(10, 36, 112, .12);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s var(--ease);
}

.ol-burger:hover {
    background: #f2f5fb
}

.ol-burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--brand);
    position: relative;
    transition: transform .3s var(--ease), opacity .2s var(--ease);
}

.ol-burger span::before,
.ol-burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: var(--brand);
    transition: transform .3s var(--ease), top .3s var(--ease);
}

.ol-burger span::before {
    top: -7px
}

.ol-burger span::after {
    top: 7px
}

body.drawer-open .ol-burger span {
    background: transparent
}

body.drawer-open .ol-burger span::before {
    top: 0;
    transform: rotate(45deg)
}

body.drawer-open .ol-burger span::after {
    top: 0;
    transform: rotate(-45deg)
}

/* Mobile drawer */
.ol-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(6, 14, 40, .55);
    opacity: 0;
    visibility: hidden;
    z-index: 1100;
    transition: opacity .3s var(--ease), visibility .3s var(--ease);
    backdrop-filter: blur(4px);
}

.ol-drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 320px;
    max-width: 85vw;
    background: #fff;
    z-index: 1101;
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px -10px rgba(10, 36, 112, .25);
}

body.drawer-open .ol-drawer-backdrop {
    opacity: 1;
    visibility: visible
}

body.drawer-open .ol-drawer {
    transform: translateX(0)
}

.ol-drawer-head {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(10, 36, 112, .08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ol-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 0;
    background: #f2f5fb;
    color: var(--brand);
    cursor: pointer;
}

.ol-drawer-body {
    padding: 14px 16px;
    overflow-y: auto;
    flex: 1
}

.ol-drawer-menu>li {
    border-bottom: 1px solid rgba(10, 36, 112, .06)
}

.ol-drawer-menu>li>a,
.ol-drawer-menu>li>button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 10px;
    background: transparent;
    border: 0;
    text-align: left;
    font-size: 15.5px;
    font-weight: 600;
    color: #1a2340;
    cursor: pointer;
}

.ol-drawer-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
    background: #f7f9fd;
    border-radius: 10px;
    margin: 0 0 10px;
}

.ol-drawer-submenu.open {
    max-height: 400px
}

.ol-drawer-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: #334;
}

.ol-drawer-submenu a i {
    color: var(--accent)
}

.ol-drawer-menu>li>button .chev {
    transition: transform .3s var(--ease)
}

.ol-drawer-menu>li>button.active .chev {
    transform: rotate(180deg)
}

.ol-drawer-foot {
    padding: 18px 22px;
    border-top: 1px solid rgba(10, 36, 112, .08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ol-drawer-foot a.ol-cta {
    justify-content: center
}

.ol-drawer-contact {
    font-size: 13px;
    color: #4a5370;
    display: flex;
    flex-direction: column;
    gap: 6px
}

.ol-drawer-contact i {
    color: var(--accent);
    width: 16px
}

/* ================== DEMO HERO ================== */
.demo-hero {
    background:
        radial-gradient(1000px 500px at 80% -20%, rgba(59, 130, 246, .18), transparent 60%),
        radial-gradient(800px 400px at -10% 110%, rgba(255, 122, 41, .12), transparent 60%),
        #0b1020;
    color: #fff;
    padding: 90px 0 110px;
    text-align: center;
}

.demo-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -.5px;
    margin: 0 0 16px;
}

.demo-hero p {
    color: #9ca6bf;
    max-width: 620px;
    margin: 0 auto 30px;
    font-size: 17px
}

.demo-hero .chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .08);
    color: #cfd6ea;
    border-radius: 999px;
    margin-bottom: 20px;
}

/* ================== FOOTER ================== */
.ol-footer {
    background: linear-gradient(180deg, var(--brand) 0%, var(--brand-soft) 100%);
    color: #cfd6ea;
    position: relative;
    overflow: hidden;
}

.ol-footer::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .18), transparent 70%);
    pointer-events: none;
}

.ol-footer::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: -180px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 41, .12), transparent 70%);
    pointer-events: none;
}

.ol-footer-top {
    padding: 70px 0 40px;
    position: relative;
    z-index: 1
}

.ol-footer h6.title {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}

.ol-footer h6.title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

.ol-footer p,
.ol-footer li {
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.7
}

.ol-footer .brand-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.ol-footer .brand-wrap .ol-logo-mark {
    width: 40px;
    height: 40px;
    font-size: 18px
}

.ol-footer .brand-wrap .name {
    color: #fff;
    font-weight: 800;
    font-size: 22px
}

.ol-footer .brand-wrap .name span {
    color: var(--accent)
}

.ol-footer .queries {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.ol-footer .queries i {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.ol-footer .queries a {
    color: #fff
}

.ol-footer .queries a:hover {
    color: var(--accent)
}

.ol-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px
}

.ol-socials a {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #cfd6ea;
    font-size: 15px;
    transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
}

.ol-socials a:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-3px)
}

.ol-socials a img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(.85);
    transition: filter .25s var(--ease)
}

.ol-socials a:hover img {
    filter: brightness(0) invert(1)
}

.ol-footer-list li {
    padding: 6px 0
}

.ol-footer-list li a {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color .2s var(--ease), padding-left .25s var(--ease);
}

.ol-footer-list li a i {
    color: var(--accent);
    font-size: 10px;
    transition: transform .25s var(--ease)
}

.ol-footer-list li a:hover {
    color: #fff;
    padding-left: 6px
}

.ol-footer-list li a:hover i {
    transform: translateX(3px)
}

/* Enquiry form */
.ol-enquiry .form-field {
    position: relative;
    margin-bottom: 18px
}

.ol-enquiry input,
.ol-enquiry textarea {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: border-color .2s var(--ease), background .2s var(--ease);
}

.ol-enquiry textarea {
    resize: vertical;
    min-height: 90px
}

.ol-enquiry input:focus,
.ol-enquiry textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, .06);
}

.ol-enquiry input::placeholder,
.ol-enquiry textarea::placeholder {
    color: #7e88a5
}

.ol-enquiry .send-btn {
    width: 100%;
    padding: 13px 18px;
    background: var(--accent);
    color: #fff;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: .5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .25s var(--ease), transform .2s var(--ease);
}

.ol-enquiry .send-btn:hover {
    background: #ff8d43;
    transform: translateY(-2px)
}

.ol-success {
    display: none;
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    color: #86efac;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    margin-bottom: 14px;
}

.ol-success.show {
    display: block
}

/* Bottom bar */
.ol-footer-bottom {
    border-top: 1px solid var(--line);
    padding: 18px 0;
    position: relative;
    z-index: 1;
}

.ol-footer-bottom .inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.ol-footer-bottom p {
    margin: 0;
    color: var(--muted);
    font-size: 14px
}

.ol-footer-bottom ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px
}

.ol-footer-bottom ul a {
    color: var(--muted);
    font-size: 14px;
    transition: color .2s var(--ease)
}

.ol-footer-bottom ul a:hover {
    color: #fff
}

/* Back to top */
.ol-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #001a57;
    color: #fff;
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 12px 30px -12px rgba(255, 122, 41, .8);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all .3s var(--ease);
}

.ol-top.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto
}

.ol-top:hover {
    transform: translateY(-3px)
}

/* ================== RESPONSIVE ================== */
@media (max-width: 991.98px) {

    .ol-menu,
    .ol-cta-desktop {
        display: none
    }

    .ol-burger {
        display: inline-flex
    }

    .ol-topbar {
        font-size: 12px
    }

    .ol-topbar-left {
        gap: 14px
    }

    .ol-topbar-left span.hide-md {
        display: none
    }
}

@media (max-width: 575.98px) {
    .ol-topbar-socials {
        display: none
    }

    .ol-topbar-inner {
        justify-content: center
    }

    .ol-logo-text {
        font-size: 18px
    }

    .ol-logo-mark {
        width: 36px;
        height: 36px;
        font-size: 16px
    }

    .ol-footer-bottom ul {
        justify-content: flex-start
    }

    .ol-footer-top {
        padding: 55px 0 30px
    }
}