@charset "utf-8";
/*..............embedded fonts..............*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@200;300;400;500;600;700&display=swap');

/*..............embedded fonts..............*/
/*font-family: 'Josefin Sans', sans-serif;*/
/*..............custom fonts..............*/

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-Book.eot');
    src: url('../fonts/MaisonNeue-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MaisonNeue-Book.woff2') format('woff2'),
        url('../fonts/MaisonNeue-Book.woff') format('woff'),
        url('../fonts/MaisonNeue-Book.ttf') format('truetype'),
        url('../fonts/MaisonNeue-Book.svg#MaisonNeue-Book') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-Medium.eot');
    src: url('../fonts/MaisonNeue-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MaisonNeue-Medium.woff2') format('woff2'),
        url('../fonts/MaisonNeue-Medium.woff') format('woff'),
        url('../fonts/MaisonNeue-Medium.ttf') format('truetype'),
        url('../fonts/MaisonNeue-Medium.svg#MaisonNeue-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Maison Neue';
    src: url('../fonts/MaisonNeue-DemiBold.eot');
    src: url('../fonts/MaisonNeue-DemiBold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/MaisonNeue-DemiBold.woff2') format('woff2'),
        url('../fonts/MaisonNeue-DemiBold.woff') format('woff'),
        url('../fonts/MaisonNeue-DemiBold.ttf') format('truetype'),
        url('../fonts/MaisonNeue-DemiBold.svg#MaisonNeue-DemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


/*..............custom fonts..............*/

:root{
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */
    --transition-common: all 0.6s ease 0s;
    /* ~-~-~-~-~ common transition ~-~-~-~-~ */

    /* ~-~-~-~-~ colors ~-~-~-~-~ */
    --clr-primary: #fff;
    --clr-secondary: #4AA5D8;
    --clr-accent: #e87500;
    /*--clr-secondary: #03457f;*/
    --clr-black: #000;
    --clr-body-bg: #17212C;
    /* ~-~-~-~-~ colors ~-~-~-~-~ */

    /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */
    --margin-title: 0 0 20px 0;
    --button-border-width: 1px;
    --button-border-style: solid;
    --button-broder-radius: 5px;
    --button-broder-color: purple;

    --border-radius-image: 10px;
    /* ~-~-~-~-~ other adjustments ~-~-~-~-~ */
}

:root{
    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */
    --ff-base:'Maison Neue';
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-demibold: 600;
    /* ~-~-~-~-~ declare font family & weight ~-~-~-~-~ */

    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
    /*--f-size-XXXXL: 80px;*/
    --f-size-XXXXL: 65px;
    --f-size-XXXL: 60px; /*--h1--*/
    --f-size-XXL: 50px; /*--h1--*/
    --f-size-XL: 36px;/*--h2--*/
    --f-size-L: 30px;/*--h3--*/
    --f-size-M: 24px;/*--h4--*/
    --f-size-S: 20px;/*--h6--*/
    --f-size-btn: 18px;/*--btn-font-fize--*/
    --f-size-Body: 16px;/*--p--*/
    /* ~-~-~-~-~ declare font size ~-~-~-~-~ */
}
html {
  scroll-behavior: smooth;
}
:is(body,p){ font-family: var(--ff-base); font-weight: var(--fw-regular); font-size: var(--f-size-Body); color: var(--clr-primary);}
:is(h1,.h1,h2,.h2,h3,.h3,h4,.h4,h5,.h5,h6,.h6){ font-family: var(--ff-base); font-weight: var(--fw-bold); color: var(--clr-primary); margin: var(--margin-title);}
:is(h1,.h1){ font-size: var(--f-size-XXXXL);}
:is(h2,.h2){ font-size: var(--f-size-XXL);}
:is(h3,.h3){ font-size: var(--f-size-XL);}
:is(h4,.h4){ font-size: var(--f-size-L);}
:is(h5,.h5){ font-size: var(--f-size-M);}
:is(h6,.h6){ font-size: var(--f-size-S);}


/*@media only screen and (max-width: 1699px) {

    :root{
        --f-size-XXXL: 70px;
        --f-size-XXL: 65px;
        --f-size-XL: 55px;
        --f-size-L: 40px;
    }
}*/

/*..............common styles..............*/
body { margin: 0; padding: 0; background-color: var(--clr-body-bg);}
h1, h2, h3, h4, h5, h6 { font-weight: 500; margin:0 0 20px; padding:0; color: var(--clr-primary); color: var(--clr-primary);}

img{ max-width: 100%;}
a, img{ border:0; text-decoration: none; outline: none;}
a, a:link, a:visited, a:focus, a:hover { /*color: #179ae2;*/ outline: none; text-decoration: none; transition:all 0.3s ease 0s;}
a:hover{ text-decoration:none;}

input, textarea, select{ font-family: var(--ff-base); font-weight: var(--fw-regular); font-size: var(--f-size-Body); color: var(--clr-primary); outline: none;}
input[type="submit"]{ font-family: var(--ff-base); font-weight: var(--fw-medium); font-size: var(--f-size-btn); transition:all 0.3s ease 0s; outline: none;}

.proof-bar-sec {
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.proof-bar-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}

.proof-bar-item {
    padding: 18px 16px;
    border-radius: 14px;
    background: #f7f9fc;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proof-bar-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 600;
    color: #102a43;
}

@media (max-width: 991px) {
    .proof-bar-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .proof-bar-row {
        grid-template-columns: 1fr;
    }
}


/* --- Button Styles --- */
.btn { border: 0; display: inline-block; vertical-align: top; background-color: var(--clr-accent); color: var(--clr-primary); padding: 14px 28px; font-family: var(--ff-base); font-weight: var(--fw-medium); font-size: var(--f-size-btn); text-transform: capitalize;}
.btn-black{ background: var(--clr-black); color: #fff; border: 1px solid var(--clr-secondary);}
.btn.border { background:none; color: #769fcd; border: 1px solid var(--clr-secondary); }


.btn:focus, button:focus{outline: none;}
.btn:hover{background-color: #c95f00; color: var(--clr-white);}

/* --- Button Styles --- */

/*..............common styles..............*/

.click { display:none; /*color: #000; float: right; font-size: 28px;*/ position: absolute;
    top: 0;
    right: 0;
    background-color: #e5e5e5;
    width: 44px;
    height: 44px;}
.main_menu a.closebtn{
    display: none;
    }

   .common-padding { padding-top: 100px; padding-bottom: 100px;}
   .common-padding-md { padding-top: 50px; padding-bottom: 50px;}

  /*  .for-mob{display: none;}*/

/*for header css*/
.main-header { /*background: rgba(30, 30, 34, 0.9);*/ position: absolute; top: 0; left: 0; width: 100%; z-index: 9;
-webkit-transition: all 0.6s ease-in-out 0.3s;
  -moz-transition: position 10s;
  -ms-transition: position 10s;
  -o-transition: position 10s;
  transition: all 0.6s ease-in-out 0.3s;
}
/*-- For-stickyHeader-css(Start) --*/
.main-header.stickyHeader{position: fixed; top:0; right: 0; left: 0; width: 100%; z-index: 5; transition: all 0.6s ease-in-out 0s; /*animation: smoothScroll 1s forwards;*/ background-color: rgba(13, 20, 26, 0.98);}

@keyframes smoothScroll {
  0% {
    transform: translateY(-40px);
  }
  100% {
    transform: translateY(0px);
  }
}
.main-header.stickyHeader .headerRow {
    padding: 10px 0;
}
.logo{transition: var(--transition-common); width: 100px; /*width: 200px;*/}
.main-header.stickyHeader .logo { width: 60px; /*width: 120px;*/}

/*-- For-stickyHeader-css(End) --*/

.headerRow{display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #B7B7B7; /*padding: 30px 0;*/ padding: 10px 0; transition: var(--transition-common);}
.header-right { display: flex; flex-flow: row wrap; align-items: center; /*justify-content: flex-end;*/ justify-content: space-between; /*width: calc(100% - 370px);*/}
.header-right-btns { display: flex; flex-flow: row wrap; align-items: center; justify-content: flex-end; padding-left: 25px;}
.header-right-btns>div{margin-right: 20px;}
.header-right-btns>div:last-child{margin-right: 0px;}
/*.header-right .header-right-btns .header-fixed-btn { position: fixed; z-index: 9999;}*/
.btn.login-btn{background-color: var(--clr-body-bg); border: 1px solid var(--clr-secondary);}
.btn.login-btn:hover{background-color: var(--clr-secondary); color: var(--clr-primary); border: 1px solid var(--clr-body-bg);}

.header-contact-link a {
    display: block;
    color: var(--clr-primary);
    font-size: 18px;
    font-weight: var(--fw-medium);
}

.header-contact-link a:hover {
    color: #0066CC;
}

.mobile-contact-link {
    display: block;
    margin-top: 14px;
    color: var(--clr-primary);
    font-size: 18px;
    font-weight: var(--fw-medium);
}


/*.main_menu { float: right; }*/
.main_menu ul { margin: 0; padding: 0; list-style: none;}
.main_menu ul li { list-style: none; display: inline-block; vertical-align: top; /*margin: 0 25px;*/ margin: 0 30px; text-transform: capitalize; position: relative;}
.main_menu ul li:first-child { margin-left: 0;}
.main_menu ul li:last-child { margin-right: 0;}
.main_menu ul li a { display: block; padding: 15px 0; color: var(--clr-primary); font-size: 18px; font-weight: var(--fw-medium);}
.main_menu ul li:hover>a, .main_menu ul li.active>a { /*color: var(--clr-secondary);*/ color: #0066CC;}

.main_menu ul li.menu-item-has-children span { position: absolute; top: 17px; right: -15px; width: 10px; height: 24px; transition: var(--transition-common); filter: brightness(10);}
.main_menu ul li.menu-item-has-children:hover span{transform: rotate(180deg); filter: brightness(1);}

/*-- sub-menu-css --*/
.main_menu ul li ul.sub-menu{position: absolute; width: 250px; background-color: var(--clr-black); left: 0; top: 55px; display: none;}
.main_menu ul li:hover ul.sub-menu{display: block;}
.main_menu ul li ul.sub-menu li { margin: 0 10px; display: block;}
.main_menu ul li ul.sub-menu li a { padding: 6px 0;}

/*-- search-box-drawer(Start) --*/
.header-search{cursor: pointer;}

    .search-box{ position: fixed; height: 180px; width: 100%; background: rgba(74, 165, 216, 0.98); z-index: 99; left: 0; top: 0; transition: all 0.6s ease-in-out 0s; display: none;}
    .search-boxinner{ position: absolute; top: 50%; transform: translate(-50%, -50%); left: 50%; width: 80%; margin: 0 auto; display: flex;}
    .search-input{width: 100%; padding: 6px 50px 6px 10px; background: transparent; border-radius: 0; border:none; border-bottom: 1px solid var(--clr-primary); height: 50px; font-size: var(--f-size-Body); color: var(--clr-primary);}
    .search-btn{border-radius: 0; border:none; cursor: pointer; width: 40px; background: transparent; color: var(--clr-primary); font-size: 21px;}
    .search-close { position: absolute; color: var(--clr-primary); top: 8px; right: 74px; cursor: pointer; font-size: 20px;}


    .search-input::placeholder {
  color: var(--clr-primary);
  opacity: 1; /* Firefox */
}

.search-input::-ms-input-placeholder { /* Edge 12-18 */
  color: var(--clr-primary);
}
/*-- search-box-drawer(End) --*/

/*for header css*/

.slider-wrap { position: relative; padding-top: 50%;}
.slider-wrap:before{ position: absolute; top: 0; bottom: 0; left: 0; right: 0; content: ""; background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.3) 20.64%, rgba(0, 0, 0, 0) 47.5%, rgba(0, 0, 0, 0.3) 68.22%, #000000 100%); z-index: 1;}
.bann-hom-video video { line-height: 0; width: 100%; height: 100%; object-fit: cover; left: 0; right: 0; position: absolute; top: 0; z-index: -1;}
.video-hom-wraper { position: absolute; /*top: 0; bottom: 0; left: 0;*/ right: 50px;
    top: 50%;
    max-width: 700px;
    transform: translateY(-50%);
}
.video-hom-wraper img { width: 100%; /*height: 100%;*/ object-fit: cover;}

.bann-content {
    position: absolute;
    /*bottom: 100px;*/
    /*bottom: 150px;*/
    bottom: 220px;
    left: 0;
    width: 100%; z-index: 1;}
.bann-content .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}
.bann-content .row {
    justify-content: center;
}
.bann-content-wrapper{/*max-width: 800px;*/ max-width: 660px;}
.bann-content h1 span{/*color: var(--clr-secondary);*/ color: #0066CC;}
.bann-buttons .btn:first-child { margin-right: 20px;}
.bann-buttons .btn.btn-black { border-color: #fff;}
.bann-buttons .btn.btn-black:hover {border-color: #0275b6;}

.bann-sound-btn{position: absolute; bottom: 100px; width: 79px; right: 140px; cursor: pointer;}
.bann-sound-btn:hover{opacity: 0.7;}
/*.bann-sound-btn img { margin-left: auto;}*/

/*-- banner-video-play-pause-btn-css(Start) --*/

.video-fullSec {
        position: relative;
        padding-top: 43%;
    }
    .video-fullSec video {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    .video-play {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        width: 100%;
        cursor: pointer;
    }
/*-- banner-video-play-pause-btn-css(End) --*/

/*for main sections css*/

/*-- slick-arrow-css(Start) --*/
.slick-arrow {
    background-color: #17212c!important;
    border: 1px solid #255a78;
    /*width: 60px;
    height: 60px;*/
    width: 70px;
    height: 70px;
    border-radius: 100px;
    z-index: 1;
    /*box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.14);*/
    transition: all 0.6s ease-in-out 0s;
    border-radius: 20px;
}
.slick-arrow:hover{background-color: #00283e !important;}
.slick-prev {
    background-image: url(../images/arrow-left.png) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    left: 0;
}
.slick-next {
    background-image: url(../images/arrow-right.png) !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    right: 0;
}
/*.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus*/

.slick-prev:before, .slick-next:before{display: none;}

/*-- slick-arrow-css(End) --*/

/*-- articleshom-sec(Start) --*/

.sce-common-sub-title{background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D); 
 /*border: 1px solid; border-image-source: linear-gradient(273.25deg, #193A4D 0.5%, #66C8FF 44.54%, #193A4D 99%);*/ margin: 0 auto 40px; border-radius: 10px; position: relative; padding: 15px 50px; display: table;}
.sce-common-sub-title:before{ background: linear-gradient(48deg, #173c50, #17212B, #17212B); left: 1px; right: 1px; position: absolute; content: ""; bottom: 1px; top: 1px; z-index: 0; border-radius: 10px;}


.sce-common-sub-title>p{margin-bottom: 0; color: var(--clr-primary); font-weight: var(--fw-demibold); position: relative; font-size: var(--f-size-S);}
.sec-common-top>p{color: #CCCCCC;}
.sec-title-bottom-gap{margin-bottom: 50px;}

.hom-article-shape{position: absolute; top: 0; left: 0; right: 0; z-index: -1;}

.articleshom-box.slick-slide, .workflow-box.slick-slide, .cloud-hom-row .cloudhom-box.slick-slide, .demo-hom-row .demohom-box.slick-slide, 
.ai-hom-row .aihom-box.slick-slide{ margin: 0 15px;}
.articles-hom-row .articleshom_carousel .slick-list.draggable, 
.workflow-hom-row .workflowhom_carousel .slick-list.draggable, 
.cloud-hom-row .cloudhom_carousel .slick-list.draggable { padding: 0 110px !important;}
.demo-hom-row .demohom_carousel .slick-list.draggable{ padding: 0 0px !important;}

.articleshom-box-inner{border-radius: 20px; overflow: hidden;}
.articleshom-box-top{background: linear-gradient(45deg, #0d0c11, #0f0e30, #043a78); padding: 70px 35px; display: flex; flex-flow: row wrap; justify-content: space-between; align-items: center;}
.articleshom-box-icon{background: var(--clr-primary); border-radius: 20px; overflow: hidden; width: 37%; text-align: center; padding: 9px;}
.articleshom-box-icon a:hover img{opacity: 0.8;}
.articleshom-box-icon img{margin: 0 auto;}
.articleshom-box-icon:nth-child(2){background: transparent; color: var(--clr-primary); margin: 0 10px; padding: 0; width: 13%; border-radius: 0;}
.articleshom-box-icon:nth-child(2) h4{margin-bottom: 0;}
.articleshom-box-bottom {/*background-color: #24313f;*/ background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D); padding: 30px 20px; position: relative;}
.articleshom-box-bottom:before{position: absolute; top: 0; bottom: 1px; left: 1px; right: 1px; background-color: #24313f; content: ""; z-index: 0;
    border-radius: 0 0 20px 20px;}
    .articleshom-box-bottom p{color: var(--clr-secondary); margin-bottom: 15px;}
    .articleshom-box-bottom h5{font-weight: var(--fw-demibold); margin-bottom: 0;}
    .articleshom-box-bottom h5 a{color: var(--clr-primary);}

/*-- articleshom-sec(End) --*/

/*-- hom-calculator-sec(Start) --*/

.hom-calculator-shape{position: absolute; left: 0; top: -120px; z-index: -1;}
.calculator-box{position: relative; padding: 60px; background-color: var(--clr-black); border-radius: 35px; overflow: hidden;}
.calculator-box:before{position: absolute; background: url(../images/calculator-gradient.png) no-repeat bottom left; top: 0; left: 0; bottom: 0; content: ""; max-width: 850px; width: 850px;}

.calculator-box-top{border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 50px;}

.calculator-box .form-control{height: 60px;}
.gradient-input-bg{background-color: #364A60; border-radius: 20px 20px; color: var(--clr-primary) !important; border: 1px solid var(--clr-secondary);}
/*.gradient-input-bg:before{background-color: #364A60; position: absolute; top: 0; bottom: 1px; left: 1px; right: 1px; content: ""; z-index: 0; border-radius: 20px 20px;}*/
.gradient-input-bg::placeholder { color: var(--clr-primary); opacity: 1;}
.gradient-input-bg::-ms-input-placeholder { color: var(--clr-primary);}
.gradient-input-bg:focus{background-color: #364A60;}

.number-wraper, .calculator-wraper { margin-bottom: 50px;}







/*-- range-slider(Start) --*/

/*Range style*/
#range-slider__range {
  appearance: none;
  /*width: calc(100% - (73px));*/
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: #d7dcdf; 
  outline: none;
  padding: 0;
  margin: 0;
}

/*Range black - thumb*/
#range-slider__range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: var(--clr-secondary);
  cursor: pointer;
  transition: background 0.15s ease-in-out;}

/*On hover change colour of black thumb into green - and scale size*/
#range-slider__range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  background: var(--clr-secondary);}

#range-slider__range:active::-webkit-slider-thumb {
  transform: scale(1.1);
  background: #2b688b;}

/*Range current value*/


.range-counter-row {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 100%;
}
/*-- range-slider(End) --*/
.gradient-border-bg {
    background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D);
    position: relative;
    /*padding: 13px 20px;
    display: table;*/
}
.gradient-border-bg:before {
    background: linear-gradient(48deg, #173c50, #17212B, #17212B);
    left: 1px;
    right: 1px;
    position: absolute;
    content: "";
    bottom: 1px;
    top: 1px;
    z-index: 0;
}
.gradient-border-inner{position: relative;}
.counter-box{border-radius: 20px;}
.counter-box.gradient-border-bg:before{border-radius: 20px;}
.counter-box{padding: 30px 25px; height: 100%;}
.counter-box h5{font-weight: var(--fw-medium); font-weight: var(--fw-regular); font-size: var(--f-size-Body);}
.counter-box h2{color: var(--clr-secondary); margin-bottom: 0; font-size: 29px; font-weight: var(--fw-medium); word-break: break-all;}

.save-email-row h6{font-size: var(--f-size-btn);}
.calculator-box-middle{padding-top: 50px;}
.calculator-box-middle h4{text-align: center; margin-bottom: 45px;}

.calculator-box-bottom{padding-top: 50px; max-width: 890px; margin: 0 auto;}

.time-box{display: flex; flex-flow: row wrap; align-items: center; position: relative;}
.time-box:after{background: linear-gradient(to bottom, #17212C, #FFFFFF, #17212C); position: absolute; right: 0; top: 0; bottom: 0; content: ""; width: 2px;}
.calculator-box-bottom .col-xl-4.col-6.mb-4:last-child .time-box:after{display: none;}
.time-icon{width: 60px; height: 60px; border-radius: 20px; display: flex; align-items: center; justify-content: center;}
.time-icon.gradient-border-bg:before{ border-radius: 20px;}
.time-icon img{position: relative;}
.time-content{width: calc(100% - 60px); padding-left: 20px; padding-right: 20px;}
.time-content h5{margin-bottom: 0; font-weight: var(--fw-demibold);}
.time-content h5 a{color: var(--clr-primary);}
.time-content h5 a:hover{color: var(--clr-secondary);}

.save-pdf {padding-top: 30px;}
.save-pdf p{ font-weight: var(--fw-medium); font-size: var(--f-size-btn);}
.save-pdf a{color: var(--clr-secondary); text-decoration: underline;}
.save-pdf a span { text-decoration: none; margin-right: 10px;}


/*-- hom-calculator-sec(End) --*/

/*-- hom-workflow-sec(Start) --*/

.hom-workflow-shape{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1;}
.workflow-box-top{ background: linear-gradient(45deg, #0d0c11, #0f0e30, #043a78); padding: 30px 15px; display: flex; flex-flow: row wrap; justify-content: center; align-items: center; border-radius: 20px 20px 0 0; /*min-height: 265px;*/ min-height: 280px;}
.workflow-box-bottom{padding: 30px 15px; border-radius: 0 0 20px 20px; background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D); position: relative;}
.workflow-box-bottom:before { position: absolute; top: 0; bottom: 1px; left: 1px; right: 1px; background-color: #24313f; content: ""; z-index: 0; border-radius: 0 0 20px 20px;}

.workflow-box-bottom h5{font-weight: var(--fw-demibold); margin-bottom: 0; min-height: 60px;}
.workflow-box-bottom h5 a{color: var(--clr-primary);}
.workflow-box-bottom h5 a:hover{color: var(--clr-secondary);}
.workflow-box-top:hover img{opacity: 0.8;}

.workflow-hom-row .slick-prev {
    left: 100px;
}
.workflow-hom-row .slick-next {
    right: 100px;
}

/*-- hom-workflow-sec(End) --*/

/*-- integrations-hom-sec(Start) --*/

.integrations-hom-right-wraper {
    max-width: 700px;
    margin: 0 auto;}
    .integrations-icon{margin-bottom: 30px; height: 55px;}
    .integrations-bottom h5 a{color: var(--clr-primary); font-weight: var(--fw-demibold);}
    .integrations-bottom h5 a:hover{color: var(--clr-secondary);}
.integrations-box{background: linear-gradient(85deg, #193A4D, #66C8FF, #193A4D); position: relative; border-radius: 20px; padding: 50px 30px 30px 30px; transition: var(--transition-common); height: 100%;}
.integrations-box:before {
    background: #17212C;
    left: 1px;
    right: 1px;
    position: absolute;
    content: "";
    bottom: 1px;
    top: 1px;
    z-index: 0;
    border-radius: 20px;
}
.integrations-box:hover:before {
    background: linear-gradient(132deg, #014062, #7a98a9);
    /*background: linear-gradient(111.99deg, rgba(12, 106, 158, 0.5) 4.02%, rgba(172, 225, 255, 0.5) 95.05%);*/
}
.integrations-bottom p{color: #EEEEEE;}
/*.col-md-6:nth-child(2) {
    margin-top: 30px;
    position: relative;
}*/
/*.col-md-6:nth-child(2) .integrations-box, .col-md-6:nth-child(4) .integrations-box { margin-top: 40px;}*/

.sce-common-sub-title.text-left{margin: 0 0 40px;}


/*-- integrations-hom-sec(End) --*/

/*-- cloud-hom-sec(Start) --*/

.cloud-calculator-shape{position: absolute; right: 0; top: -120px; z-index: -1;}
.cloudhom-box-top{background: linear-gradient(to right, #999999, rgba(161, 161, 161, 0.1), rgba(161, 161, 161, 0)); position: relative; border-radius: 30px; padding: 40px 20px; position: relative; text-align: center; min-height: 140px; display: flex; align-items: center; justify-content: center;}
.cloudhom-box-top:before{ position: absolute; top: 1px; bottom: 1px; left: 1px; right: 1px; left: 1px; content: ""; border-radius: 20px; border-radius: 30px; /*background-color: #17212C;*/ background-color: #03457f;}
.cloudhom-box-top a { position: relative;}
.cloudhom-box-top img { width: auto; margin: 0 auto; transition: var(--transition-common); position: relative;}
.cloudhom-box-top:hover img { opacity: 0.7;}
.cloudhom-box-bottom{padding: 20px 0; text-align: center;}
.cloudhom-box-bottom p{font-size: 14px; text-transform: uppercase;}
.cloudhom-box-bottom p a{color: var(--clr-primary);}
.cloudhom-box-bottom p a:hover{color: var(--clr-secondary);}

/*-- cloud-hom-sec(End) --*/

/*-- demo-hom-sec(Start) --*/

.demohom-box-top {
    position: relative;
    padding-top: 55%;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}
.demohom-box-top iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;}
.demohom-box-bottom{border-radius: 0 0 20px 20px; padding: 20px 15px; text-align: center;     background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D); position: relative;}
.demohom-box-bottom:before {
    position: absolute;
    top: 0;
    bottom: 1px;
    left: 1px;
    right: 1px;
    background-color: #24313f;
    content: "";
    z-index: 0;
    border-radius: 0 0 20px 20px;
}
.demohom-box-bottom h5{margin-bottom: 0;}
.demohom-box-bottom h5 a{color: var(--clr-primary);}
.demohom-box-bottom h5 a:hover{color: var(--clr-secondary);}

/*-- demo-hom-sec(End) --*/

/*-- visualizing-hom-sec (Start) --*/


.hom-visualizing-shape{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1;}
.visualizing-tab-design .nav-link{padding: 15px 40px; border-radius: 50px; position: relative; background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D); color: var(--clr-primary);}
.visualizing-tab-design .nav-link:before{position: absolute; top: 1px;
    bottom: 1px;
    left: 1px;
    right: 1px;
    background-color: rgba(24, 104, 149, 0.5);;
    content: "";
    z-index: 0;
    border-radius: 50px 50px;}
.visualizing-tab-design .nav-link span {
    position: relative;
    z-index: 1;}
.visualizing-tab-design ul.nav li.nav-item{margin-right: 10px;}
.visualizing-tab-design ul.nav li.nav-item:last-child{margin-right: 0px;}
.visualizing-tab-design .nav-pills .nav-link.active, .visualizing-tab-design .nav-pills .show>.nav-link{background: var(--clr-secondary);}
.visualizing-tab-design .nav-pills .nav-link.active:before, .visualizing-tab-design .nav-pills .show>.nav-link:before{display: none;}




.admin-row{padding-top: 50px;}
.admin-box {
    background: linear-gradient(85deg, #193A4D, #66C8FF, #193A4D);
    position: relative;
    border-radius: 20px;
    padding: 30px 15px;
    max-width: 650px;
    margin: 0 auto 50px;
}
.admin-box:before {
    background: #17212C;
    left: 1px;
    right: 1px;
    position: absolute;
    content: "";
    bottom: 1px;
    top: 1px;
    z-index: 0;
    border-radius: 20px;
}
.admin-box h5, .admin-box h5 a:hover{color: var(--clr-secondary);}
.admin-box h5 span, .admin-box h5 a{color: #fff; font-weight: var(--fw-demibold);}
.admin-row>p{color: #eee;}

/*-- visualizing-hom-sec (End) --*/

/*-- security-hom-sec (Start) --*/

.security-hom-table-row{display: flex; flex-flow: row wrap;}
.security-hom-table{border-radius: 20px 20px; overflow: hidden; position: relative;}
.security-hom-table:before{background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1), rgba(255,255,255,0)); top: 0; bottom: 0; left: 50%; transform: translateX(-50%); width: 2px; position: absolute; content: "";     z-index: 1;
}

.security-hom-table-header{background: linear-gradient(to right, #0C6A9E, #ACE1FF);}
.security-hom-table-tr-bg{/*display: flex; flex-flow: row wrap;*/ position: relative; background: linear-gradient(85deg, #2f4f66, #66C8FF, #2f4f66);}
.security-hom-table-tr-bg:before {
    background: rgba(54, 74, 96, 0.5);
    left: 1px;
    right: 1px;
    position: absolute;
    content: "";
    bottom: 1px;
    top: 1px;
    z-index: 0;}
.security-hom-table-td{width: 50%; padding: 24px 20px; position: relative;}

.security-hom-table-row h5, .security-hom-table-row h6{margin-bottom: 0;}
.security-hom-table-td h6{font-weight: var(--fw-medium);}
.security-hom-table-td:first-child h6{color: var(--clr-secondary);}
.security-hom-table-header h5{font-weight: var(--fw-demibold);}

/*-- security-hom-sec (End) --*/

/*-- reinforcing-hom-sec (Start) --*/

.reinforcing-logo-list ul{padding-left: 0; display: flex; flex-flow: row wrap; justify-content: center; align-items: center; list-style: none;}
.reinforcing-logo-list ul li{width: 18%; text-align: center; padding: 0 6px; margin: 0 7px 20px 7px;}

.reinforcing-logo-list ul li a img{transition: var(--transition-common);}
.reinforcing-logo-list ul li a:hover img{opacity: 0.7;}

/*-- reinforcing-hom-sec (End) --*/

/*-- ai-hom-sec (Start) --*/

.aihom-box-inner{display: flex; flex-flow: row wrap; align-items: center; border-radius: 50px; overflow: hidden; position: relative; transform: scale(0.8) !important; transform: var(--transition-common); padding: 60px 60px 60px 0; position: relative;}
.aihom-box.slick-center .aihom-box-inner{transform: scale(1) !important;}

.aihom-box-inner:before{background-color: var(--clr-black); position: absolute; right: 0; left: 120px; top: 0; bottom: 0; content: ""; border-radius: 50px; z-index: -1;}

.aihom-box-inner:after{background: url(../images/calculator-gradient.png) no-repeat left bottom; left: 120px; bottom: 0; position: absolute; width: 100%; top: 0; background-size: contain; content: ""; border-radius: 50px; z-index: -1;}
.aihom-box-pic{width: 50%;}
.aihom-box-content{width: 50%; padding-left: 60px;}


.al-butale-list ul{padding-left: 0; margin-bottom: 0; list-style: none;}
.al-butale-list ul li{margin-bottom: 15px; position: relative; padding-left: 25px;}
.al-butale-list ul li:before{position: absolute; left: 0; top: 0; background: url(../images/al-bulate.png) no-repeat; width: 18px; height: 18px; content: "";}
/*.aihom-box-inner{padding: 60px 60px 60px 0; position: relative;}*/
.aihom-box-pic { border-radius: 50px; overflow: hidden; position: relative;}
.aihom-box-pic img { width: 100%; height: 100%; object-fit: cover;}
.ai-hom-row .slick-list.draggable { padding: 0 250px !important;}


/*-- ai-hom-sec (End) --*/

/*-- efficiency-hom-sec (Start) --*/

.efficiency-hom-row .slick-list.draggable{padding: 0 0 !important;}
.efficiency-hom-row { padding-left: 80px;}

.efficiencyhom-box-icon {
    background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D);
    margin-bottom: 30px;
    border-radius: 20px;
    position: relative;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
}
.efficiencyhom-box-icon:before{border-radius: 20px; background: linear-gradient( 270deg, #186895, #17212C); top: 1px; left: 1px; bottom: 1px; right: 1px; content: ""; position: absolute;}
.efficiencyhom-box-icon img{position: relative;}
.efficiency-hom-row .slick-dots { position: relative; bottom: 0px; margin: 20px 0 0; text-align: left;}
.efficiency-hom-row .slick-dots li button:before{color: rgba(74, 165, 216, 0.2) !important;}
.efficiency-hom-row .slick-dots li.slick-active button:before{color: var(--clr-secondary) !important;}

/*-- efficiency-hom-sec (End) --*/

/*-- navigate-hom-sec (Start) --*/

.navigate-row h2 {font-size: var(--f-size-XXXL); font-weight: var(--fw-medium);}
.navigate-row h2 span{color: var(--clr-secondary);}
/*.navigate-row{background: url(../images/navigate-spape.png) no-repeat center center; background-size: cover;}*/
.navigate-hom-shape{position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; /*max-width: 1225px; width: 1225px;*/ width: 100%;}
.navigate-row{max-width: 750px; margin: 0 auto; padding: 160px 0;}

.navigate-hom-shape video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.navigate-hom-shape:after {
    content: '';
    background: linear-gradient(0deg, #17212c, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 2;
}

.navigate-hom-shape:before {
    content: '';
    background: linear-gradient(180deg, #17212c, transparent);
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 40%;
    z-index: 2;
}

/*-- navigate-hom-sec (End) --*/

/*for main sections css*/


/*for footer sections css*/

/*footer { border-top:1px solid #f3f2f0;}*/
.ftr-top { border-top: 1px solid rgba(255, 255, 255, 0.3); padding: 100px 0 50px;}
.ftr-logo { margin: 0 0 30px; max-width: 200px;}
.ftr-content p{color: #CCCCCC;}
.ftr-content { max-width: 357px;}
.ftr-menu ul { margin: 0; padding: 0; list-style: none;}
.ftr-menu ul li { margin-bottom: 12px; text-transform:capitalize;}
.ftr-menu ul li a { color: #CCCCCC;}
.ftr-menu ul li a:hover { color: var(--clr-primary);}

.ftr-menu.ftr-half-menu ul{/*display: flex; flex-flow: row wrap;*/ column-count: 2; column-gap: 10px;}
.ftr-menu.ftr-half-menu ul li{/*width: 50%;*/ }

.ftr-col h5{font-weight: var(--fw-demibold); margin-bottom: 30px;}
.ftr-btm { text-align: center; color: #777; padding-bottom: 50px;}
.ftr-btm p { margin-bottom: 0px; color: #777; font-weight: var(--fw-medium);}


.ftr-col h4 { text-transform: uppercase; font-weight: 500;}

ul.ftr-social { margin: 0 0 30px; padding: 0; list-style: none; display: flex; flex-flow: row wrap;}
ul.ftr-social li { list-style: none; font-size: 18px; margin-right: 10px; width: 34px; height: 34px; border-radius: 50px; border: 1px solid var(--clr-secondary); margin-right: 15px; overflow: hidden;}
ul.ftr-social li:last-child{margin-right: 0;}
ul.ftr-social li a{color: var(--clr-primary); transform: var(--transition-common); width: 100%; height: 100%; display: flex; justify-content: center; align-items: center;}
ul.ftr-social li a:hover{color: var(--clr-primary); background-color: var(--clr-secondary);}


/*for footer sections css*/

/*-- New-css(07-04-2025) --*/

.mobal-bg{background-color: var(--clr-body-bg);}
.modal-form .form-control{ height: 50px;}
.modal-form textarea.form-control { border-radius: 10px; height: auto; min-height: 100px; resize: none;}
.mobal-bg .modal-header .btn-close { color: #fff; background-color: #fff; opacity: 1; border-radius: 50px;}
.modal-header h3{margin-bottom: 0;}

/*-- New-css(09-04-2025) --*/

.save-email-wraper{ background-color: #364A60; border-radius: 20px 20px; border: 1px solid var(--clr-secondary); display: flex; flex-flow: row wrap;}
.save-email-wraper .form-control.gradient-input-bg{border: none; background-color: transparent; border-radius: 20px 20px; outline: none; box-shadow: none; width: calc(100% - 50px);}
.save-email-wraper .btn{background-color: transparent; color:var(--clr-white); border: none; padding: 5px 5px; width: 50px; border-radius: 19px;}

.calculator-box-top .number-wraper input::-webkit-outer-spin-button,
.calculator-box-top .number-wraper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.calculator-box-top .number-wraper input[type=number] {
  -moz-appearance: textfield;
}
.common-padding.no-banner {
    padding-top: 250px;
}

/*-- New-css(15-04-2025) --*/
.cky-btn-revisit-wrapper.cky-revisit-bottom-left{display: none;}
/*.table>:not(caption)>*>* { background-color: var(--clr-black);}*/
.healthcare-table .table-dark th{background-color: var(--clr-black);}
.table.table-lg>:not(caption)>*>* { padding: .8rem .8rem;}
.save-pdf-box { padding: 30px 20px; background: linear-gradient(to right, #193A4D, #66C8FF, #193A4D);
    border-radius: 10px;
    position: relative; height: 100%;}
.save-pdf-box:before { background: linear-gradient(48deg, #173c50, #17212B, #17212B); left: 1px; right: 1px; position: absolute; content: ""; bottom: 1px; top: 1px; z-index: 0; border-radius: 10px;}
.slt-logo { height: 40px; margin-bottom: 30px; position: relative;}
.slt-logo img { height: 100%;}
.slt-bottom{position: relative;} 

/*-- scroll-bar-css(Start) --*/

::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #03457f; 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0275b6; 
}

/*-- scroll-bar-css(End) --*/

/*-- --*/
.how-work-hom-sec .integrations-box{margin-top: 0;}

.how-work-box{background: linear-gradient(85deg, #193A4D, #66C8FF, #193A4D); position: relative; border-radius: 20px; padding: 50px 30px 30px 30px; transition: var(--transition-common); height: 100%;}
.how-work-box:before {
    background: #17212C;
    left: 1px;
    right: 1px;
    position: absolute;
    content: "";
    bottom: 1px;
    top: 1px;
    z-index: 0;
    border-radius: 20px;
}
.how-work-box:hover:before {
    background: linear-gradient(132deg, #014062, #7a98a9);
    /*background: linear-gradient(111.99deg, rgba(12, 106, 158, 0.5) 4.02%, rgba(172, 225, 255, 0.5) 95.05%);*/
}



.why-NaviOwl-hom-sec .col-lg-4 {
    margin-bottom: 24px;
}

.why-NaviOwl-hom-sec .why-navi-box .integrations-icon {
    font-size: 50px;
}
.coming-soon-row.text-center {
    padding: 30px 20px;
}
.workflow-hom-row .workflowhom_carousel .workflow-box-inner {
    max-width: 400px;
    margin: 0 auto;
}
/*-- new-css(19-05-2025) --*/
.ai-hom-row .slick-prev {
    left: 190px;
}
.ai-hom-row .slick-next {
    right: 190px;
}

/*Media Query css*/

@media only screen and ( min-width:1401px ) {
    .container { max-width: 1330px;}

}

@media only screen and ( min-width:1601px ) {
    .container { max-width: 1530px;}

}

@media only screen and ( min-width:1801px) {
    .container { max-width: 1630px;}

}


@media only screen and ( max-width:1800px ) {
:root{
        --f-size-XXXXL: 70px;
    }

     /*--f-size-XXXXL: 80px;
    --f-size-XXXL: 60px;
    --f-size-XXL: 50px;
    --f-size-XL: 36px;
    --f-size-L: 30px;
    --f-size-S: 20px;
    --f-size-btn: 18px;
    --f-size-Body: 16px;*/

    .common-padding { padding-top: 80px; padding-bottom: 80px;}
    .common-padding-md { padding-top: 40px; padding-bottom: 40px;}
    .ftr-top { padding: 80px 0 40px;}
    .ftr-btm {padding-bottom: 40px;}
    .bann-content { bottom: 180px;}


}
@media only screen and ( max-width:1600px ) {
    :root{
        --f-size-XXXXL: 65px;
        --f-size-XXXL: 50px; /*--h1--*/
        --f-size-XXL: 45px; /*--h2--*/

        }

         /*--f-size-XXXXL: 70px;
        --f-size-XXXL: 60px;
        --f-size-XXL: 50px;
        --f-size-XL: 36px;
        --f-size-L: 30px;
        --f-size-S: 20px;
        --f-size-btn: 18px;
        --f-size-Body: 16px;*/

    .aihom-box-content { padding-left: 40px;}
    .header-right-btns .btn { padding: 10px 15px; font-size: 17px;}
    .header-right-btns>div { margin-right: 10px;}
    .main_menu ul li { margin: 0 15px;}
    .main_menu ul li a{ font-size: 17px;}
    .header-right-btns { padding-left: 15px;}
    /*.headerRow { padding: 20px 0;}*/
    /*.logo { max-width: 180px;}
    .main-header.stickyHeader .logo { width: 100px;}*/
    .video-play img { width: 50px;}
    /*.bann-content { bottom: 70px;}*/
    .bann-sound-btn { bottom: 70px; right: 100px;}
    .btn { padding: 14px 20px;}
    .articleshom-box-top { padding: 60px 20px;}
    /*.header-right-btns { padding-left: 135px;}*/

    .articleshom-box-icon:nth-child(2) { margin: 0 10px; width: 15%;}

    .common-padding { padding-top: 60px; padding-bottom: 60px;}
    .common-padding-md { padding-top: 30px; padding-bottom: 30px;}
    .ftr-top { padding: 60px 0 30px;}
    /*.ftr-btm {padding-bottom: 30px;}*/
    .security-hom-table-td { padding: 20px 15px;}
    .efficiency-hom-row { padding-left: 60px;}
    .common-padding.no-banner { padding-top: 200px;}
    .video-hom-wraper { max-width: 550px;}
    .bann-content { bottom: 150px;}


}
@media only screen and ( max-width:1500px ) {
    .aihom-box-content { padding-left: 30px;}

    :root{
        --f-size-XXXXL: 60px;
        --f-size-XXXL: 50px; /*--h1--*/
        --f-size-XXL: 40px; /*--h2--*/
        --f-size-XL: 34px;/*--h3--*/
        --f-size-btn: 16px;
    }

        /*--f-size-XXXXL: 65px;
        --f-size-XXXL: 50px; 
        --f-size-XXL: 45px; 
        
        --f-size-XL: 36px;
        --f-size-L: 30px;
        --f-size-M: 24px;
        --f-size-S: 20px;
        --f-size-btn: 18px;
        --f-size-Body: 16px;*/
        /*.video-play img { width: 50px;}*/

        
        .articleshom-box.slick-slide, .workflow-box.slick-slide, .cloud-hom-row .cloudhom-box.slick-slide, .demo-hom-row .demohom-box.slick-slide, .ai-hom-row .aihom-box.slick-slide{ margin: 0 10px;}
        .articleshom-box-top { padding: 50px 10px;}
        .common-padding { padding-top: 50px; padding-bottom: 50px;}
        .common-padding-md { padding-top: 25px; padding-bottom: 25px;}
        .ftr-top { padding: 50px 0 25px;}
        /*.ftr-btm {padding-bottom: 25px;}*/

        .articleshom-box-icon{ border-radius: 15px;}
        .articleshom-box-inner { border-radius: 15px;}
        .articleshom-box-bottom:before{border-radius: 0 0 15px 15px;}
        .calculator-box { padding: 30px; border-radius: 30px;}
        .counter-box { padding: 20px 15px;}
        .counter-box, .counter-box.gradient-border-bg:before{ border-radius: 15px;}
        .number-wraper, .calculator-wraper { margin-bottom: 40px;}
        .gradient-input-bg { border-radius: 15px 15px;}
        .time-icon, .time-icon.gradient-border-bg:before{border-radius: 15px;}

        .workflow-box-top { padding: 20px 10px; border-radius: 15px 15px 0 0;}
        .workflow-box-bottom { padding: 20px 10px; border-radius: 0 0 15px 15px;}
        .workflow-box-bottom:before { border-radius: 0 0 15px 15px;}
        .slick-arrow { border-radius: 15px 15px;}
        .integrations-box { padding: 40px 20px 20px 20px;}
        /*.col-md-6:nth-child(2) .integrations-box, .col-md-6:nth-child(4) .integrations-box { margin-top: 30px;}*/
        .security-hom-table { border-radius: 15px 15px;}
        .visualizing-tab-design .nav-link { padding: 12px 30px;}
        .efficiency-hom-row { padding-left: 50px;}

        


}
@media only screen and ( max-width:1400px ) {
    .logo { /*max-width: 150px;*/ max-width: 80px;}
    .main-header.stickyHeader .logo { width: 50px;}
    .main_menu ul li { margin: 0 10px;}
    .main_menu ul li a{ font-size: 16px;}
    .header-right-btns { padding-left: 10px;}
    .header-right-btns .btn { padding: 10px 10px; font-size: 16px;}
    /*.header-right-btns { padding-left: 115px;}*/


    :root{
        --f-size-XXXXL: 50px;
        --f-size-XXXL: 45px; /*--h1--*/
        --f-size-XXL: 38px; /*--h2--*/
        --f-size-XL: 32px;/*--h3--*/
        --f-size-L: 28px;/*--h4--*/
        --f-size-M: 22px;/*--h5--*/

        }

        /*--f-size-XXXXL: 60px;
        --f-size-XXXL: 50px;
        --f-size-XXL: 40px;
        --f-size-XL: 34px;
        
        --f-size-L: 30px;
        --f-size-M: 24px;
        --f-size-S: 20px;
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/
        .video-play img { width: 34px;}
        /*.bann-content { bottom: 50px;}*/
        .bann-sound-btn { bottom: 50px; right: 80px;}
        .bann-buttons .btn:first-child { margin-right: 10px;}
        .ai-hom-row .slick-list.draggable { padding: 0 150px !important;}
        .aihom-box-inner { border-radius: 30px; padding: 40px 40px 40px 0;}
        .aihom-box-pic, .aihom-box-inner:before, .aihom-box-inner:after{ border-radius: 30px;}
        .sec-title-bottom-gap { margin-bottom: 40px;}
        .articleshom-box-icon, .articleshom-box-inner{ border-radius: 10px;}
        .articleshom-box-bottom:before{border-radius: 0 0 10px 10px;}
        .gradient-input-bg { border-radius: 10px 10px;}
        .time-icon, .time-icon.gradient-border-bg:before{border-radius: 10px;}
        .workflow-box-top { padding: 20px 10px; border-radius: 150x 10px 0 0;}
        .workflow-box-bottom { padding: 20px 10px; border-radius: 0 0 10px 10px;}
        .workflow-box-bottom:before { border-radius: 0 0 10px 10px;}
        .slick-arrow { border-radius: 10px 10px;}
        .workflow-hom-row .slick-prev {left: 50px;}
        .workflow-hom-row .slick-next { right: 50px;}
        .efficiency-hom-row { padding-left: 30px;}
        .efficiencyhom-box-icon { border-radius: 15px;}
        .efficiencyhom-box-icon:before{border-radius: 15px;}
        .btn { padding: 12px 20px;}
        .common-padding.no-banner { padding-top: 180px;}
        /*.header-right { width: calc(100% - 250px);}*/
        .video-hom-wraper { max-width: 450px;}
	   .ai-hom-row .slick-prev { left: 80px;}
       .ai-hom-row .slick-next { right: 80px;}

       

}
@media only screen and ( min-width: 1200px ) {
    .main_menu{
        display: block !important;
    }
    #mySidenav{
        width: auto !important;
    }
    .for-mob{display: none;}
}
@media only screen and ( max-width:1199px ) {

/*-- toggle-new-menu-icon to cross-icon(Start) --*/
    
    .menu-toggle { position: relative; order: 2;}
    .menu-toggle, .menu-toggle:hover {
      color: #000;
    }

.menu-toggle-bar {
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -1px;
  right: 0;
  margin: 0 auto;
  left: 0;
  width: 26px;
  height: 3px;
  border-radius: 4px;
  background-color: black;
  transition: all 0.3s ease;
}
.menu-toggle-bar.menu-toggle-bar--top {
  transform: translate(0, -8px);
}
.menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translate(0, 8px);
}
.nav-open .menu-toggle-bar.menu-toggle-bar--top {
  transform: translate(0, 0) rotate(45deg);
}
.nav-open .menu-toggle-bar.menu-toggle-bar--middle {
  opacity: 0;
}
.nav-open .menu-toggle-bar.menu-toggle-bar--bottom {
  transform: translate(0, 0) rotate(-45deg);
}
    /*-- toggle-new-menu-icon to cross-icon(End) --*/

    .click{
        display: block;
        cursor: pointer;
        order: 1;
    }
    .main_menu a.closebtn{
        color: #000;
        display: block;
    }

    /*-- For_mob_menu(Start) --*/
    .main_menu {
    min-height: calc(100vh - 65px);
    width: 100%;
    position: fixed;
    z-index: 1;
    top: 65px;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.97);
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 30px;
    z-index: 999;
    right: -100%;
    }
    .main-header.stickyHeader .main_menu { min-height: calc(100vh - 65px); top: 65px;}
    body.nav-open .main_menu {
    right: 0 !important;
    }

    .main_menu a {
        display: block;
        transition: 0.3s;
    }

    .main_menu a:hover {
        color: #333;
    }

    .main_menu .closebtn {
        position: absolute;
        top: 0;
        right: 25px;
        font-size: 36px;
        margin-left: 50px;
    }
    body.scrollOff{height: 100vh; overflow: hidden; position: relative;}
    /*body.scrollOff:before { position: fixed; top: 0; left: 0; width: 100%; height: 100%; content: ""; background-color: rgba(0, 0, 0, 0.5); z-index: 1;}*/

    .main_menu ul li:hover ul.sub-menu { display: none;}
    .main_menu ul li.menu-item-has-children.active ul.sub-menu{display: block;}
    ul.sub-menu { position: relative; left: 0; width: 100%; border-radius: 0px; top: 0px;}
    .main_menu ul li.menu-item-has-children span { top: 12px; right: 0px; width: 14px; height: 18px;}

    .main_menu ul li{display: block;}
    .main_menu ul li:first-child { margin-left: 10px;}
    .header-right-btns {  margin-left: 0px; order: 1;}
    .header-right .for-mob .btn { margin-bottom: 10px;}
    .header-right .for-mob { padding: 0 10px;}
    .main_menu ul li ul.sub-menu { position: relative; width: 100%; left: 0; top: 0px;}
    .main_menu ul li.menu-item-has-children:hover span {
    transform: rotate(0deg); filter: brightness(10);}
    .main_menu ul li.menu-item-has-children span { transform: rotate(0deg); filter: brightness(10); /*width: 20px; height: 20px; top: 17px;*/         display: flex; align-items: center; justify-content: center;}
    .main_menu ul li.menu-item-has-children.active span { transform: rotate(180deg); filter: brightness(1);}
    .header-right {width: auto; order: 2;}

    /*-- For_mob_menu(End) --*/
      .for-desktop {display: none;}
      .header-right-btns svg.fa-magnifying-glass { font-size: 20px;}
      .header-right-btns>div { margin-right: 20px;}
      .logo { /*max-width: 120px;*/ max-width: 60px;}
      .main-header.stickyHeader .logo { /*width: 90px;*/ max-width: 40px;}
      /*.headerRow { padding: 15px 0;}*/


      :root{
        --f-size-XXXXL: 45px;
        --f-size-XXXL: 40px; /*--h1--*/
        --f-size-XXL: 35px; /*--h2--*/
        --f-size-XL: 30px;/*--h3--*/
        --f-size-L: 26px;/*--h4--*/
        --f-size-M: 21px;/*--h5--*/
        
        
        }

        /*--f-size-XXXXL: 50px;
        --f-size-XXXL: 45px;
        --f-size-XXL: 38px;
        --f-size-XL: 32px;
        --f-size-L: 28px;
        --f-size-M: 22px;
        
        --f-size-S: 20px;
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/
        
        .articles-hom-row .articleshom_carousel .slick-list.draggable, .workflow-hom-row .workflowhom_carousel .slick-list.draggable, .cloud-hom-row .cloudhom_carousel .slick-list.draggable { padding: 0 50px !important;}
        .ai-hom-row .slick-list.draggable { padding: 0 50px !important;}
        .aihom-box-inner { border-radius: 20px; padding: 30px 30px 30px 0;}
        .aihom-box-pic, .aihom-box-inner:before, .aihom-box-inner:after { border-radius: 20px;}
        .sec-title-bottom-gap { margin-bottom: 30px;}
        .sce-common-sub-title{border-radius: 5px; padding: 11px 30px; border-radius: 5px;}
        .sce-common-sub-title:before{border-radius: 5px;}
        .calculator-box { padding: 30px 20px; border-radius: 20px;}
        .workflow-hom-row .slick-prev {left: 15px;}
        .workflow-hom-row .slick-next { right: 15px;}
        .workflow-box-top { min-height: 230px;}
        .slick-arrow { border-radius: 5px 5px; width: 45px; height: 45px;}
        .calculator-box-top { padding-bottom: 40px;}
        .calculator-box-middle { padding-top: 40px;}
        .calculator-box-bottom { padding-top: 40px;}
        /*.col-md-6:nth-child(2) .integrations-box, .col-md-6:nth-child(4) .integrations-box { margin-top: 20px;}*/
        .security-hom-table-td { padding: 15px 10px;}
        .visualizing-tab-design .nav-link { padding: 12px 20px;}
        .cloudhom-box-top{padding: 20px 10px; min-height: 120px; border-radius: 20px;}
        .cloudhom-box-top:before{ border-radius: 20px;}
        .efficiency-hom-row { padding-left: 15px;}
        .efficiencyhom-box-icon { margin-bottom: 20px; border-radius: 10px; padding: 5px 5px; width: 60px; height: 60px;}
        .efficiencyhom-box-icon:before{border-radius: 10px;}
        .ftr-col { margin-bottom: 40px;}
        .ftr-menu.ftr-half-menu ul { column-count: 1; column-gap: 0px;}
        .ftr-menu ul li { margin-bottom: 7px;}
        .hom-calculator-shape, .cloud-calculator-shape { display: none;}
        .calculator-box-middle h4 { margin-bottom: 30px;}
        .integrations-box { padding: 30px 20px 20px 20px;}
        .aihom-box-inner{transform: scale(1) !important;}
        .common-padding.no-banner { padding-top: 150px;}

        .video-hom-wraper { max-width: 400px; top: 0; transform: inherit; left: 0; margin: 0 auto; position: relative;}
    	.slider-wrap { position: relative; padding-top: 11%;}
		.bann-content-wrapper { margin: 50px auto;}
		.bann-content { bottom: 0px; position: relative; text-align: center;}
		.ai-hom-row .slick-prev { left: 10px;}
    	.ai-hom-row .slick-next { right: 10px;}



}
@media only screen and ( max-width:1024px ) {

    :root{
        --f-size-XXXXL: 40px;
        --f-size-XXXL: 35px; /*--h1--*/
        --f-size-XXL: 32px; /*--h2--*/
        --f-size-XL: 28px;/*--h3--*/
        --f-size-L: 24px;/*--h4--*/
        --f-size-M: 20px;/*--h5--*/
        --f-size-S: 19px;/*--h6--*/

        
        }

        
        /*--f-size-XXXXL: 45px;
        --f-size-XXXL: 40px; 
        --f-size-XXL: 35px;
        --f-size-XL: 30px;
        --f-size-L: 26px;
        --f-size-M: 21px;
        
        --f-size-S: 20px;
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/
        

}
@media only screen and ( max-width: 991px ) {

    :root{
        --f-size-XXXXL: 38px;
        --f-size-XXXL: 33px; /*--h1--*/
        --f-size-XXL: 30px; /*--h2--*/
        --f-size-XL: 26px;/*--h3--*/
        --f-size-L: 22px;/*--h4--*/
        --f-size-M: 19px;/*--h5--*/
        --f-size-S: 18px;/*--h6--*/

        }

        
        /*--f-size-XXXXL: 40px;
        --f-size-XXXL: 35px; 
        --f-size-XXL: 32px; 
        --f-size-XL: 28px;
        --f-size-L: 24px;
        --f-size-M: 20px;
        
        --f-size-S: 19px;
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/

        .slider-wrap { /*padding-top: 0;*/ padding-top: 15%;  height: calc(100vh - 200px);}

        .bann-content { bottom: 30px;}
        .bann-sound-btn { bottom: 30px; right: 30px; width: 69px;}
        .ai-hom-row .slick-list.draggable { padding: 0 0px !important;}
        .common-padding { padding-top: 40px; padding-bottom: 40px;}
        .common-padding-md { padding-top: 20px; padding-bottom: 20px;}
        .ftr-top { padding: 40px 0 20px;}
        .ftr-btm {padding-bottom: 30px;}
        
        .workflow-box-top { min-height: 260px;}
        /*.col-md-6:nth-child(2) .integrations-box, .col-md-6:nth-child(4) .integrations-box { margin-top: 0px;}*/
        .sce-common-sub-title.text-left { margin: 0 auto 25px;}
        .sce-common-sub-title { margin: 0 auto 25px;}
        .efficiency-hom-row {text-align: center; padding-left: 0px; padding-top: 30px;}
        .efficiencyhom-box-icon { margin: 0 auto 20px;}
        .efficiency-hom-row .slick-dots { margin: 15px 0 0; text-align: center;}
        .navigate-row { padding: 140px 0;}
        .ftr-col h5 { margin-bottom: 20px;}
        .integrations-hom-sec .sec-common-top {text-align: center; margin-bottom: 30px;}
        
        

}

/*@media only screen and ( min-width: 768px ) {
    .main_menu{
        display: block !important;
    }
    #mySidenav{
        width: auto !important;
    }
    .for-mob{display: none;}
}*/
@media only screen and ( max-width: 767px ) {

    :root{
        --f-size-XXXXL: 34px;
        --f-size-XXXL: 31px; /*--h1--*/
        --f-size-XXL: 28px; /*--h2--*/
        --f-size-XL: 24px;/*--h3--*/
        --f-size-L: 20px;/*--h4--*/
        --margin-title: 0 0 15px 0;

        }

       
        /*--f-size-XXXXL: 38px;
        --f-size-XXXL: 33px; 
        --f-size-XXL: 30px; 
        --f-size-XL: 26px;
        --f-size-L: 22px;        
        --f-size-M: 19px;
        --f-size-S: 18px;
        
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/



            .slider-wrap {
        height: auto;
        position: relative;
    }
    /*.bann-hom-video video {
    height: calc(100vh - 250px);
    position: relative;}*/
    /*.video-hom-wraper{ height: calc(100vh - 250px); position: relative;}
    .video-hom-wraper img, .video-hom-wraper video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;}*/
    .bann-content {
        bottom: 0px;
        position: relative;
        padding: 20px;
        text-align: center;
    }
        .bann-sound-btn {
        bottom: inherit;
        right: 20px;
        width: 65px;
        top: calc(100vh - 310px);
    }
    .logo { max-width: 50px;}
    /*.main-header.stickyHeader .logo { max-width: 35px;}*/
    .ftr-logo { margin: 0 auto 20px; text-align: center;}
    .ftr-content { max-width: inherit; text-align: center;}
    .ftr-col h5 { text-align: center;}
    .ftr-menu ul li { margin-bottom: 5px; text-align: center;}
    ul.ftr-social { margin: 0 0 20px; justify-content: center;}

    .aihom-box-pic{width: 100%;}
    .aihom-box-content{width: 100%; padding-left: 0; padding-top: 30px;}
    .aihom-box-inner:before { left: 0px;}
    .aihom-box-inner { padding: 15px 15px 15px;}
    .aihom-box-pic img{width: 100%;}
    .aihom-box-inner:after{left: 0;}
    .articles-hom-row .articleshom_carousel .slick-list.draggable, .workflow-hom-row .workflowhom_carousel .slick-list.draggable, .cloud-hom-row .cloudhom_carousel .slick-list.draggable { padding: 0 0px !important;}
    .articleshom-box-top { padding: 40px 10px;}
    .articleshom-box-bottom { padding: 20px 15px;}
    .calculator-box { padding: 30px 15px; border-radius: 15px;}
    .calculator-box .form-control { height: 50px;}
    .calculator-box-top { padding-bottom: 30px;}
    .calculator-box-middle { padding-top: 30px;}
    .calculator-box-bottom { padding-top: 30px;}
    .time-icon { margin: 0 auto 15px;}
    .time-content { width: 100%; padding-left: 0px; padding-right: 0px; text-align: center; padding-top: 10px;}
    .calculator-box-bottom .col-xl-4.col-6:nth-child(2) .time-box:after{display: none;}
    .time-box:after { right: -12px;}
    .workflow-box-top { min-height: 240px;}
    .slick-arrow { border-radius: 3px; width: 35px; height: 35px;}
    .bann-buttons .btn { margin: 5px;}
    .security-hom-table { border-radius: 10px 10px;}
    .visualizing-tab-design ul.nav li.nav-item { margin-right: 5px; margin-bottom: 12px;}
    .visualizing-tab-design .nav-link { padding: 7px 15px;}

    .admin-box { border-radius: 15px; padding: 20px 10px; margin: 0 auto 30px;}
    .admin-box:before{border-radius: 15px;}
    .demohom-box-top{border-radius: 15px 15px 0 0;}
    .demohom-box-bottom, .demohom-box-bottom:before{ border-radius: 0 0 15px 15px;}
    .reinforcing-logo-list ul li { width: 22%;}
    .navigate-row { padding: 0px 0;}
    /* .navigate-hom-sec .navigate-hom-shape{display: none;} */
    .integrations-icon { margin-bottom: 20px;}
    .integrations-box { padding: 25px 15px 15px 15px; text-align: center;}
    .video-hom-wraper { position: relative;}
    .search-box { height: 140px;}
        
    

}
@media only screen and ( max-width: 575px ) {

    :root{
        --f-size-XXXXL: 32px;
        --f-size-XXXL: 28px; /*--h1--*/
        --f-size-XXL: 26px; /*--h2--*/
        --f-size-XL: 22px;/*--h3--*/

        }

  
        /*--f-size-XXXXL: 34px;
        --f-size-XXXL: 31px;
        --f-size-XXL: 28px; 
        --f-size-XL: 24px;
        --f-size-L: 20px;

        --f-size-M: 19px;
        --f-size-S: 18px;
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/
        .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl, .workflow-hom-row, .articles-hom-row, .cloud-hom-row, .ai-hom-row{width: 95%; margin: 0 auto;}
        .workflow-box-top { min-height: 210px;}
        .security-hom-table-td { padding: 10px 5px;}
        .security-hom-table-td h6{font-size: 16px;}
        .visualizing-tab-design .nav-link { padding: 6px 10px;}
        .hom-visualizing-shape{width: 100%;}
        .aihom-box-pic, .aihom-box-inner:before, .aihom-box-inner:after, .aihom-box-inner { border-radius: 15px;}

        /*.ftr-logo { margin: 0 0 20px; text-align: center;}
        .ftr-content { max-width: inherit; text-align: center;}
        .ftr-col h5 { text-align: center;}
        .ftr-menu ul li { margin-bottom: 5px; text-align: center;}
        ul.ftr-social { margin: 0 0 20px; justify-content: center;}*/
        .integrations-box{text-align: center; padding: 20px 10px 10px 10px;}
        .search-boxinner { width: 95%;}
        .search-close { top: 6px; right: 22px;}
        .counter-box{text-align: center;}
        /*.video-hom-wraper { height: calc(100vh - 400px);}*/
        .slider-wrap { padding-top: 100px;}
        .bann-content-wrapper { margin: 30px auto;}
        


}
@media only screen and ( max-width: 480px ) {
    :root{
        --f-size-XXXXL: 28px;
        --f-size-XXXL: 26px; /*--h1--*/
        --f-size-XXL: 24px; /*--h2--*/
        --f-size-XL: 20px;/*--h3--*/
        --f-size-L: 19px;/*--h4--*/
        --f-size-M: 18px;/*--h5--*/
        --f-size-S: 17px;/*--h6--*/
        --f-size-btn: 15px;/*--btn-font-fize--*/
        --f-size-Body: 15px;/*--p--*/
        }

      
        /*--f-size-XXXXL: 32px;
        --f-size-XXXL: 28px; 
        --f-size-XXL: 26px; 
        --f-size-XL: 22px;
        
        --f-size-L: 20px;
        --f-size-M: 19px;
        --f-size-S: 18px;
        --f-size-btn: 16px;
        --f-size-Body: 16px;*/
        .common-padding {padding-top: 40px;padding-bottom: 40px;}
        .common-padding-md { padding-top: 20px; padding-bottom: 20px;}
        .counter-box, .counter-box.gradient-border-bg:before { border-radius: 10px;}
        .workflow-box-bottom h5 { min-height: auto;}

        .cloudhom-box-top{padding: 15px 5px; min-height: 100px; border-radius: 10px;}
        .cloudhom-box-top:before{ border-radius: 10px;}
        .demohom-box-top{border-radius: 10px 10px 0 0;}
        .demohom-box-bottom, .demohom-box-bottom:before { border-radius: 0 0 10px 10px;}
        .reinforcing-logo-list ul li { width: 25%;}
        .aihom-box-pic, .aihom-box-inner:before, .aihom-box-inner:after, .aihom-box-inner { border-radius: 10px;}
        .sec-title-bottom-gap { margin-bottom: 20px;}
        .integrations-hom-sec .sec-common-top { margin-bottom: 20px;}
        .admin-box { border-radius: 10px; padding: 20px 10px 10px; margin: 0 auto 20px;}
        .admin-box:before { border-radius: 10px;}
        .headerRow { /*padding: 10px 0;*/ padding: 8px 0;}
        .video-play img { width: 25px;}
        .click { width: 36px; height: 36px;}
        .menu-toggle-bar { width: 21px; height: 2px;}
        .menu-toggle-bar.menu-toggle-bar--top {transform: translate(0, -7px);}
        .menu-toggle-bar.menu-toggle-bar--bottom { transform: translate(0, 7px);}
        .main_menu { min-height: calc(100vh - 59px); top: 59px;}
        .main-header.stickyHeader .main_menu { min-height: calc(100vh - 57px); top: 57px;}
        /*.video-hom-wraper { height: calc(100vh - 490px);}*/
        .video-hom-wraper { max-width: 350px;}


        
        

        
        
}
@media only screen and ( max-width: 380px ) {
    .time-content { padding-top: 5px;}
    .security-hom-table-td h6{font-size: 14px;}
    .reinforcing-logo-list ul li { width: 35%;}
    .aihom-box-inner { padding: 10px 10px 10px;}
    .ftr-col { margin-bottom: 30px;}
    /*.logo { max-width: 100px;}
    .main-header.stickyHeader .logo { width: 80px;}*/
    .main_menu { min-height: calc(100vh - 53px); top: 53px;}
    .main-header.stickyHeader .main_menu { min-height: calc(100vh - 57px); top: 57px;}
    .common-padding.no-banner { padding-top: 120px;}
    .ftr-logo { max-width: 170px;}
    .video-hom-wraper { max-width: 300px;}
    .bann-content-wrapper { margin: 10px auto 0;}
      
    
    



}

/*Media Query css*/



.integrations-bottom h5 {
    font-size: var(--f-size-s);
}

.deployment-models-sec,
.team-hom-sec {
    background-color: var(--clr-body-bg);
}

.deployment-card,
.use-question-card,
.team-card {
    height: 100%;
    border: 1px solid rgba(74, 165, 216, 0.45);
    border-radius: 8px;
    background: rgba(11, 18, 24, 0.58);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.deployment-card-inner,
.use-question-card,
.team-card {
    padding: 30px;
}

.deployment-card-inner {
    position: relative;
    z-index: 1;
}

.deployment-card h4,
.use-question-card h5,
.team-card h5 {
    color: var(--clr-primary);
    margin-bottom: 12px;
}

.deployment-card h6,
.team-title {
    color: var(--clr-secondary);
    font-weight: var(--fw-medium);
    margin-bottom: 16px;
}

.deployment-card p,
.use-question-card p,
.team-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.55;
}

.deployment-note {
    border-left: 3px solid var(--clr-secondary);
    margin-top: 20px;
    padding-left: 14px;
}

.use-question-card {
    display: flex;
    flex-direction: column;
}

.use-question-card strong {
    color: var(--clr-primary);
    font-weight: var(--fw-medium);
}

.team-card {
    text-align: center;
}

.team-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 136px;
    height: 136px;
    margin: 0 auto 24px;
    border: 1px dashed rgba(74, 165, 216, 0.7);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

/* NaviOwl refresh polish */
body {
    background:
        linear-gradient(180deg, #050a0f 0%, #0d1922 38%, #101d27 66%, #0b151d 100%);
}

.main-header {
    background: rgba(5, 10, 15, 0.88);
    backdrop-filter: blur(18px);
}

.main-header.stickyHeader {
    background: rgba(5, 10, 15, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.24);
}

.headerRow {
    border-bottom-color: rgba(141, 220, 255, 0.22);
}

.btn {
    border-radius: 6px;
    box-shadow: 0 14px 34px rgba(232, 117, 0, 0.24);
    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-black {
    background: rgba(5, 8, 11, 0.72);
    border-color: rgba(141, 220, 255, 0.36);
    color: #fff;
    box-shadow: none;
}

.btn-black:hover {
    background: rgba(232, 117, 0, 0.16);
    border-color: var(--clr-accent);
}

.slider-wrap {
    background:
        linear-gradient(135deg, rgba(5, 10, 15, 0.98) 0%, rgba(10, 30, 43, 0.96) 54%, rgba(6, 15, 22, 0.98) 100%);
}

.slider-wrap:before {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.74) 100%),
        linear-gradient(rgba(141, 220, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 220, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 46px 46px, 46px 46px;
}

.slider-wrap.bann-hom-video {
    min-height: clamp(680px, 78vh, 860px);
    padding-top: 0;
    overflow: hidden;
}

.slider-wrap.bann-hom-video:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 42%, rgba(74, 165, 216, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(5, 10, 15, 1) 0%, rgba(5, 10, 15, 0.94) 42%, rgba(5, 10, 15, 0.42) 62%, rgba(5, 10, 15, 0.08) 100%);
}

.video-hom-wraper {
    top: 0;
    right: 0;
    bottom: 0;
    width: min(64vw, 1120px);
    height: auto;
    max-width: none;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    z-index: 0;
}

.video-hom-wraper:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 10, 15, 1) 0%, rgba(5, 10, 15, 0.72) 18%, rgba(5, 10, 15, 0.18) 42%, transparent 68%),
        linear-gradient(180deg, transparent 72%, rgba(5, 10, 15, 0.7));
}

.video-hom-wraper img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    object-position: center right;
    opacity: 0.95;
}

.bann-content {
    z-index: 2;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.bann-content .row {
    margin-left: 0;
    margin-right: 0;
}

.bann-content-wrapper {
    position: relative;
    z-index: 3;
    padding-left: clamp(10px, 2vw, 32px);
}

.bann-content h1 {
    font-weight: var(--fw-demibold);
    line-height: 1.02;
}

.bann-content h4 {
    color: #dce9f2;
    line-height: 1.25;
}

.proof-bar-sec {
    padding: 38px 0 78px;
    background: #0d1922;
    border-bottom: 1px solid rgba(141, 220, 255, 0.14);
}

.business-hom-sec,
.deployment-models-sec,
.security-hom-sec,
.team-hom-sec {
    background: transparent;
}

.why-NaviOwl-hom-sec,
.integrations-hom-sec,
.ai-hom-sec {
    background: rgba(8, 18, 26, 0.34);
}

.sce-common-sub-title {
    margin-bottom: 18px;
    padding: 0;
    background: transparent;
}

.sce-common-sub-title:before {
    display: none;
}

.sce-common-sub-title>p {
    color: var(--clr-accent);
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.steps-accordion {
    display: grid;
    gap: 12px;
}

.step-accordion {
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.08), transparent 36%),
        rgba(18, 43, 59, 0.84);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.step-accordion summary {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding: 18px 22px;
    color: #fff;
    cursor: pointer;
    list-style: none;
    font-weight: var(--fw-demibold);
}

.step-accordion summary::after {
    content: "+";
    margin-left: auto;
    color: var(--clr-accent);
    font-size: 24px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.step-accordion[open] summary::after,
.step-accordion:hover summary::after,
.step-accordion:focus-within summary::after {
    content: "-";
}

.step-accordion summary::-webkit-details-marker {
    display: none;
}

.step-index {
    flex: 0 0 auto;
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: var(--fw-demibold);
    letter-spacing: 0.08em;
}

.step-accordion p {
    max-height: 0;
    margin: 0;
    padding: 0 22px;
    color: #c6d5df;
    line-height: 1.55;
    overflow: hidden;
    transition: max-height 0.22s ease, padding 0.22s ease;
}

.step-accordion[open],
.step-accordion:hover,
.step-accordion:focus-within {
    border-color: rgba(232, 117, 0, 0.64);
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.14), transparent 36%),
        rgba(22, 58, 80, 0.94);
}

.step-accordion[open] p,
.step-accordion:hover p,
.step-accordion:focus-within p {
    max-height: 180px;
    padding: 0 22px 22px;
}

.how-work-box,
.integrations-box,
.deployment-card,
.use-question-card,
.team-card {
    border-radius: 8px;
    border: 1px solid rgba(141, 220, 255, 0.28);
    background: linear-gradient(180deg, rgba(24, 49, 67, 0.9), rgba(14, 27, 37, 0.92));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.how-work-box {
    padding: 34px 26px;
}

.how-work-box:before,
.integrations-box:before,
.deployment-card.gradient-border-bg:before {
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(24, 49, 67, 0.92), rgba(14, 27, 37, 0.94));
}

.how-work-box:hover:before,
.integrations-box:hover:before {
    background: linear-gradient(135deg, rgba(14, 72, 105, 0.92), rgba(20, 51, 64, 0.94));
}

.integrations-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin: 0 auto 24px;
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background: rgba(141, 220, 255, 0.08);
}

.integrations-icon i {
    color: #8ddcff;
}

.integrations-icon img {
    max-width: 26px;
    max-height: 26px;
    object-fit: contain;
}

.integrations-bottom h5 {
    font-size: 18px;
    line-height: 1.3;
}

.integrations-bottom p,
.sec-common-top>p {
    color: #c6d5df;
    line-height: 1.55;
}

.navi-card-icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background: rgba(141, 220, 255, 0.08);
    color: #8ddcff;
    font-size: 18px;
}

.deployment-card,
.use-question-card,
.team-card {
    overflow: hidden;
}

.deployment-card {
    border: 0;
}

.deployment-card-inner,
.use-question-card,
.team-card {
    padding: 34px;
}

.deployment-card h4,
.use-question-card h5,
.team-card h5 {
    font-weight: var(--fw-demibold);
    line-height: 1.2;
}

.deployment-card h6,
.team-title {
    color: #8ddcff;
}

.deployment-note {
    border-left-color: #7ff0cb;
    color: #d8fff2 !important;
}

.question-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 18px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(127, 240, 203, 0.1);
    color: #bff8e8;
    font-size: 11px;
    font-weight: var(--fw-demibold);
    text-transform: uppercase;
}

.use-question-card {
    text-align: left;
}

.use-question-card strong {
    color: #fff;
}

.team-photo-placeholder {
    border-color: rgba(127, 240, 203, 0.45);
    background: rgba(127, 240, 203, 0.08);
    color: #d8fff2;
}

.about-story-sec {
    background: #17212C;
}

.about-story-copy h1 {
    margin-bottom: 36px;
}

.about-story-copy p {
    color: #f4f8fb;
    line-height: 1.55;
}

.about-story-copy a {
    color: #4AA5D8;
}

.about-story-visual {
    padding: 24px;
    text-align: center;
}

.about-story-visual img {
    max-height: 430px;
    object-fit: contain;
}

.contact-form-card {
    padding: 34px;
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(24, 49, 67, 0.9), rgba(14, 27, 37, 0.92));
}

.proof-bar-sec .how-work-box,
.business-hom-sec .how-work-box,
.why-NaviOwl-hom-sec .how-work-box,
.deployment-card,
.use-question-card,
.team-card {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.1), transparent 32%),
        linear-gradient(180deg, rgba(22, 58, 80, 0.94), rgba(14, 27, 37, 0.94));
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.proof-bar-sec .how-work-box:after,
.business-hom-sec .how-work-box:after,
.why-NaviOwl-hom-sec .how-work-box:after,
.deployment-card:after,
.use-question-card:after,
.team-card:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    border-top: 2px solid rgba(232, 117, 0, 0.76);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}

.proof-bar-sec .how-work-box:hover,
.business-hom-sec .how-work-box:hover,
.why-NaviOwl-hom-sec .how-work-box:hover,
.deployment-card:hover,
.use-question-card:hover,
.team-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 117, 0, 0.66);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(232, 117, 0, 0.12);
}

.proof-bar-sec .how-work-box:hover:after,
.business-hom-sec .how-work-box:hover:after,
.why-NaviOwl-hom-sec .how-work-box:hover:after,
.deployment-card:hover:after,
.use-question-card:hover:after,
.team-card:hover:after {
    opacity: 1;
}

.team-card-enhanced {
    padding-top: 36px;
}

.team-photo-wrap {
    position: relative;
    width: 172px;
    height: 172px;
    margin: 0 auto 26px;
    border: 2px solid rgba(232, 117, 0, 0.64);
    border-radius: 50%;
    padding: 5px;
    background: radial-gradient(circle at 70% 22%, rgba(232, 117, 0, 0.28), rgba(141, 220, 255, 0.12) 42%, rgba(9, 20, 29, 0.9));
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-card-enhanced h5 {
    font-size: 26px;
}

.team-focus {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.team-linkedin {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 38px;
    margin-top: 8px;
    padding: 0 16px;
    border: 1px solid rgba(141, 220, 255, 0.34);
    border-radius: 999px;
    background: rgba(141, 220, 255, 0.08);
    color: #fff;
    font-size: 14px;
    font-weight: var(--fw-medium);
}

.team-linkedin:hover {
    border-color: var(--clr-accent);
    background: rgba(232, 117, 0, 0.16);
    color: #fff;
}

.legal-content-card {
    padding: clamp(28px, 5vw, 56px);
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(24, 49, 67, 0.9), rgba(14, 27, 37, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.legal-content-card h1 {
    margin-bottom: 28px;
}

.legal-content-card h4 {
    margin-top: 30px;
    color: #fff;
}

.legal-content-card p,
.legal-content-card li {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.65;
}

.legal-content-card a {
    color: #8ddcff;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.legal-actions .btn {
    min-height: 54px;
    padding: 0 28px;
    border-radius: 8px;
    background: var(--clr-accent);
    color: #fff;
    box-shadow: 0 16px 36px rgba(232, 117, 0, 0.24);
}

.legal-actions .btn-black {
    border: 1px solid rgba(141, 220, 255, 0.42);
    background: transparent;
    box-shadow: none;
}

.legal-actions .btn:hover {
    color: #fff;
    transform: translateY(-1px);
}

@media(max-width: 575px) {
    .legal-actions .btn {
        width: 100%;
    }
}

.mobal-bg {
    border: 1px solid rgba(141, 220, 255, 0.22);
    border-radius: 8px;
    overflow: hidden;
}

.modal-form .modal-body,
.contact-form-card {
    color: #fff;
}

.modal-form .wpcf7 .row,
.contact-form-card .wpcf7 .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
    margin-left: 0;
    margin-right: 0;
}

.modal-form .wpcf7 form:not(:has(.row)),
.contact-form-card .wpcf7 form:not(:has(.row)) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.modal-form .wpcf7 form:not(:has(.row)) > p,
.contact-form-card .wpcf7 form:not(:has(.row)) > p {
    margin: 0;
    min-width: 0;
}

.modal-form .wpcf7 form:not(:has(.row)) > p:nth-of-type(n+5),
.modal-form .wpcf7 form:not(:has(.row)) > p:has(textarea),
.contact-form-card .wpcf7 form:not(:has(.row)) > p:nth-of-type(n+5),
.contact-form-card .wpcf7 form:not(:has(.row)) > p:has(textarea) {
    grid-column: 1 / -1;
}

.modal-form .wpcf7 [class*="col-"],
.contact-form-card .wpcf7 [class*="col-"] {
    width: auto;
    max-width: none;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    flex: initial;
}

.modal-form .wpcf7 .col-12,
.modal-form .wpcf7 .col-md-12,
.modal-form .wpcf7 .col-lg-12,
.modal-form .wpcf7 .form-field-full,
.contact-form-card .wpcf7 .col-12,
.contact-form-card .wpcf7 .col-md-12,
.contact-form-card .wpcf7 .col-lg-12,
.contact-form-card .wpcf7 .form-field-full {
    grid-column: 1 / -1;
}

.form-grid,
.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
}

.form-field {
    min-width: 0;
}

.form-field-full {
    grid-column: 1 / -1;
}

.modal-form .wpcf7 label,
.contact-form-card .wpcf7 label {
    display: block;
    margin-bottom: 8px;
    color: #f4f8fb;
    font-size: 15px;
    font-weight: var(--fw-medium);
}

.modal-form .wpcf7-form-control-wrap,
.contact-form-card .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    min-width: 0;
}

.modal-form .form-control,
.contact-form-card .form-control,
.modal-form .gradient-input-bg,
.contact-form-card .gradient-input-bg {
    display: block;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    min-height: 50px;
    border: 1px solid rgba(141, 220, 255, 0.78);
    border-radius: 8px;
    background-color: #243b4f;
    color: #fff !important;
    box-shadow: none;
}

.modal-form textarea.form-control,
.contact-form-card textarea.form-control {
    min-height: 180px;
    resize: vertical;
}

.modal-form .form-control::placeholder,
.contact-form-card .form-control::placeholder {
    color: rgba(255, 255, 255, 0.62);
}

.modal-form .btn,
.contact-form-card .btn {
    min-width: 118px;
    border-radius: 6px;
}

.modal-form .wpcf7-submit,
.contact-form-card .wpcf7-submit,
.modal-form input[type="submit"],
.contact-form-card input[type="submit"] {
    width: auto;
    margin-top: 4px;
    background-color: var(--clr-accent);
}

.modal-form .wpcf7 p,
.contact-form-card .wpcf7 p {
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .modal-form {
        width: calc(100% - 24px);
        margin-left: auto;
        margin-right: auto;
    }

    .modal-form .modal-body,
    .contact-form-card {
        padding: 22px;
    }

    .modal-form .wpcf7 .row,
    .contact-form-card .wpcf7 .row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-left: 0;
        margin-right: 0;
    }

    .modal-form .wpcf7 form:not(:has(.row)),
    .contact-form-card .wpcf7 form:not(:has(.row)) {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-form .wpcf7 [class*="col-"],
    .contact-form-card .wpcf7 [class*="col-"] {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .form-grid,
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-form .wpcf7-submit,
    .contact-form-card .wpcf7-submit,
    .modal-form input[type="submit"],
    .contact-form-card input[type="submit"] {
        width: auto;
        max-width: 100%;
    }
}

/* Absolute final header slim-down: keep contents, reduce vertical bulk, preserve responsive menu. */
:root {
    --navi-header-offset-desktop: 104px;
    --navi-header-offset-tablet: 86px;
    --navi-header-offset-mobile: 76px;
}

html body .main-header .headerRow {
    min-height: 72px !important;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

html body .main-header .logo,
html body .main-header.stickyHeader .logo {
    flex: 0 0 86px !important;
    width: 86px !important;
    max-width: 86px !important;
    min-width: 86px !important;
}

html body .main-header .logo img,
html body .main-header.stickyHeader .logo img {
    width: auto !important;
    max-width: 78px !important;
    max-height: 58px !important;
    height: auto !important;
    object-fit: contain !important;
}

html body .main-header .main_menu > ul > li > a {
    font-size: 16.5px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    line-height: 1.1 !important;
}

html body .main-header .header-fixed-btn .btn,
html body .main-header .nav-demo-btn {
    min-height: 40px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

html body .naviowl-preview-home .preview-hero {
    padding-top: var(--navi-header-offset-desktop) !important;
}

@media only screen and (min-width: 1400px) {
    html body .main-header .main_menu > ul > li > a {
        font-size: 17px !important;
    }
}

@media only screen and (max-width: 1199px) {
    html body .main-header .headerRow {
        min-height: 66px !important;
        padding-top: 6px !important;
        padding-bottom: 6px !important;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex: 0 0 66px !important;
        width: 66px !important;
        max-width: 66px !important;
        min-width: 66px !important;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 60px !important;
        max-height: 52px !important;
    }

    html body .main-header .menu-toggle {
        width: 42px !important;
        height: 42px !important;
        margin-left: auto !important;
    }

    html body .main-header .main_menu {
        top: 66px !important;
        min-height: calc(100vh - 66px) !important;
    }

    html body .naviowl-preview-home .preview-hero {
        padding-top: var(--navi-header-offset-tablet) !important;
    }
}

@media only screen and (max-width: 767px) {
    html body .main-header .headerRow {
        min-height: 60px !important;
        padding-top: 5px !important;
        padding-bottom: 5px !important;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex-basis: 58px !important;
        width: 58px !important;
        max-width: 58px !important;
        min-width: 58px !important;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 54px !important;
        max-height: 48px !important;
    }

    html body .main-header .menu-toggle {
        width: 40px !important;
        height: 40px !important;
    }

    html body .main-header .main_menu {
        top: 60px !important;
        min-height: calc(100vh - 60px) !important;
    }

    html body .naviowl-preview-home .preview-hero {
        padding-top: var(--navi-header-offset-mobile) !important;
    }
}

/* Final nav thickness reduction: slimmer desktop bar without changing layout/content. */
@media only screen and (min-width: 1200px) {
    html body .main-header .headerRow {
        min-height: 86px !important;
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex-basis: 108px !important;
        width: 108px !important;
        max-width: 108px !important;
        min-width: 108px !important;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 94px !important;
        max-height: 76px !important;
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 18px !important;
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }

    html body .main-header .header-fixed-btn .btn,
    html body .main-header .nav-demo-btn {
        min-height: 46px !important;
        padding: 12px 24px !important;
        font-size: 17px !important;
        line-height: 1 !important;
    }
}

@media only screen and (min-width: 1400px) {
    html body .main-header .main_menu > ul > li > a {
        font-size: 18.5px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html body .main-header .main_menu > ul > li > a {
        font-size: 17.5px !important;
    }
}

/* Final text-size alignment for security and How It Works body copy. */
html body .naviowl-preview-home #security .security-row {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

html body .naviowl-preview-home #how-it-works .step-accordion p,
html body .naviowl-page #how-it-works .step-accordion p {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

html body .naviowl-preview-home #how-it-works .decision-copy p,
html body .naviowl-page #how-it-works .decision-copy p {
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

/* Footer logo/layout hotfix */
footer .ftr-logo {
    width: 110px;
    max-width: 110px;
    margin-bottom: 22px;
}

footer .ftr-logo img {
    display: block;
    width: 100%;
    max-width: 110px;
    height: auto;
    object-fit: contain;
}

footer ul.ftr-social li {
    width: 38px;
    height: 38px;
    margin-right: 12px;
    font-size: 20px;
}

@media only screen and (max-width: 767px) {
    footer .ftr-top {
        padding: 48px 0 24px;
    }

    footer .ftr-logo {
        width: 100px;
        max-width: 100px;
        margin: 0 auto 20px;
    }

    footer .ftr-logo img {
        width: 100%;
        max-width: 100px;
        height: auto;
        object-fit: contain;
    }

    footer .ftr-col {
        margin-bottom: 28px;
    }

    footer ul.ftr-social {
        justify-content: center;
        gap: 12px;
    }

footer ul.ftr-social li {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
}

/* WordPress homepage port of the static preview. */
.naviowl-preview-home {
    --preview-bg: #0d1922;
    --preview-line-soft: rgba(91, 190, 242, 0.34);
    --preview-blue-soft: #8ddcff;
    --preview-orange: #e87500;
    --preview-card-strong: rgba(22, 58, 80, 0.94);
    --preview-text: #f2f8fc;
    --preview-muted: #c6d5df;
    color: var(--preview-text);
    background: linear-gradient(180deg, #050a0f 0%, #0d1922 38%, #101d27 66%, #0b151d 100%);
    overflow: hidden;
}

.naviowl-preview-home .container {
    width: min(1160px, calc(100% - 96px));
}

.preview-hero {
    position: relative;
    min-height: clamp(680px, 78vh, 860px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(5, 10, 15, 0.98) 0%, rgba(10, 30, 43, 0.96) 54%, rgba(6, 15, 22, 0.98) 100%);
}

.preview-hero:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.18) 44%, rgba(0, 0, 0, 0.74) 100%),
        linear-gradient(rgba(141, 220, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 220, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 46px 46px, 46px 46px;
    pointer-events: none;
}

.preview-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at 78% 42%, rgba(74, 165, 216, 0.22), transparent 34%),
        linear-gradient(90deg, rgba(5, 10, 15, 1) 0%, rgba(5, 10, 15, 0.94) 42%, rgba(5, 10, 15, 0.42) 62%, rgba(5, 10, 15, 0.08) 100%);
    pointer-events: none;
}

.naviowl-preview-home .hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
}

.naviowl-preview-home .hero-copy {
    position: relative;
    z-index: 3;
    max-width: 610px;
    padding-left: clamp(10px, 2vw, 32px);
}

.naviowl-preview-home .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 8px 12px;
    border: 1px solid rgba(127, 240, 203, 0.34);
    border-radius: 999px;
    background: rgba(127, 240, 203, 0.08);
    color: #d8fff2;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.naviowl-preview-home .preview-hero h1 {
    max-width: 560px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(40px, 5.2vw, 64px);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 800;
}

.naviowl-preview-home .preview-hero p {
    max-width: 590px;
    margin-bottom: 26px;
    color: #dce9f2;
    font-size: clamp(18px, 2.1vw, 18px);
    line-height: 1.24;
}

.naviowl-preview-home .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.naviowl-preview-home .preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--preview-orange);
    border-radius: 8px;
    background: var(--preview-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.naviowl-preview-home .preview-btn.dark {
    background: rgba(5, 10, 15, 0.76);
    border-color: rgba(141, 220, 255, 0.36);
}

.naviowl-preview-home .hero-media {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: min(64vw, 1120px);
    overflow: hidden;
    pointer-events: none;
}

.naviowl-preview-home .hero-media:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 10, 15, 1) 0%, rgba(5, 10, 15, 0.72) 18%, rgba(5, 10, 15, 0.18) 42%, transparent 68%),
        linear-gradient(180deg, transparent 72%, rgba(5, 10, 15, 0.7));
}

.naviowl-preview-home .hero-media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center right;
    opacity: 0.95;
}

.naviowl-preview-home .preview-section {
    position: relative;
    padding: 82px 0;
}

.naviowl-preview-home .preview-section.compact {
    padding: 38px 0 78px;
}

.naviowl-preview-home .eyebrow {
    display: block;
    margin-bottom: 18px;
    color: var(--preview-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.naviowl-preview-home .section-title {
    margin: 0 auto 48px;
    color: #fff;
    text-align: center;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    font-weight: 700;
}

.naviowl-preview-home .section-intro {
    max-width: 760px;
    margin: -30px auto 44px;
    color: var(--preview-muted);
    text-align: center;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
}

.naviowl-preview-home .proof-grid,
.naviowl-preview-home .workflow-grid,
.naviowl-preview-home .question-grid {
    display: grid;
    gap: 22px;
}

.naviowl-preview-home .proof-grid,
.naviowl-preview-home .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
}

.naviowl-preview-home .workflow-grid.centered {
    max-width: 760px;
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
}

.naviowl-preview-home .question-grid {
    grid-template-columns: repeat(3, 1fr);
}

.naviowl-preview-home .proof-card,
.naviowl-preview-home .workflow-card,
.naviowl-preview-home .question-card {
    position: relative;
    border: 1px solid var(--preview-line-soft);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.1), transparent 32%),
        linear-gradient(180deg, var(--preview-card-strong), rgba(14, 27, 37, 0.94));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.naviowl-preview-home .proof-card:before,
.naviowl-preview-home .workflow-card:before,
.naviowl-preview-home .question-card:before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 2px solid rgba(232, 117, 0, 0.76);
    opacity: 0;
    transition: opacity 0.22s ease;
    pointer-events: none;
}

.naviowl-preview-home .proof-card:hover,
.naviowl-preview-home .workflow-card:hover,
.naviowl-preview-home .question-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 117, 0, 0.66);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(232, 117, 0, 0.12);
}

.naviowl-preview-home .proof-card:hover:before,
.naviowl-preview-home .workflow-card:hover:before,
.naviowl-preview-home .question-card:hover:before {
    opacity: 1;
}

.naviowl-preview-home .proof-card {
    min-height: 150px;
    padding: 26px 22px;
    display: grid;
    align-content: center;
    gap: 12px;
    color: #f8fbff;
    font-size: 13px;
    line-height: 1.42;
    font-weight: 700;
}

.naviowl-preview-home .proof-card strong {
    display: block;
    color: #fff;
    font-size: 23px;
    line-height: 1;
}

.naviowl-preview-home .proof-card strong:after {
    content: "";
    display: block;
    width: 34px;
    height: 3px;
    margin-top: 14px;
    border-radius: 999px;
    background: var(--preview-orange);
}

.naviowl-preview-home .proof-card span {
    color: var(--preview-muted);
}

.naviowl-preview-home .workflow-card {
    min-height: 230px;
    padding: 28px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.naviowl-preview-home .workflow-card h3,
.naviowl-preview-home .question-card h3 {
    margin-bottom: 16px;
    color: #fff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.naviowl-preview-home .workflow-card p,
.naviowl-preview-home .question-card p {
    margin: 0 0 12px;
    color: #dce6ef;
    font-size: 13px;
    line-height: 1.48;
    font-weight: 600;
}

.naviowl-preview-home .card-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background: rgba(141, 220, 255, 0.08);
    color: var(--preview-blue-soft);
    font-size: 18px;
    transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.naviowl-preview-home .workflow-card:hover .card-icon {
    color: #fff;
    background: rgba(232, 117, 0, 0.26);
    transform: scale(1.04);
}

.naviowl-preview-home .decision {
    position: relative;
    display: grid;
    grid-template-columns: 430px minmax(0, 1fr);
    gap: 84px;
    align-items: center;
    overflow: hidden;
}

.naviowl-preview-home .decision:before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    width: 2px;
    height: 170px;
    background: linear-gradient(180deg, transparent, #153d59, transparent);
}

.naviowl-preview-home .decision-copy h2 {
    margin-bottom: 28px;
    color: #fff;
    font-size: clamp(26px, 3vw, 36px);
    line-height: 1.04;
    font-weight: 500;
}

.naviowl-preview-home .decision-copy p {
    max-width: 390px;
    color: #d7e1ea;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
}

.naviowl-preview-home .steps-accordion {
    display: grid;
    gap: 12px;
}

.naviowl-preview-home .step-accordion {
    border: 1px solid var(--preview-line-soft);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.08), transparent 36%),
        rgba(18, 43, 59, 0.84);
    overflow: hidden;
}

.naviowl-preview-home .step-accordion summary {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 70px;
    padding: 18px 22px;
    color: #fff;
    cursor: pointer;
    list-style: none;
    font-weight: 800;
}

.naviowl-preview-home .step-accordion summary::after {
    content: "+";
    margin-left: auto;
    color: var(--preview-orange);
    font-size: 24px;
    line-height: 1;
}

.naviowl-preview-home .step-accordion[open] summary::after,
.naviowl-preview-home .step-accordion:hover summary::after,
.naviowl-preview-home .step-accordion:focus-within summary::after {
    content: "-";
}

.naviowl-preview-home .step-accordion summary::-webkit-details-marker {
    display: none;
}

.naviowl-preview-home .step-index {
    color: var(--preview-orange);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.naviowl-preview-home .step-accordion p {
    max-height: 0;
    margin: 0;
    padding: 0 22px;
    color: var(--preview-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 650;
    overflow: hidden;
    transition: max-height 0.22s ease, padding 0.22s ease;
}

.naviowl-preview-home .step-accordion[open],
.naviowl-preview-home .step-accordion:hover,
.naviowl-preview-home .step-accordion:focus-within {
    border-color: rgba(232, 117, 0, 0.64);
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.14), transparent 36%),
        rgba(22, 58, 80, 0.94);
}

.naviowl-preview-home .step-accordion[open] p,
.naviowl-preview-home .step-accordion:hover p,
.naviowl-preview-home .step-accordion:focus-within p {
    max-height: 180px;
    padding: 0 22px 22px;
}

.naviowl-preview-home .security {
    padding-top: 68px;
    background: rgba(8, 18, 26, 0.34);
}

.naviowl-preview-home .grid-glow {
    position: absolute;
    left: 0;
    bottom: 42px;
    width: 260px;
    height: 330px;
    opacity: 0.72;
    background:
        linear-gradient(rgba(94, 185, 230, 0.13) 1px, transparent 1px),
        linear-gradient(90deg, rgba(94, 185, 230, 0.13) 1px, transparent 1px),
        linear-gradient(180deg, rgba(88, 180, 229, 0.6), transparent 56%);
    background-size: 20px 20px, 20px 20px, 100% 100%;
}

.naviowl-preview-home .security-table-wrap {
    position: relative;
    max-width: 740px;
    margin: 36px auto 0;
    border: 1px solid rgba(141, 220, 255, 0.26);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(22, 53, 72, 0.9);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.naviowl-preview-home .security-row {
    padding: 21px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    color: #f7fbff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.naviowl-preview-home .use-cases {
    text-align: center;
}

.naviowl-preview-home .question-card {
    padding: 30px;
    text-align: left;
}

.naviowl-preview-home .question-card h3 {
    font-size: 22px;
    line-height: 1.18;
}

.naviowl-preview-home .question-label {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 6px 9px;
    border-radius: 999px;
    background: rgba(127, 240, 203, 0.1);
    color: #bff8e8;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

@media (max-width: 980px) {
    .naviowl-preview-home .decision {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .preview-hero {
        min-height: auto;
        padding: 78px 0;
    }

    .naviowl-preview-home .hero-media {
        inset: 0 0 0 auto;
        width: 64vw;
        opacity: 0.42;
    }

    .naviowl-preview-home .proof-grid,
    .naviowl-preview-home .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .naviowl-preview-home .question-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .naviowl-preview-home .container {
        width: min(100% - 32px, 1160px);
    }

    .naviowl-preview-home .proof-grid,
    .naviowl-preview-home .workflow-grid,
    .naviowl-preview-home .workflow-grid.centered,
    .naviowl-preview-home .question-grid {
        grid-template-columns: 1fr;
    }

    .naviowl-preview-home .preview-section {
        padding: 58px 0;
    }

    .naviowl-preview-home .hero-actions {
        display: grid;
    }

    .naviowl-preview-home .hero-media {
        position: relative;
        width: 100%;
        margin-top: 34px;
        opacity: 1;
    }

    .naviowl-preview-home .hero-media:before {
        background: linear-gradient(180deg, rgba(5, 10, 15, 0.08), rgba(5, 10, 15, 0.7));
    }

    .naviowl-preview-home .hero-media img {
        height: auto;
        border-radius: 8px;
        object-position: center;
    }

    .naviowl-preview-home .workflow-card {
        min-height: 190px;
        padding-top: 46px;
    }
}

/* WordPress inner pages: About and CBA Intelligence. */
.naviowl-page {
    --page-line-soft: rgba(91, 190, 242, 0.34);
    --page-blue-soft: #8ddcff;
    --page-orange: #e87500;
    --page-card-strong: rgba(22, 58, 80, 0.94);
    --page-muted: #c6d5df;
    color: #f2f8fc;
    background: linear-gradient(180deg, #050a0f 0%, #0d1922 38%, #101d27 66%, #0b151d 100%);
    overflow: hidden;
}

.naviowl-page .container {
    width: min(1160px, calc(100% - 96px));
}

.navi-page-section {
    position: relative;
    padding: 88px 0;
}

.navi-page-hero {
    padding-top: 150px;
    background:
        linear-gradient(135deg, rgba(5, 10, 15, 0.98) 0%, rgba(10, 30, 43, 0.96) 54%, rgba(6, 15, 22, 0.98) 100%),
        linear-gradient(rgba(141, 220, 255, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(141, 220, 255, 0.06) 1px, transparent 1px);
    background-size: auto, 46px 46px, 46px 46px;
}

.navi-page-band {
    background: rgba(8, 18, 26, 0.34);
}

.navi-page-copy {
    max-width: 720px;
}

.navi-page-copy h1,
.navi-page-copy h2,
.navi-section-heading h2,
.navi-narrow-copy h2,
.navi-cta-card h2 {
    color: #fff;
    line-height: 1.08;
    letter-spacing: 0;
}

.navi-page-copy h1 {
    margin-bottom: 26px;
    font-size: clamp(38px, 4.9vw, 62px);
    font-weight: 800;
}

.navi-page-copy h2,
.navi-section-heading h2,
.navi-narrow-copy h2,
.navi-cta-card h2 {
    margin-bottom: 22px;
    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 700;
}

.navi-page-copy p,
.navi-section-heading p,
.navi-narrow-copy p,
.navi-cta-card p {
    color: var(--page-muted);
    font-size: 16px;
    line-height: 1.62;
    font-weight: 600;
}

.navi-page-copy p {
    margin-bottom: 18px;
}

.navi-eyebrow {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--page-orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.navi-page-visual {
    position: relative;
    border: 1px solid var(--page-line-soft);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(18, 43, 59, 0.82);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.navi-page-visual:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(5, 10, 15, 0.06), rgba(5, 10, 15, 0.58));
}

.navi-page-visual img {
    width: 100%;
    min-height: 360px;
    object-fit: cover;
}

.navi-section-heading {
    max-width: 820px;
    margin: 0 auto 44px;
}

.navi-narrow-copy {
    max-width: 850px;
    margin: 0 auto;
}

.navi-card-grid {
    display: grid;
    gap: 22px;
}

.navi-card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.navi-card-grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.navi-page-card,
.navi-cta-card {
    position: relative;
    height: 100%;
    padding: 30px;
    border: 1px solid var(--page-line-soft);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.1), transparent 32%),
        linear-gradient(180deg, var(--page-card-strong), rgba(14, 27, 37, 0.94));
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
    overflow: hidden;
}

.navi-page-card:before,
.navi-cta-card:before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 2px solid rgba(232, 117, 0, 0.76);
    pointer-events: none;
}

.navi-page-card h3,
.navi-page-card h4,
.navi-page-card h5,
.navi-page-card h6 {
    color: #fff;
}

.navi-page-card h3 {
    margin-bottom: 16px;
    font-size: 22px;
    line-height: 1.2;
}

.navi-page-card h4 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
}

.navi-page-card h6 {
    margin-bottom: 18px;
    color: var(--page-blue-soft);
    font-size: 15px;
    line-height: 1.35;
}

.navi-page-card p {
    color: #dce6ef;
    font-size: 14px;
    line-height: 1.55;
    font-weight: 600;
}

.navi-page-card .card-icon,
.navi-card-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(141, 220, 255, 0.28);
    border-radius: 8px;
    background: rgba(141, 220, 255, 0.08);
    color: var(--page-blue-soft);
    font-size: 18px;
}

.navi-page-card .deployment-note {
    margin-top: 20px;
    padding-left: 14px;
    border-left: 3px solid var(--page-blue-soft);
}

.naviowl-page .preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--page-orange);
    border-radius: 8px;
    background: var(--page-orange);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.naviowl-page .preview-btn:hover {
    background: rgba(232, 117, 0, 0.16);
    color: #fff;
}

.naviowl-page .team-card-enhanced {
    min-height: 100%;
}

.naviowl-page .team-photo-wrap {
    width: 132px;
    height: 132px;
    margin: 0 auto 24px;
    border: 1px solid var(--page-line-soft);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(141, 220, 255, 0.08);
}

.naviowl-page .team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.naviowl-page .team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: var(--page-blue-soft);
    font-weight: 800;
}

.naviowl-page .security-table-wrap {
    position: relative;
    max-width: 780px;
    margin: 36px auto 0;
    border: 1px solid rgba(141, 220, 255, 0.26);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(22, 53, 72, 0.9);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.naviowl-page .security-row {
    padding: 21px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    color: #f7fbff;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.navi-cta-section {
    padding-bottom: 110px;
}

.navi-cta-card {
    max-width: 850px;
    margin: 0 auto;
}

.navi-cta-card p {
    max-width: 620px;
    margin: 0 auto 28px;
}

.navi-text-link {
    display: inline-flex;
    margin-top: 8px;
    color: var(--page-blue-soft);
    font-weight: 800;
}

.navi-text-link:hover {
    color: var(--page-orange);
}

.navi-security-card {
    min-height: 280px;
}

@media (max-width: 991px) {
    .navi-page-visual {
        margin-top: 34px;
    }

    .navi-card-grid.three {
        grid-template-columns: 1fr;
    }

    .navi-card-grid.four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .naviowl-page .container {
        width: min(100% - 32px, 1160px);
    }

    .navi-page-section {
        padding: 58px 0;
    }

    .navi-page-hero {
        padding-top: 112px;
    }

    .navi-page-visual img {
        min-height: 240px;
    }

    .navi-page-card,
    .navi-cta-card {
        padding: 26px;
    }

    .navi-card-grid.four {
        grid-template-columns: 1fr;
    }
}

/* Final implementation polish. */
.main_menu ul li a {
    font-size: 18px;
}

.main_menu ul li ul.sub-menu li a {
    font-size: 16px;
}

.header-right-btns .btn,
.nav-demo-btn {
    font-size: 18px;
}

.naviowl-preview-home .hero-copy {
    max-width: 660px;
    margin-left: clamp(24px, 8vw, 128px);
    padding-left: 0;
}

.naviowl-preview-home .preview-btn.dark:hover {
    border-color: var(--preview-orange);
    background: var(--preview-orange);
    color: #fff;
}

.naviowl-preview-home .preview-section {
    padding-bottom: 42px;
}

.section {
    padding-bottom: 42px;
}

.naviowl-preview-home .preview-section:not(:last-child):after,
.naviowl-page .navi-page-section:not(:last-child):after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: min(760px, calc(100% - 48px));
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(232, 117, 0, 0.56), transparent);
    pointer-events: none;
}

.naviowl-preview-home .hero-badge,
.naviowl-preview-home .eyebrow,
.naviowl-page .navi-eyebrow,
.sce-common-sub-title > p {
    font-size: 20px;
}

.naviowl-preview-home .workflow-card h3,
.naviowl-preview-home .question-card h3,
.naviowl-page .navi-page-card h3,
.naviowl-page .navi-page-card h4,
.naviowl-page .navi-page-card h5 {
    font-size: 17px;
    font-weight: 600;
}

.naviowl-preview-home .workflow-card p,
.naviowl-preview-home .question-card p,
.naviowl-page .navi-page-card p,
.naviowl-page .navi-section-heading p,
.naviowl-page .navi-narrow-copy p,
.naviowl-page .navi-cta-card p,
.naviowl-preview-home .decision-copy p,
.naviowl-preview-home .section-intro {
    font-size: 16px;
    font-weight: 400;
}

.why-carousel-wrap {
    position: relative;
    padding: 0 58px;
}

.why-naviowl-carousel {
    overflow: hidden;
}

.why-naviowl-carousel .slick-list {
    margin: 0 -11px;
    overflow: hidden;
}

.why-naviowl-carousel .slick-slide {
    height: auto;
    padding: 0 11px;
}

.why-naviowl-carousel .slick-track {
    display: flex;
}

.why-naviowl-carousel .workflow-card {
    height: 100%;
    min-height: 250px;
}

.why-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(141, 220, 255, 0.38);
    border-radius: 50%;
    background: rgba(5, 10, 15, 0.86);
    color: #fff;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.why-carousel-arrow:hover {
    border-color: var(--preview-orange);
    background: rgba(232, 117, 0, 0.22);
}

.why-carousel-prev {
    left: 0;
}

.why-carousel-next {
    right: 0;
}

.naviowl-preview-home .security-row,
.naviowl-page .security-row {
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.naviowl-preview-home .security-row:hover,
.naviowl-page .security-row:hover {
    border-color: rgba(232, 117, 0, 0.66);
    background: rgba(232, 117, 0, 0.12);
}

footer .ftr-top > .row {
    align-items: flex-start;
}

footer ul.ftr-social li {
    width: 46px;
    height: 46px;
    font-size: 24px;
}

footer .ftr-menu a i {
    margin-right: 8px;
}

.contact-form-card .wpcf7 form {
    overflow: hidden;
}

.contact-form-card input,
.contact-form-card textarea,
.contact-form-card select {
    max-width: 100%;
}

@media only screen and (max-width: 1199px) {
    .main_menu ul li a {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .naviowl-preview-home .hero-copy {
        margin-left: 0;
        text-align: left;
    }

    .naviowl-preview-home .hero-media {
        display: none;
    }

    .preview-hero {
        padding: 120px 0 72px;
    }

    .why-carousel-wrap {
        padding: 0 46px;
    }

    .why-carousel-arrow {
        width: 36px;
        height: 36px;
    }

    footer ul.ftr-social li {
        width: 48px;
        height: 48px;
        font-size: 25px;
    }
}

.security-hom-table {
    border: 1px solid rgba(141, 220, 255, 0.26);
    border-radius: 8px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.security-hom-table-header {
    background: linear-gradient(90deg, #0879d8, #8ddcff);
}

.security-hom-table-tr-bg {
    background: rgba(22, 53, 72, 0.9);
}

.security-hom-table-tr-bg:before {
    background: rgba(22, 53, 72, 0.78);
}

@media only screen and (max-width: 991px) {
    .slider-wrap.bann-hom-video:after {
        background:
            linear-gradient(90deg, rgba(5, 10, 15, 1) 0%, rgba(5, 10, 15, 0.98) 50%, rgba(5, 10, 15, 0.76) 100%),
            linear-gradient(180deg, rgba(5, 10, 15, 0.36) 0%, rgba(5, 10, 15, 0.98) 88%);
    }

    .video-hom-wraper {
        right: 0;
        width: 64vw;
        height: auto;
        max-width: none;
        opacity: 0.42;
    }

    .deployment-card-inner,
    .use-question-card,
    .team-card {
        padding: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .slider-wrap.bann-hom-video {
        min-height: auto;
        padding: 92px 0 64px;
        display: flex;
        flex-direction: column-reverse;
    }

    .slider-wrap.bann-hom-video:after {
        background:
            linear-gradient(180deg, rgba(5, 10, 15, 0.68) 0%, rgba(5, 10, 15, 0.98) 88%);
    }

    .video-hom-wraper {
        position: relative;
        inset: auto;
        width: min(100%, 560px);
        height: auto;
        margin: 0 auto 34px;
        opacity: 1;
        transform: none;
        z-index: 2;
    }

    .video-hom-wraper:before {
        border-radius: 8px;
        background:
            linear-gradient(180deg, rgba(5, 10, 15, 0.08), rgba(5, 10, 15, 0.7));
    }

    .video-hom-wraper img {
        aspect-ratio: 16 / 10;
        height: auto;
        border-radius: 8px;
        object-position: center;
    }

    .bann-content {
        position: relative;
        top: auto;
        bottom: auto;
        transform: none;
        z-index: 2;
    }

    .bann-content h1 {
        line-height: 1.08;
    }
}

/* Phase 3 responsive layout fixes */
.logo {
    width: clamp(64px, 7vw, 100px);
    max-width: 100px;
}

.logo img,
.ftr-logo img {
    display: block;
    width: 100%;
    height: auto;
}

.main-header.stickyHeader .logo {
    width: clamp(52px, 5vw, 64px);
}

.ftr-logo {
    width: min(200px, 100%);
}

ul.ftr-social {
    gap: 12px;
}

ul.ftr-social li {
    width: 40px;
    height: 40px;
    margin-right: 0;
    font-size: 20px;
}

@media only screen and (max-width: 1199px) {
    .main-header {
        z-index: 1000;
    }

    .headerRow {
        gap: 14px;
    }

    .logo,
    .main-header.stickyHeader .logo {
        width: clamp(54px, 8vw, 72px);
        max-width: 72px;
    }

    .menu-toggle {
        flex: 0 0 44px;
        width: 44px;
        height: 44px;
    }

    .main_menu {
        height: auto;
        min-height: 0;
        max-height: calc(100dvh - 65px);
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 24px 18px 32px;
    }

    .main-header.stickyHeader .main_menu {
        min-height: 0;
        max-height: calc(100dvh - 65px);
    }

    body.scrollOff {
        overflow: hidden;
        touch-action: none;
    }

    .main_menu ul li,
    .main_menu ul li:first-child {
        margin: 0;
    }

    .main_menu ul li a {
        padding: 13px 34px 13px 0;
        line-height: 1.35;
    }

    .main_menu ul li.menu-item-has-children span {
        top: 13px;
        right: 0;
    }

    .main_menu ul li ul.sub-menu {
        width: 100%;
        padding: 4px 0 8px 14px;
        background-color: transparent;
    }

    .main_menu ul li ul.sub-menu li a {
        padding: 8px 28px 8px 0;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
    }

    .main_menu .for-mob {
        display: grid;
        gap: 12px;
        padding: 18px 0 0;
    }

    .main_menu .for-mob .btn,
    .main_menu .mobile-contact-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        margin: 0;
    }

    .main_menu .mobile-contact-link {
        border: 1px solid rgba(141, 220, 255, 0.42);
        border-radius: 6px;
        color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    .logo,
    .main-header.stickyHeader .logo {
        width: clamp(50px, 14vw, 64px);
        max-width: 64px;
    }

    .ftr-top {
        padding: 44px 0 24px;
    }

    .ftr-col {
        margin-bottom: 26px;
        text-align: center;
    }

    .ftr-logo {
        width: min(180px, 72vw);
        margin: 0 auto 20px;
    }

    .ftr-content {
        max-width: 420px;
        margin: 0 auto;
    }

    .ftr-menu ul li {
        margin-bottom: 8px;
    }

    ul.ftr-social {
        justify-content: center;
        margin-bottom: 18px;
    }

    .ftr-btm {
        padding-bottom: 32px;
    }
}

@media only screen and (max-width: 480px) {
    .main_menu {
        max-height: calc(100dvh - 59px);
    }

    .main-header.stickyHeader .main_menu {
        max-height: calc(100dvh - 57px);
    }

    .ftr-logo {
        width: min(160px, 68vw);
    }

    ul.ftr-social li {
        width: 42px;
        height: 42px;
    }
}

/* Header logo sizing hotfix */
.logo,
.site-logo,
.header-logo {
    width: auto;
    max-width: 100px;
}

.logo img,
.site-logo img,
.header-logo img,
.navbar-brand img {
    width: auto;
    max-width: 100%;
    max-height: 96px;
}

.main-header.stickyHeader .logo,
.sticky .logo {
    width: auto;
    max-width: 72px;
}

.main-header.stickyHeader .logo img,
.sticky .logo img {
    width: auto;
    max-height: 72px;
}

@media only screen and (max-width: 1199px) {
    .logo,
    .site-logo,
    .header-logo {
        width: auto;
        max-width: 82px;
    }

    .logo img,
    .site-logo img,
    .header-logo img,
    .navbar-brand img,
    .for-mob img {
        width: auto;
        max-height: 82px;
    }

    .main-header.stickyHeader .logo,
    .sticky .logo {
        width: auto;
        max-width: 68px;
    }

    .main-header.stickyHeader .logo img,
    .sticky .logo img {
        width: auto;
        max-height: 68px;
    }
}

@media only screen and (max-width: 767px) {
    .logo,
    .site-logo,
    .header-logo {
        width: auto;
        max-width: 90px;
    }

    .logo img,
    .site-logo img,
    .header-logo img,
    .navbar-brand img,
    .for-mob img {
        width: auto;
        height: auto;
        max-width: 90px;
        max-height: 64px;
        object-fit: contain;
    }

    .main-header.stickyHeader .logo,
    .sticky .logo {
        width: auto;
        max-width: 90px;
    }

    .main-header.stickyHeader .logo img,
    .sticky .logo img {
        width: auto;
        height: auto;
        max-width: 90px;
        max-height: 58px;
        object-fit: contain;
    }

    .ftr-logo {
        width: auto;
        max-width: 110px;
    }

    .ftr-logo img {
        width: auto;
        height: auto;
        max-width: 110px;
        object-fit: contain;
    }
}

/* Final footer-only logo/layout override */
footer .ftr-logo {
    width: 110px;
    max-width: 110px;
    margin-bottom: 22px;
}

footer .ftr-logo img {
    display: block;
    width: 100%;
    max-width: 110px;
    height: auto;
    object-fit: contain;
}

footer ul.ftr-social li {
    width: 38px;
    height: 38px;
    margin-right: 12px;
    font-size: 20px;
}

@media only screen and (max-width: 767px) {
    footer .ftr-logo {
        width: 100px;
        max-width: 100px;
        margin: 0 auto 20px;
    }

    footer .ftr-logo img {
        width: 100%;
        max-width: 100px;
        height: auto;
        object-fit: contain;
    }

    footer ul.ftr-social {
        justify-content: center;
        gap: 12px;
    }

    footer ul.ftr-social li {
        width: 40px;
        height: 40px;
        margin-right: 0;
    }
}

/* Last-mile overrides for final QA. Keep these at the end of the cascade. */
.main_menu ul li a {
    font-size: 18px;
}

.main_menu ul li ul.sub-menu li a {
    font-size: 16px;
}

.header-right-btns .btn,
.nav-demo-btn {
    font-size: 18px;
}

footer ul.ftr-social li {
    width: 46px;
    height: 46px;
    font-size: 24px;
}

@media only screen and (max-width: 767px) {
    footer ul.ftr-social li {
        width: 48px;
        height: 48px;
        font-size: 25px;
    }
}

/* Final review pass: forms, heroes, cards, footer, and mobile menu. */
.naviowl-preview-home .proof-card span {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.naviowl-preview-home .grid-glow {
    display: none;
}

.navi-page-visual {
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.08), transparent 38%),
        rgba(18, 43, 59, 0.84);
}

.navi-page-visual:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 78% 42%, rgba(74, 165, 216, 0.2), transparent 34%),
        linear-gradient(90deg, rgba(5, 10, 15, 0.62), rgba(5, 10, 15, 0.08));
}

.navi-page-visual img {
    position: relative;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.naviowl-about-page #our-story .navi-page-copy p {
    font-weight: 400;
}

.navi-page-card,
.deployment-card,
.advisor-card,
.founder-detail-card {
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.navi-page-card:hover,
.deployment-card:hover,
.advisor-card:hover,
.founder-detail-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 117, 0, 0.66);
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.16), transparent 34%),
        linear-gradient(180deg, rgba(24, 58, 78, 0.95), rgba(14, 27, 37, 0.94));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(232, 117, 0, 0.12);
}

.founder-hero-card {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    margin-bottom: 28px;
}

.founder-photo {
    width: 180px;
    height: 180px;
    border: 1px solid rgba(141, 220, 255, 0.34);
    border-radius: 50%;
    overflow: hidden;
    background: rgba(141, 220, 255, 0.08);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-intro h2 {
    margin-bottom: 10px;
    font-size: clamp(34px, 4vw, 54px);
}

.founder-subheadline {
    max-width: 680px;
    color: #dce6ef;
    font-size: 20px;
    line-height: 1.4;
}

.navi-card-grid.two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-grid {
    margin-top: 24px;
}

.founder-closing {
    margin-top: 28px;
}

.founder-closing h2 {
    font-size: clamp(26px, 3vw, 36px);
}

.advisors-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.advisor-card {
    text-align: left;
}

.advisor-initials {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border: 1px solid rgba(141, 220, 255, 0.34);
    border-radius: 50%;
    background: rgba(141, 220, 255, 0.08);
    color: #8ddcff;
    font-weight: 800;
}

.advisor-card h4 {
    color: #8ddcff;
    font-size: 15px;
    line-height: 1.35;
}

.advisors-closing {
    max-width: 760px;
    margin: 34px auto 0;
    color: #dce6ef;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
}

.footer-contact-list {
    display: grid;
    gap: 12px;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d8e3ec;
    font-size: 15px;
    line-height: 1.4;
}

.footer-contact-list i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(141, 220, 255, 0.38);
    border-radius: 50%;
    color: #8ddcff;
    font-size: 16px;
}

.footer-contact-list a:hover,
.footer-contact-list a:hover i {
    color: #fff;
    border-color: var(--clr-accent);
}

.legal-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1.2;
}

.book-demo-form-card {
    margin-bottom: 40px;
}

.book-demo-form-card .wpcf7-submit,
.book-demo-form-card input[type="submit"] {
    background-color: var(--clr-accent);
    border-color: var(--clr-accent);
    color: #fff;
}

@media only screen and (max-width: 1199px) {
    .main_menu {
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 36px;
    }

    body.nav-open {
        overflow: hidden;
    }

    .advisors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .navi-page-visual {
        display: none;
    }

    .founder-hero-card,
    .navi-card-grid.two,
    .advisors-grid {
        grid-template-columns: 1fr;
    }

    .founder-photo {
        width: 150px;
        height: 150px;
    }

    .footer-contact-list a {
        justify-content: center;
    }
}

/* Final polish batch: CF7 routing support, heroes, mobile nav, advisors, and CBA visual scale. */
.naviowl-preview-home .hero-actions .preview-btn:first-child {
    min-height: 52px;
    padding: 0 28px;
    border: 1px solid var(--clr-accent);
    border-radius: 8px;
    background: var(--clr-accent);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 18px 42px rgba(232, 117, 0, 0.28);
}

.naviowl-preview-home .hero-actions .preview-btn:first-child:hover {
    border-color: #ff9828;
    background: #ff9828;
    color: #fff;
    transform: translateY(-2px);
}

.navi-page-hero .navi-page-visual {
    aspect-ratio: 1.05 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 72% 30%, rgba(74, 165, 216, 0.26), transparent 32%),
        linear-gradient(135deg, rgba(232, 117, 0, 0.08), transparent 38%),
        rgba(18, 43, 59, 0.86);
}

.navi-page-hero .navi-page-visual img {
    min-height: 0;
    height: 100%;
    object-fit: cover;
}

.naviowl-healthcare-ops-page .navi-page-hero .navi-page-visual img {
    object-fit: cover;
    object-position: center;
}

.naviowl-about-page .navi-page-hero .navi-page-visual img,
.naviowl-cba-page .navi-page-hero .navi-page-visual img {
    object-fit: cover;
}

.advisors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.advisor-card {
    min-height: 245px;
}

.naviowl-cba-page .navi-security-card {
    max-width: 340px;
    min-height: 0;
    margin-left: auto;
    padding: 24px;
    opacity: 0.9;
}

.naviowl-cba-page .navi-security-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    font-size: 20px;
}

.naviowl-cba-page .navi-security-card h3 {
    font-size: 20px;
}

.naviowl-cba-page .navi-security-card p {
    font-size: 15px;
    line-height: 1.5;
}

@media only screen and (max-width: 1199px) {
    .main_menu {
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(100dvh - 72px) !important;
        bottom: auto !important;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 22px 18px 36px !important;
    }

    .main-header.stickyHeader .main_menu {
        height: auto !important;
        min-height: 0 !important;
        max-height: calc(100dvh - 65px) !important;
        bottom: auto !important;
    }

    .main_menu > ul {
        display: grid;
        gap: 4px;
    }

    .main_menu ul li,
    .main_menu ul li:first-child {
        margin: 0 !important;
    }

    .main_menu ul li a {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .main_menu .for-mob {
        padding: 18px 0 0;
    }

    body.nav-open,
    body.scrollOff {
        overflow: hidden;
        height: auto;
        position: static;
    }
}

@media only screen and (max-width: 991px) {
    .advisors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .naviowl-cba-page .navi-security-card {
        max-width: none;
        margin-top: 28px;
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .navi-page-hero .navi-page-visual {
        display: none;
    }

    .advisors-grid {
        grid-template-columns: 1fr;
    }

    .naviowl-preview-home .hero-actions .preview-btn:first-child {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .main_menu {
        max-height: calc(100dvh - 60px) !important;
        padding-bottom: 44px !important;
    }
}

/* Targeted homepage carousel restore and mobile hero badge polish. */
.why-carousel-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.why-naviowl-carousel:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.why-naviowl-carousel.why-carousel-fallback {
    overflow: visible;
}

.why-naviowl-carousel.slick-initialized {
    display: block;
}

.why-naviowl-carousel,
.why-naviowl-carousel .slick-list,
.why-naviowl-carousel .slick-track,
.why-naviowl-carousel .slick-slide,
.why-naviowl-carousel .workflow-card {
    box-sizing: border-box;
    max-width: 100%;
}

.why-naviowl-carousel .slick-list {
    width: 100%;
}

.why-naviowl-carousel .slick-track {
    align-items: stretch;
}

.why-naviowl-carousel .slick-slide {
    min-width: 0;
}

.why-naviowl-carousel .slick-slide > div,
.why-naviowl-carousel .slick-slide article {
    height: 100%;
}

@media only screen and (max-width: 1023px) {
    .why-naviowl-carousel:not(.slick-initialized) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .naviowl-preview-home .preview-hero .hero-badge {
        max-width: min(260px, 100%);
        margin-bottom: 16px;
        padding: 8px 14px;
        font-size: 12px;
        line-height: 1.2;
        gap: 7px;
        white-space: normal;
    }

    .naviowl-preview-home .preview-hero .hero-badge i,
    .naviowl-preview-home .preview-hero .hero-badge svg {
        width: 14px;
        height: 14px;
        font-size: 14px;
        flex: 0 0 14px;
    }

    .why-carousel-wrap {
        padding-left: 34px;
        padding-right: 34px;
    }

    .why-naviowl-carousel:not(.slick-initialized) {
        grid-template-columns: 1fr;
    }

    .why-naviowl-carousel .slick-list {
        margin: 0 !important;
    }

    .why-naviowl-carousel .slick-slide {
        padding-left: 4px;
        padding-right: 4px;
    }

    .why-carousel-arrow {
        top: 50%;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .why-carousel-prev {
        left: 0;
    }

    .why-carousel-next {
        right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .naviowl-preview-home .preview-hero .hero-badge {
        max-width: 250px;
        padding: 7px 12px;
        font-size: 12px;
    }

    .why-carousel-wrap {
        padding-left: 30px;
        padding-right: 30px;
    }
}

/* Emergency carousel visibility fix: let Slick own track widths and keep cards visible. */
#why-naviowl .why-carousel-wrap {
    overflow: visible;
    padding-top: 28px;
}

#why-naviowl .why-naviowl-carousel {
    display: block !important;
    min-height: 280px;
    overflow: hidden;
}

#why-naviowl .why-naviowl-carousel .slick-list {
    min-height: 280px;
    margin: 0 -11px;
    overflow: hidden !important;
}

#why-naviowl .why-naviowl-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
    max-width: none !important;
    min-height: 280px;
}

#why-naviowl .why-naviowl-carousel .slick-slide {
    display: block !important;
    float: left;
    height: auto !important;
    max-width: none !important;
    min-height: 280px;
    padding: 0 11px;
    opacity: 1 !important;
    visibility: visible !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide > div {
    height: 100%;
}

#why-naviowl .why-naviowl-carousel .workflow-card {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    max-width: none;
    min-height: 250px;
    opacity: 1 !important;
    visibility: visible !important;
}

@media only screen and (max-width: 767px) {
    #why-naviowl .why-carousel-wrap {
        padding: 24px 38px 0;
        overflow: visible;
    }

    #why-naviowl .why-naviowl-carousel,
    #why-naviowl .why-naviowl-carousel .slick-list,
    #why-naviowl .why-naviowl-carousel .slick-track,
    #why-naviowl .why-naviowl-carousel .slick-slide {
        min-height: 280px;
    }

    #why-naviowl .why-naviowl-carousel .slick-list {
        margin: 0 !important;
    }

    #why-naviowl .why-naviowl-carousel .slick-slide {
        padding: 0 4px;
    }

    #why-naviowl .why-carousel-prev {
        left: 0;
    }

    #why-naviowl .why-carousel-next {
        right: 0;
    }
}

/* Final visual polish: page hero blend, mobile carousel fit, themed scrollbar. */
html {
    scrollbar-width: thin;
    scrollbar-color: #1f8acb #061018;
}

body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #061018;
    box-shadow: none;
}

::-webkit-scrollbar-thumb {
    border: 2px solid #061018;
    border-radius: 999px;
    background: linear-gradient(180deg, #35b6e8, #1f8acb);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--clr-accent), #d86600);
}

.navi-page-hero {
    overflow: hidden;
}

.navi-page-hero .navi-page-visual {
    border-color: rgba(141, 220, 255, 0.12);
    background:
        radial-gradient(circle at 72% 36%, rgba(74, 165, 216, 0.2), transparent 34%),
        linear-gradient(90deg, rgba(5, 10, 15, 0.92), rgba(5, 10, 15, 0.12) 46%, rgba(5, 10, 15, 0.34) 100%),
        #07111a;
    box-shadow: none;
}

.navi-page-hero .navi-page-visual:before {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 10, 15, 0.96) 0%, rgba(5, 10, 15, 0.48) 24%, rgba(5, 10, 15, 0.08) 58%, rgba(5, 10, 15, 0.28) 100%),
        linear-gradient(180deg, rgba(5, 10, 15, 0.18) 0%, transparent 46%, rgba(5, 10, 15, 0.66) 100%);
}

.navi-page-hero .navi-page-visual:after {
    z-index: 3;
    background:
        radial-gradient(circle at 76% 38%, rgba(74, 165, 216, 0.16), transparent 34%),
        linear-gradient(90deg, rgba(5, 10, 15, 0.74), transparent 42%);
}

.navi-page-hero .navi-page-visual img {
    opacity: 0.78;
    filter: saturate(0.95) contrast(1.06);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.why-carousel-wrap,
.why-naviowl-carousel,
.why-naviowl-carousel .slick-list,
.why-naviowl-carousel .slick-track,
.why-naviowl-carousel .slick-slide {
    box-sizing: border-box;
    max-width: 100%;
}

.why-naviowl-carousel .slick-slide > div {
    height: 100%;
}

.why-naviowl-carousel .workflow-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media only screen and (max-width: 767px) {
    .why-carousel-wrap {
        width: 100%;
        max-width: 100%;
        padding: 0 40px;
        overflow: hidden;
    }

    .why-naviowl-carousel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .why-naviowl-carousel .slick-list {
        margin: 0;
        overflow: hidden;
    }

    .why-naviowl-carousel .slick-slide {
        padding: 0 6px;
    }

    .why-carousel-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .why-carousel-prev {
        left: 0;
    }

    .why-carousel-next {
        right: 0;
    }
}

@media only screen and (max-width: 575px) {
    .why-carousel-wrap {
        padding: 0 36px;
    }
}

/* Final carousel shape correction: keep card contents compact while Slick controls width. */
#why-naviowl .why-naviowl-carousel .slick-track {
    max-width: none !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide {
    max-width: none !important;
}

#why-naviowl .workflow-card {
    justify-content: flex-start;
    gap: 0;
}

#why-naviowl .workflow-card .card-icon {
    flex: 0 0 42px;
    align-self: flex-start;
    width: 42px;
    max-width: 42px;
    height: 42px;
    min-height: 42px;
    margin-bottom: 28px;
}

#why-naviowl .workflow-card h3 {
    margin-top: 0;
}

#why-naviowl .why-naviowl-carousel .slick-list {
    margin-left: -10px !important;
    margin-right: -10px !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide .workflow-card {
    width: calc(100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
}

@media only screen and (max-width: 767px) {
    #why-naviowl .why-carousel-wrap {
        padding-left: 36px;
        padding-right: 36px;
    }

    #why-naviowl .workflow-card {
        min-height: 250px;
    }

    #why-naviowl .why-naviowl-carousel .slick-list {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #why-naviowl .why-naviowl-carousel .slick-slide {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    #why-naviowl .why-naviowl-carousel .slick-slide .workflow-card {
        width: calc(100% - 8px);
        margin-left: 4px;
        margin-right: 4px;
    }
}

/* Carousel gutter override: apply spacing inside Slick's inner slide wrapper. */
#why-naviowl .why-naviowl-carousel .slick-list {
    margin-left: -12px !important;
    margin-right: -12px !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide > div {
    width: 100%;
    height: 100%;
    padding-left: 12px !important;
    padding-right: 12px !important;
    box-sizing: border-box;
}

#why-naviowl .why-naviowl-carousel .slick-slide .workflow-card {
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

@media only screen and (max-width: 767px) {
    #why-naviowl .why-naviowl-carousel .slick-list {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    #why-naviowl .why-naviowl-carousel .slick-slide > div {
        padding-left: 6px !important;
        padding-right: 6px !important;
    }
}

/* Final carousel spacing override: gutters between tiles without clipping the first card. */
#why-naviowl .why-carousel-wrap {
    padding-left: 58px;
    padding-right: 58px;
    overflow: visible;
}

#why-naviowl .why-naviowl-carousel {
    overflow: hidden;
}

#why-naviowl .why-naviowl-carousel .slick-list {
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide {
    padding-left: 14px !important;
    padding-right: 14px !important;
    box-sizing: border-box;
}

#why-naviowl .why-naviowl-carousel .slick-slide > div {
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box;
}

#why-naviowl .why-naviowl-carousel .slick-slide .workflow-card {
    width: 100% !important;
    margin: 0 !important;
}

@media only screen and (max-width: 767px) {
    #why-naviowl .why-carousel-wrap {
        padding-left: 38px;
        padding-right: 38px;
    }

    #why-naviowl .why-naviowl-carousel .slick-slide {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }
}

/* Final targeted polish: homepage hero lockup and use-case header alignment. */
.home-title-lockup {
    max-width: 640px;
    margin-bottom: 22px;
    color: #fff;
}

.home-brand-wordmark,
.home-brand-tagline {
    display: block;
    color: #fff;
}

.home-brand-wordmark {
    margin-bottom: 8px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 800;
}

.home-brand-tagline {
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.25;
    font-weight: 700;
}

.home-brand-separator {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 0 18px;
    background: rgba(255, 255, 255, 0.72);
}

.home-title-lockup h1 {
    margin-bottom: 0;
}

.naviowl-preview-home .preview-hero .hero-badge {
    display: none;
}

.use-case-item.step-accordion summary {
    grid-template-columns: 190px minmax(0, 1fr) 28px;
    align-items: center;
    padding: 18px 24px;
}

.use-case-item.step-accordion summary::after {
    grid-column: 3;
    grid-row: 1;
}

.use-case-summary {
    display: contents;
}

.use-case-role {
    grid-column: 1;
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: none;
}

.use-case-question {
    grid-column: 2;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.use-case-detail-row {
    grid-template-columns: 190px minmax(0, 1fr);
}

@media only screen and (max-width: 767px) {
    .home-brand-wordmark {
        font-size: 40px;
    }

    .home-brand-tagline {
        font-size: 18px;
    }

    .use-case-item.step-accordion summary {
        grid-template-columns: minmax(0, 1fr) 24px;
        gap: 10px 16px;
    }

    .use-case-summary {
        display: grid;
        gap: 6px;
    }

    .use-case-role,
    .use-case-question {
        grid-column: auto;
    }

    .use-case-item.step-accordion summary::after {
        grid-column: 2;
    }

    .use-case-detail-row {
        grid-template-columns: 1fr;
    }
}

/* Absolute final visual corrections for footer, separators, hero offset, and nav CTA centering. */
.home-brand-separator,
.cba-brand-separator {
    background: var(--clr-accent) !important;
}

.naviowl-preview-home .preview-hero {
    padding-top: 55px;
}

.header-fixed-btn .btn,
.nav-demo-btn,
.main_menu .for-mob .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

footer .ftr-logo {
    width: min(220px, 100%) !important;
    max-width: 220px !important;
    margin-bottom: 0;
}

footer .ftr-logo img {
    width: 100%;
    height: auto;
    max-height: 118px;
    object-fit: contain;
}

.footer-tagline {
    margin-top: 18px;
    color: #8ddcff;
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(141, 220, 255, 0.46);
    border-radius: 50%;
    color: #8ddcff;
    font-size: 21px;
    line-height: 1;
}

.footer-contact-list a:hover {
    border-color: var(--clr-accent);
    color: #fff;
    background: rgba(232, 117, 0, 0.16);
}

.footer-contact-list i {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}

@media only screen and (max-width: 991px) {
    footer .ftr-logo {
        width: min(180px, 100%) !important;
        max-width: 180px !important;
    }
}

@media only screen and (max-width: 767px) {
    .naviowl-preview-home .preview-hero {
        padding-top: 82px;
    }

    footer .ftr-logo {
        width: min(150px, 72vw) !important;
        max-width: 150px !important;
    }

    .footer-contact-list {
        justify-content: center;
    }
}

/* Final mobile hero offset: keep hero content clear of the absolute header/nav. */
@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home .preview-hero,
    html body .naviowl-page .navi-page-hero {
        padding-top: 118px !important;
    }
}

@media only screen and (max-width: 575px) {
    html body .naviowl-preview-home .preview-hero,
    html body .naviowl-page .navi-page-hero {
        padding-top: 124px !important;
    }
}

/* Final logo sizing for logo-updated.png in the global header and footer. */
html body .main-header .logo {
    width: clamp(130px, 9vw, 160px) !important;
    max-width: 160px !important;
    flex: 0 0 auto;
}

html body .main-header .logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 82px;
    object-fit: contain;
}

html body .main-header.stickyHeader .logo {
    width: clamp(118px, 8vw, 145px) !important;
    max-width: 145px !important;
}

html body .main-header.stickyHeader .logo img {
    max-height: 74px;
}

html body footer .ftr-logo {
    width: min(250px, 100%) !important;
    max-width: 250px !important;
    margin-bottom: 0;
}

html body footer .ftr-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 130px;
    object-fit: contain;
}

@media only screen and (max-width: 1199px) {
    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        width: clamp(118px, 13vw, 145px) !important;
        max-width: 145px !important;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-height: 74px;
    }
}

@media only screen and (max-width: 991px) {
    html body footer .ftr-logo {
        width: min(220px, 100%) !important;
        max-width: 220px !important;
    }

    html body footer .ftr-logo img {
        max-height: 116px;
    }
}

@media only screen and (max-width: 767px) {
    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        width: min(118px, 34vw) !important;
        max-width: 118px !important;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-height: 64px;
    }

    html body footer .ftr-logo {
        width: min(180px, 72vw) !important;
        max-width: 180px !important;
    }

    html body footer .ftr-logo img {
        max-height: 96px;
    }
}

/* Final visual correction: footer brand/contact, hero spacing, orange separators, nav CTA alignment. */
.home-brand-separator,
.cba-brand-separator {
    background: var(--clr-accent) !important;
}

.naviowl-preview-home .preview-hero {
    padding-top: 55px;
}

.header-fixed-btn .btn,
.nav-demo-btn,
.main_menu .for-mob .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

footer .ftr-logo {
    width: min(220px, 100%) !important;
    max-width: 220px !important;
    margin-bottom: 0;
}

footer .ftr-logo img {
    width: 100%;
    height: auto;
    max-height: 118px;
    object-fit: contain;
}

.footer-tagline {
    margin-top: 18px;
    color: #8ddcff;
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(141, 220, 255, 0.46);
    border-radius: 50%;
    color: #8ddcff;
    font-size: 21px;
    line-height: 1;
}

.footer-contact-list a:hover {
    border-color: var(--clr-accent);
    color: #fff;
    background: rgba(232, 117, 0, 0.16);
}

.footer-contact-list i {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}

@media only screen and (max-width: 991px) {
    footer .ftr-logo {
        width: min(180px, 100%) !important;
        max-width: 180px !important;
    }
}

@media only screen and (max-width: 767px) {
    .naviowl-preview-home .preview-hero {
        padding-top: 82px;
    }

    footer .ftr-logo {
        width: min(150px, 72vw) !important;
        max-width: 150px !important;
    }

    .footer-contact-list {
        justify-content: center;
    }
}

/* Targeted correction pass: compact nav, refined use cases, orange nav state, Healthcare Ops carousel. */
.main-header {
    padding: 6px 0;
}

.headerRow {
    min-height: 72px;
}

.logo,
.main-header.stickyHeader .logo {
    width: clamp(58px, 6vw, 84px);
    max-width: 84px;
}

.logo img {
    width: 100%;
    height: auto;
    max-height: 72px;
    object-fit: contain;
}

.main_menu ul li a {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header-fixed-btn .btn,
.nav-demo-btn {
    min-height: 46px;
    padding: 0 24px;
    font-size: 16px;
}

.main_menu ul li:hover > a,
.main_menu ul li.active > a,
.main_menu ul li.current-menu-item > a,
.main_menu ul li.current-menu-ancestor > a {
    color: var(--clr-accent) !important;
}

.main_menu ul li.current-menu-item > a:after,
.main_menu ul li.current-menu-ancestor > a:after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    margin-top: 4px;
    border-radius: 999px;
    background: var(--clr-accent);
}

.main_menu ul li ul.sub-menu li a:hover {
    color: var(--clr-accent) !important;
    background: rgba(232, 117, 0, 0.08);
}

.use-case-accordion {
    max-width: 980px;
}

.use-case-item summary {
    align-items: flex-start;
}

.use-case-summary {
    display: grid;
    gap: 5px;
    min-width: 0;
}

.use-case-role {
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.06em;
    line-height: 1.2;
    text-transform: uppercase;
}

.use-case-question {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

.use-case-item .accordion-body {
    display: grid;
    gap: 12px;
    padding-top: 2px;
}

.use-case-detail-row {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 12px 0;
    border-top: 1px solid rgba(141, 220, 255, 0.14);
    text-align: left;
}

.use-case-detail-row span {
    color: var(--clr-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.use-case-detail-row p {
    margin: 0;
    color: #dce6ef;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

.healthcare-pillars-carousel-wrap {
    position: relative;
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 58px;
    overflow: visible;
}

.healthcare-pillars-carousel {
    overflow: hidden;
}

.healthcare-pillars-carousel:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.healthcare-pillars-carousel .slick-list {
    overflow: hidden;
}

.healthcare-pillars-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.healthcare-pillars-carousel .slick-slide {
    height: auto;
    padding: 0 12px;
}

.healthcare-pillars-carousel .slick-slide > div {
    height: 100%;
}

.healthcare-pillar-card {
    height: 100%;
    min-height: 250px;
}

.healthcare-pillars-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(141, 220, 255, 0.38);
    border-radius: 50%;
    background: rgba(5, 10, 15, 0.86);
    color: #fff;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.healthcare-pillars-arrow:hover {
    border-color: var(--clr-accent);
    background: rgba(232, 117, 0, 0.22);
}

.healthcare-pillars-prev {
    left: 0;
}

.healthcare-pillars-next {
    right: 0;
}

@media only screen and (max-width: 1199px) {
    .main-header {
        padding: 5px 0;
    }

    .headerRow {
        min-height: 66px;
    }

    .main_menu ul li.current-menu-item > a:after,
    .main_menu ul li.current-menu-ancestor > a:after {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .preview-hero,
    .navi-page-hero {
        padding-top: 72px;
    }

    .use-case-summary {
        gap: 7px;
    }

    .use-case-question {
        font-size: 16px;
    }

    .use-case-detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 11px 0;
    }

    .healthcare-pillars-carousel-wrap {
        padding: 0 38px;
    }

    .healthcare-pillars-carousel:not(.slick-initialized) {
        grid-template-columns: 1fr;
    }

    .healthcare-pillars-carousel .slick-slide {
        padding: 0 8px;
    }

    .healthcare-pillars-arrow {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* Final correction: lighter use cases and stable carousel card interiors. */
.use-case-accordion {
    max-width: 860px;
    margin-top: 28px;
}

.use-case-item.step-accordion {
    margin-bottom: 14px;
}

.use-case-item.step-accordion summary {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 18px;
    min-height: 0;
    padding: 20px 24px;
}

.use-case-item.step-accordion summary::after {
    align-self: center;
}

.use-case-item .accordion-body {
    padding: 0 24px 18px;
}

.use-case-summary {
    gap: 6px;
}

.use-case-role {
    color: var(--clr-accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.use-case-question {
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.use-case-detail-row {
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 16px;
    padding: 10px 0;
}

.use-case-detail-row p {
    font-size: 15px;
    line-height: 1.45;
}

#why-naviowl .why-naviowl-carousel .slick-list,
#healthcare-pillars .healthcare-pillars-carousel .slick-list {
    margin: 0 !important;
    overflow: hidden !important;
}

#why-naviowl .why-naviowl-carousel .slick-track,
#healthcare-pillars .healthcare-pillars-carousel .slick-track {
    display: flex !important;
    align-items: stretch !important;
    max-width: none !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide,
#healthcare-pillars .healthcare-pillars-carousel .slick-slide {
    height: auto !important;
    max-width: none !important;
    padding: 0 12px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#why-naviowl .why-naviowl-carousel .slick-slide > div,
#healthcare-pillars .healthcare-pillars-carousel .slick-slide > div {
    height: 100%;
    padding: 0 !important;
}

#why-naviowl .workflow-card,
#healthcare-pillars .healthcare-pillar-card {
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    width: 100% !important;
    min-height: 250px;
    margin: 0 !important;
    padding: 28px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#why-naviowl .workflow-card .card-icon,
#healthcare-pillars .healthcare-pillar-card .card-icon {
    display: inline-flex !important;
    flex: 0 0 42px !important;
    align-self: flex-start;
    width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 0 28px !important;
}

#why-naviowl .workflow-card h3,
#why-naviowl .workflow-card p,
#healthcare-pillars .healthcare-pillar-card h3,
#healthcare-pillars .healthcare-pillar-card p {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#healthcare-pillars .healthcare-pillar-card h3 {
    margin-bottom: 14px;
}

#healthcare-pillars .healthcare-pillar-card p {
    color: #dce6ef;
    font-size: 16px;
    line-height: 1.5;
}

.main-header {
    padding: 3px 0;
}

.headerRow {
    min-height: 62px;
}

.logo,
.main-header.stickyHeader .logo {
    width: clamp(52px, 5vw, 72px);
    max-width: 72px;
}

.logo img {
    max-height: 64px;
}

.main_menu ul li a {
    padding-top: 8px;
    padding-bottom: 8px;
}

.header-fixed-btn .btn,
.nav-demo-btn {
    min-height: 42px;
    padding: 0 20px;
}

@media only screen and (max-width: 767px) {
    .use-case-item.step-accordion summary {
        grid-template-columns: minmax(0, 1fr) 24px;
        padding: 18px;
    }

    .use-case-item .accordion-body {
        padding: 0 18px 16px;
    }

    .use-case-detail-row {
        grid-template-columns: 1fr;
    }

    #why-naviowl .why-naviowl-carousel .slick-slide,
    #healthcare-pillars .healthcare-pillars-carousel .slick-slide {
        padding: 0 8px !important;
    }
}

/* AI-priority final pass: accordions, nav state, footer tagline, advisors, and CBA lockup. */
.naviowl-preview-home #why-naviowl {
    padding-bottom: 24px !important;
}

html body .naviowl-preview-home #why-naviowl .why-carousel-wrap {
    padding-top: 24px;
    padding-left: 64px;
    padding-right: 64px;
    margin-bottom: 0;
}

html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel,
html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-list,
html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-track {
    min-height: 0 !important;
}

html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-slide {
    min-height: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
}

html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-slide > div {
    height: 100%;
    padding: 0 !important;
    box-sizing: border-box !important;
}

html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .workflow-card {
    min-height: 220px !important;
    height: 100%;
    margin: 0 !important;
    padding: 24px !important;
    box-sizing: border-box !important;
}

html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .workflow-card .card-icon {
    margin-bottom: 22px !important;
}

html body .naviowl-page #healthcare-pillars {
    padding-bottom: 24px !important;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel-wrap {
    padding-top: 24px;
    padding-left: 64px;
    padding-right: 64px;
    margin-bottom: 0;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel,
html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-list,
html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-track {
    min-height: 0 !important;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-slide {
    min-height: 0 !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    box-sizing: border-box !important;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-slide > div {
    height: 100%;
    padding: 0 !important;
    box-sizing: border-box !important;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .healthcare-pillar-card {
    min-height: 220px !important;
    height: 100%;
    margin: 0 !important;
    padding: 24px !important;
    box-sizing: border-box !important;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .healthcare-pillar-card .card-icon {
    margin-bottom: 22px !important;
}

@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home #why-naviowl {
        padding-bottom: 22px !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-carousel-wrap {
        padding-left: 38px;
        padding-right: 38px;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-slide {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .workflow-card {
        min-height: 210px !important;
        padding: 22px !important;
    }

    html body .naviowl-page #healthcare-pillars {
        padding-bottom: 22px !important;
    }

    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel-wrap {
        padding-left: 38px;
        padding-right: 38px;
    }

    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-slide {
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .healthcare-pillar-card {
        min-height: 210px !important;
        padding: 22px !important;
    }
}

.main_menu ul li.current-menu-item > a,
.main_menu ul li.current-menu-ancestor > a {
    color: var(--clr-accent);
}

.main_menu ul li.current-menu-item > a:after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    margin-top: 4px;
    border-radius: 999px;
    background: var(--clr-accent);
}

.use-case-accordion,
.founder-accordion {
    max-width: 920px;
    margin: 34px auto 0;
}

.step-accordion .accordion-body {
    padding: 0 24px 22px 72px;
}

.step-accordion .accordion-body h3 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 18px;
}

.step-accordion .accordion-body p {
    max-height: none;
    margin: 0 0 12px;
    opacity: 1;
}

.founder-accordion .step-accordion,
.use-case-accordion .step-accordion {
    border-color: rgba(141, 220, 255, 0.32);
    background:
        linear-gradient(135deg, rgba(232, 117, 0, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(24, 58, 78, 0.94), rgba(14, 27, 37, 0.94));
}

.founder-accordion .step-accordion[open],
.use-case-accordion .step-accordion[open] {
    border-color: rgba(232, 117, 0, 0.68);
}

.healthcare-decision {
    align-items: start;
}

.healthcare-pillars-grid {
    max-width: 1040px;
    margin-inline: auto;
}

.cba-title-lockup {
    max-width: 680px;
    margin-bottom: 22px;
    color: #fff;
}

.cba-brand-wordmark,
.cba-brand-tagline {
    display: block;
    color: #fff;
}

.cba-brand-wordmark {
    margin-bottom: 8px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 800;
}

.cba-brand-tagline {
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.25;
    font-weight: 700;
}

.cba-brand-separator {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 0 18px;
    background: rgba(255, 255, 255, 0.72);
}

.cba-title-lockup h1 {
    margin-bottom: 0;
}

.advisor-photo {
    display: block;
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
    border: 1px solid rgba(141, 220, 255, 0.34);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: rgba(141, 220, 255, 0.08);
}

.footer-tagline {
    margin: 14px 0 0;
    color: #8ddcff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

footer .ftr-logo {
    width: min(180px, 100%);
    max-width: 180px;
    margin-bottom: 0;
}

footer .ftr-logo img {
    width: 100%;
    height: auto;
    max-height: 92px;
    object-fit: contain;
}

@media only screen and (max-width: 1199px) {
    .main_menu ul li.current-menu-item > a:after {
        display: none;
    }
}

@media only screen and (max-width: 991px) {
    .healthcare-pillars-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    .step-accordion .accordion-body {
        padding: 0 18px 20px;
    }

    .cba-brand-wordmark {
        font-size: 40px;
    }

    .cba-brand-tagline {
        font-size: 18px;
    }

    .healthcare-pillars-grid {
        grid-template-columns: 1fr;
    }

    .advisor-photo {
        margin-left: auto;
        margin-right: auto;
    }

    footer .ftr-logo {
        margin-left: auto;
        margin-right: auto;
        width: min(160px, 70vw);
    }
}

/* Absolute final overrides for homepage hero and use-case accordion placement. */
.home-title-lockup {
    max-width: 640px;
    margin-bottom: 22px;
    color: #fff;
}

.home-brand-wordmark,
.home-brand-tagline {
    display: block;
    color: #fff;
}

.home-brand-wordmark {
    margin-bottom: 8px;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 800;
}

.home-brand-tagline {
    margin-bottom: 16px;
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.25;
    font-weight: 700;
}

.home-brand-separator {
    display: block;
    width: 100%;
    height: 1px;
    margin: 0 0 18px;
    background: rgba(255, 255, 255, 0.72);
}

.home-title-lockup h1 {
    margin-bottom: 0;
}

.naviowl-preview-home .preview-hero .hero-badge {
    display: none !important;
}

.use-case-item.step-accordion summary {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr) 28px;
    gap: 18px;
    align-items: center;
    min-height: 0;
    padding: 18px 24px;
}

.use-case-item.step-accordion summary::after {
    grid-column: 3;
    grid-row: 1;
    align-self: center;
}

.use-case-summary {
    display: contents;
}

.use-case-role {
    grid-column: 1;
    color: var(--clr-accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-transform: none;
}

.use-case-question {
    grid-column: 2;
    color: #fff;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 700;
}

.use-case-detail-row {
    grid-template-columns: 190px minmax(0, 1fr);
}

@media only screen and (max-width: 767px) {
    .home-brand-wordmark {
        font-size: 40px;
    }

    .home-brand-tagline {
        font-size: 18px;
    }

    .use-case-item.step-accordion summary {
        grid-template-columns: minmax(0, 1fr) 24px;
        gap: 10px 16px;
        padding: 18px;
    }

    .use-case-summary {
        display: grid;
        gap: 6px;
    }

    .use-case-role,
    .use-case-question {
        grid-column: auto;
    }

    .use-case-item.step-accordion summary::after {
        grid-column: 2;
    }

    .use-case-detail-row {
        grid-template-columns: 1fr;
    }
}

/* Absolute final visual corrections for footer, separators, hero offset, and nav CTA centering. */
.home-brand-separator,
.cba-brand-separator {
    background: var(--clr-accent) !important;
}

.naviowl-preview-home .preview-hero {
    padding-top: 55px;
}

.header-fixed-btn .btn,
.nav-demo-btn,
.main_menu .for-mob .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

footer .ftr-logo {
    width: min(220px, 100%) !important;
    max-width: 220px !important;
    margin-bottom: 0;
}

footer .ftr-logo img {
    width: 100%;
    height: auto;
    max-height: 118px;
    object-fit: contain;
}

.footer-tagline {
    margin-top: 18px;
    color: #8ddcff;
}

.footer-contact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.footer-contact-list a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(141, 220, 255, 0.46);
    border-radius: 50%;
    color: #8ddcff;
    font-size: 21px;
    line-height: 1;
}

.footer-contact-list a:hover {
    border-color: var(--clr-accent);
    color: #fff;
    background: rgba(232, 117, 0, 0.16);
}

.footer-contact-list i {
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    font-size: inherit;
}

@media only screen and (max-width: 991px) {
    footer .ftr-logo {
        width: min(180px, 100%) !important;
        max-width: 180px !important;
    }
}

@media only screen and (max-width: 767px) {
    .naviowl-preview-home .preview-hero {
        padding-top: 82px;
    }

    footer .ftr-logo {
        width: min(150px, 72vw) !important;
        max-width: 150px !important;
    }

    .footer-contact-list {
        justify-content: center;
    }
}

/* Absolute final mobile hero offset: keep hero content below the header/nav on phones. */
@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home .preview-hero,
    html body .naviowl-page .navi-page-hero {
        padding-top: 118px !important;
    }
}

@media only screen and (max-width: 575px) {
    html body .naviowl-preview-home .preview-hero,
    html body .naviowl-page .navi-page-hero {
        padding-top: 124px !important;
    }
}

/* Final carousel card margin fix requested after visual QA. */
html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .workflow-card {
    margin: 5px !important;
}

html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .healthcare-pillar-card {
    margin: 5px !important;
}

/* Final About advisor card polish: six-card advisory board grid and LinkedIn icons. */
html body .naviowl-about-page .advisors-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

html body .naviowl-about-page .advisor-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

html body .naviowl-about-page .advisor-card p {
    flex: 1 1 auto;
}

html body .naviowl-about-page .advisor-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-top: 18px;
    border: 1px solid rgba(141, 220, 255, 0.38);
    border-radius: 50%;
    background: rgba(141, 220, 255, 0.08);
    color: #8ddcff;
    font-size: 18px;
    line-height: 1;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

html body .naviowl-about-page .advisor-linkedin:hover {
    border-color: var(--clr-accent);
    background: rgba(232, 117, 0, 0.16);
    color: #fff;
}

@media only screen and (max-width: 991px) {
    html body .naviowl-about-page .advisors-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and (max-width: 767px) {
    html body .naviowl-about-page .advisors-grid {
        grid-template-columns: 1fr;
    }

    html body .naviowl-about-page .advisor-card {
        min-height: 0;
        text-align: center;
    }

    html body .naviowl-about-page .advisor-linkedin {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Final footer logo scale-up. */
html body footer .ftr-logo {
    width: min(280px, 100%) !important;
    max-width: 280px !important;
}

html body footer .ftr-logo img {
    width: 100% !important;
    height: auto !important;
    max-height: 150px !important;
    object-fit: contain;
}

@media only screen and (max-width: 991px) {
    html body footer .ftr-logo {
        width: min(230px, 100%) !important;
        max-width: 230px !important;
    }

    html body footer .ftr-logo img {
        max-height: 125px !important;
    }
}

@media only screen and (max-width: 767px) {
    html body footer .ftr-logo {
        width: min(190px, 74vw) !important;
        max-width: 190px !important;
    }

    html body footer .ftr-logo img {
        max-height: 104px !important;
    }
}

/* Final footer logo crop scale: cropped asset fills the brand block visibly. */
html body footer .ftr-logo {
    width: min(360px, 100%) !important;
    max-width: 360px !important;
}

html body footer .ftr-logo img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
}

@media only screen and (max-width: 991px) {
    html body footer .ftr-logo {
        width: min(280px, 100%) !important;
        max-width: 280px !important;
    }
}

@media only screen and (max-width: 767px) {
    html body footer .ftr-logo {
        width: min(220px, 78vw) !important;
        max-width: 220px !important;
    }
}

/* Final About founder image polish: neutral, quieter headshot background. */
html body .naviowl-about-page .founder-photo {
    border-color: rgba(141, 220, 255, 0.24) !important;
    background: linear-gradient(180deg, #111a22 0%, #071018 100%) !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32) !important;
}

html body .naviowl-about-page .founder-photo img {
    background: transparent;
}

/* Final targeted footer logo sizing: affects footer brand only, not header logo. */
#footer .ftr-logo {
    width: auto !important;
    max-width: 520px !important;
}

#footer .ftr-logo img,
#footer img[src*="logo-updated"] {
    display: block;
    width: 480px !important;
    max-width: min(480px, 100%) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
}

@media only screen and (max-width: 991px) {
    #footer .ftr-logo {
        max-width: 440px !important;
    }

    #footer .ftr-logo img,
    #footer img[src*="logo-updated"] {
        width: 400px !important;
        max-width: min(400px, 100%) !important;
    }
}

@media only screen and (max-width: 575px) {
    #footer .ftr-logo {
        max-width: min(360px, 90vw) !important;
        margin-left: auto;
        margin-right: auto;
    }

    #footer .ftr-logo img,
    #footer img[src*="logo-updated"] {
        width: 360px !important;
        max-width: min(360px, 90vw) !important;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Final footer brand alignment: keep logo and tagline centered together on laptop/desktop. */
@media only screen and (min-width: 768px) {
    #footer .ftr-top .row > .col-xl-4:first-child .ftr-col {
        width: min(520px, 100%);
        max-width: 520px;
        text-align: center;
    }

    #footer .ftr-logo,
    #footer .ftr-content {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #footer .ftr-content {
        width: min(480px, 100%) !important;
        max-width: 480px !important;
        text-align: center;
    }

    #footer .footer-tagline {
        text-align: center;
    }
}

/* Final footer cropped-logo alignment: remove visual dead space and align brand column with footer blocks. */
#footer .ftr-logo img[src*="footer-logo-cropped"] {
    display: block;
    width: 300px !important;
    max-width: min(300px, 100%) !important;
    height: auto !important;
    max-height: none !important;
    object-fit: contain;
}

@media only screen and (min-width: 768px) {
    #footer .ftr-top .row {
        align-items: flex-start;
    }

    #footer .ftr-top .row > .col-xl-4:first-child .ftr-col {
        width: min(340px, 100%);
        max-width: 340px;
        text-align: center;
    }

    #footer .ftr-logo {
        width: min(300px, 100%) !important;
        max-width: 300px !important;
        margin: 0 auto 18px !important;
    }

    #footer .ftr-content {
        width: min(300px, 100%) !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center;
    }

    #footer .footer-tagline {
        margin-top: 0;
        text-align: center;
    }
}

@media only screen and (max-width: 991px) {
    #footer .ftr-logo img[src*="footer-logo-cropped"] {
        width: 250px !important;
        max-width: min(250px, 100%) !important;
    }

    #footer .ftr-logo,
    #footer .ftr-content {
        max-width: 250px !important;
    }
}

@media only screen and (max-width: 575px) {
    #footer .ftr-logo img[src*="footer-logo-cropped"] {
        width: 210px !important;
        max-width: min(210px, 86vw) !important;
    }

    #footer .ftr-logo,
    #footer .ftr-content {
        max-width: min(210px, 86vw) !important;
    }
}

/* Final iPad/tablet footer layout: avoid Bootstrap's awkward 3+1 wrapping. */
@media only screen and (min-width: 768px) and (max-width: 1199px) {
    #footer .ftr-top > .row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 56px;
        row-gap: 34px;
        align-items: start;
    }

    #footer .ftr-top > .row > [class*="col-"] {
        width: auto;
        max-width: none;
        flex: initial;
        padding-left: 0;
        padding-right: 0;
    }

    #footer .ftr-col {
        margin-bottom: 0;
    }

    #footer .ftr-col h5 {
        margin-bottom: 18px;
        text-align: left;
    }

    #footer .ftr-menu ul li {
        text-align: left;
    }

    #footer .ftr-top .row > .col-xl-4:first-child .ftr-col {
        width: min(300px, 100%);
        max-width: 300px;
        text-align: center;
    }

    #footer .ftr-logo {
        width: min(250px, 100%) !important;
        max-width: 250px !important;
        margin: 0 auto 14px !important;
    }

    #footer .ftr-logo img[src*="footer-logo-cropped"] {
        width: 250px !important;
        max-width: min(250px, 100%) !important;
    }

    #footer .ftr-content {
        width: min(250px, 100%) !important;
        max-width: 250px !important;
        text-align: center;
    }

    #footer .footer-contact-list,
    #footer ul.ftr-social {
        justify-content: flex-start;
    }

    #footer .ftr-contact {
        width: min(250px, 100%);
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    #footer .ftr-contact h5 {
        text-align: center;
    }

    #footer .ftr-contact .footer-contact-list {
        justify-content: center;
    }
}

/* Stakeholder revision pass: text-first heroes, warmer dark palette, nav cleanup, and accordion alignment. */
body,
.naviowl-preview-home,
.naviowl-page {
    background: #0b1720 !important;
}

.naviowl-preview-home,
.naviowl-page {
    background:
        radial-gradient(circle at 18% 8%, rgba(30, 91, 119, 0.22), transparent 34%),
        linear-gradient(180deg, #07131b 0%, #0e2430 52%, #102a37 100%) !important;
}

.naviowl-preview-home .preview-hero,
.navi-page-hero {
    background:
        radial-gradient(circle at 28% 8%, rgba(53, 182, 232, 0.13), transparent 36%),
        linear-gradient(135deg, rgba(10, 28, 39, 0.96), rgba(13, 39, 52, 0.92)) !important;
}

.naviowl-preview-home .hero-grid {
    display: block !important;
    max-width: 1040px;
    margin: 0 auto;
}

.naviowl-preview-home .hero-copy,
.navi-page-hero .navi-page-copy {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: left;
}

.naviowl-preview-home .home-title-lockup,
.naviowl-cba-page .cba-title-lockup {
    max-width: 900px;
}

.naviowl-preview-home .home-brand-wordmark,
.naviowl-cba-page .cba-brand-wordmark {
    display: inline;
    margin-right: 12px;
}

.naviowl-preview-home .home-brand-tagline,
.naviowl-cba-page .cba-brand-tagline {
    display: inline;
    color: #fff !important;
}

.naviowl-preview-home .home-brand-separator,
.naviowl-cba-page .cba-brand-separator,
.navi-title-separator {
    display: block;
    width: 100%;
    height: 2px;
    margin: 22px 0 26px;
    background: #f47a00 !important;
    border: 0;
    box-shadow: none;
}

.naviowl-preview-home .home-title-lockup h1,
.naviowl-cba-page .cba-title-lockup h1 {
    max-width: 900px;
}

.naviowl-preview-home .hero-body-copy {
    max-width: 680px;
    margin: 0 0 28px;
}

.naviowl-preview-home .hero-body-copy p {
    max-width: 680px;
    margin: 0 0 12px;
    color: #dce9f2;
    font-size: clamp(18px, 2.1vw, 21px);
    line-height: 1.35;
    font-weight: 400;
}

.naviowl-preview-home .hero-media,
.navi-page-hero .navi-page-visual {
    display: none !important;
}

.naviowl-preview-home .preview-btn.dark {
    color: #fff !important;
    background: rgba(22, 50, 66, 0.88) !important;
    border: 1px solid rgba(116, 201, 239, 0.72) !important;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.naviowl-preview-home .preview-btn.dark:hover,
.naviowl-preview-home .preview-btn.dark:focus {
    color: #fff !important;
    background: rgba(244, 122, 0, 0.92) !important;
    border-color: #f47a00 !important;
}

.workflow-card,
.navi-page-card,
.navi-cta-card,
.step-accordion,
.security-row,
.deployment-card,
.deployment-card-inner {
    background: linear-gradient(180deg, rgba(26, 62, 80, 0.95), rgba(13, 32, 43, 0.95)) !important;
}

.preview-section,
.navi-page-section {
    background-color: transparent !important;
}

.naviowl-preview-home .eyebrow,
.naviowl-page .navi-eyebrow,
.navi-eyebrow {
    font-size: 19px !important;
    line-height: 1.2;
}

.main-header .headerRow {
    gap: clamp(20px, 2.4vw, 42px);
}

.main-header .header-right {
    flex: 1 1 auto;
}

.main-header .main_menu {
    width: 100%;
}

.main-header .main_menu > ul {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: clamp(18px, 2.1vw, 34px);
    width: 100%;
}

.main-header .main_menu > ul > li {
    margin: 0 !important;
}

.main-header .main_menu > ul > li > a {
    padding: 16px 0 !important;
    color: #fff;
    font-size: clamp(15px, 0.98vw, 18px) !important;
    line-height: 1.1;
}

.main-header .main_menu ul li a:hover,
.main-header .main_menu ul li.current-menu-item > a,
.main-header .main_menu ul li.current-menu-ancestor > a {
    color: #f47a00 !important;
}

.main-header .main_menu ul li.current-menu-item > a:after,
.main-header .main_menu ul li.current-menu-ancestor > a:after {
    background: #f47a00 !important;
}

.main-header .main_menu ul li.menu-item-has-children {
    position: relative;
}

.main-header .main_menu ul li.menu-item-has-children > .submenu-toggle {
    position: absolute;
    right: -18px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    color: currentColor;
    font-size: 11px;
    transform: translateY(-50%);
    pointer-events: none;
}

.main-header .main_menu ul li.menu-item-has-children > .submenu-toggle img {
    display: none !important;
}

.main-header .main_menu ul li.menu-item-has-children:hover > .submenu-toggle {
    color: #f47a00 !important;
    filter: none !important;
    transform: translateY(-50%) !important;
}

.main-header .main_menu ul li ul.sub-menu {
    top: calc(100% - 4px) !important;
    margin-top: 0 !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    border-top: 2px solid #f47a00;
}

.main-header .main_menu ul li ul.sub-menu:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -12px;
    height: 12px;
}

.main-header .main_menu ul li ul.sub-menu li a:hover,
.main-header .main_menu ul li ul.sub-menu li a:focus {
    color: #f47a00 !important;
    background: rgba(244, 122, 0, 0.09) !important;
}

.use-case-accordion {
    max-width: 1180px;
}

.use-case-item.step-accordion summary {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    min-height: 92px;
    padding: 28px 68px 28px 32px !important;
    text-align: left !important;
}

.use-case-item.step-accordion summary::after {
    right: 30px !important;
    color: #f47a00 !important;
}

.use-case-summary {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    width: 100%;
    text-align: left !important;
}

.use-case-role {
    color: #f47a00 !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    line-height: 1.2;
    letter-spacing: 0.045em;
    text-align: left !important;
    text-transform: none;
}

.use-case-question {
    color: #fff !important;
    font-size: clamp(19px, 1.35vw, 25px) !important;
    font-weight: 700 !important;
    line-height: 1.22;
    text-align: left !important;
}

.use-case-item .accordion-body {
    padding: 0 32px 30px !important;
}

.use-case-detail-row {
    display: grid !important;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 980px;
    margin: 0 0 14px !important;
    padding: 16px 18px !important;
    text-align: left !important;
    background: rgba(7, 22, 31, 0.46);
    border: 1px solid rgba(116, 201, 239, 0.22);
    border-radius: 8px;
}

.use-case-detail-row span {
    color: #f47a00 !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.3;
    letter-spacing: 0.035em;
}

.use-case-detail-row p {
    margin: 0 !important;
    color: #dce9f2 !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    line-height: 1.45;
    text-align: left !important;
}

.naviowl-cba-page #cba-security .navi-page-copy {
    max-width: 860px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.naviowl-cba-page #cba-security .navi-text-link {
    display: inline-flex;
    margin-top: 12px;
}

@media only screen and (max-width: 1199px) {
    .main-header .main_menu > ul {
        display: block;
    }

    .main-header .main_menu > ul > li > a {
        padding: 14px 0 !important;
    }

    .main-header .main_menu ul li.menu-item-has-children > .submenu-toggle {
        right: 4px;
        top: 18px;
        transform: none;
    }

    .main-header .main_menu ul li.menu-item-has-children:hover > .submenu-toggle,
    .main-header .main_menu ul li.menu-item-has-children.active > .submenu-toggle {
        transform: none !important;
        color: #f47a00 !important;
    }
}

@media only screen and (max-width: 767px) {
    .naviowl-preview-home .hero-copy,
    .navi-page-hero .navi-page-copy {
        max-width: 100% !important;
    }

    .naviowl-preview-home .home-brand-wordmark,
    .naviowl-cba-page .cba-brand-wordmark,
    .naviowl-preview-home .home-brand-tagline,
    .naviowl-cba-page .cba-brand-tagline {
        display: block;
        margin-right: 0;
    }

    .naviowl-preview-home .home-brand-separator,
    .naviowl-cba-page .cba-brand-separator {
        margin: 18px 0 22px;
    }

    .naviowl-preview-home .eyebrow,
    .naviowl-page .navi-eyebrow,
    .navi-eyebrow {
        font-size: 15px !important;
    }

    .use-case-item.step-accordion summary {
        min-height: 0;
        padding: 22px 56px 22px 22px !important;
    }

    .use-case-summary,
    .use-case-detail-row {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .use-case-role {
        font-size: 15px !important;
    }

    .use-case-question {
        font-size: 18px !important;
    }

    .use-case-item .accordion-body {
        padding: 0 18px 22px !important;
    }
}

/* Targeted visual correction: live text hero, restored owl header, centered nav, and security hover polish. */
.naviowl-preview-home .preview-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
}

.naviowl-preview-home .preview-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -3;
    background:
        linear-gradient(rgba(116, 201, 239, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 201, 239, 0.045) 1px, transparent 1px);
    background-size: 92px 92px;
    mask-image: radial-gradient(circle at 52% 38%, #000 0%, rgba(0, 0, 0, 0.72) 36%, transparent 78%);
    opacity: 0.55;
}

.naviowl-preview-home .preview-hero::after {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 28%, rgba(30, 108, 180, 0.34), transparent 32%),
        radial-gradient(circle at 84% 72%, rgba(53, 182, 232, 0.16), transparent 28%),
        radial-gradient(circle at 62% 18%, rgba(244, 122, 0, 0.08), transparent 22%);
    filter: blur(2px);
    opacity: 0.82;
    animation: naviowlHeroDrift 18s ease-in-out infinite alternate;
}

.naviowl-preview-home .preview-hero .container {
    position: relative;
    z-index: 1;
}

.naviowl-preview-home .preview-hero .container::before,
.naviowl-preview-home .preview-hero .container::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(116, 201, 239, 0.74);
    box-shadow:
        210px 80px 0 rgba(116, 201, 239, 0.28),
        520px 220px 0 rgba(53, 182, 232, 0.22),
        760px 20px 0 rgba(116, 201, 239, 0.20),
        920px 330px 0 rgba(244, 122, 0, 0.18);
}

.naviowl-preview-home .preview-hero .container::before {
    top: 70px;
    left: 2%;
}

.naviowl-preview-home .preview-hero .container::after {
    right: 8%;
    bottom: 120px;
    opacity: 0.7;
}

@keyframes naviowlHeroDrift {
    from {
        transform: translate3d(-1.5%, -1%, 0) scale(1);
    }
    to {
        transform: translate3d(1.5%, 1%, 0) scale(1.025);
    }
}

@media (prefers-reduced-motion: reduce) {
    .naviowl-preview-home .preview-hero::after {
        animation: none;
    }
}

html body .main-header .headerRow {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) 210px;
    align-items: center;
    gap: clamp(22px, 3vw, 54px);
}

html body .main-header .logo,
html body .main-header.stickyHeader .logo {
    width: 108px !important;
    max-width: 108px !important;
    justify-self: start;
}

html body .main-header .logo img,
html body .main-header.stickyHeader .logo img {
    display: block;
    width: 100% !important;
    max-width: 108px !important;
    height: auto !important;
    max-height: 82px !important;
    object-fit: contain;
}

html body .main-header .header-right {
    width: 100% !important;
    min-width: 0;
    justify-self: center;
}

html body .main-header .main_menu {
    width: 100% !important;
}

html body .main-header .main_menu > ul {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(30px, 4.2vw, 78px);
}

html body .main-header .main_menu > ul > li > a {
    font-size: clamp(17px, 1.12vw, 19px) !important;
    white-space: nowrap;
}

html body .main-header .header-right-btns {
    justify-self: end;
    padding-left: 0 !important;
}

html body .main-header .header-fixed-btn .btn,
html body .main-header .nav-demo-btn {
    min-height: 52px;
    padding: 15px 26px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

html body .main-header .main_menu ul li ul.sub-menu {
    top: calc(100% - 2px) !important;
}

html body .main-header .main_menu ul li ul.sub-menu::before {
    top: -18px;
    height: 18px;
}

.naviowl-preview-home .security-row,
.naviowl-cba-page #cba-security .navi-page-copy,
.naviowl-healthcare-ops-page #security-summary .navi-narrow-copy {
    transition: border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

.naviowl-preview-home .security-row:hover,
.naviowl-cba-page #cba-security .navi-page-copy:hover,
.naviowl-healthcare-ops-page #security-summary .navi-narrow-copy:hover {
    border-color: rgba(244, 122, 0, 0.74) !important;
    background: linear-gradient(180deg, rgba(47, 70, 67, 0.95), rgba(19, 40, 45, 0.95)) !important;
    box-shadow: 0 20px 44px rgba(244, 122, 0, 0.12), 0 0 0 1px rgba(244, 122, 0, 0.16);
    transform: translateY(-2px);
}

.naviowl-cba-page #cba-security .navi-page-copy,
.naviowl-healthcare-ops-page #security-summary .navi-narrow-copy {
    padding: 28px;
    border: 1px solid rgba(116, 201, 239, 0.28);
    border-radius: 8px;
}

@media only screen and (max-width: 1399px) {
    html body .main-header .headerRow {
        grid-template-columns: 132px minmax(0, 1fr) 190px;
        gap: 26px;
    }

    html body .main-header .main_menu > ul {
        gap: clamp(22px, 2.6vw, 48px);
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 17px !important;
    }
}

@media only screen and (max-width: 1199px) {
    html body .main-header .headerRow {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        gap: 18px;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        width: 82px !important;
        max-width: 82px !important;
        flex: 0 0 auto;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 82px !important;
        max-height: 66px !important;
    }

    html body .main-header .header-right {
        width: auto !important;
        flex: 0 0 auto;
        margin-left: auto;
        order: 2;
    }

    html body .main-header .menu-toggle {
        margin-left: auto !important;
        position: relative;
        right: auto;
    }

    html body .main-header .header-right-btns {
        display: none !important;
    }

    html body .main-header .main_menu > ul {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .naviowl-preview-home .preview-hero::before {
        background-size: 74px 74px;
        opacity: 0.32;
    }

    .naviowl-preview-home .preview-hero::after {
        opacity: 0.48;
    }

    .naviowl-preview-home .preview-hero .container::before,
    .naviowl-preview-home .preview-hero .container::after {
        display: none;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        width: 74px !important;
        max-width: 74px !important;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 74px !important;
        max-height: 58px !important;
    }
}

/* Final header/hero correction: absolute header clearance, centered nav, mobile spacing. */
:root {
    --navi-header-offset-desktop: 154px;
    --navi-header-offset-tablet: 128px;
    --navi-header-offset-mobile: 104px;
}

html body .main-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
}

html body .main-header .headerRow {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    gap: clamp(24px, 3vw, 52px);
    min-height: 112px;
    padding: 14px 0 !important;
}

html body .main-header .logo,
html body .main-header.stickyHeader .logo {
    flex: 0 0 112px;
    width: 112px !important;
    max-width: 112px !important;
    min-width: 112px;
}

html body .main-header .logo img,
html body .main-header.stickyHeader .logo img {
    display: block;
    width: auto !important;
    max-width: 112px !important;
    height: auto !important;
    max-height: 92px !important;
    object-fit: contain;
}

html body .main-header .header-right {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

html body .main-header .main_menu {
    width: 100% !important;
}

html body .main-header .main_menu > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(34px, 3.8vw, 72px);
    width: 100%;
}

html body .main-header .main_menu > ul > li > a {
    padding: 18px 0 !important;
    font-size: 18px !important;
    line-height: 1.1;
    white-space: nowrap;
}

html body .main-header .header-right-btns {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0 !important;
}

html body .main-header .header-fixed-btn .btn,
html body .main-header .nav-demo-btn {
    min-height: 54px;
    padding: 15px 28px !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    white-space: nowrap;
}

html body .main-header .main_menu ul li a:hover,
html body .main-header .main_menu ul li.current-menu-item > a,
html body .main-header .main_menu ul li.current-menu-ancestor > a {
    color: #f47a00 !important;
}

html body .main-header .main_menu ul li.current-menu-item > a:after,
html body .main-header .main_menu ul li.current-menu-ancestor > a:after {
    background: #f47a00 !important;
}

html body .main-header .main_menu ul li ul.sub-menu {
    top: calc(100% - 1px) !important;
    margin-top: 0 !important;
}

html body .main-header .main_menu ul li ul.sub-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -22px;
    height: 22px;
}

html body .naviowl-preview-home .preview-hero {
    padding-top: var(--navi-header-offset-desktop) !important;
}

html body .naviowl-preview-home .hero-grid {
    max-width: 1100px;
}

html body .naviowl-preview-home .hero-copy {
    max-width: 920px !important;
}

html body .naviowl-preview-home .preview-hero .container {
    padding-top: 0;
}

@media only screen and (max-width: 1499px) {
    html body .main-header .headerRow {
        gap: 30px;
    }

    html body .main-header .main_menu > ul {
        gap: clamp(24px, 2.5vw, 44px);
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 17px !important;
    }

    html body .main-header .header-fixed-btn .btn,
    html body .main-header .nav-demo-btn {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
}

@media only screen and (max-width: 1199px) {
    html body .main-header .headerRow {
        min-height: 92px;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center;
        gap: 18px;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex: 0 0 82px;
        width: 82px !important;
        max-width: 82px !important;
        min-width: 82px;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 82px !important;
        max-height: 72px !important;
    }

    html body .main-header .header-right {
        flex: 0 0 auto;
        width: auto !important;
        margin-left: auto;
        justify-content: flex-end;
        order: 2;
    }

    html body .main-header .menu-toggle {
        margin-left: auto !important;
        right: auto !important;
    }

    html body .main-header .header-right-btns {
        display: none !important;
    }

    html body .main-header .main_menu > ul {
        display: block;
    }

    html body .naviowl-preview-home .preview-hero {
        padding-top: var(--navi-header-offset-tablet) !important;
    }
}

@media only screen and (max-width: 767px) {
    html body .main-header .headerRow {
        min-height: 78px;
        padding: 10px 0 !important;
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex-basis: 68px;
        width: 68px !important;
        max-width: 68px !important;
        min-width: 68px;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        max-width: 68px !important;
        max-height: 60px !important;
    }

    html body .naviowl-preview-home .preview-hero {
        padding-top: var(--navi-header-offset-mobile) !important;
    }
}

/* Homepage hero animated background fix: keep effects visible behind content, not behind the section. */
html body .naviowl-preview-home .preview-hero {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(5, 14, 23, 0.98) 0%, rgba(9, 31, 45, 0.96) 48%, rgba(6, 17, 26, 0.98) 100%) !important;
}

html body .naviowl-preview-home .preview-hero::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 0 !important;
    pointer-events: none;
    opacity: 0.58 !important;
    background-image:
        radial-gradient(circle at 18% 24%, rgba(53, 142, 230, 0.26) 0, rgba(53, 142, 230, 0.14) 16%, transparent 36%),
        radial-gradient(circle at 86% 70%, rgba(53, 182, 232, 0.20) 0, rgba(53, 182, 232, 0.10) 14%, transparent 34%),
        linear-gradient(rgba(116, 201, 239, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(116, 201, 239, 0.05) 1px, transparent 1px) !important;
    background-size:
        100% 100%,
        100% 100%,
        88px 88px,
        88px 88px !important;
    background-position:
        0 0,
        0 0,
        0 0,
        0 0 !important;
    -webkit-mask-image: radial-gradient(circle at 52% 44%, #000 0%, rgba(0, 0, 0, 0.88) 46%, transparent 86%);
    mask-image: radial-gradient(circle at 52% 44%, #000 0%, rgba(0, 0, 0, 0.88) 46%, transparent 86%);
    animation: naviowlHeroGridShift 28s linear infinite !important;
}

html body .naviowl-preview-home .preview-hero::after {
    content: "" !important;
    position: absolute !important;
    inset: -22% !important;
    z-index: 1 !important;
    pointer-events: none;
    opacity: 0.88 !important;
    background:
        radial-gradient(circle at 24% 28%, rgba(47, 121, 255, 0.22) 0, rgba(47, 121, 255, 0.10) 20%, transparent 38%),
        radial-gradient(circle at 78% 34%, rgba(72, 195, 244, 0.16) 0, rgba(72, 195, 244, 0.08) 16%, transparent 34%),
        radial-gradient(circle at 64% 82%, rgba(244, 122, 0, 0.08) 0, transparent 26%),
        radial-gradient(circle, rgba(116, 201, 239, 0.82) 0 2px, transparent 2.6px),
        radial-gradient(circle, rgba(244, 122, 0, 0.48) 0 1.8px, transparent 2.4px) !important;
    background-size:
        100% 100%,
        100% 100%,
        100% 100%,
        380px 260px,
        520px 360px !important;
    background-position:
        0 0,
        0 0,
        0 0,
        24px 42px,
        180px 90px !important;
    filter: blur(0.2px);
    animation: naviowlHeroGlowDrift 22s ease-in-out infinite alternate, naviowlHeroParticleFloat 16s linear infinite !important;
}

html body .naviowl-preview-home .preview-hero .container,
html body .naviowl-preview-home .preview-hero .hero-grid,
html body .naviowl-preview-home .preview-hero .hero-copy {
    position: relative !important;
    z-index: 3 !important;
}

html body .naviowl-preview-home .preview-hero .container::before,
html body .naviowl-preview-home .preview-hero .container::after {
    content: "" !important;
    position: absolute !important;
    z-index: 2 !important;
    pointer-events: none;
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(116, 201, 239, 0.72);
    box-shadow:
        190px 72px 0 rgba(116, 201, 239, 0.26),
        480px 228px 0 rgba(53, 182, 232, 0.23),
        760px 34px 0 rgba(116, 201, 239, 0.22),
        940px 318px 0 rgba(244, 122, 0, 0.20);
    animation: naviowlHeroDotPulse 5.8s ease-in-out infinite alternate !important;
}

html body .naviowl-preview-home .preview-hero .container::before {
    top: 72px;
    left: 3%;
}

html body .naviowl-preview-home .preview-hero .container::after {
    right: 9%;
    bottom: 126px;
    opacity: 0.62;
    animation-delay: -2.2s !important;
}

@keyframes naviowlHeroGridShift {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 88px 88px, 88px 88px;
    }
}

@keyframes naviowlHeroGlowDrift {
    0% {
        transform: translate3d(-1.2%, -0.8%, 0) scale(1);
    }
    100% {
        transform: translate3d(1.4%, 1%, 0) scale(1.03);
    }
}

@keyframes naviowlHeroParticleFloat {
    0% {
        background-position: 0 0, 0 0, 0 0, 24px 42px, 180px 90px;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 74px 2px, 132px 148px;
    }
}

@keyframes naviowlHeroDotPulse {
    0% {
        opacity: 0.34;
        transform: translate3d(0, 0, 0);
    }
    100% {
        opacity: 0.84;
        transform: translate3d(8px, -10px, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .naviowl-preview-home .preview-hero::before,
    html body .naviowl-preview-home .preview-hero::after,
    html body .naviowl-preview-home .preview-hero .container::before,
    html body .naviowl-preview-home .preview-hero .container::after {
        animation: none !important;
    }
}

@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home .preview-hero::before {
        opacity: 0.38 !important;
        background-size: 100% 100%, 100% 100%, 70px 70px, 70px 70px !important;
    }

    html body .naviowl-preview-home .preview-hero::after {
        opacity: 0.45 !important;
    }

    html body .naviowl-preview-home .preview-hero .container::before,
    html body .naviowl-preview-home .preview-hero .container::after {
        display: none !important;
    }
}

/* Footer contact label polish and homepage star-field upward drift. */
#footer .footer-contact-list {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
}

#footer .footer-contact-list a,
#footer ul.ftr-social li a {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto !important;
    min-height: 42px;
    height: auto !important;
    color: #d8e3ec;
    font-size: 15px;
    line-height: 1.35;
}

#footer .footer-contact-list a i,
#footer ul.ftr-social li a i {
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(141, 220, 255, 0.46);
    border-radius: 50%;
    color: #8ddcff;
    font-size: 18px;
    transition: border-color 0.22s ease, color 0.22s ease, background 0.22s ease;
}

#footer .footer-contact-list a span,
#footer ul.ftr-social li a span {
    display: inline-block;
    color: #d8e3ec;
    font-size: 15px;
    font-weight: 500;
}

#footer .footer-contact-list a:hover,
#footer ul.ftr-social li a:hover {
    color: #fff;
}

#footer .footer-contact-list a:hover i,
#footer ul.ftr-social li a:hover i {
    color: #fff;
    border-color: #f47a00;
    background: rgba(244, 122, 0, 0.16);
}

#footer ul.ftr-social {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 0;
}

#footer ul.ftr-social li {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow: visible !important;
}

html body .naviowl-preview-home .preview-hero::after {
    will-change: transform, background-position;
    background:
        radial-gradient(circle at 24% 28%, rgba(47, 121, 255, 0.22) 0, rgba(47, 121, 255, 0.10) 20%, transparent 38%),
        radial-gradient(circle at 78% 34%, rgba(72, 195, 244, 0.16) 0, rgba(72, 195, 244, 0.08) 16%, transparent 34%),
        radial-gradient(circle at 64% 82%, rgba(244, 122, 0, 0.08) 0, transparent 26%) !important;
    background-size: 100% 100%, 100% 100%, 100% 100% !important;
    background-position: 0 0, 0 0, 0 0 !important;
    animation: naviowlHeroGlowBreathe 24s ease-in-out infinite alternate !important;
}

html body .naviowl-preview-home .preview-hero .container::before,
html body .naviowl-preview-home .preview-hero .container::after {
    will-change: transform, opacity;
    animation: naviHeroParticleRise 8s linear infinite !important;
}

html body .naviowl-preview-home .preview-hero .container::after {
    animation-delay: -18s !important;
}

@keyframes naviHeroStarsUp {
    0% {
        background-position: 0 0, 0 0, 0 0, 24px 42px, 180px 90px;
    }
    100% {
        background-position: 0 0, 0 0, 0 0, 24px -218px, 180px -270px;
    }
}

@keyframes naviHeroParticleRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 42px, 0);
    }
    12% {
        opacity: 0.44;
    }
    48% {
        opacity: 0.78;
    }
    88% {
        opacity: 0.34;
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -260px, 0);
    }
}

@keyframes naviowlHeroGlowBreathe {
    0% {
        transform: translate3d(0, -0.8%, 0) scale(1);
        opacity: 0.72;
    }
    100% {
        transform: translate3d(0, 0.8%, 0) scale(1.025);
        opacity: 0.9;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .naviowl-preview-home .preview-hero::after,
    html body .naviowl-preview-home .preview-hero .container::before,
    html body .naviowl-preview-home .preview-hero .container::after {
        animation: none !important;
    }
}

@media only screen and (max-width: 575px) {
    #footer .footer-contact-list,
    #footer ul.ftr-social {
        justify-items: center;
    }

    #footer .footer-contact-list a,
    #footer ul.ftr-social li a {
        justify-content: center;
        text-align: left;
    }
}

/* Final header spacing and footer contact correction. */
@media only screen and (min-width: 1200px) {
    html body .main-header .headerRow {
        display: flex !important;
        align-items: center;
        justify-content: space-between !important;
        gap: clamp(28px, 3vw, 52px);
    }

    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex: 0 0 132px;
        width: 132px !important;
        max-width: 132px !important;
        min-width: 132px;
    }

    html body .main-header .logo img,
    html body .main-header.stickyHeader .logo img {
        width: auto !important;
        max-width: 118px !important;
        max-height: 96px !important;
    }

    html body .main-header .header-right {
        flex: 1 1 auto;
        min-width: 0;
        display: flex;
        justify-content: center;
    }

    html body .main-header .main_menu {
        width: 100% !important;
        display: flex;
        justify-content: center;
    }

    html body .main-header .main_menu > ul {
        width: min(80%, 980px);
        min-width: min(100%, 760px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(26px, 3vw, 54px);
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 19px !important;
        line-height: 1.1;
        white-space: nowrap;
    }

    html body .main-header .header-right-btns {
        flex: 0 0 220px;
        display: flex !important;
        justify-content: flex-end;
        padding-left: 0 !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html body .main-header .logo,
    html body .main-header.stickyHeader .logo {
        flex-basis: 112px;
        width: 112px !important;
        max-width: 112px !important;
        min-width: 112px;
    }

    html body .main-header .main_menu > ul {
        width: min(88%, 840px);
        min-width: min(100%, 700px);
        gap: 28px;
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 18px !important;
    }

    html body .main-header .header-right-btns {
        flex-basis: 190px;
    }
}

@media only screen and (max-width: 1199px) {
    html body .main-header .headerRow {
        display: flex !important;
        justify-content: space-between !important;
    }

    html body .main-header .header-right {
        margin-left: auto !important;
    }
}

#footer .footer-contact-list,
#footer ul.ftr-social {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
    justify-items: start;
}

#footer .footer-contact-list a,
#footer ul.ftr-social li a {
    min-height: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: #d8e3ec;
    font-size: 15px;
    line-height: 1.35;
}

#footer .footer-contact-list a i,
#footer ul.ftr-social li a i {
    flex: 0 0 22px;
    width: 22px !important;
    height: 22px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #8ddcff;
    font-size: 18px;
}

#footer .footer-contact-list a span,
#footer ul.ftr-social li a span {
    color: #d8e3ec;
    font-size: 15px;
    font-weight: 500;
}

#footer .footer-contact-list a:hover,
#footer ul.ftr-social li a:hover,
#footer .footer-contact-list a:hover span,
#footer ul.ftr-social li a:hover span,
#footer .footer-contact-list a:hover i,
#footer ul.ftr-social li a:hover i {
    color: #fff !important;
}

@media only screen and (max-width: 575px) {
    #footer .footer-contact-list,
    #footer ul.ftr-social {
        justify-items: center;
    }
}

/* Final refinement: larger 80% desktop nav band and combined Contact & Socials footer column. */
@media only screen and (min-width: 1400px) {
    html body .main-header .main_menu > ul {
        width: min(80%, 1060px) !important;
        min-width: min(100%, 860px) !important;
        gap: clamp(34px, 3.4vw, 68px) !important;
        justify-content: space-between !important;
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 20px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    html body .main-header .main_menu > ul {
        width: min(84%, 900px) !important;
        min-width: min(100%, 720px) !important;
        justify-content: space-between !important;
        gap: 30px !important;
    }

    html body .main-header .main_menu > ul > li > a {
        font-size: 18.5px !important;
    }
}

#footer .ftr-contact .footer-contact-list {
    max-width: 360px;
}

#footer .ftr-contact .footer-contact-list a {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    width: fit-content !important;
    max-width: 100%;
}

#footer .ftr-contact .footer-contact-list a i {
    text-align: center;
}

@media only screen and (min-width: 1200px) {
    #footer .ftr-contact {
        max-width: 390px;
    }
}

@media only screen and (max-width: 1199px) {
    #footer .ftr-contact .footer-contact-list {
        max-width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    #footer .ftr-contact .footer-contact-list a {
        width: auto !important;
        justify-content: flex-start;
    }
}

/* Final footer responsive layout: brand column plus evenly-spaced remaining columns. */
#footer .ftr-top > .row {
    display: grid !important;
    grid-template-columns: minmax(260px, 0.92fr) minmax(170px, 0.78fr) minmax(260px, 1fr);
    column-gap: clamp(42px, 7vw, 128px);
    row-gap: 34px;
    align-items: start;
}

#footer .ftr-top > .row > [class*="col-"] {
    width: auto !important;
    max-width: none !important;
    flex: initial !important;
    padding-left: 0;
    padding-right: 0;
}

#footer .ftr-top > .row > [class*="col-"]:first-child {
    justify-self: start;
}

#footer .ftr-top > .row > [class*="col-"]:nth-child(2),
#footer .ftr-top > .row > [class*="col-"]:nth-child(3) {
    justify-self: center;
}

#footer .ftr-top .ftr-col {
    margin-bottom: 0;
}

#footer .ftr-menu,
#footer .ftr-contact {
    width: fit-content;
    max-width: 100%;
}

#footer .ftr-menu h5,
#footer .ftr-contact h5,
#footer .ftr-menu ul li {
    text-align: left;
}

#footer .ftr-contact .footer-contact-list {
    justify-items: start;
}

@media only screen and (max-width: 1199px) {
    #footer .ftr-top > .row {
        grid-template-columns: minmax(230px, 0.95fr) minmax(150px, 0.72fr) minmax(240px, 1fr);
        column-gap: clamp(28px, 5vw, 64px);
    }

    #footer .ftr-logo img[src*="footer-logo-cropped"] {
        width: 220px !important;
        max-width: min(220px, 100%) !important;
    }

    #footer .ftr-logo,
    #footer .ftr-content {
        max-width: 220px !important;
    }
}

@media only screen and (max-width: 820px) {
    #footer .ftr-top > .row {
        grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.2fr);
        column-gap: 42px;
        row-gap: 32px;
    }

    #footer .ftr-top > .row > [class*="col-"]:first-child {
        grid-row: 1 / span 2;
        justify-self: center;
    }

    #footer .ftr-top > .row > [class*="col-"]:nth-child(2),
    #footer .ftr-top > .row > [class*="col-"]:nth-child(3) {
        justify-self: start;
    }
}

@media only screen and (max-width: 575px) {
    #footer .ftr-top > .row {
        grid-template-columns: 1fr;
        row-gap: 30px;
        text-align: center;
    }

    #footer .ftr-top > .row > [class*="col-"]:first-child {
        grid-row: auto;
    }

    #footer .ftr-top > .row > [class*="col-"],
    #footer .ftr-top > .row > [class*="col-"]:first-child,
    #footer .ftr-top > .row > [class*="col-"]:nth-child(2),
    #footer .ftr-top > .row > [class*="col-"]:nth-child(3) {
        justify-self: center;
    }

    #footer .ftr-menu h5,
    #footer .ftr-contact h5,
    #footer .ftr-menu ul li {
        text-align: center;
    }

    #footer .ftr-contact .footer-contact-list {
        justify-items: center;
    }
}

/* Phone carousel hard lock: one full card only on small screens. */
@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home #why-naviowl .why-carousel-wrap,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel-wrap {
        padding-left: 54px !important;
        padding-right: 54px !important;
        overflow: visible !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel {
        width: 100% !important;
        max-width: 360px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-list,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-list {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        overflow: hidden !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-track,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-track {
        display: flex !important;
        align-items: stretch !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-slide,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-slide {
        padding-left: 0 !important;
        padding-right: 0 !important;
        box-sizing: border-box !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .slick-slide > div,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .slick-slide > div {
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    html body .naviowl-preview-home #why-naviowl .why-naviowl-carousel .workflow-card,
    html body .naviowl-page #healthcare-pillars .healthcare-pillars-carousel .healthcare-pillar-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 24px !important;
    }
}

/* ABSOLUTE LAST OVERRIDE: compact navigation bar. */
html body header.main-header {
    min-height: 0 !important;
}

html body header.main-header .container,
html body header.main-header .row,
html body header.main-header .col-md-12 {
    min-height: 0 !important;
}

html body header.main-header .headerRow {
    min-height: 64px !important;
    height: 64px !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    align-items: center !important;
}

html body header.main-header .logo,
html body header.main-header.stickyHeader .logo {
    flex: 0 0 74px !important;
    width: 74px !important;
    max-width: 74px !important;
    min-width: 74px !important;
    height: 56px !important;
    max-height: 56px !important;
    overflow: hidden !important;
}

html body header.main-header .logo a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    height: 100% !important;
}

html body header.main-header .logo img,
html body header.main-header .logo img[src*="MainLogo"],
html body header.main-header.stickyHeader .logo img,
html body header.main-header.stickyHeader .logo img[src*="MainLogo"] {
    display: block !important;
    width: auto !important;
    height: 54px !important;
    max-width: 70px !important;
    max-height: 54px !important;
    object-fit: contain !important;
}

html body header.main-header .main_menu > ul > li > a {
    font-size: 16px !important;
    line-height: 1 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

html body header.main-header .header-fixed-btn .btn,
html body header.main-header .nav-demo-btn {
    min-height: 38px !important;
    height: 38px !important;
    padding: 8px 18px !important;
    font-size: 15.5px !important;
    line-height: 1 !important;
}

html body .naviowl-preview-home .preview-hero {
    padding-top: 90px !important;
}

@media only screen and (max-width: 1199px) {
    html body header.main-header .headerRow {
        min-height: 58px !important;
        height: 58px !important;
    }

    html body header.main-header .logo,
    html body header.main-header.stickyHeader .logo {
        flex-basis: 58px !important;
        width: 58px !important;
        max-width: 58px !important;
        min-width: 58px !important;
        height: 50px !important;
        max-height: 50px !important;
    }

    html body header.main-header .logo img,
    html body header.main-header .logo img[src*="MainLogo"],
    html body header.main-header.stickyHeader .logo img,
    html body header.main-header.stickyHeader .logo img[src*="MainLogo"] {
        height: 48px !important;
        max-width: 56px !important;
        max-height: 48px !important;
    }

    html body header.main-header .menu-toggle {
        width: 38px !important;
        height: 38px !important;
    }

    html body header.main-header .main_menu {
        top: 58px !important;
        min-height: calc(100vh - 58px) !important;
    }

    html body .naviowl-preview-home .preview-hero {
        padding-top: 78px !important;
    }
}

@media only screen and (max-width: 767px) {
    html body header.main-header .headerRow {
        min-height: 54px !important;
        height: 54px !important;
    }

    html body header.main-header .logo,
    html body header.main-header.stickyHeader .logo {
        flex-basis: 54px !important;
        width: 54px !important;
        max-width: 54px !important;
        min-width: 54px !important;
        height: 46px !important;
        max-height: 46px !important;
    }

    html body header.main-header .logo img,
    html body header.main-header .logo img[src*="MainLogo"],
    html body header.main-header.stickyHeader .logo img,
    html body header.main-header.stickyHeader .logo img[src*="MainLogo"] {
        height: 44px !important;
        max-width: 52px !important;
        max-height: 44px !important;
    }

    html body header.main-header .menu-toggle {
        width: 36px !important;
        height: 36px !important;
    }

    html body header.main-header .main_menu {
        top: 54px !important;
        min-height: calc(100vh - 54px) !important;
    }

    html body .naviowl-preview-home .preview-hero {
        padding-top: 72px !important;
    }
}

/* Prominent homepage hero atmosphere: richer grid, glow orbs, and upward-only particles. */
html body .naviowl-preview-home .preview-hero {
    position: relative !important;
    overflow: hidden !important;
    isolation: isolate;
}

html body .naviowl-preview-home .preview-hero::before {
    opacity: 0.72 !important;
    background-image:
        radial-gradient(circle at 18% 26%, rgba(53, 142, 230, 0.34) 0, rgba(53, 142, 230, 0.17) 18%, transparent 38%),
        radial-gradient(circle at 82% 62%, rgba(53, 182, 232, 0.25) 0, rgba(53, 182, 232, 0.12) 16%, transparent 36%),
        linear-gradient(rgba(110, 160, 230, 0.085) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 160, 230, 0.075) 1px, transparent 1px) !important;
    background-size: 100% 100%, 100% 100%, 82px 82px, 82px 82px !important;
    animation: naviHeroGridSlowMove 34s linear infinite !important;
}

html body .naviowl-preview-home .preview-hero::after {
    opacity: 0.96 !important;
    background:
        radial-gradient(circle at 21% 32%, rgba(61, 143, 255, 0.34) 0, rgba(61, 143, 255, 0.16) 18%, transparent 40%),
        radial-gradient(circle at 76% 28%, rgba(72, 195, 244, 0.23) 0, rgba(72, 195, 244, 0.10) 17%, transparent 38%),
        radial-gradient(circle at 66% 82%, rgba(244, 122, 0, 0.11) 0, transparent 28%) !important;
    filter: blur(1px);
    animation: naviHeroOrbDrift 26s ease-in-out infinite alternate !important;
}

html body .naviowl-preview-home .preview-hero .container,
html body .naviowl-preview-home .preview-hero .hero-grid,
html body .naviowl-preview-home .preview-hero .hero-copy {
    position: relative !important;
    z-index: 5 !important;
}

html body .naviowl-preview-home .preview-hero .navi-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

html body .naviowl-preview-home .preview-hero .navi-hero-particles span {
    position: absolute;
    bottom: -48px;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(129, 210, 255, 0.88);
    box-shadow: 0 0 12px rgba(129, 210, 255, 0.76), 0 0 24px rgba(53, 142, 230, 0.24);
    opacity: 0;
    animation: naviHeroParticleRiseProminent 13s linear infinite;
}

html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(1) { left: 8%; animation-duration: 11s; animation-delay: -1s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(2) { left: 16%; width: 3px; height: 3px; animation-duration: 14s; animation-delay: -7s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(3) { left: 25%; animation-duration: 12s; animation-delay: -4s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(4) { left: 34%; width: 5px; height: 5px; animation-duration: 15s; animation-delay: -10s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(5) { left: 43%; width: 3px; height: 3px; animation-duration: 10s; animation-delay: -3s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(6) { left: 52%; animation-duration: 13s; animation-delay: -8s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(7) { left: 61%; width: 5px; height: 5px; animation-duration: 16s; animation-delay: -5s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(8) { left: 70%; width: 3px; height: 3px; animation-duration: 12s; animation-delay: -11s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(9) { left: 78%; animation-duration: 14s; animation-delay: -2s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(10) { left: 86%; width: 5px; height: 5px; animation-duration: 11s; animation-delay: -6s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(11) { left: 92%; width: 3px; height: 3px; animation-duration: 15s; animation-delay: -12s; }
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(12) { left: 48%; width: 4px; height: 4px; animation-duration: 17s; animation-delay: -14s; }

@keyframes naviHeroParticleRiseProminent {
    0% {
        opacity: 0;
        transform: translate3d(0, 80px, 0) scale(0.78);
    }
    10% {
        opacity: 0.62;
    }
    48% {
        opacity: 0.82;
    }
    88% {
        opacity: 0.42;
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -520px, 0) scale(1);
    }
}

@keyframes naviHeroGridSlowMove {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 0 0, 82px -82px, 82px -82px;
    }
}

@keyframes naviHeroOrbDrift {
    0% {
        transform: translate3d(0, -1.2%, 0) scale(1);
        opacity: 0.82;
    }
    100% {
        transform: translate3d(0, 1.2%, 0) scale(1.035);
        opacity: 0.98;
    }
}

@media (prefers-reduced-motion: reduce) {
    html body .naviowl-preview-home .preview-hero::before,
    html body .naviowl-preview-home .preview-hero::after,
    html body .naviowl-preview-home .preview-hero .navi-hero-particles span {
        animation: none !important;
    }
}

@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home .preview-hero::before {
        opacity: 0.48 !important;
        background-size: 100% 100%, 100% 100%, 68px 68px, 68px 68px !important;
    }

    html body .naviowl-preview-home .preview-hero::after {
        opacity: 0.58 !important;
    }

    html body .naviowl-preview-home .preview-hero .navi-hero-particles span {
        width: 3px;
        height: 3px;
        box-shadow: 0 0 9px rgba(129, 210, 255, 0.58);
    }
}

/* TRUE FINAL OVERRIDE: nav readability, homepage maple i-dot, and larger hero particles. */
@media only screen and (min-width: 1200px) {
    html body header.main-header .main_menu {
        flex: 1 1 auto !important;
        display: flex !important;
        justify-content: center !important;
        min-width: 0 !important;
    }

    html body header.main-header .main_menu > ul {
        width: clamp(720px, 80%, 1040px) !important;
        gap: clamp(30px, 3vw, 58px) !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    html body header.main-header .main_menu > ul > li > a {
        font-size: 18px !important;
        line-height: 1.08 !important;
    }
}

@media only screen and (min-width: 1400px) {
    html body header.main-header .main_menu > ul {
        width: clamp(820px, 80%, 1120px) !important;
        gap: clamp(36px, 3.2vw, 68px) !important;
    }

    html body header.main-header .main_menu > ul > li > a {
        font-size: 18.5px !important;
    }
}

html body .naviowl-preview-home .preview-hero .home-brand-wordmark-image,
html body .naviowl-cba-page .cba-brand-wordmark-image {
    display: inline-flex !important;
    width: min(350px, 34vw);
    max-width: 100%;
    margin: 0 clamp(16px, 2vw, 28px) 0 0;
    line-height: 0;
    vertical-align: baseline;
    align-items: baseline;
}

html body .naviowl-preview-home .preview-hero .home-brand-wordmark-image img,
html body .naviowl-cba-page .cba-brand-wordmark-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 104px;
    object-fit: contain;
    object-position: left center;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 14px rgba(53, 142, 230, 0.14));
}

html body .naviowl-preview-home .preview-hero .home-brand-tagline,
html body .naviowl-cba-page .cba-brand-tagline {
    display: inline-block !important;
    vertical-align: baseline;
    margin-bottom: 0 !important;
    font-size: clamp(25px, 2.35vw, 42px) !important;
    line-height: 1.05 !important;
}

html body .naviowl-preview-home .preview-hero .home-brand-separator,
html body .naviowl-cba-page .cba-brand-separator {
    margin-top: 22px !important;
}

html body .naviowl-preview-home .preview-hero .navi-hero-particles span {
    width: 5px !important;
    height: 5px !important;
    background: rgba(145, 218, 255, 0.92) !important;
    box-shadow: 0 0 14px rgba(145, 218, 255, 0.82), 0 0 30px rgba(53, 142, 230, 0.32) !important;
}

html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(2),
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(5),
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(8),
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(11) {
    width: 4px !important;
    height: 4px !important;
}

html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(4),
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(7),
html body .naviowl-preview-home .preview-hero .navi-hero-particles span:nth-child(10) {
    width: 6px !important;
    height: 6px !important;
}

@keyframes naviHeroParticleRiseProminent {
    0% {
        opacity: 0;
        transform: translate3d(0, 80px, 0) scale(0.78);
    }
    10% {
        opacity: 0.68;
    }
    48% {
        opacity: 0.88;
    }
    88% {
        opacity: 0.48;
    }
    100% {
        opacity: 0;
        transform: translate3d(0, -520px, 0) scale(1);
    }
}

@media only screen and (max-width: 767px) {
    html body .naviowl-preview-home .preview-hero .home-brand-wordmark-image,
    html body .naviowl-cba-page .cba-brand-wordmark-image {
        display: block !important;
        width: min(300px, 82vw);
        margin-right: auto;
        margin-left: auto;
        margin-bottom: 8px;
    }

    html body .naviowl-preview-home .preview-hero .home-brand-wordmark-image img,
    html body .naviowl-cba-page .cba-brand-wordmark-image img {
        max-height: 90px;
        object-position: center;
    }

    html body .naviowl-preview-home .preview-hero .home-brand-tagline,
    html body .naviowl-cba-page .cba-brand-tagline {
        display: block !important;
        font-size: clamp(24px, 7vw, 34px) !important;
        line-height: 1.12 !important;
        text-align: center;
    }

    html body .naviowl-preview-home .preview-hero .navi-hero-particles span {
        width: 4px !important;
        height: 4px !important;
        box-shadow: 0 0 11px rgba(145, 218, 255, 0.66), 0 0 20px rgba(53, 142, 230, 0.22) !important;
    }
}

/* Advisor photo format: larger circular headshots instead of tiny avatar crops. */
html body .naviowl-about-page .advisor-card {
    min-height: 0;
    align-items: center;
    text-align: center;
}

html body .naviowl-about-page .advisor-photo {
    display: block;
    width: 168px;
    height: 168px;
    margin: 0 0 20px;
    padding: 3px;
    border: 2px solid rgba(141, 220, 255, 0.48);
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto;
    filter: contrast(0.96) saturate(0.98) blur(0.5px);
    background: rgba(141, 220, 255, 0.08);
    box-shadow:
        inset 0 0 0 3px rgba(10, 33, 45, 0.9),
        0 16px 34px rgba(0, 0, 0, 0.18);
}

html body .naviowl-about-page .advisor-card h3 {
    margin-bottom: 8px;
}

html body .naviowl-about-page .advisor-card h4 {
    margin-bottom: 14px;
}

html body .naviowl-about-page .advisor-card p {
    text-align: center;
}

html body .naviowl-about-page .advisor-linkedin {
    margin-right: auto;
    margin-left: auto;
}

@media only screen and (max-width: 991px) {
    html body .naviowl-about-page .advisor-photo {
        width: 156px;
        height: 156px;
        filter: contrast(0.96) saturate(0.98);
    }
}

@media only screen and (max-width: 767px) {
    html body .naviowl-about-page .advisor-photo {
        width: 164px;
        height: 164px;
        margin-right: auto;
        margin-left: auto;
    }
}
