/* Regular 400 */
@font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_Rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Italic 400 */
  @font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_It.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  
  /* Light 300 */
  @font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_Lt.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  
  /* Light Italic 300 */
  @font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_LtIt.woff2') format('woff2');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
  }
  
  /* Bold 700 */
  @font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* Bold Italic 700 */
  @font-face {
    font-family: 'Aller';
    src: url('../fonts/Aller_BdIt.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
  }
  
  /* Display version */
  @font-face {
    font-family: 'Aller Display';
    src: url('../fonts/AllerDisplay.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
body{
    font-family: 'Aller', sans-serif;
}

html,body{
    overflow-x: hidden;
}

img{
    max-width: 100%;
    height: auto;
}
a:hover{
    color: #05335b;
}
/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid #A2A2A2;
    font-family: 'Aller', sans-serif;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand img {
    height: 42px;
}

/* MENU */
.navbar-nav {
    gap: 6px;
}

.nav-link {
    font-size: 18px;
    line-height: 24px;
    color: #707070;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
}

/* ARROW */
.arrow{
    position: relative;
    background: transparent;
    width: 10px;
    height: 14px;
}
.arrow::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid #707070;
    border-bottom: 2px solid #707070;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: 2px;
    z-index: 2;
    margin-left: 2px;
}

/* SUB MENU */
.has-submenu {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 260px;
    padding: 12px 0;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 99;
}
.sub-menu li{
    list-style: none;
}

.sub-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 16px;
    color: #707070;
    text-decoration: none;
}

.sub-menu li a:hover {
    background: #f5f7fa;
    color: #0a3d91;
}

/* HOVER EFFECT */
.desktop .has-submenu:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.desktop .has-submenu:hover .arrow::before {
    transform: rotate(-135deg);
}


.icon-btn {
    width: 49px;
    height: 49px;
    background: #F6F5F2;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    color: #1c1c1c;
    transition: all 0.3s ease;
    font-size: 15px;
}


.icon-btn.menu{
    background: #003258;
}
.flag img {
    width: 28px;
    margin-right: 10px;
}
.header-actions .fa-user::before{
    content: url(../images/log_in.svg);
}
.header-actions .fa-magnifying-glass::before{
    content: url(../images/search.svg);

}
.header-actions .fa-sliders::before{
    content: url(../images/settings-sliders.svg);

}


@media (max-width: 991px) {

    .navbar-nav {
        padding-top: 20px;
    }

   
}




.site-footer {
    font-family: 'Aller', sans-serif;
    color: #ffffff;
}

/* MAIN FOOTER */
.footer-main {
    background: #05335b;
    position: relative;
    padding: 80px 0 100px;
}
/* 
.footer-logo img {
    max-width: 220px;
    margin-bottom: 30px;
} */

.footer-desc {
    font-size: 20px;
    line-height: 1.3;
    /* max-width: 600px; */
    margin-top: 79px;
}

/* RIGHT */
.footer-security {
    border-left: 1px solid rgba(255,255,255,0.3);
    padding-left: 30px;
    margin-top: 162px;
}

.footer-security p {
    font-size: 20px;
    line-height: 27px;
}
.footer-security p.image{
    text-align: right;
}
.footer-security img {
    margin-top: 20px;
    max-width: 110px;
}

/* SOCIAL */
.footer-social {
    margin-top: 40px;
    text-align: right;
}

.footer-social a {
    width: 31px;
    height: 31px;
    background: #ffffff;
    color: #FF7F00;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-right: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #FF7F00;
    color: #ffffff;
}

/* CONTACT BOX */
.footer-container{
    position: relative;
}
.footer-contact-box {
    position: absolute;
    top: -143px;
    right: 0;
    background: #FF7F00;
    padding: 30px 40px 30px 24px;    color: #ffffff;
    min-width: 320px;
    max-width: 460px;
    /* display: flex; */
    margin: auto 0 auto auto;
}
.footer-contact-box::after{
    content: '';
    position: absolute;
    top: 0;
    right: -81px;
    width:81px;
    height: 64px;
    mask-image: url(../images//new-masking-hero.png);
    background: #814101;
}

.footer-contact-box h4 {
    font-size: 22px;
    margin-bottom: 15px;
}

.footer-contact-box a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 30px;
}



/* BOTTOM FOOTER */
.footer-bottom {
    background: #ffffff;
    color: #000000;
    padding: 20px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-menu{
    width: 65%;
}
.footer-menu a {
    color: #000;
    margin-right: 15px;
    font-size: 18px;
    margin-left: 15px;
    text-decoration: none;
}
.footer-menu span{
    color: #003F82;
}
.footer-menu a:first-child{
    margin-left: 0;
}
.footer-legal {
    font-size: 16px;
    color: #555;
    text-align: right;
}.footer-legal a{
    text-decoration: none;
    font-size: 16px;
    line-height: 21px;
    color: #000000;
}
.footer-legal span{
    display: block;
}



@media (max-width: 991px) {

    .footer-security {
        border-left: none;
        padding-left: 0;
        margin-top: 40px;
    }


    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}




/* ==========================
   HERO SECTION
========================== */

.hero-section {
    padding: 100px 0 0px;
        background: #ffffff;
    font-family: 'Aller', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    column-gap: 80px;
    align-items: center;
}

/* LEFT */
.hero-icon img {
    /* width: 60px;
    margin-bottom: 30px; */
}

.hero-left h1 {
    font-size: 65px;
    line-height: 86px;
    font-weight: 400;
    color: #707070;
    margin-left: 60px;
    margin-bottom: 90px;
}
.hero-section.contact-us .hero-left h1{
    color: #000;
}
/* RIGHT */
.hero-right{
    margin-top: 160px;
}
.hero-right p {
    font-size: 20px;
    line-height: 27px;
    color: #707070;
    /* max-width: 480px; */
    margin-bottom: 35px;

}
.hero-right .cta-div{
    text-align: right;
}
.hero-cta {
    font-size: 14px;
    line-height: 19px;
    /* letter-spacing: 0.08em; */
    color: #707070;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #003F82;
    padding-bottom: 10px;
    font-weight: 700;
}

.hero-cta span {
    font-size: 18px;
}






/* ==========================
   STATS SECTION
========================== */

.stats-section {
    background: #ffffff;
    overflow: hidden;
}

/* GRID SPLIT */
.stats-wrapper {
    display: grid;
    grid-template-columns: 58% 42%;
    min-height: 520px;
}

/* LEFT PANEL */
.stats-left {
    background: #05335b;
    color: #ffffff;
    padding: 80px 80px 80px 200px;    
    position: relative;
    padding-left: calc((100vw - 1285px) / 2) !important;
}

/* RIGHT IMAGE PANEL */
.stats-right {
    background: url('../images/ai-handshake.png') center center / cover no-repeat;
    position: relative;
    background-position: left -58px center;
}
.page-id-11 .stats-right{
    background-position: left -62px center;
}
.page-id-645 .stats-right{
    background-position: left -62px center;
}


/* CLIPPED EDGE */
/* .stats-right::before {
    content: "";
    position: absolute;
    left: -60px;
    top: 0;
    width: 60px;
    height: 100%;
    background: #05335b;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);
} */

.impact-right p.short-desc{
    margin-bottom: 25px;
}
.impact-right p{
    margin-bottom: 0;
    color: #707070;
}
.stats-line {
    position: relative;
    width: 100%;
    height: 2px;
    background: #ddd;
    margin-bottom: 25px;
}

.stats-line .line-active {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    background: #E26507;
    transition: transform 0.35s ease, width 0.35s ease;
    will-change: transform, width;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 81px;}

.stat h3 {
    font-size: 35px;
    margin-bottom: 8px;
    font-weight: 700;
}

.stat p {
    font-size: 16px;
    line-height: 21px;
}

.stats-text h2 {
    font-size: 35px;
    line-height: 47px;
    font-weight: 400;
    margin-bottom: 0;
}

.stats-text p {
    font-size: 16px;
    /* max-width: 420px; */
    margin-bottom: 70px;
}

.stats-cta {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.stats-cta:hover{
    color:#E26507;
}
.single-use_cases .hero-grid{
    grid-template-columns: 1fr;
} 

/* ≤1366px */
@media (max-width: 1366px) {
    .stats-left {
        padding: 70px 60px;
    }
}

/* ≤1199px */
@media (max-width: 1199px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 40px;
    }
}

/* ≤991px */
@media (max-width: 991px) {
    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stats-right {
        min-height: 300px;
    }

    .stats-right::before {
        display: none;
    }
}

/* ≤767px */
@media (max-width: 767px) {
    .stats-left {
        padding: 60px 30px;
    }

    .stat h3 {
        font-size: 34px;
    }
}

/* ≤575px */
@media (max-width: 575px) {
    .stats-text h2 {
        font-size: 28px;
    }
}



/* ==========================
   ENTERPRISE SECTION
========================== */

.enterprise-section {
    padding: 100px  0;
    background: #f8f8f8;
    font-family: 'Aller', sans-serif;
}

.enterprise-left h2 {
    font-size: 55px;
    line-height: 73px;
    font-weight: 400;
    color: #707070;
    margin-bottom: 36px;
}

.enterprise-desc {
    font-size: 20px;
    line-height: 27px;
    color: #6d6d6d;
    max-width: 520px;
}

/* RIGHT */
.enterprise-points {
    margin-bottom: 40px;
}

.enterprise-points p {
    font-size: 20px;
    color: #707070;
    margin-bottom: 12px;
}

/* LOGOS */
.logo-card {
    background: #ffffff;
    /* border: 1px solid #eee; */
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}
.logo-card.no-brdr{
    background-color: transparent;
    border: 0;
    padding: 0;
    align-items: flex-start;
    justify-content: flex-start;
}
.logo-card p{
    font-weight: 700;
    color: #707070;
    font-size: 20px;
 

}
.logo-card img {
    max-width: 100%;
    max-height: 40px;
}


@media (max-width: 991px) {

    .enterprise-section {
        padding: 90px 0;
    }

    .enterprise-left {
        margin-bottom: 50px;
    }

    .enterprise-left h2 {
        font-size: 40px;
    }
}

@media (max-width: 575px) {

    .enterprise-left h2 {
        font-size: 32px;
    }

    .logo-card {
        height: 80px;
    }
}


/* ==========================
   SOLUTIONS SECTION
========================== */

.solutions-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Aller', sans-serif;
}

/* CARD */
.solution-card {
    background: #05335b;
    color: #ffffff;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

/* IMAGE */
.solution-image img {
    width: 100%;
    height: 259px;
    object-fit: cover;
}

/* CONTENT */
.solution-content {
 margin-top: 27px;
 margin-bottom: 40px;
    flex-grow: 1;
}

.solution-content h3 {
    font-size: 26px;
    margin-bottom: 6px;
    font-weight: 700;
            min-height: 58px;
}

.solution-sub {
    font-size: 22px;
    margin-bottom: 20px;
}

.solution-desc {
    font-size: 20px;
    line-height: 27px;
}

/* CTA */
.solution-cta {
    /* padding: 0 30px 30px; */
}

.solution-cta a {
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}



@media (max-width: 1199px) {
    .solution-image img {
        height: 200px;
    }
}

@media (max-width: 991px) {
    .solutions-section {
        padding: 90px 0;
    }
}

@media (max-width: 575px) {

}



/* ==========================
   STATEMENT SECTION
========================== */

.statement-section {
    padding: 82px 0;
    background: rgba(185, 185, 185, 0.1);
    font-family: 'Aller', sans-serif;
  
}

.statement-text {
    font-size: 46px;
    line-height: 62px;
    color: #707070;
    font-style: italic;
    margin-bottom: 64px;
}

/* CTA */
.statement-cta {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #000000;
    padding-bottom: 6px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
}


/* ≤1366px */
@media (max-width: 1366px) {
    .statement-text {
        font-size: 30px;
    }
}

/* ≤1199px */
@media (max-width: 1199px) {
    .statement-section {
        padding: 120px 0;
    }
}

/* ≤991px */
@media (max-width: 991px) {
    .statement-text {
        font-size: 26px;
    }
}

/* ≤767px */
@media (max-width: 767px) {
    .statement-section {
        padding: 100px 0;
    }

    .statement-text {
        font-size: 22px;
    }
}

/* ≤575px */
@media (max-width: 575px) {
    .statement-text {
        font-size: 18px;
        line-height: 1.6;
    }
}


/* ==========================
   USE CASE SECTION
========================== */

.usecase-section {
    padding: 100px 0;
    background: #ffffff;
    font-family: 'Aller', sans-serif;
}
.usecase-content{
    padding-left: 30px;
}

/* LEFT */
.usecase-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* RIGHT */
.usecase-title {
    font-size: 65px;
    line-height: 86px;
    font-weight: 400;
    color: #707070;
    margin-bottom: 50px;
}

/* ITEM */
.usecase-item {
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
}

.usecase-item:last-child {
    border-bottom: 1px solid #e5e5e5;
}

/* HEADER */
.usecase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.usecase-header h4 {
    font-size: 30px;
    line-height: 40px;
    margin: 0;
    color: #6d6d6d;
}

.usecase-header span {
    font-size: 14px;
    color: #6d6d6d;
}

.usecase-header .arrow {
    font-size: 22px;
    color: #0a3d91;
}

/* BODY */
.usecase-body {
    display: none;
    padding-top: 20px;
}

.usecase-body p {
    font-size: 20px;
    line-height: 27px;
    color: #707070;
    margin-bottom: 16px;
}
.usecase-item .fa-arrow-up-right-from-square::before{
    content: '';
    background: url(../images/right-up-blue.png);
    width: 27px;
    height: 27px;
    display: inline-block;

}

.usecase-link {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid #003F82;
    padding-bottom: 4px;
    display: inline-flex;
    gap: 15px;
    color: #707070;
}
.usecase-link img{
    width: 12px;
}
.usecase-item .fa-arrow-down::before{
    content: '';
    width: 27px;
    height: 27px;
    background: url(../images/right-down-blue.png) no-repeat;
    display: inline-block;


}
/* ACTIVE */
.usecase-item.active .usecase-body {
    display: block;
}

/* .usecase-item.active .arrow {
    transform: rotate(180deg);
} */
 

@media (max-width: 991px) {

    .usecase-section {
        padding: 90px 0;
    }

    .usecase-image {
        margin-bottom: 40px;
    }

    .usecase-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .usecase-title {
        font-size: 28px;
    }
}


.arrow-icon {
    font-size: 20px;
    color: #0a3d91;
    transition: transform 0.3s ease;
}

/* Active arrow */
/* .usecase-item.active .arrow-icon {
    transform: rotate(90deg);
} */



/* ==========================
   KNOWN FROM SECTION
========================== */

.knownfrom-section {
    padding: 100px 0 60px;
        background: rgba(185, 185, 185, 0.1);
    font-family: 'Aller', sans-serif;
}

.knownfrom-title {
    font-size: 55px;
    font-weight: 400;
    line-height: 73px;
    color: #707070;
    margin-bottom: 17px;
}

/* SLIDER */
.knownfrom-slider .logo-slide {
    display: flex !important;
    align-items: center;
    /* justify-content: center; */
    height: 60px;
}

.knownfrom-slider img {
    max-height: 60px;
    max-width: 160px;
    object-fit: contain;
}

/* DOTS (RIGHT ALIGNED LIKE DESIGN) */
.knownfrom-slider .slick-dots {
    text-align: right;
    margin-top: 30px;
}

.knownfrom-slider .slick-dots li button:before {
    font-size: 8px;
    color: #0a3d91;
    opacity: 0.3;
}

.knownfrom-slider .slick-dots li.slick-active button:before {
    opacity: 1;
}
/* WRAPPER */
.knownfrom-wrapper {
    position: relative;
}

/* ==========================
   SLICK DOTS AS LINES
========================== */

.knownfrom-slider .slick-dots {
    position: relative;
    display: flex !important;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 45px;
    padding-right: 30px;
}

/* REMOVE DEFAULT DOT */
.knownfrom-slider .slick-dots li button:before {
    display: none;
}

/* LINE STYLE */
.knownfrom-slider .slick-dots li {
    width: 40px;
    height: 2px;
    background: #cfd6df;
    cursor: pointer;
}

/* ACTIVE LINE */
.knownfrom-slider .slick-dots li.slick-active {
    background: #0a3d91;
}


.blog-section {
    padding: 100px 0;
        background: #ffffff;
    font-family: 'Aller', sans-serif;
}

.blog-title {
    font-size: 55px;
    line-height: 73px;
    font-weight: 400;
    margin-bottom: 65px;
    color: #707070;
}

/* CARD */
.blog-card {
    height: 100%;
}

/* IMAGE */
.blog-image {
    position: relative;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* OVERLAY */
.blog-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 51, 91, 0.9),
        rgba(0, 51, 91, 0.3)
    );
    color: #ffffff;
    padding: 12px 15px 14px 12px;    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.blog-overlay h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.blog-overlay p {
    font-size: 13px;
    line-height: 17px;
    margin-bottom: 0;
}

/* LINK */
.blog-link {
    display: inline-flex;
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    color: #707070;
    text-decoration: none;
    border-bottom: 1px solid #003F82;
    padding-bottom: 4px;
    gap: 8px;
}

.blog-slider {
    position: relative;
}

.blog-prev,
.blog-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

/* left of first slide */
.blog-prev {
    left: -60px;
}

/* right of last slide */
.blog-next {
    right: -60px;
}
.blog-slider .blog-slide {
    padding: 0 10px;
}

.blog-slider {
    margin: 0 -10px;
}
@media (max-width: 575px) {
    .blog-image img {
        height: 240px;
    }
}


.listen-section {
    position: relative;
    padding: 76px 0 80px;
            font-family: 'Aller', sans-serif;
}

/* BLUE BACKGROUND LAYER */
.listen-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 72%;
    background: #05335b;
    z-index: 0;
}

/* CONTENT ABOVE BG */
.listen-section .container {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

/* TEXT */
.listen-title { font-size: 55px;line-height: 73px; margin-bottom: 32px; }
.listen-desc {     max-width: 609px;
    font-size: 26px;line-height: 35px;margin-bottom: 65px;}
.listen-cta-col { padding-left: 0; }
.listen-small-title{
    font-size: 26px;
    line-height: 35px;
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 38px;
}
.listen-small-desc{
    font-size: 26px;
    line-height: 35px;
}
/* VIDEO */
.listen-video-wrapper {
    position: relative;
    margin-top: 80px;
    background: #ffffff;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.listen-cta-div{
    text-align: right;
}
.listen-cta{
    display: inline-flex;
    gap: 15px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 8px;
}
.listen-cta:hover{
    color: #e0620b;
}
/* PLAY */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}



@media (max-width: 991px) {
    .listen-bg { height: 65%; }
    .listen-cta-col { padding-left: 0; margin-top: 40px; }
    .listen-title { font-size: 36px; }
}

@media (max-width: 575px) {
    .listen-bg { height: 75%; }
    .listen-title { font-size: 28px; }
}



/* ==========================
   IMPACT SECTION
========================== */

.impact-section {
    padding: 100px 0 100px;
    background: rgba(185, 185, 185, 0.1);
    font-family: 'Aller', sans-serif;
}

/* LEFT */
.impact-left h2 {
    font-size: 55px;
    line-height: 73px;
    font-weight: 400;
    color: #707070;
    /* margin-bottom: 50px; */
}

.impact-left p {
    max-width: 550px;
    font-size: 20px;
    line-height: 27px;
    color: #6d6d6d;
}

/* RIGHT */
.impact-right{
    /* margin-top: 146px; */
}
.impact-line {
    position: relative;
    margin-bottom: 50px;
}

.impact-line::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #dcdcdc;
}

.impact-line span {
    position: relative;
    display: block;
    width: 120px;
    height: 3px;
    background: #ff7a00;
    margin-left: 30%;
}

/* STATS */
.impact-stats h3 {
    font-size: 35px;
    line-height: 47px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #707070;
}

.impact-stats p {
    font-size: 19px;
    line-height: 25px;
    color: #707070;
    font-weight: 700;
}


@media (max-width: 991px) {

    .impact-section {
        padding: 110px 0;
    }

    .impact-left {
        margin-bottom: 50px;
    }

    .impact-left h2 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {

    .impact-left h2 {
        font-size: 30px;
    }

    .impact-stats h3 {
        font-size: 26px;
    }
}


/* ==========================
   NEWSLETTER SECTION
========================== */

.newsletter-section {
    font-family: 'Aller', sans-serif;
    background: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.newsletter-content {
    background: #05335b;
    color: #ffffff;
    padding: 100px 80px;
    padding-left: calc((100vw - 1285px) / 2) !important;

}

.newsletter-content h2 {
    font-size: 55px;
    line-height: 73px;
    font-weight: 400;
    margin-bottom: 30px;
}

.newsletter-content p {
    /* max-width: 420px; */
    font-size: 20px;
    margin-bottom: 40px;
    line-height: 27px;
}

/* FORM */
.newsletter-form input {
    width: 100%;
    padding: 14px 14px;
    border: none;
    margin-bottom: 20px;
}
.newsletter-form .submit-btn-div{
    text-align: right;
    margin-top: 40px;
    width: fit-content;
    position: relative; /* important */
    margin-left: auto;
}

.newsletter-form .submit-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-bottom: 1px solid #ffffff;
    padding: 0 30px 6px 0; /* space for arrow */
    cursor: pointer;
    display: block;
    text-decoration: none;

}

.newsletter-form .submit-btn-div::after{
    content: "";
    position: absolute;
    right: 0;
    top: 5px;    bottom: 6px; /* align with border */
    width: 16px;
    height: 16px;
    background: url('../images/right-down.png') no-repeat center;
    background-size: contain;
}
/* IMAGE */
.newsletter-image{
    background: url(../images/ai-with-headphone.png) center center / cover no-repeat;
    position: relative;
    background-position: left -54px center;}
.newsletter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 991px) {
    .newsletter-content {
        padding: 80px 40px;
    }
}

@media (max-width: 575px) {
    .newsletter-content h2 {
        font-size: 30px;
    }
}


/* ==========================
   FAQ SECTION
========================== */

.faq-section {
    padding: 0px 0 140px;
        background: #ffffff;
    font-family: 'Aller', sans-serif;
}

/* LEFT */
.faq-left h2 {
    font-size: 55px;
    line-height: 73px;
    color: #707070;
    font-weight: 400;
    margin-bottom: 30px;
}

.faq-left p {
    max-width: 420px;
    line-height: 1.6;
    color: #707070;
}

/* RIGHT */
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 22px 0;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}
.faq-header span{
    padding-right: 10px;
    color: #707070;
}

.faq-body {
    display: none;
    padding-top: 15px;
    color: #707070;
      font-size: 20px;
      line-height: 27px;

}

/* ACTIVE */
.faq-item.active .faq-body {
    display: block;
}



/* AUDIO CARD */

.audio-card-wrapper {
    display: flex;
    justify-content: center;
}

.audio-card {
    background: #fff;
    color: #000;
    border-radius: 18px;
    padding: 30px;
    width: 700px;
    display: flex;
    gap: 30px;
    align-items: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

/* LEFT IMAGE */
.audio-image img {
    width: 270px;
    border-radius: 12px;
    display: block;
}

/* RIGHT CONTENT */
.audio-content {
    flex: 1;
}

.audio-content h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.audio-subtitle {
    color: #666;
    margin-bottom: 20px;
}

/* WAVEFORM (FAKE UI) */
.audio-wave {
    height: 40px;
    background: url('../images/wave-bg.png') center no-repeat;
    background-size: cover;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.audio-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: rgba(0,0,0,0.2);
    transition: width 0.1s linear;
}

/* Controls */
.audio-controls {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: space-between;
}

.audio-controls button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}
.fa-forward::before{
    background: url(../images/next.png);
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-size: cover;
    /* background-position: top right; */
    top: 0;
    left: 0;
}
.fa-backward::before{
    background: url(../images/previous.png);
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-size: cover;
    /* background-position: top right; */
    top: 0;
    left: 0;
}
.fa-play::before{
    background: url(../images/play.png);
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-size: cover;
    /* background-position: top right; */
    top: 0;
    left: 0;
}
.fa-pause::before{
    background: url(../images/pause.png);
    content: '';
    position: absolute;
    width: 22px;
    height: 22px;
    background-size: cover;
    /* background-position: top right; */
    top: 0;
    left: 0;
}
/* Play/Pause toggle */
.icon-pause {
    display: none;
}

.playing .icon-play {
    display: none;
}

.playing .icon-pause {
    display: inline;
}
.audio-progress {
    width: 0%;
}

.audio-dot {
    position: absolute;
    left: 8%;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #000;
    border-radius: 50%;
    transform: translateY(-50%);
}
 .hero-section h1{

    font-size: 65px;
    line-height: 1.3;
}

.hero-section.contact-us{
    background: #F3F3F3;
    padding: 120px 0;
}
.hero-section.contact-us h1{
    margin-bottom: 0;
}
.hero-section.contact-us .hero-right{
    margin-top: 100px;
}
@media (max-width: 991px) {
    .faq-left {
        margin-bottom: 50px;
    }
}






@media (min-width: 1400px) {

.container{
    max-width: 1285px;
}
}



@media (max-width:1680px){
    .hero-left h1
    {
        font-size: 55px;
        line-height: 76px;
    }    
    .enterprise-left h2,
    .usecase-title,
    .knownfrom-title,
    .blog-title ,
    .listen-title ,
    .impact-left h2,
    .newsletter-content h2,
    .faq-left h2
     {
        font-size: 48px;
        line-height: 65px;
    }
    .solution-content h3 {
        font-size: 24px;
    }
    .solution-sub {
        font-size: 20px;
    }
    .solution-desc {
        font-size: 18px;
        line-height: 25px;
    }
.statement-text {
    font-size: 42px;
    line-height: 58px;
}
.usecase-header h4 {
    font-size: 27px;
}
.usecase-body p {
    font-size: 18px;
    line-height: 25px;

}
.listen-desc,
.listen-small-desc {
    font-size: 23px;
}
.listen-small-title {
    font-size: 24px;
    margin-bottom: 24px;
}
.newsletter-content p {
    font-size: 18px;
    line-height: 25px;
}
.faq-header {
    font-size: 23px;
}

.footer-desc,
.footer-security p {
    font-size: 18px;
    line-height: 25px;
}
.page-id-645 .stats-wrapper {
    grid-template-columns: 46% 54%;
    min-height: 465px;

}
.page-id-645 .stats-left {
    padding: 50px 80px 60px 60px;
}
.page-id-645 .stats-grid {
    margin-bottom: 20px;
}
.page-id-645 .stats-text p {
margin-bottom: 20px;
}
}
@media (max-width:1580px){
    .stats-left {
        padding: 80px 80px 80px 120px;
    }
    
}

@media (max-width:1440px){
    .hero-section {
        padding: 90px 0 0px;
    }
    .hero-left h1 ,
    .hero-section h1{
        font-size: 50px;
        line-height: 70px;
    }
    .hero-right p {
        font-size: 18px;
        line-height: 25px;
    }
    .stats-text h2 {
        font-size: 32px;
        line-height: 44px;
    }
    .stat h3 {
        font-size: 32px;
    }
    .stats-right {
      
        background-position: left -61px center;

    }
    .stats-grid {
        margin-bottom: 60px;
    }
    .enterprise-left h2, .usecase-title, .knownfrom-title, .blog-title, .listen-title, .impact-left h2, .newsletter-content h2, .faq-left h2 {
        font-size: 43px;
        line-height: 58px;
    }
    .enterprise-section {
        padding: 120px 0;
    }
    .statement-text {
        font-size: 38px;
        line-height: 54px;
    }
    .usecase-header h4 {
        font-size: 24px;
        line-height: 36px;
    }
    .usecase-item .fa-arrow-up-right-from-square::before,
    .usecase-item .fa-arrow-down::before{
        width: 20px;        
        height: 20px;
        background-size: cover;
    }
    .usecase-body p {
        font-size: 16px;
        line-height: 22px;
    }
    .listen-desc, .listen-small-desc {
        font-size: 20px;
    }
    .listen-small-title {
        font-size: 22px;
        margin-bottom: 24px;
        margin-top: 29px;
    }
    .listen-cta {
        font-size: 14px;
    }
    .listen-video-wrapper {
        max-width: 830px;
    }
    .newsletter-content {
        padding: 100px 80px;
    }
    .newsletter-image {
        background-position: left -54px center;
    }
    .stats-section.smart-office .stats-right {
        background-position: left -54px center;
    }
    .usecase-section{
        padding: 70px 0;
    }
    .knownfrom-slider img {
        max-height: 60px;
        max-width: 100px;
    }
    .stats-text p {
        font-size: 13px;
    }
    .stats-text h2 {
        font-size: 25px;
        line-height: 36px;
    }
    .page-id-645 .stats-wrapper {
        min-height: 411px;
    }
}


@media (max-width:1366px){
    .hero-left h1,
    .hero-section h1 {
        font-size: 46px;
        line-height: 65px;
        margin-bottom: 70px;
    }
    .hero-section {
        padding: 70px 0 0px;
    }
    .stats-text p {
        margin-bottom: 50px;
    }
    .stat h3 {
        font-size: 28px;
    }
    .stats-text h2 {
        font-size: 28px;
        line-height: 38px;
    }
    .stats-right {
        background-position: left -54px center;
    }
    .enterprise-left h2, .usecase-title, .knownfrom-title, .blog-title, .listen-title, .impact-left h2, .newsletter-content h2, .faq-left h2 {
        font-size: 40px;
        line-height: 54px;
    }
    .enterprise-section {
        padding: 100px 0;
    }
    .enterprise-points p {
        font-size: 18px;
    }


.solutions-section {
    padding: 100px 0;
}
.solution-content h3 {
    font-size: 22px;
}
.solution-sub {
    font-size: 18px;
}
.solution-desc {
    font-size: 16px;
    line-height: 23px;
}
.statement-section {
    padding: 70px 0;
}
.footer-desc, .footer-security p {
    font-size: 16px;
    line-height: 23px;
}


}


.audio-wave {
    position: relative;
    width: 100%;
    height: 30px;
    margin: 30px 0;
}

/* full light line */
.audio-base-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #cfcfcf;
    transform: translateY(-50%);
}

/* moving dark line */
.audio-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 1%;              /* default state like your design */
    height: 3px;
    background: #222;
    transform: translateY(-50%);
}

/* dot */
.audio-dot {
    position: absolute;
    top: 50%;
    left: 2%;               /* same as progress */
    width: 10px;
    height: 10px;
    background: #222;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}
.audio-play i.fa-pause {
    display: none;
}

.audio-play.playing i.fa-play {
    display: none;
}

.audio-play.playing i.fa-pause {
    display: inline-block;
}

.audio-controls button {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    position: relative;
}
















/* smart office page */


.stats-section.smart-office .stats-right
{
    background: url(../images/smart-office/stat-right.png) center center / cover no-repeat;
    position: relative;
    background-position: left -58px center;

    
}


 .hero-grid{
    grid-template-columns: 1.6fr 1fr;
    column-gap: 0;
    align-items: start;
}
.hero-section.smart-office .hero-right {
    margin-top: 90px;
}


.journey-slider {
    display: flex;
    /* gap: 40px; */
    overflow: hidden;
    justify-content: flex-start;
}

.journey-card {
    width: 320px;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    transform: scale(.9);
    opacity: 1;
    transition: .4s ease;
    position: relative;
}
.journey-card::before{
    position: absolute;
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    content: '';
}
.journey-card.active {
    width: 520px;
    transform: scale(1);
    opacity: 1;

}.journey-card.active::before{
    display: none;
}

.journey-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.journey-content{
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    border-radius: 10px;
    padding: 20px 25px 0;}


.journey-slider:hover .journey-card {
    width: 260px;
    /* opacity: .3; */
}


.journey-card p{
    display: none;
}

.journey-card:hover {
    width: 520px !important;
    opacity: 1;
}
 .journey-card.active p{
    display: block;
}
.journey-section{
    padding: 100px 0 50px;
}

.intelligence-section {
    padding: 100px  0;
}

.intelligence-title ,.journey-title{
    font-size: 65px;
    line-height: 1.1;
    font-weight: 400;
    margin-bottom: 60px;
    color: #6b6b6b;
}

.intelligence-image img {
    width: 100%;
    border-radius: 8px;
}

.intelligence-content p {
    font-size: 20px;
    line-height: 27px;
    color: #707070;
    margin-bottom: 24px;

}

.intelligence-content strong {
    font-weight: 700;
}


.works-section {
    background: #003258;
    padding: 120px 0;
    color: #fff;
}

/* LEFT */
.works-title {
    font-size: 54px;
    line-height: 72px;
    font-weight: 400;
    margin-bottom: 30px;
}

.works-note {
    font-size: 24px;
    /* opacity: 0.8; */
    margin-bottom: 20px;
}

.works-desc {
    font-size: 20px;
    line-height: 28px;
    /* max-width: 520px; */
}

/* RIGHT TABLE */
.works-table {
    border: 1px solid #6e8fb0;
}

.works-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    border-bottom: 1px solid #6e8fb0;
}

.works-row:last-child {
    border-bottom: none;
}

.works-row div {
    padding: 12px 22px;
    font-size: 18px;
    line-height: 26px;
}

.works-head {
    background: #fff;
    color: #003258;
    font-weight: 700;
}
.efficiency-section {
    background: rgba(185,185,185,0.1);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .works-title {
        font-size: 40px;
        line-height: 52px;
    }

    .works-row {
        grid-template-columns: 1fr;
    }

 
}

@media (max-width: 575px) {
    .works-section {
        padding: 80px 0;
    }

    .works-title {
        font-size: 32px;
        line-height: 42px;
    }
}


.efficiency-section {
    padding: 100px 0;
}

.efficiency-title {
    font-size: 65px;
    line-height: 86px;
    color: #707070;
    margin-bottom: 60px;
}
.efficiency-right {
    margin-top: 30px;
}
.efficiency-left {
    padding-right: 30px;
}
/* bar */
.impact-bar {
    background: #003a66;
    color: #fff;
    padding: 10px 30px;
    font-size: 35px;
    line-height: 47px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* stats */
.impact-stats {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.impact-item h3 {
    font-size: 35px;
    line-height: 47px;
    font-weight: 700;
    color: #003258;
}

.impact-item h5 {
    font-size: 20px;
    margin: 10px 0;
    font-weight: 700;
    color: #003258;
}

.impact-item p {
    font-size: 20px;
    line-height: 35px;
    color: #707070;

}

/* orange dividers */
.impact-divider {
    width: 3px;
    background: #E1640D;
    height: 189px;
}

/* right tier box */
.tier-box {
    border: 1px solid #003a66;
}

.tier-header {
    background: #003258;
    color: #fff;
    padding: 10px 40px 10px 20px;
    font-size: 35px;
    font-weight: 700;
}

.tier-content {
    padding: 25px;
}

.tier-content h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: #003258;
    font-weight: 700;
}

.tier-content p {
    font-size: 20px;
    line-height: 35px;
    margin-bottom: 20px; color: #707070;
}

.tier-line {
    height: 3px;
    background: #E1640D;
    margin: 25px 0;
}

.tier-content .tier-line:last-child{
    display:none;
}

.pricing-section {
    padding: 0 0 120px;
    background: rgba(185,185,185,0.1);
}

.price-card {
    position: relative;
    border: 1px solid #ccc;
    padding: 50px 40px;
    height: 100%;
    transition: .4s ease;
    background: #fff;
    z-index: 9;
}

/* pill */
.plan-pill {
    border: 1px solid #999;
    padding: 10px 28px;
    border-radius: 40px;
    display: inline-block;
    margin-bottom: 40px;
    font-size: 15px;
}

/* list */
.price-card h3 {
    font-size: 22px;
    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;
    padding: 0;
}

.price-card ul li {
    margin-bottom: 14px;
    position: relative;
    padding-left: 24px;
}
/* orange square */
.price-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 13px;
    height: 13px;
    background: #E1640D;
    border-radius: 3px;
}

/* white check */
.price-card ul li::after {
    content: "✓";
    position: absolute;
    left: 2px;
    top: 1px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

/* button */
.price-btn {
    display: block;
    margin-top: 40px;
    background: #003a66;
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}


.newsletter-section.smart-office .submit-btn-div a {
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    text-decoration: none;
}
/* HOVER STATE (THE BLUE CARD) */
.price-card:hover {
    background: #003a66;
    color: #fff;
    border-color: #003a66;
    transform: translateY(-12px);
}

.price-card:hover h3,
.price-card:hover li {
    color: #fff;
}

.price-card:hover .plan-pill {
    background: #fff;
    color: #003a66;
    border-color: #fff;
}

.price-card:hover .price-btn {
    background: #fff;
    color: #003a66;
}

.price-card:hover:after {
    opacity: 1;
}


.corner-ribbon {
    position: absolute;
    top: 40px;
    right: -31px;
    width: 106px;
    height: 89px;
    background: #ff6a00;
    opacity: 0;
    transition: .3s;
    z-index: 10;
}

/* the folded tail */
.corner-ribbon::after {
    content: "";
    position: absolute;
    bottom: -64px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 30px solid #c95500;
    border-bottom: 64px solid transparent;
    z-index: 10;
}

/* show only on hover */
.price-card:hover .corner-ribbon {
    opacity: 1;
}


@media (max-width: 991px) {
    .price-card {
        margin-bottom: 30px;
    }
}


.newsletter-section.smart-office .submit-btn-div a{
    color: #fff;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    text-decoration: none;

}








/* contat page start  */

.contact-info-section {
    padding: 80px 0;
    background: #fff;
}

.contact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: #e66a0a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    color: #fff;
    font-size: 28px;
}

.contact-text h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
}

.contact-text p {
    font-size: 16px;
    margin: 0;
    line-height: 22px;
}


.map-section {
    width: 100%;
    height: 306px;
    overflow: hidden;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: #000;
}
.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(5%) contrast(1.05);
    min-height: 300px;
}
.sj-form .form-control {
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    color: #fff;
    padding: 10px 0;
    font-size: 16px;
}

.sj-form .form-control:focus {
    border-color: #ff7a00;
    box-shadow: none;
}

.sj-submit {
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 14px;
}

.sj-submit:hover {
    color: #ff7a00;
}
.contact-form-section {
    /* background: #00335c; */
    padding: 100px 0 50px;
    color: #fff;
}

.sj-form {
    position: relative;
    background: #003258;
    padding: 38px 34px;
}

.form-row {
    margin-bottom: 50px;
}

.form-row.full {
    width: 100%;
}

.form-row.half {
    display: flex;
    gap: 50px;
}

.form-row.half > div {
    width: 50%;
}

.sj-form label {
    font-size: 15px;
    margin-bottom: 0;
    display: block;
}

.sj-form input,
.sj-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255,255,255,0.8);
    padding: 0;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.sj-form textarea {
    resize: none;
}

.sj-form input::placeholder,
.sj-form textarea::placeholder {
    color: rgba(255,255,255,0.6);
}

.sj-form input:focus,
.sj-form textarea:focus {
    border-color: #ff7a00;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.form-note {
    font-size: 14px;
    /* opacity: 0.8; */
    /* max-width: 600px; */
    color: #000000;
    width: 60%;
}

.sj-submit {
    background: none;
    border: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 40%;
    text-align: right;
}

.sj-submit span {
    color: #ff7a00;
    font-size: 18px;
}
.sj-submit{
    color: #003258;
}
.page-template-contact-us .newsletter-section .newsletter-image{
    background: url(../images/contact-people.png) center center / cover no-repeat;
    background-position: left -60px center;
}
.page-template-contact-us .corner-ribbon{
    opacity: 1;
}

.page-template-contact-us .corner-ribbon::after{
    right: 1px;
}
.impact-section .impact-stats{
    gap: 0;
}
.impact-stats .impact-divider:last-child{
    display: none;
}
.tier-content .tier-p-last{
    margin-bottom: 0;
}
.page-id-11 .newsletter-section{
    
    padding: 0 0 100px;
}
.page-id-11 .newsletter-image{
    background-position: left -45px center; 
}
.mobile-menu-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #003258;
    padding: 15px;
    border-radius: 50%;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
}
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    z-index: 999;
}

/* MOBILE MENU BASE */
.mobile-menu {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: calc(100% - 78px);
    background: #fff;
    z-index: 1000;
    transition: left 0.35s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

/* HEADER */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #eee;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
}

/* NAV */
.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > li {
    border-bottom: 1px solid #f1f1f1;
}

/* MENU LINK ROW */
.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 500;
}

.menu-link span{
    color: #707070;   
}
.mobile-menu .sub-menu {
    display: none;
    padding-left: 16px;
}

/* Arrow base state (CLOSED – pointing down) */
.mobile-menu .has-submenu.active .arrow::before {
    transform: rotate(-135deg);
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}



.mobile-menu-toggle .icon-close {
    display: none;
}

.mobile-menu-toggle.active .icon-open {
    display: none;
}

.mobile-menu-toggle.active .icon-close {
    display: inline-block;
    color: #fff;
    height: 18px;
}
.site-header {
    position: relative;
    width: 100%;
    transition: all 0.3s ease;
    z-index: 1001;
}

.global-search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.global-search-overlay.active {
    display: flex;
}

.search-box {
    background: #fff;
    width: 90%;
    max-width: 600px;
    padding: 30px;
    position: relative;
    border-radius: 6px;
}

.search-box input {
    width: 100%;
    font-size: 20px;
    padding: 14px;
    border: 1px solid #ddd;
    outline: none;
}

.search-close {
    position: absolute;
    top: -7px;
    right: 3px;

    font-size: 26px;
    background: none;
    border: none;
    cursor: pointer;
}

.page-template-contact-us .contact-text{
    text-align: left;
}

/* ≥1680px */
@media (min-width: 1680px) {
    .navbar-nav .nav-link { font-size: 16px; }
}

/* ≤1440px */
@media (max-width: 1440px) {
    .navbar-nav .nav-link { padding: 0 14px; }
    .intelligence-title, .journey-title {
        font-size: 46px;
    }
    .journey-section {
        padding: 80px 0 50px;
    }
    .stats-left {
        padding: 80px 80px 80px 60px;
    }
    .intelligence-content p {
        font-size: 18px;
        line-height: 25px;
    }
    .works-title {
        font-size: 46px;
        line-height: 64px;
    }
    .works-section {
        padding: 100px 0;
    }
    .works-note {
        font-size: 22px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
    .efficiency-title {
        font-size: 46px;
        line-height: 60px;
    }
    .efficiency-section {
        padding: 100px 0;
    }
    .tier-header {
        font-size: 28px;
    }
    .impact-bar {

        font-size: 28px;
        line-height: 40px;
    }
    .impact-item h3 {
        font-size: 30px;
        line-height: 40px;
    }
    .impact-item p {
        font-size: 18px;
        line-height: 30px
    }
   .page-template-application-digitization .hero-cta,
   .page-template-Intelligent-Knowledge-Management .hero-cta {
        font-size: 12px;
    }
    .stats-section.smart-office .stats-right {
        background-position: left -54px center;
    }
}

/* ≤1366px */
@media (max-width:1400px){
    .stats-left,
    .newsletter-content {
        padding-left: calc((100vw - 1120px) / 2) !important;
    }
}
@media (max-width: 1366px) {
    .navbar-brand img { height: 38px; }
    .hero-section.contact-us {
        padding: 100px 0;
    }

}

/* ≤1199px */
@media (max-width: 1199px) {
    .navbar-nav .nav-link { padding: 0 10px; }
    .hero-left h1,
    .hero-section h1 {
        font-size: 40px;
        line-height: 55px;
        margin-bottom: 60px;
    }
    .hero-right {
        margin-top: 60px;
    }
    .stats-wrapper {
                grid-template-columns: 48% 52%;
    }
    .stats-right {
        background-position: left -66px center;
    }
    .stat h3 {
        font-size: 25px;
    }
    .enterprise-section ,
    .solutions-section,
    .usecase-section,
    .blog-section,
    .newsletter-section{
        padding: 80px 0;
    }
    .knownfrom-section {
        padding: 80px 0 60px;
    }
    .enterprise-left h2, .usecase-title, .knownfrom-title, .blog-title, .listen-title, .impact-left h2, .newsletter-content h2, .faq-left h2 {
        font-size: 35px;
        line-height: 46px;
    }
    .enterprise-desc {
        font-size: 18px;
        line-height: 25px;
    }
    .listen-desc, .listen-small-desc {
        font-size: 18px;
        line-height: 30px;
    }
    .impact-stats p {
        font-size: 16px;
        line-height: 20px;
    }
    .newsletter-content {
        padding: 60px;
    }
    .newsletter-content {
        padding: 50px 60px;
    }
    .footer-menu{
        width: 65%;
    }
    .footer-contact-box {
        top: -133px;
        right: 43px;
    }
    .footer-main {
        padding: 70px 0 70px;
    }
   .page-template-smart-office .stats-section.smart-office .stats-right {
        background-position: left -68px center;
    }
    .intelligence-title, .journey-title {
        font-size: 40px;
    }
    .intelligence-content p {
        font-size: 16px;
        line-height: 22px;
    }
    .works-title {
        font-size: 40px;
        line-height: 56px;
    }
    .works-section, 
    .efficiency-section{
        
        padding: 80px 0;
    }
    .efficiency-title {
        font-size: 40px;
        line-height: 53px;
        margin-bottom: 40px;
    }
    .tier-header {
        font-size: 25px;
    }
    .impact-bar {
        font-size: 25px;
        line-height: 40px;
    }
    .newsletter-section.smart-office .submit-btn-div a{
        font-size: 13px;
    }
    .page-template-smart-office .newsletter-image {
        background-position: left -37px center;
    }
    .page-template-application-digitization .hero-right .cta-div,
    .page-template-Intelligent-Knowledge-Management .hero-right .cta-div {
        display: flex;
        flex-direction: column;
        width: 75%;
    }
    .hero-section.contact-us {
        padding: 80px 0;
    }
    .hero-section.contact-us .hero-right {
        margin-top: 60px;
    }
    .nav-link {
        font-size: 12px;
    }
    .stats-left,
    .newsletter-content {
        padding-left: calc((100vw - 920px) / 2) !important;
    }

}

/* ≤991px */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 20px;
    }

    .header-actions {
            margin-top: 30px;
            margin-left: 20px;
    }

    .mobile-menu .has-submenu.active > .sub-menu  {
        display: block;
        position: relative;
        color: initial;
        background: transparent;
        box-shadow: none;

        
    }
 
    .mobile-menu .has-submenu.active .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .mobile-menu  .has-submenu.active .arrow::before {
        transform: rotate(-135deg);
    }  .hero-grid {
        grid-template-columns: 1fr;
        margin-bottom: 50px;
    }
    .hero-left h1,
    .hero-section h1 {
        font-size: 35px;
        line-height: 50px;
        margin-bottom: 0;
    }
    .hero-right{
        margin-top: 30px;
        margin-left: 60px;
    }
    .stats-wrapper {
        grid-template-columns: 1fr;
    }
    .stats-right{
        background-size: cover;
        background-position: right -150px;
    }
    .stats-left {
        padding: 45px 45px;
    }
    .enterprise-left h2, .usecase-title, .knownfrom-title, .blog-title, .listen-title, .impact-left h2, .newsletter-content h2, .faq-left h2 {
        font-size: 30px;
        line-height: 42px;
    }
    .enterprise-section, .solutions-section, .usecase-section, .blog-section, .newsletter-section {
        padding: 60px 0;
    }
    .enterprise-desc {
        font-size: 17px;
        line-height: 24px;
    }
    .enterprise-left {
        margin-bottom: 30px;
    }
    .solution-content h3 {
        font-size: 20px;
    }
    .solution-desc {
        font-size: 14px;
        line-height: 22px;
    }
    .solution-sub {
        font-size: 16px;
    }
    .listen-desc {
        margin-bottom: 0;
        
    }
    .audio-card-wrapper {
        margin-top: 45px;
    }
    .listen-section {
        padding: 60px 0 70px;
    }
    .listen-small-title{
        margin:0 0 10px;
    }
    .audio-card {
        width: 640px;
    }
    .impact-section {
        padding: 60px 0;
    }
    .impact-left {
        margin-bottom: 25px;
    }
    .newsletter-content {
        padding: 40px 35px;
    }
    .faq-header {
        font-size: 20px;
    }
    .faq-item .faq-body p{
        font-size: 16px;
    }
    .faq-left {
        margin-bottom: 30px;
    }
    .footer-desc{
        margin-top: 40px;
    }
    .footer-security {
        margin-top: 20px;
    }
    .footer-menu {
        width: 100%;
    }
    .footer-legal {
        margin-top: 25px;
        text-align: center;
    }
    .newsletter-image {
        background-position: left -105px center;
        background-size: 1100px;
        min-height: 450px;
    }
    .hero-section.smart-office .hero-right {
        margin-top: 30px;
    }
    .page-template-smart-office .stats-section.smart-office .stats-right {
        background-position: left -67px;
    }
    .journey-section {
        padding: 60px 0 50px;
    }
    .intelligence-title, .journey-title {
        font-size: 35px;
    }
    .intelligence-section {
        padding: 60px 0;
    }
    .intelligence-content{
       margin-top: 20px;
    }
    .works-title {
        font-size: 35px;
        line-height: 50px;
    }
    .works-section, .efficiency-section {
        padding: 60px 0;
    }
    .works-note {
        font-size: 18px;
    }
    .works-desc {
        font-size: 17px;
        line-height: 26px;
    }
    .efficiency-title {
        font-size: 35px;
        line-height: 46px;
    }
    .impact-bar {
        font-size: 22px;
        line-height: 36px;
        padding: 10px 20px;
    }
    .impact-divider {

        height: 150px;
    }
    .tier-header {
        font-size: 22px;
    }
    .tier-content {
        padding: 20px;
    }
    .pricing-section .col-lg-4{
        margin-bottom: 30px;
    }
    .pricing-section {
        padding: 0 0 60px;
    }
    .page-template-smart-office .newsletter-image {
        background-position: left -107px center;
    }
    .intelligence-content p {
        font-size: 18px;
        line-height: 22px;
    }
    .intelligence-title{
        margin-bottom: 20px;
    }
    .hero-section.contact-us {
        padding: 60px 0;
    }
    .hero-section.contact-us .hero-right {
        margin-top: 30px;
    }
    .hero-section.contact-us .hero-right p{
        margin-bottom: 0;
    }
    .hero-section.contact-us .hero-grid{
        margin-bottom: 20px;
    }
    .contact-icon {
        width: 55px;
        height: 55px;
    }
    .contact-box {
        justify-content: flex-start;
    }
    .contact-info-section {
        padding: 60px 0;
    }
    .contact-text h4 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    .contact-form-section {
        padding: 100px 0 20px;
    }
    .page-template-contact-us .newsletter-section .newsletter-image {
        background: url(../images/contact-people.png) center center / cover no-repeat;
        background-position: left -86px center;

    }

    .journey-slider {
        flex-direction: column;
        gap: 30px;
        overflow: visible;
    }

    .journey-card,
    .journey-card.active {
        width: 100% !important;
        height: auto;
        transform: none;
    }

    .journey-card::before {
        display: none;
    }

    .journey-card img {
        height: 300px;
    }

    .journey-content {
        position: relative;
        background: #000;
        padding: 20px;
        border-radius: 0;
    }

    .journey-card p {
        display: block;
    }

    .journey-slider:hover .journey-card,
    .journey-card:hover {
        width: 100% !important;
    }
    .nav-link {
        font-size: 16px;
    }
    .stats-left ,
    .newsletter-content{
        padding-left: calc((100vw - 700px) / 2) !important;
    }
}

/* ≤767px */
@media (max-width: 767px) {
    .navbar {
        padding: 12px 0;
    }

    .header-actions {
        justify-content: center;
    }
    .hero-section {
        padding: 50px 0 0px;
    }   
     .hero-left h1,
     .hero-section h1 {
        font-size: 32px;
        line-height: 42px;
     }
     .stats-right {
        background-position: right -52px;
    }
    .stats-text h2 {
        font-size: 25px;
        line-height: 37px;
    }
    .stats-cta {
        font-size: 12px;
    }
    .enterprise-section, .solutions-section, .usecase-section, .blog-section, .newsletter-section,.impact-section {
        padding: 40px 20px;
    }
    .knownfrom-section {
        padding: 50px 0 50px;
    }
    .blog-title {
        margin-bottom: 35px;
    }
    .blog-card{
        margin-bottom: 15px;
    }
    .blog-overlay h3 {
        font-size: 18px;
    }
    .audio-image img {
        width: 200px;
    }
    .listen-section {
        padding: 40px 0 70px;
    }
    .listen-title{
        margin-bottom: 20px;
    }
    .listen-desc, .listen-small-desc {
        font-size: 16px;
        line-height: 28px;
    }
    .listen-cta-col {
        padding-left: 10px;
        margin-top: 35px;
    }
    .audio-card {
        padding: 25px;
    }
    .footer-contact-box {
     
        padding: 25px 24px 25px 24px;
        min-width: 280px;
    }
    .footer-contact-box {
        top: -164px;
    }
    .footer-main {
        padding: 100px 0 70px;
    }
    .footer-logo img{
        max-width: 240px;
    }
    .footer-desc {
        margin-top: 30px;
    }
    .newsletter-image {
        background-position: left -81px center;
        background-size: 849px;
        min-height: 340px;
    }
    .faq-section {
        padding: 0px 20px 110px;
    }
    .footer-left{
        padding: 0 20px;
    }
    .journey-section {
        padding: 40px 0 50px;
    }
    .intelligence-title, .journey-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    .works-title {
        font-size: 30px;
        line-height: 42px;
    }
    .works-section, .efficiency-section {
        padding: 40px 0;
    }.newsletter-section{
        padding: 40px 0;
    }
    .journey-slider:hover .journey-card {
        width: 170px;
    }
    .journey-card:hover,
    .journey-card.active {
        width: 600px !important;
    }
    .page-template-application-digitization .hero-right .cta-div,
    .page-template-Intelligent-Knowledge-Management .hero-right .cta-div {
        width: 60%;
    }
    .page-template-application-digitization .impact-stats,
    .page-template-Intelligent-Knowledge-Management .impact-stats{
        flex-wrap: wrap;
        gap: 10px;
    }
    .page-template-application-digitization .impact-stats .impact-item,
    .page-template-Intelligent-Knowledge-Management .impact-stats .impact-item {
        width: 100%;
    }
    .page-template-application-digitization .impact-divider,
    .page-template-Intelligent-Knowledge-Management .impact-divider{
        width: 100%;
        height: 3px;
        margin: 10px 0;
    }
    .page-template-application-digitization .impact-stats .impact-item p,
    .page-template-Intelligent-Knowledge-Management .impact-stats .impact-item p{
        margin-bottom: 0;
    }
    .page-template-application-digitization .efficiency-section   .cta-div,
    .page-template-Intelligent-Knowledge-Management .efficiency-section   .cta-div {
margin-top: 30px;;
    }
    .mobile-menu {
        top: 72px;
    }
    .sub-menu li a {
        padding: 6px 20px;
    }
    .form-footer{
        flex-wrap: wrap;
    }
    .form-note,.sj-submit{
        width: 100%;
    }
    .form-row.half{
        flex-wrap: wrap;
    }
    .form-row.half > div{
        width: 100%;
    }
    .page-template-contact-us .corner-ribbon{
        top: -11px;
    }
    .sj-form {
        padding: 50px 34px 30px;
    }

    .journey-section {
        padding: 60px 0;
    }

    .journey-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .journey-card img {
        height: 220px;
    }

    .journey-content h3 {
        font-size: 18px;
    }

    .journey-content p {
        font-size: 14px;
    }
    .stats-left,
    .newsletter-content {
        padding-left: calc((100vw - 520px) / 2) !important;
    }
}

/* ≤575px */
@media (max-width: 575px) {
    .navbar-brand img {
        height: 32px;
    }

    .hero-left h1,
    .hero-section h1 {
        font-size: 28px;
        line-height: 40px;
        margin-left: 48px;
    }
    .hero-icon img {
        max-width: 100px;
    }    .hero-right {
        margin-top: 25px;
        margin-left: 48px;
    }
    .hero-right p {
        font-size: 16px;
        line-height: 23px;
    }
    .stats-grid {
        margin-bottom: 25px;
    }
    .enterprise-section, .solutions-section, .usecase-section, .blog-section, .newsletter-section {
        padding: 40px 20px;
    }
    .stats-left {
        padding: 40px 25px;
    }  
      .enterprise-left h2, .usecase-title, .knownfrom-title, .blog-title, .listen-title, .impact-left h2, .newsletter-content h2, .faq-left h2 {
        font-size: 26px;
        line-height: 36px;
    }
    .enterprise-desc {
        font-size: 16px;
        line-height: 23px;
    }
    .enterprise-points p {
        font-size: 16px;
    }
    .usecase-header h4 {
        font-size: 20px;
        line-height: 30px;
    }
    .usecase-body p {
        font-size: 14px;
        line-height: 19px;
    }
    .usecase-item .fa-arrow-up-right-from-square::before, .usecase-item .fa-arrow-down::before {
        width: 15px;
        height: 15px;
    }
    .knownfrom-slider .slick-dots {
        gap: 8px;
        margin-top: 29px;
        padding-right: 0px;
    }
    .knownfrom-slider img {
        max-height: 50px;
        max-width: 104px;
    }
    .blog-link {
        font-size: 12px;
    }
    .audio-card{
        flex-wrap: wrap;
        width: 300px;

    }
    .audio-image img {
        width: 100%;
    }
    .faq-header {
        font-size: 18px;
    }
    .footer-menu a {
        margin-right: 10px;
        font-size: 15px;
        margin-left: 10px;
    }
    .footer-desc, .footer-security p {
        font-size: 14px;
        line-height: 20px;
    }
    .footer-main {
        padding: 110px 0 40px;
    }
    .footer-legal {
        margin-top: 10px;
    }
    .sub-menu li a {
        padding: 6px 20px
    }
    .newsletter-image {
        background-position: left -65px center;
        background-size: 656px;
        min-height: 328px;
    }
    .newsletter-section{
        padding: 40px 0;
    }
    .newsletter-content p {
        font-size: 16px;
        line-height: 23px;
    }
    .newsletter-form input {
        padding: 10px 10px;
        margin-bottom: 10px;
    }
    .intelligence-title, .journey-title {
        font-size: 25px;
        margin-bottom: 35px;
    }
    .works-title {
        font-size: 25px;
        line-height: 35px;
    }
    .works-row div {
        padding: 12px 10px;
        font-size: 16px;
        line-height: 24px;
    }
    .works-note {
        font-size: 16px;
    }
    .works-desc {
        font-size: 15px;
        line-height: 24px;
    }
    .efficiency-title {
        font-size: 30px;
        line-height: 40px
    }
    .impact-stats {
        gap: 20px;
        flex-wrap: wrap;
    }
    .impact-stats .impact-item{
        width: 100%;
    }
    .impact-divider{
        width: 100%;
        height: 3px;
    }
    .tier-header {
        font-size: 18px;
    }
    .works-section, .efficiency-section {
        padding: 40px 20px;
    }
    .pricing-section {
        padding: 0 20px 40px;
    }
    .newsletter-section.smart-office .submit-btn-div a {
        font-size: 11px;
    }
    .page-template-application-digitization .hero-right .cta-div,
    .page-template-Intelligent-Knowledge-Management .hero-right .cta-div {
        width: 100%;
    }
    .mobile-menu {
        top: 67px;
    }
    .stats-left,
    .newsletter-content {
        padding-left: 25px;
    }
}