/********** Template CSS **********/
:root {
    --primary: #FF8901;
    --secondary: #3B3B3B;
    --light: #F4F7FE;
    --dark: #242424;
}

@font-face {
    font-family: 'GeneralSans-Variable';
    src: url('../fonts/GeneralSans-Variable.woff2') format('woff2'),
        url('../fonts/GeneralSans-Variable.woff') format('woff'),
        url('../fonts/GeneralSans-Variable.ttf') format('truetype');
    font-weight: 200 700;
    font-display: swap;
    font-style: normal;
}

.bg-dark {
    background-color: #242424 !important;
}

body {
    font-family: 'GeneralSans-Variable';
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
    font-size: 16px;
    color: #3B3B3B;
    font-weight: 500;
    line-height: 1.7
}

.body-pl-pr {
    padding-left: 45px;
    padding-right: 45px;
}

.top-bottom-space {
    padding-top: 100px;
    padding-bottom: 100px;
}

.text-primary {
    color: #FF8901 !important;
}

.text-secondary {
    color: #3B3B3B !important;
}

.btn {
    font-family: 'GeneralSans-Variable';
}

.btn-primary {
    color: #fff;
    border-radius: 10px;
    background: #FF8901;
    border-color: #FF8901;
    padding: 11px 56px;
    font-size: 16px;
    font-weight: 700 !important;
    line-height: normal;
}

.btn-primary:hover {
    color: #fff;
    background-color: transparent;
    border-color: #FF8901;
}

.btn-inner {
    display: inline-flex;
    height: 55px;
    padding: 11px 26px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #FF8901;
    color: #FFF;
    font-size: 22px;
    font-weight: 700 !important;
    line-height: normal;
}

.btn-inner:hover,
.btn-inner.active {
    border-radius: 10px;
    color: #FFF;
    background: #B96107;
}

.btn-check:checked+.btn-primary,
.btn-check:active+.btn-primary,
.btn-primary:active,
.btn-primary.active,
.show>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: transparent;
    border-color: #FF8901;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
    color: #fff;
    background-color: transparent;
    border-color: #FF8901;
    box-shadow: 0 0 0 .25rem rgba(255, 137, 1, .5);
}

.btn-check:focus+.btn,
.btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 137, 1, .5);
}

.bg-light {
    background-color: #F5F5F5 !important;
}

.navbar-toggler-icon {
    width: 1.0em;
    height: 1.0em;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link:focus {
    color: rgba(232, 117, 0, .7);
}

.navbar-toggler {
    padding: .25rem .55rem;
    border-radius: 5px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 .10rem;
}

/* Hamburger icon */
.hamburger {
    top: 20px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #333;
    margin: 6px 0;
    transition: 0.4s;
}

.navbar-dark .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    margin: 6px 0;
    transition: 0.4s;
}

/* Change to X when active */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


/* Side menu */
.side-menu {
    position: fixed;
    top: 75px;
    right: -250px;
    width: 180px;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 1px 8px 0 rgba(125, 138, 152, 0.35);
    border-radius: 0px;
    transition: right 0.4s ease;
    z-index: 1000;
}

.side-menu.active {
    right: 55px;
}

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

.side-menu ul li {
    padding: .55rem .85rem;
    border-bottom: 1px solid #dadada;
}

.side-menu ul li:hover,
.side-menu ul li:focus {
    color: #1e2125;
    background-color: #e9ecef;
}

.side-menu ul li a {
    color: #4A4A4A;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: block;
    transition: 0.3s;
}

.side-menu ul li a:hover {
    color: #1e2125;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 15px;
    bottom: 40px;
    z-index: 999;
    background: #EE9200;
    border-color: #EE9200;
    font-size: 12px;
    color: #fff;
}

.back-to-top:hover {
    color: #fff;
}

.dropdown-item {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.dropdown-item.active,
.dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #FF8901 !important;
}


/*** Heading ***/
h1,
h2,
h3,
.fw-bold {
    font-family: "Syne", sans-serif;
    font-weight: 700 !important;
}

h4,
h5,
h6,
.fw-medium {
    font-family: "Syne", sans-serif;
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn-square {
    width: 20px;
    height: 20px;
    background: #FF8901;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
    font-size: 12px;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

.inner-sticky-top.bg-white {
    background-color: #000 !important;
}

.navbar {
    padding: 11px 0 !important;
    height: 110px;
}

.navbar-brand a:focus {
    outline: 0;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .9);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .9);
}

.navbar .navbar-nav .nav-link {
    margin-right: 48px;
    padding: 0;
    outline: none;
    font-size: 16px;
    font-weight: 600;
    font-family: 'GeneralSans-Variable';
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #EE9200 !important
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    font-size: 11px;
    display: none;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        padding: 0 15px;
        background: #0e121b;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        padding: .8rem 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        box-shadow: 0 1px 8px 0 rgba(125, 138, 152, 0.35);
        border-radius: 10px;
    }

    .dropdown-item {
        padding: .55rem .85rem;
    }

    .navbar .nav-item .dropdown-menu a {
        font-size: 14px;
    }

    .dropdown-item:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .dropdown-item:last-child {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
        padding-top: 0;
        padding-bottom: 0;
    }
}


/*** Hero Header ***/
.hero-header {
    margin-top: -110px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.hero-header h1 {
    color: #000;
    font-size: 55px;
    font-weight: 700;
    line-height: 74px;
}

.hero-header h1 span {
    color: #F28F00;
}

.hero-header p {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
}

.banner-line {
    position: relative;
    padding-left: 40px;
    margin-bottom: 60px;
}

.banner-line::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 198px;
    background-image: url('../images/banner-line.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.publishing-banner {
    margin-top: -110px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.services-banner {
    margin-top: -110px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F7F7F7;
}

.all-inner-title h2 {
    color: #3B3B3B;
    font-size: 36px;
    font-weight: 700;
    line-height: normal;
}

.all-inner-title h2 span {
    color: #FF8901;
}

.hexa-svg-shape {
    position: absolute;
    top: 0px;
    right: 15px;
    width: 256px;
    height: auto;
    pointer-events: none;
}

.hexa-svg-shape-down {
    position: relative;
    bottom: 0px;
    right: 0px;
    text-align: end;
}

/*** Scroll Title ***/

/* --- tuning --- */
:root {
    --pinTop: 112px;
}

/* wrapper provides scrolling room */
.scroll-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    /* will be set by JS */
}

/* PIN the whole 2-col section below the header */
.scroll-section {
    position: sticky;
    top: var(--pinTop);
    height: calc(100vh - var(--pinTop));
    /* fixed viewport canvas */
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    overflow: hidden;
    /* we translate inside */
}

/* Left column (unchanged styling from your code) */
.scroll-section .left {
    background: #242424;
    padding: clamp(20px, 4vw, 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-bottom: 0;
    padding-left: 55px;
}

.scroll-section .left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 133px;
    height: 17px;
    background: #e77e07;
}

.scroll-left-menu {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.scroll-left-menu .menu-item {
    padding: 60px 0;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    background: transparent;
    text-align: left;
}

.scroll-left-menu .menu-item h3 {
    color: #6E6E6E;
    font-size: 22px;
    font-weight: 700;
}

.scroll-left-menu .menu-item h3:hover {
    color: #FFF;
}

.scroll-left-menu .menu-item.active h3 {
    color: #FFF;
}

.scroll-left-menu .menu-item.active h3 span {
    color: #FF8901;
}

/* Right side viewport (fixed height = pinned canvas) */
.scroll-section .right {
    position: relative;
    height: 100%;
    overflow: hidden;
}

/* Track that we translate; stacks panels naturally */
.right-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: block;
    will-change: transform;
}

/* Panels take natural height so nothing gets cropped */
.panel {
    display: block;
    box-sizing: border-box;
    padding: 20px 55px 0 20px;
    height: auto;
    min-height: 100%;
    padding-top: 0;
}

/* Dots (inside .right so they stay pinned with the section) */
.dots {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2;
    pointer-events: auto;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cfd4da;
    cursor: pointer;
}

.dot.active {
    background: #FF8901;
}

.case-title {
    position: absolute;
    top: 30px;
    left: 20px;
    z-index: 999;
}

.case-side-content h3 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 26px;
    font-weight: 700 !important;
    line-height: normal;
}

.case-side-content h5 {
    color: #FF8601;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-weight: 700 !important;
    line-height: normal;
    text-transform: uppercase;
}

.case-side-content p {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.read-btn span {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.read-btn span i {
    justify-content: start;
    font-size: 14px;
    font-weight: 900;
}

.case-side-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 75px;
    height: 9px;
    background: #e77e07;
    z-index: 9;
}

.case-side-content h4 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-weight: 700 !important;
    line-height: normal;
}

/* Video */
.video {
    position: relative;
    z-index: 99;
}

.video-container {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .scroll-section {
        position: relative;
        height: auto;
        display: block;
    }

    .scroll-section .left {
        position: sticky;
        top: 0;
        z-index: 3;
    }

    .scroll-section .right {
        overflow: visible;
    }

    .right-track {
        position: relative;
        transform: none !important;
    }

    .panel {
        min-height: 80vh;
    }

    .dots {
        position: sticky;
        right: auto;
        left: 50%;
        bottom: 10px;
        top: auto;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .scroll-left-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }
}

/*** About ***/
.about-img {
    position: relative;
    overflow: hidden;
}

.about-img::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(../images/bg-about-img.png) top left no-repeat;
    background-size: contain;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: #FFFFFF;
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 90px;
    height: 90px;
    color: var(--primary);
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-icon {
    background: #FFFFFF;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: relative;
    display: flex;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.service-item:hover a.btn {
    color: var(--primary);
}

.service-item a.btn::before {
    position: absolute;
    content: "";
    width: 35px;
    height: 35px;
    top: 0;
    left: 0;
    border-radius: 35px;
    background: var(--light);
    transition: .5s;
    z-index: -1;
}

.service-item:hover a.btn::before {
    width: 100%;
    background: var(--light);
}


/*** Feature ***/
.feature {
    background: url(../images/bg-hero.png) center center no-repeat;
    background-size: cover;
}


/*** Newsletter ***/
.newsletter {
    background: url(../images/bg-hero.png) center center no-repeat;
    background-size: cover;
}

@media (min-width: 992px) {
    .newsletter .container {
        max-width: 100% !important;
    }

    .newsletter .newsletter-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .newsletter .newsletter-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Case Study ***/
.case-item img {
    transition: .5s;
    width: 100%;
}

.case-item:hover img {
    transform: scale(1.2);
}
.read-btn span img{
    width: 16px;
    height: 16px;
}
.case-item:hover span img{
    transform: none;
}
.case-overlay {
    position: absolute;
    padding: 20px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    /*background: linear-gradient(rgba(20, 24, 62, 0), var(--dark));*/
    z-index: 1;
}

.case-overlay small {
    display: inline-block;
    padding: 3px 15px;
    color: #FFFFFF;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
}

.case-overlay span.btn:hover {
    color: var(--primary);
    background: #FFFFFF;
    border-color: #FFFFFF;
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
}

.accordion .accordion-button {
    background: #242424;
    color: #ffffff;
    border-radius: 2px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion .accordion-button::after {
    flex-shrink: 0;
    font-size: 12px;
    font-weight: 900;
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    color: #ffffff;
    background-image: none;
    background-repeat: no-repeat;
    transition: transform .2s ease-in-out;
    transform: rotate(-180deg);
    line-height: 20px;
}

.accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    color: #ffffff;
    font-weight: 900;

}

.accordion .accordion-body {
    padding: 15px 0 0 0;
}


/*** Testimonial ***/
.testimonial-carousel {
    position: relative;
}

.testimonial-item p {
    color: #414141;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.testimonial-item h5 {
    color: #414141;
    font-size: 22px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 24px;
    font-family: 'GeneralSans-Variable';
}

.testimonial-item span {
    color: #414141;
    font-size: 14px;
    font-family: 'GeneralSans-Variable';
    font-weight: 700;
    line-height: 28px;
}

.avatar {
    width: 200px;
    height: 200px;
}

.avatar img {
    border: 5px solid #fff;
}

.border-top {
    border-top: 2px solid #ff9c00 !important;
}

.border-right {
    border-right: 2px solid #ff9c00 !important;
}

.border-bottom {
    border-bottom: 2px solid #ff9c00 !important;
}

.quote-line {
    position: relative;
    width: 68%;
    top: -44px;
    margin-left: auto;

}

.quote-line i {
    font-size: 80px;
}

.border-line {
    position: relative;
}

.border-line::before {
    content: "";
    width: 59%;
    height: 2px;
    background: #ff9c00;
    position: absolute;
    top: 0;
    right: 0;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 40px;
    height: 100%;
    top: calc(50% - 50px);
    left: -21px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 5px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 40px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    margin-left: 0;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

/*** Counter ***/

.counter-text span {
    font-family: 'GeneralSans-Variable';
    font-size: 55px;
    font-weight: 900 !important;
    color: #4a4a4a;
    line-height: normal;
}

.counter-text p {
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 800 !important;
    color: #4a4a4a;
    line-height: normal;
}

/*** Team ***/
.team-item {
    transition: .5s;
    border: 1px solid transparent;
    transition: .5s;
}

.team-item:hover {

    border-color: var(--primary);
}


/*** Footer ***/
.footer {
    background: url(../images/footer-bg.webp) center center no-repeat;
    background-size: cover;
    border-top: 15px solid #EE9200;
}

.footer-svg-shape {
    position: absolute;
    top: 0px;
    left: 15px;
    width: 256px;
    height: auto;
    pointer-events: none;
}

.join-box h2 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
}

.join-box h2 span {
    color: #FF8901;
}

.contact-list ul {
    padding: 0;
    margin: 0;
    padding-left: 10px;
}

.contact-list ul li {
    list-style: none;
    padding-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.contact-list ul li a {
    color: #BEBEBE;
    text-decoration: underline;
}

.contact-list ul li a:hover {
    color: #FF8901;
}

.contact-list li::before {
    position: absolute;
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 8px;
    left: 0;
    font-size: 8px;
    color: #FF9C00;
}

.footer h5 {
    font-family: 'GeneralSans-Variable';
    color: #FFF;
    font-size: 20px;
    font-weight: 700 !important;
    position: relative;
    padding-left: 20px;
}

.footer h5::before {
    position: absolute;
    content: "\f111";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: 8px;
    left: 0;
    font-size: 8px;
    color: #FF9C00;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.copyright-bg {
    background: #0e121b;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    color: #BEBEBE;
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
}

.copyright-bg p {
    color: #BEBEBE;
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .5);
    font-weight: normal;
    transition: .3s;
    padding-left: 20px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
}


.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
}

.footer .copyright a {
    color: rgba(255, 255, 255, .5);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    font-size: 14px;
    color: #BEBEBE;
    border-right: 1px solid rgba(255, 255, 255, .1);
    font-family: 'GeneralSans-Variable';
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

#accordionfootermenu {
    padding-left: 20px;
}

#accordionfootermenu.accordion .accordion-button {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border-color: transparent;
    box-shadow: none;
    color: #BEBEBE;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    font-family: 'GeneralSans-Variable';
}

#accordionfootermenu.accordion .accordion-item {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .125);
}

#accordionfootermenu.accordion .accordion-button:focus {
    border-color: 0;
    outline: 0;
    box-shadow: 0;
}

#accordionfootermenu.accordion .accordion-button::after {
    flex-shrink: 0;
    margin-right: auto;
    margin-left: 0;
    font-size: 12px;
    font-weight: 900;
    content: "\2b";
    font-family: "Font Awesome 5 Free";
    color: #BEBEBE;
    background-image: none;
    background-repeat: no-repeat;
    transition: transform .2s ease-in-out;
    transform: rotate(-180deg);
    line-height: 20px;
}

#accordionfootermenu.accordion .accordion-button:not(.collapsed)::after {
    content: "\f068";
    font-family: "Font Awesome 5 Free";
    color: #BEBEBE;
    font-weight: 900;

}

.ac-footer-menu ul {
    padding: 0;
    margin: 0;
    padding-left: 15px;
}

.ac-footer-menu li {
    list-style: none;
}

.ac-footer-menu ul li a {
    color: #BEBEBE;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.ac-footer-menu ul li a:hover {
    text-decoration: underline;
    color: #ffffff;
}


.footer-menu-line {
    position: relative;
    width: 100%;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer-menu-line:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 20px;
    height: 2px;
    background: #e77e07;
    border-right: 2px solid var(--background-color);
}

.footer-menu-line::after {
    content: "";
    position: absolute;
    top: -2px;
    right: 0;
    width: 20px;
    height: 2px;
    background: #e77e07;
    border-right: 2px solid var(--background-color);
}

.footer-menu-link ul {
    padding: 0;
    margin: 0;
    padding-left: 20px;
}

.footer-menu-link li {
    list-style: none;
    padding-bottom: 15px;
}

.footer-menu-link ul li a {
    color: #BEBEBE;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    font-family: 'GeneralSans-Variable';
}

.footer-menu-link ul li a:hover {
    text-decoration: underline;
    color: #ffffff;
}


.inner-top {
    padding-top: 80px;
}

.publishing-banner h1 {
    color: #FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: normal;
}

.publishing-banner h1 span {
    color: #FF8901;
    font-size: 60px;
}

.publishing-banner p{
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 34px;
}

.news-updates {
    background: #F5F5F5;
    padding: 20px;
    padding-right: 55px;
}

.services-news-box {
    background: #F8F8F8;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.10);
    padding-right: 20px;
}

.news-updates h2 {
    color: #4A4A4A;
    font-size: 28px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}

.news-updates h2 span {
    color: #FF8901;
}

.news-updates p {
    color: #464646;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
}

.news-updates p span {
    font-weight: 700;
    line-height: 22px;
}

.btn-1 {
    position: relative;
    display: inline-block;
    transition: color .15s ease-in-out;
}

.btn-1 .link-text {
    color: #4A4A4A;
    font-size: 14px;
    font-weight: 700;
    line-height: 28px;
}

.btn-1:hover .link-text {
    text-decoration: underline;
}

.btn-circle {
    border-radius: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #FF8901;
    transition: 0.3s ease-in-out;
}

.btn-1:hover .btn-circle {
    background: #000000;
}

.btn-circle i {
    justify-content: start;
    font-size: 14px;
    font-weight: 900;
    color: #fff;
    line-height: 20px;
}

.get-in-touch h2 {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    line-height: 47px;
    margin-bottom: 20px;
}

.get-in-touch h2 span {
    color: #F08203;
}

.breadcrumb-bg {
    background: #EEE;
    padding-top: 20px;
    padding-bottom: 20px;
}

.breadcrumb li {
    color: #646464;
    font-size: 15px;
    font-weight: 500;
    line-height: 20px;
}

.breadcrumb li.active {
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 600;
}

.breadcrumb li a {
    color: #646464;
}

.breadcrumb li a:hover {
    color: #4A4A4A;
}

.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: .5rem;
    content: "»";
    color: #E87500;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 600;
}

.inner-page-title h2 {
    color: #4A4A4A;
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.inner-page-title h2 span {
    color: #FF8901;
}

.inner-page-title h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 28px;
}

.insights-container h5 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 22px;
}

.insights-container p span {
    color: #F08203;
    font-size: 16px;
    font-weight: 700;
    line-height: 25px;
}

.insights-container p {
    color: #646464;
    font-size: 16px !important;
    font-weight: 400;
    line-height: 25px !important;
}


hr {
    margin: 1rem 0;
    color: inherit;
    background-color: #7E7E7E;
    border: 0;
    opacity: .9;
}

.industry-box {
    justify-content: space-evenly;
}

.industry-box h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 26px;
}

.industry-box h5 {
    color: #F08203;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 25px;
}

.industry-box p {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
}

.inner-page-title p {
    color: #646464;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.why-needs-box {
    position: relative;
}

.why-counter {
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 285px;
    height: 208px;
    background: url(../images/needs-shape.svg) center center no-repeat;
    background-size: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 55px;
    padding-left: 20px;
}

.why-c-text {
    justify-content: center;
    align-items: center;
    text-align: start;
}

.why-counter span {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    line-height: 7px;
}

.why-counter p {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
}

.counter-text-inner span {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 58px;
    font-style: normal;
    font-weight: 700;
    line-height: 42px;
}

.counter-text-inner p {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.counter-line {
    position: relative;
    width: 80%;
    border-top: 1px solid #D9D9D9;
}

.counter-line:before {
    content: "";
    position: absolute;
    top: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #E87500;
    border-right: 2px solid var(--background-color);
}

.rounded-25 {
    border-radius: 25px;
}

.slider-wrapper {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    position: relative;
}

/* Timeline */
.timeline {
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;

}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background: #999;
    left: 9px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    cursor: pointer;
    transition: color 0.3s ease;
    color: #9B9B9B;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
}

.timeline-item .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    background: #bebebe;
    margin-right: 10px;
    z-index: 1;
    position: relative;
}

.timeline-item.active {
    color: #FF8601;
}

.timeline-item.active .dot {
    border-color: #FF8601;
    background: #fff;

}

/* Slides wrapper */
.slides-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

.slide {
    min-width: 100%;
    display: flex;
    flex-direction: row;
}

.slide-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.slide-image img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%;
}


.slide-content {
    background: #333;
    color: #fff;
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 80px;
}

.slide-content h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.slide-content ul {
    list-style: none;
    padding: 0;
}

.slide-content ul li {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.slide-content ul li span {
    font-weight: 700;
}

.slide-content ul li:last-child {
    padding-bottom: 0;
}

.slide-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../images/tick.png") no-repeat center center;
    background-size: contain;
}

.slide-content p span {
    font-weight: 700;
}

/* Arrows */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #000;
    z-index: 999;
    width: 35px;
    background: #fff;
    height: 101%;
}

.nav-arrow.left {
    left: 0px;
}

.nav-arrow.right {
    right: 0px;
}

/* Responsive */
@media (max-width: 844px) {
    .slider-wrapper {
        flex-direction: column;
    }

    .timeline {
        flex-direction: row;
        justify-content: space-around;
        padding: 1rem;
    }

    .slide {
        flex-direction: column;
    }
}


.hover-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

.key-card-title {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    width: 100%;
}

.key-card-title h3 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.hover-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
    transition: transform 0.4s ease;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #E87500;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: start;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px 20px;
    border-radius: 15px;
}

.hover-card:hover .hover-overlay {
    opacity: 1;
}

.hover-overlay h3 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
}

.hover-overlay p {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

ul.resp-tabs-list {
    margin: 0px;
    padding: 0px;
    border-top: 1px solid #C2BCBC;
    font-family: 'GeneralSans-Variable';
    background: #F5F5F5;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: nowrap;

}

.resp-tabs-list li {
    display: inline-block;
    flex: 1;
    text-align: center;
    list-style: none;
    position: relative;
    cursor: pointer;
    color: #4A4A4A;
    transition: all 0.3s ease;
}

.resp-tabs-list li:hover {
    background: #fff;
    color: #4A4A4A;
}

.resp-tabs-list li i {
    font-size: 16px;
    font-weight: 600;
    color: #7C7B7B;
}

.resp-tabs-container {
    padding: 0px;
    position: relative;
}

.resp-tab-content {
    display: none;
}

.resp-tabs-list li.resp-tab-active {
    background: #fff;
    color: #4A4A4A;
    font-weight: 700;
    position: relative;
    border: 0;
}

.resp-tabs-list li.resp-tab-active i {
    color: #fff
}

.resp-content-active,
.resp-accordion-active {
    display: block;
}

.resp-tabs-list li {
    font-size: 18px;
    color: #B4B2B2;
    font-weight: 700;
    display: inline-block;
    padding: 30px 10px;
    margin: 0;
    list-style: none;
    cursor: pointer;
}

.resp-tabs-container {
    padding: 0px;
    background-color: #fff;
    clear: left;
    padding-top: 40px;
}

h2.resp-accordion {
    cursor: pointer;
    padding: 5px;
    display: none;
    transition: visibility 0s, opacity 0.5s linear;
}

.resp-tab-content {
    opacity: 1;
    transition: visibility 0s, opacity 0.5s linear;
}

.resp-tab-active {
    border: 1px solid #c1c1c1;
    transition: visibility 0s, opacity 0.5s linear;
    border-bottom: none;
}

.resp-tab-active {
    transition: visibility 0s, opacity 0.5s linear;
    border-bottom: none;
    background-color: #fff;
}

.resp-content-active,
.resp-accordion-active {
    transition: visibility 0s, opacity 0.5s linear;
    visibility: visible;
    opacity: 1;
}


h2.resp-accordion {
    font-size: 15px;
    border: 1px solid #c1c1c1;
    margin: 0px;
    padding: 20px 25px;
    border-radius: 15px;
    margin-bottom: 10px;
}

h2.resp-tab-active {
    border-bottom: 0px solid #c1c1c1 !important;
    margin-bottom: 0px !important;
    padding: 10px 25px !important;
}

h2.resp-tab-title:last-child {
    border-bottom: 12px solid #c1c1c1 !important;
    background: blue;
}

/*-----------Vertical tabs-----------*/

.resp-vtabs ul.resp-tabs-list {
    float: left;
    border-bottom: 0;
    width: 41%;
}

.resp-vtabs .resp-tabs-list li {
    display: block;
    padding: 15px 15px !important;
    margin: 0;
    cursor: pointer;
    float: none;
    border-bottom: 1px solid #EAEAEA;
    background-color: #ffffff;
    color: #000000;
    font-size: 20px;
    line-height: 150%;
}

.resp-vtabs .resp-tabs-container {
    padding: 0px 0px 0px 40px;
    background-color: #fff;
    float: left;
    width: 59%;
    min-height: 250px;
    clear: none;
}

.tab-icon {
    width: 64px;
}

.resp-vtabs .resp-tab-content {
    border: none;
}

.resp-vtabs .tabs-sales-bg {
    background: #FFF1F1;
    border-radius: 15px;
    padding: 40px 40px;

}

.resp-vtabs li.resp-tab-active {
    border-right: none;
    background-color: #FFF1F1;
    color: #000000;
    position: relative;
    z-index: 1;
    padding: 15px 15px !important;
    line-height: 150%;
    border-bottom: 1px solid #FF3477;
}

.resp-vtabs .resp-tabs-list li:hover {
    background-color: #FFF1F1;
    color: #000000;
    border-bottom: 1px solid #FF3477;
}

.resp-vtabs .resp-tabs-list li:hover:before,
.resp-vtabs .resp-tabs-list li.resp-tab-active:before {
    background-color: transparent;
}

.resp-arrow {
    width: 0;
    height: 0;
    float: right;
    margin-top: 3px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #000000;
}

h2.resp-tab-active span.resp-arrow {
    border: none;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid #ffffff;
}

/* Smooth Fade-in Animation */
.resp-tab-content {
    animation: fadeIn 0.5s ease-in-out;
}

/* Slide-up effect for better visibility */
.resp-tab-content {
    animation: slideUp 0.5s ease-in-out;
}

/* Keyframes for fade-in */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Keyframes for slide-up */
@keyframes slideUp {
    from {
        transform: translateY(15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/*-----------Accordion styles-----------*/

h2.resp-tab-active {
    background: #E87500 !important;
    padding: 20px 25px !important;
    color: #fff;
}

.resp-easy-accordion h2.resp-accordion {
    display: block;
}

.resp-easy-accordion .resp-tab-content {
    border: 1px solid #c1c1c1;
}

.resp-easy-accordion .resp-tab-content:last-child {
    border-bottom: 1px solid #c1c1c1 !important;
}

.resp-jfit {
    width: 100%;
    margin: 0px;
}

.resp-tab-content-active {
    display: block;
}

h2.resp-accordion:first-child {
    border-top: 1px solid #c1c1c1 !important;
}

/*Here your can change the breakpoint to set the accordion, when screen resolution changed*/
@media only screen and (max-width: 768px) {
    .tabs-sales-bg {
        padding-top: 40px;
    }

    ul.resp-tabs-list {
        display: none;
    }

    h2.resp-accordion {
        display: block;
    }

    .resp-vtabs .resp-tab-content {
        border: 1px solid #C1C1C1;
    }

    .resp-vtabs .resp-tabs-container {
        border: none;
        float: none;
        width: 100%;
        min-height: initial;
        clear: none;
    }

    .resp-accordion-closed {
        display: none !important;
    }

    .resp-vtabs .resp-tab-content:last-child {
        border-bottom: 1px solid #c1c1c1 !important;
    }

}


.tabs-content h3 {
    color: #303030;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-bottom: 15px;
}

.tabs-content h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 25px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: normal;
    padding-top: 15px;
    padding-bottom: 10px;
}

.tabs-content p {
    color: #646464;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 15px;
}

.tabs-content ul {
    list-style: none;
    padding: 0;
}

.tabs-content ul li {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 10px;
    padding-left: 40px;
    position: relative;

}

.tabs-content ul li:last-child {
    padding-bottom: 0;
}

.tabs-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../images/tick.png") no-repeat center center;
    background-size: contain;
}

.bg-light-dark {
    background: #323232;
}

.stories-item-box {
    border-radius: 30px;
    background: #2E2E2E;
}

.rounded-all {
    border-radius: 25px;
}

.rounded-top-left {
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.rounded-top-left-20 {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.rounded-left {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.rounded-right {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.stories-content {
    padding: 30px 40px;
    justify-content: center;
    align-items: center;
}

.stories-content h4 {
    color: #ffffff;
    font-family: 'GeneralSans-Variable';
    font-size: 24px;
    font-weight: 700 !important;
    line-height: 32px;
    padding-bottom: 20px;
}

.stories-content h5 {
    color: #F08203;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 25px;
    padding-bottom: 20px;
}

.stories-content p {
    color: #fff;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 50px;
}

.btn-white .link-text {
    color: #ffffff;
}

.success-stories-carousel .owl-dots {
    text-align: center;
}

.success-stories-carousel .owl-dot {
    position: relative;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    background: #FFFFFF;
    border: 1px solid var(--primary);
    border-radius: 15px;
    transition: .5s;
    margin-top: 40px;
    display: inline-block;
}

.success-stories-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.stories-item-box-white {
    border-radius: 30px;
    background: #FFF;
}


.stories-content-dark {
    padding: 30px 40px;
    justify-content: center;
    align-items: center;
}

.stories-content-dark h4 {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 700 !important;
    line-height: 28px;
    padding-bottom: 20px;
}

.stories-content-dark h5 {
    color: #F08203;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 700 !important;
    line-height: 24px;
    padding-bottom: 20px;
}

.stories-content-dark p {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 20px;
}

.btn-dark-text .link-text {
    color: #313131;
}


/* Flexbox Equal Height Bootstrap Columns (fully responsive) */
@media only screen and (min-width: 768px) {
    .flex-row.row {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .flex-row.row>[class*="col-"] {
        display: flex;
        flex-direction: column;
    }

    .flex-row.row:after,
    .flex-row.row:before {
        display: flex;
    }
}

/* Grow thumbnails to fill columns height */
.flex-row .equal-height {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}

/* Parent wrapper: left and right columns equal height */
.custom-flex-row {
    display: flex;
    align-items: stretch;
    gap: 20px;
}

/* Left column */
.custom-left {
    display: flex;
    flex-direction: column;
    flex: 2;
}

.custom-left-boxes {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-content: stretch;
}

/* Each left box */
.custom-left-boxes .custom-box {
    flex: 1 1 calc(50% - 20px);
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    border-radius: 15px;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

/* Hover card content */
.key-hover-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    /* full box height */
}

/* Image: dynamically fill top part of box */
.key-hover-card img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* Content below image fills remaining height */

.key-hover-overlay {
    flex: 1;
    padding: 20px 20px;
}

/* Hover overlay effect */
.key-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    transition: opacity 0.4s ease;
    color: #fff;
    border-radius: 15px;
    opacity: 0;
    background: #E87500;
    padding: 20px;
}

.key-hover-overlay h3 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 26px;
}

.key-hover-overlay p {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.custom-box:hover .key-hover-overlay {
    opacity: 1;
}

/* Right column */
.custom-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.custom-right .custom-box-right {
    flex: 1;
    box-sizing: border-box;
}

/* Responsive: stack columns on smaller screens */
@media (max-width: 991px) {
    .custom-flex-row {
        flex-direction: column;
    }

    .custom-left-boxes .custom-box {
        flex: 1 1 100%;
    }

    .custom-right {
        margin-top: 20px;
    }
}

.testimonial-inner h2 {
    color: #FFF;
    font-size: 45px;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 20px;
}

.testimonial-inner p {
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-weight: 400;
    line-height: 37px;
    margin-bottom: 20px;
}

.testimonial-inner p span {
    color: #FFF;
    font-size: 22px;
    font-weight: 700 !important;
}

.testimonial-shape-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 145px;
}

.testimonial-shape-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 145px;
}

.client-shape-left-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 145px;
}

.client-shape-right-bottom {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 145px;
}

.key-domain-box {
    border-radius: 15px;
    border: 1px solid #797979;
    background: #FCFCFC;
}

.border-top-15 {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.border-bottom-15 {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.key-content {
    padding: 30px 30px;
}

.key-content h4 {
    font-family: "Syne", sans-serif;
    color: #FF8901;
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    margin-bottom: 20px;
}

.key-content p {
    color: #646464;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 20px;
}

.key-content p span {
    color: #4A4A4A;
    font-size: 20px;
    font-style: italic;
    font-weight: 600;
    line-height: 27px;
}

.domain-box h4 {
    font-family: 'GeneralSans-Variable';
    color: #4A4A4A;
    font-size: 22px;
    font-weight: 700 !important;
    line-height: 27px;
    margin-bottom: 20px;
}

.domain-box ul {
    list-style: none;
    padding: 0;
}

.domain-box ul li {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding-left: 40px;
    position: relative;
    color: #646464;
    padding-bottom: 10px;
}

.domain-box ul li:last-child {
    padding-bottom: 0;
}

.domain-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: url("../images/tick.png") no-repeat center center;
    background-size: contain;
}


/* Section background */
.video-section-inner {
    background: #323232;
    color: #fff;
    padding: 200px 20px;
    text-align: center;
}

/* Play icon style */
.play-btn {
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(255, 255, 255, 0.4);
}

.play-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-left: 20px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
}

.services-impact {
    background: #F8F8F8;
    box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.10);
    padding: 40px 40px;
}

.xl-space {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.white-line {
    border-left: 7px solid #ffffff;
}

.ai-delivers-box {
    border-radius: 15px 0px 0px 15px;
    background: #F8F8F8;
    padding: 30px 30px;
}

.ai-delivers-box-two {
    border-radius: 0px 15px 15px 0px !important;
}

.ai-delivers-box h4 {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-weight: 700 !important;
    line-height: 32px;
    margin-bottom: 10px;
}

.ai-delivers-box p {
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    margin-bottom: 10px;
}

.ai-delivers-box p span {
    font-weight: 700;
}

.ai-delivers-box ul {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.ai-delivers-box ul li {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding-left: 40px;
    position: relative;
    color: #646464;
    padding-bottom: 10px;
}

.ai-delivers-box ul li span {
    font-weight: 700;
}

.ai-delivers-box li:last-child {
    padding-bottom: 0;
}

.ai-delivers-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 20px;
    height: 20px;
    background: url("../images/tick.png") no-repeat center center;
    background-size: contain;
}

.ai-delivers-img img {
    border-radius: 15px 0 0 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.border-top-right {
    border-radius: 0px 15px 15px 0px !important;
}

.why-impelsys-inner-box {
    border-radius: 20px;
    background: #E87500;
    box-shadow: 0 4px 5px 2px rgba(0, 0, 0, 0.05);
    padding: 30px;
}

.why-impelsys-inner-box h4 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 140.2%;
}

.why-impelsys-inner-box p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 140.2%;
}

.z-99 {
    z-index: 99;
}

.tech-logo img {
    border-radius: 7px;
}

.operate-text {
    background: #686868;
    padding: 15px;
}

.operate-text h3 {
    color: #FFF;
    font-size: 32px;
    font-weight: 700;
    line-height: 125.2%;
    text-align: center;
    margin-bottom: 0;
}

.finops-bg {
    background: linear-gradient(to bottom, #E87500 70%, #ffffff 30%);
}

.finops-bg-gray {
    background: linear-gradient(to bottom, #E87500 70%, #F5F5F5 30%);
}

.finops-svg-shape-left {
    position: absolute;
    top: 0;
    left: 0;
}

.finops-page-title h2 {
    color: #FFF;
    font-size: 45px;
    font-weight: 700;
    line-height: 125.2%;
}

.finops-page-title h2 span {
    color: #4A4A4A;
}

.finops-page-title p {
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    line-height: 32px;
}

.alliances-logo img {
    border-right: 6px solid #fff;
}

.white-line-border {
    border-bottom: 6px solid #fff;
}

.strategy-box {
    border-radius: 10px;
    border: 1px solid #000;
    padding: 20px;
    transition: .5s;
}

.strategy-box:hover {
    background: #E87500;
    border: 1px solid #E87500;
    ;
}


.strategy-box h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 28px;
    font-weight: 700 !important;
    line-height: 35px;
}

.strategy-box p {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
    margin-bottom: 0;
}

.strategy-box:hover h4 {
    color: #fff;
}

.strategy-box:hover p {
    color: #fff;
}

.strategy-box:hover img {
    filter: brightness(0) invert(1);
    /* turns it white */
}

.strategy-bg {
    background: url(../images/strategy-shape-hexa.svg) top 90px right no-repeat;
    background-size: auto;
}

.quiz-bg {
    background: url(../images/quiz-bg-banner.webp) center center no-repeat;
    background-size: cover;
}

.watchlist-item-box {
    border-radius: 20px;
    background: transparent;
    text-align: center;
    align-items: center;
    display: flex;
    justify-content: center;
    margin: 0 5px;
    position: relative;
}

.watchlist-item-box img{
    border-radius: 20px;
}

/* Position nav container */
.watchlist-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

/* Style buttons individually */
.watchlist-carousel .owl-nav .owl-prev,
.watchlist-carousel .owl-nav .owl-next {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent !important;
    color: #fff !important;
    border: none;
    font-size: 14px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    pointer-events: auto;
    margin-left: -12px;
    margin-right: -12px;
}
.watchlist-carousel .owl-nav .owl-prev img,
.watchlist-carousel .owl-nav .owl-next img{
   width:22px ;
}

.play-btn-smallsize {
    width: 40px;
    height: 40px;
    position: absolute;
    transform: translate(-0%, -50%);
    margin: 0 auto;
    top: 50%;
}

.play-btn-smallsize::before {
    transform: translate(-50%, -50%);
    border-left: 10px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Hover effect */
.watchlist-carousel .owl-nav .owl-prev:hover,
.watchlist-carousel .owl-nav .owl-next:hover {
    background: transparent !important;
}

.strategic-alliance-box {
    background: #ffffff;
    padding: 30px;
}

.data-services-box-bg {
    border-radius: 15px;
    background: #F5F5F5;
    padding: 30px;
    transition: .5s;
}

.data-services-box-bg:hover {
    background: #E87500;
}

.data-services-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.data-services-box h4 {
    font-family: 'GeneralSans-Variable';
    color: #4A4A4A;
    font-size: 25px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 32px;
}

.data-services-box p {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.data-services-box-bg:hover h4 {
    color: #fff;
}

.data-services-box-bg:hover p {
    color: #fff;
}

@media (min-width: 992px) {

    /* large screens and up */
    .col-lg-7th {
        flex: 0 0 calc(100% / 7);
        max-width: calc(100% / 7);
    }
}

.data-solutions {
    border-radius: 0 15px 15px 0 !important;
    background: #F5F5F5 !important;
    transition: .1s;
}

.data-solutions:hover {
    background: #FFFAF5 !important;
}

.qa-why-box {
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.05);
}

.certification-box {
    padding: 40px 40px;
}

.certification-box h4 {
    color: #4A4A4A;
    font-size: 30px;
    font-weight: 600 !important;
    line-height: 125.2%;
    margin-top: 30px;
    margin-bottom: 10px;
}

.compliance-box {
    overflow: hidden;
    position: relative;
}

/* Image: dynamically fill top part of box */
.compliance-box img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
}

/* Content below image fills remaining height */

.key-hover-overlay {
    flex: 1;
    padding: 20px 20px;
}

/* Hover overlay effect */
.compliance-box__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    transition: opacity 0.4s ease;
    color: #fff;
    border-radius: 10px;
    opacity: 0;
    background: #E87500;
    padding: 20px 30px;
}

.compliance-card-title {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, -30%);
    text-align: center;
    width: 100%;
}


.btn-circle-white {
    border-radius: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: #ffffff;
    transition: 0.3s ease-in-out;
}

.btn-1:hover .btn-circle-white {
    background: #000000;
}

.btn-circle-white i {
    justify-content: start;
    font-size: 18px;
    font-weight: 900;
    color: #E87500;
    line-height: 20px;
}

.compliance-card-title h3 {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 700;
    line-height: normal;
}

.compliance-box__content p {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* display: -webkit-box;
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden; */
}

.compliance-box:hover .compliance-box__content {
    opacity: 1;
}

.qa-testing-box h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-weight: 700 !important;
    line-height: 26px;
}

.playbook-bg {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 4px 5px 2px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.playbook-bg h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 25px;
    font-weight: 700 !important;
    line-height: 140.2%;
}

.playbook-bg p {
    color: #646464;
    font-size: 20px;
    font-weight: 400;
    line-height: 140.2%;
}

.border-right-light {
    border-right: 6px solid #D9D9D9;
}

.learning-why-bg {
    background: #E87500;
}

.learning-why-box {
    padding: 30px 60px 30px 60px;
}

.learning-why-box h2 {
    color: #F3F3F3;
    font-size: 45px;
    font-weight: 700;
    line-height: 125.2%;
}

.learning-why-box h2 span {
    color: #4A4A4A;
}

.learning-why-box ul {
    list-style: none;
    padding: 0;
}

.learning-why-box ul li {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.learning-why-box ul li span {
    font-size: 24px;
    font-weight: 700;
}

.learning-why-box ul li:last-child {
    padding-bottom: 0;
}

.learning-why-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../images/tick-white.png") no-repeat center center;
    background-size: contain;
}

.innovative-title {
    position: absolute;
    top: 30px;
    left: 55px;
}

.innovative-box {
    padding: 30px 40px;
    padding-bottom: 0;
    transition: .5s;
}

.innovative-box:hover {
    background: #CE6800;
}

.innovative-box:last-child {
    padding-bottom: 30px !important;
}

.innovative-box h4 {
    color: #FFF;
    font-size: 28px;
    font-weight: 700 !important;
    line-height: 35px;
}

.innovative-box p {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.innovation-yellow-line {
    background-color: #F8B979;
    margin-top: 30px;
}

.equal-space {
    justify-content: space-around;
}

.digital-marketing-box {
    border-radius: 25px;
    background: #F2F2F2;
    padding: 20px;
}

.partnership-bg {
    background: url(../images/partnership-bg.webp) center center no-repeat;
    background-size: cover;
}

.partnership-box {
    border-radius: 20px;
    background: #F08203;
}

.partnership-box h3 {
    color: #FFF;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
}

.partnership-box ul {
    list-style: none;
    padding: 0;
}

.partnership-box ul li {
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.partnership-box ul li span {
    font-size: 24px;
    font-weight: 700;
}

.partnership-box ul li:last-child {
    padding-bottom: 0;
}

.partnership-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../images/tick-white.png") no-repeat center center;
    background-size: contain;
}

.partnership-content {
    padding: 30px;
}

.value-delivers-box h4 {
    font-family: 'GeneralSans-Variable';
    color: #4A4A4A;
    font-size: 25px;
    font-weight: 700 !important;
    line-height: 35px;
}

.value-delivers-box p {
    color: #646464;
    font-size: 20px;
    font-weight: 400;
    line-height: 28px;
}

.inner-bottom-space {
    padding-top: 200px;
    padding-bottom: 200px;
    margin-top: 0;
}

.case-studies-bg {
    background-color: #F7F7F7;
}

/* Scrollable Case Studies Tabs */
.case-studies-tabs-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scroll-behavior: smooth;
    border-top: 2px solid #D9D9D9;
    background-color: #F5F5F5;
}

.case-studies-tabs-wrapper::-webkit-scrollbar {
    height: 6px;
}

.case-studies-tabs-wrapper::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 4px;
}

.case-studies-tabs {
    display: flex;
    flex-wrap: nowrap;
}

.case-studies-tab {
    flex: 1;
    padding: 12px 20px;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
}

.case-studies-tab:hover,
.case-studies-tab.active {
    background: #ffffff;
}

.search-icon {
    flex: 0 0 auto;
    padding: 12px 20px;
    cursor: pointer;
    background: #D9D9D9;
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    margin-top: -2px;
}

.search-box {
    display: none;
    padding: 15px 0px;
    background: #fff;
    border-bottom: 1px solid #ddd;

}

.case-studies {
    margin-top: 60px;
}

/* Case Studies Item */
.case-studies-item {
    border-radius: 25px;
    transition: all 0.4s ease;
    opacity: 0;
    display: none;

}

.case-studies-box {
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.15);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 20px;
}

.case-studies-item.show {
    display: block;
    opacity: 1;
}

.load-more {
    display: block;
    margin: 20px auto;
    border-radius: 40px;
    border: 2px solid #F08203;
    padding: 10px 30px;
    background: transparent;
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    transition: .5s;
}

.load-more:hover {
    background-color: #EE9200;
    color: #fff;
}

.case-studies-content {
    padding: 30px;
}

.case-studies-content h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 23px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: 34px;
}

.case-icon {
    border: 1px solid #EAEAEA;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    justify-content: space-evenly;
}

.case-line {
    display: block;
    width: 100%;
    height: 1px;
    /* line thickness */
    background: linear-gradient(to right,
            #FF8601 0 45px,
            /* orange part */
            #000000 40px 100%
            /* gray part */
        );
}

.case-studies-content span {
    color: #414141;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 30px;
}

.fancy-line {
    display: block;
    width: 100%;
    height: 3px;
    /* line thickness */
    background: linear-gradient(to right,
            #FF8601 0 45px,
            /* orange part */
            transparent 45px 60px,
            /* gap */
            #D9D9D9 60px 100%
            /* gray part */
        );
}

:focus-visible {
    outline: -webkit-focus-ring-color auto 0px !important;
}

.case-svg-shape-left {
    position: absolute;
    right: 0;
    bottom: -60px;
}

.inner-bottom-space-deatils {
    position: relative;
    padding-top: 40px;
    padding-bottom: 0px;
    margin-top: 0;
}

.casedetails-box {
    position: relative;
    margin-bottom: -350px;
    padding: 40px;
}

.case-studies-content-body h4 {
    color: #4A4A4A;
    font-size: 25px;
    font-weight: 700 !important;
    line-height: 115.2%;
    margin-bottom: 60px;
}

.case-studies-content-body h4 span {
    font-size: 25px;
    font-weight: 400 !important;
}

.case-studies-content-body h3 {
    color: #4A4A4A;
    font-size: 30px;
    font-weight: 700;
    line-height: 115.2%;
    /* 34.56px */
    margin-bottom: 20px;
}

.case-studies-content-body p {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
    padding-bottom: 40px;
}

.case-studies-content-body p a {
    color: #646464;
    text-decoration: underline;
}

.fancy-line-two {
    display: block;
    width: 100%;
    height: 3px;
    /* thickness */
    background: linear-gradient(to right,
            #FF8601 0 5%,
            /* left orange */
            transparent 5% 6%,
            /* left gap */
            #D9D9D9 6% 94%,
            /* gray middle */
            transparent 90% 95%,
            /* right gap */
            #FF8601 95% 100%
            /* right orange */
        );
}

.download-case-study {
    background: #F7F7F7;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.15);
    padding: 30px 30px;
}

.download-case-study h2 {
    font-size: 40px;
}

.form-control {
    border-radius: 0;
    background: transparent;
    border: 0;
    padding: 1rem 1rem;
    border-bottom: 1px solid #9B9B9B;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
}

.form-select {
    border-radius: 0;
    border: 0;
    padding: 1rem 1rem;
    border-bottom: 1px solid #9B9B9B;
    color: #000000;
    font-size: 20px;
    font-weight: 400;
}

.form-check-label {
    color: #000000;
    font-size: 20px;
    font-weight: 400;
    line-height: 115.2%;
}

.form-check-label a {
    color: #FF8601;
    text-decoration: underline;
}

.form-control:focus {
    background-color: transparent;
    border-color: #FF8601;
    outline: 0;
    box-shadow: none;
}

.form-select:focus {
    border-color: #FF8601;
    outline: 0;
    box-shadow: none;
}

.form-control::placeholder {
    color: #000000 !important; /* your custom color */
    opacity: 1; /* ensure visible */
}

.webinars-box {
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

.webinars-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
}

.webinars-content h4 {
    font-family: 'GeneralSans-Variable';
    color: #4A4A4A;
    font-size: 25px;
    font-style: normal;
    font-weight: 600 !important;
    line-height: 33px;
}

.webinars-content p {
    color: #646464;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}

.webinars-icon {
    border: 1px solid #FF8601;
    width: 30px;
    height: 30px;
    text-align: center;
    border-radius: 50%;
    justify-content: space-evenly;
}

.webinars-content span {
    color: #FF8601;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 30px;
}

.webinars-line {
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #FF8601 0 45px,
            /* orange part */
            #D9D9D9 40px 100%
            /* gray part */
        );
}

.gray-image {
    filter: grayscale(100%);
}

.webinar-detail-box {
    border-radius: 20px;
    background: #FF8601;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.15);
    padding: 20px 30px;
    color: #FFF;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 32px;
    font-family: 'GeneralSans-Variable';
}

.webinar-detail-box h3 {
    color: #FFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 130.2%;
    font-family: 'GeneralSans-Variable';
    margin-bottom: 30px;
}

.webinar-detail-content h4 {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 32px;
}

.webinar-detail-content span {
    font-weight: 400;
}

.link-color a {
    color: #FF8601;
}

.speakers-box {
    text-align: center;
}

.speakers-box h4 {
    font-family: 'GeneralSans-Variable';
    color: #000;
    font-size: 30px;
    font-weight: 700 !important;
    line-height: 32px;
    margin-top: 20px;
}

.speakers-box p {
    color: #313131;
    font-size: 22px;
    font-weight: 500 !important;
    line-height: 32px;
}

.speakers-box p span {
    color: #FF8601;
}

.search-box-inner {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.search-input-inner {
    font-family: 'GeneralSans-Variable';
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: none;
    border: 1px solid #dedede;
    background-color: #FCFCFC;
    border-bottom: 2px solid orange;
    outline: none;
    color: #B1B1B1;
    font-size: 16px;
    border-radius: 0px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.search-input-inner::placeholder {
    color: #B1B1B1;
    font-size: 16px;
}

.search-icon-inner {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #555;
    cursor: pointer;
}

.category-box {
    border: 1px solid #ddd;
    border-top: none;
}

.category-header {
    font-family: "Syne", sans-serif;
    background-color: #FF8601;
    color: #fff;
    padding: 5px 15px;
    font-size: 28px;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.category-list li {
    border-top: 1px solid #eee;
}

.category-list li a {
    display: block;
    text-decoration: none;
    color: #4A4A4A;
    font-size: 22px;
    font-weight: 400;
    padding: 5px 15px;
    transition: all 0.3s ease;
}

.category-list li a:hover {
    background-color: #f9f9f9;
    color: #FF8601;
}

/* Active category style */
.category-list li.active a {
    background-color: #efefef;
    color: #4A4A4A;
    font-weight: 500;
}

.date-content p {
    color: #414141;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    margin-bottom: 0;
}

.date-content p span {
    font-weight: 600;
    line-height: 18px;
}

.top-blog-box {
    border: 1px solid #ddd;
    border-top: none;
}

.top-blog-content {
    position: relative;
    padding: 20px;
}

.top-blog-content p {
    color: #4A4A4A;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
}

.blog-details-content-body h3 {
    font-family: "Syne", sans-serif;
    color: #4A4A4A;
    font-size: 30px;
    line-height: 115.2%;
}

.blog-details-content-body p {
    margin-bottom: 20px;
}

.blog-details-content-body p span {
    font-weight: 700;
}

.generative-ai {
    border-radius: 20px;
    background: #F1F1F1;
    padding: 30px 40px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.generative-ai h4 {
    font-family: 'GeneralSans-Variable';
    color: #646464;
    font-size: 22px;
    font-style: italic;
    font-weight: 700 !important;
    line-height: 35px;
}

.blog-details-content-body ul {
    padding: 0;
    margin: 0;
    padding-left: 30px;
    margin-bottom: 30px;
}

.blog-details-content-body ul li {
    list-style: disc;
    position: relative;
    padding-bottom: 5px;
    font-weight: 400;
    font-size: 20px;
    color: #646464;
    text-transform: none;
    line-height: 175%;
}

.email-box-bg {
    background: #F7F7F7;
}

.email-box {
    background: #FFF;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
    padding: 30px 40px;
}

.email-box h4 {
    color: #4A4A4A;
    font-family: "Syne", sans-serif;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 115.2%;
    margin-bottom: 0;
}

.email-box a {
    color: #646464;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
}

.email-box a:hover {
    color: #FF8601;
}

.map-icon {
    width: 34px;
    height: 32px;
    line-height: 22px;
    background: #FF8601;
    border-radius: 50%;
    padding: 5px;
    text-align: center;
}

.map-icon i {
    color: #ffffff;
}

.location-content {
    padding: 30px;
}

.location-content h4 {
    font-family: 'GeneralSans-Variable';
    color: #4A4A4A;
    font-size: 23px;
    font-weight: 700 !important;
    line-height: 33px;
    margin-bottom: 15px;
}

.location-content h4 span {
    color: #FF8601;
}

.address-text p {
    color: #646464;
    font-size: 20px;
    font-weight: 400;
    line-height: 150.2%;
}

.location-content p span {
    font-weight: 700 !important;
}

.location-content a {
    color: #FF8601;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    text-decoration: underline;
}

.about-logo {
    border-radius: 15px;
    background: #F7F7F7;
    padding: 20px;
}

.awards-logo {
    border-radius: 10px;
    background: #FFF;
    padding: 10px;
}

.about-banner {
    background-size: cover;
}

.about-banner h5 {
    color: #4A4A4A;
    font-size: 22px;
    line-height: 35px;
    font-weight: 700 !important;
}

.about-banner ul li {
    color: #4A4A4A;
    font-size: 22px;
    line-height: 35px;
}

.mission-box {
    border-radius: 0 20px 20px 0;
    background: #F7F7F7;
    padding-right: 20px;
}

.mission-box-icon {
    border-radius: 20px 0 0 20px;
    background: #FF8601;
    padding: 45px 15px;
    text-align: center;
}
.mission-box-icon img{
    width: 80px;
}
.recognitions {
    position: relative;
    padding: 20px 40px;
}

.news-list ul {
    list-style: none;
    padding: 0;
}

.news-list ul li {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.news-list ul li span {
    font-weight: 700;
}

.news-list ul li:last-child {
    padding-bottom: 0;
}

.news-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background: url("../images/tick.png") no-repeat center center;
    background-size: contain;
}

.site-footer .copyright-main ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap
}

ul.social-links {
    padding: 0;
    margin: 0;
}

.social-links li {
    display: inline-block;
    margin: 0 0.7rem 0 0;
}

.social-links li a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 16px;
    justify-content: center;
    background-color: #848484;
    border-radius: 50%;
    color: #ffffff;
}

.leadership-box {
    border-radius: 15px;
    background: #FFF;
    box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.15);
}

.leadership-box-avatar {
    border-radius: 15px 15px 0 0;
    background: #ECECEC;
    position: relative;
    padding: 30px 10px 0px 10px;
}

.in-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
}

.leadership-content {
    padding: 20px 20px;
}

.leadership-content h4 {
    color: #4A4A4A;
    font-family: 'GeneralSans-Variable';
    font-size: 18px;
    font-weight: 700 !important;
    line-height: 28px;
    margin-bottom: 0;
}

.leadership-content p {
    color: #414141;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nurture-box h5 {
    font-family: 'GeneralSans-Variable';
    color: #4A4A4A;
    font-size: 18px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 24px;
}

.nurture-box h5 span {
    color: #FF8601;
}

.nurture-box p {
    color: #646464;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 145.2%;
}

.four-row-bg {
    background: url(../images/high-five-banner.webp) center center no-repeat;
    background-size: cover;
    padding: 180px 60px 180px 60px;
}
.four-row-bg h2{
    font-size: 45px !important;
}
.four-row-bg p{
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 26px !important;
    font-weight: 600;
    line-height: 125.2% !important; /* 50.08px */
}

.gdpr-content h4 {
    color: #4A4A4A;
    font-size: 24px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 115.2%;
    margin-bottom: 20px;
}

.gdpr-content p {
    color: #646464;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
    margin-bottom: 20px;
}

.gdpr-content p span {
    font-weight: 600;
}

.gdpr-content ul li {
    color: #646464;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
}

.policy-list ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.policy-list ul li {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    padding-bottom: 15px;
    padding-left: 25px;
    position: relative;
}
.policy-list ul ul{
    padding-left: 45px;
}
.policy-list ul ul li{
    list-style: disc;
    padding-left: 0px;
}
.policy-list ul ul li::before{
    content: none;
}
.policy-list ul li span {
    font-weight: 700;
}

.policy-list ul li:last-child {
    padding-bottom: 0;
}

.policy-list ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background: url("../images/tick.png") no-repeat center center;
    background-size: contain;
}

.policy-sub-list {
    margin-top: 30px;
}

.policy-sub-list ul {
    padding: 0;
    margin: 0;
}

.policy-sub-list li {
    color: #646464;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
}

.policy-sub-list p {
    margin-top: 30px;
}

.job-news-bg {
    background: #646464 !important;
}

.jobs-box {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.job-icon {
    border-radius: 10px;
    background: #D9D9D9;
    padding: 10px;
    width: 60px;
    height: 60px;
    line-height: 30px;
}

.share-box {
    border-radius: 8px;
    background: #EAEAEA;
    padding: 5px;
}

.apply-btn {
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #FF8901;
    color: #FFF;
    font-size: 16px;
    font-weight: 700 !important;
    line-height: normal;
}

.apply-btn:hover,
.apply-btn.active {
    border-radius: 10px;
    color: #FFF;
    background: #B96107;
}

.file-upload-wrapper {
    display: flex;
    align-items: center;
    background: #E4E4E4;
    border-radius: 25px;
    padding: 5px 15px;
    justify-content: flex-start;
    padding-left: 8px;
}

.file-upload-wrapper input[type="file"] {
    display: none;
}

.file-upload-label {
    background-color: #9f9f9f;
    color: #fff;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 25px;
    cursor: pointer;
    margin-right: 10px;
    white-space: nowrap;
}

.file-upload-text {
    color: #666;
    font-size: 15px;
}

.required {
    color: red;
    margin-left: 2px;
}

.bottom-space {
    margin-bottom: -400px;
}

.meet-bg {
    background: linear-gradient(to right, #F08203 51%, #ffffff 49%);
}

.meet-content {
    color: #FFF;
    font-size: 20px;
    font-weight: 500;
    line-height: 32px;
}

.top-space {
    margin-top: -330px;
}

.event-box-avatar {
    border-radius: 15px 0px 0 15px;
    background: #ECECEC;
    position: relative;
    padding: 10px 10px 0px 10px;
    justify-content: center;
}

.event-speakers-box {
    border-radius: 0 15px 15px 0;
    background: #F5F5F5;
    padding: 20px;
}

.event-speakers-box h4 {
    color: #000;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 32px;
}

.event-speakers-box h5 {
    color: #313131;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
}

.event-speakers-box h5 span {
    color: #FF8601;
}

.event-speakers-box p {
    color: #646464;
    font-size: 16px;
    font-weight: 400;
    line-height: 150.2%;
}

.what-box {
    background: #FFF;
    padding: 20px;
}

.left-col {
    position: relative;
}

.right-col {
    padding-left: 89px;
    margin-top: -40px;
}

.brand-block {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 16px
}

.brand-block::before {
    content: "";
    width: 60px;
    height: 120px;
    background: #FF8601;
    display: block;
    border-radius: 2px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    position: absolute;
    top: 40px;
    left: 22px;
    text-align: center;
    z-index: 2;
}

.section-header {
    position: relative;
    display: inline-block;
    margin-bottom: 16px;
}


.sitemap-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.sitemap-list li {
    color: #646464;
    font-family: 'GeneralSans-Variable';
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    padding-bottom: 10px;
    padding-left: 30px;
    position: relative;
}

.sitemap-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 15px;
    height: 15px;
    background: url(../images/tick.png) no-repeat center center;
    background-size: contain;
}

.sitemap-list a {
    text-decoration: none;
    color: var(--muted);
    transition: .2s
}

.sitemap-list a:hover {
    color: #FF8601
}

.arrow-icon img {
    width: 20px;
    height: 20px;
}

.medical-qa {
    background: url(../images/iso-banner.webp) center center no-repeat;
    background-size: cover;
}

.rounded {
    border-radius: 20px !important;
}

.tech-header{
    background: #FF8601;
    box-shadow: -2px 2px 2px 0 rgba(0, 0, 0, 0.25);
    padding: 30px 20px;
    text-align: center;
}

.tech-header h3{
    color: #FFF;
    font-family: 'GeneralSans-Variable';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 125.2%;
}

.tech-stack-logo{
    background: #FFF;
    text-align: center;
    padding: 30px 30px;
    margin-top: 20px;
}
.tech-logo-box-rounded{
    border-radius: 7px;
    margin-bottom: 15px;
}
.tech-logo-box-ai{
    border-radius: 7px;
    border: 1px solid #BBB;
    background: #FFF;
    padding: 10px;
    margin-bottom: 15px;
}

.star {
  color: #FC0606;
  position: absolute;
  left: 0px;
  top: 10px;
  pointer-events: none;
  font-size: 11px;
  font-weight: bold;
}

.footer-svg-shape-bottom {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: 145px;
    height: auto;
    pointer-events: none;
}

.help-svg-shape-right img{
    width: 160px;
}

.left-border-qa {
    border-left: 6px solid #fff;
}

.iso-image-box{
    width: 50%;
}

.leadership-box-details {
    border-radius: 20px;
    background: #D9D9D9;
    margin-bottom: -60px;
    position: relative;
    padding-left: 50px;
 
}
.details-in-icon{
    border-radius: 0 0 20px 0;
    background: #FF8601;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58px;
    height: 58px;
    text-align: center;
}
.leadership-box-content{
    padding-left: 30px;
    padding-bottom: 40px;
}
.leadership-box-content h4{
    color: #FF8601;
    font-size: 30px;
    font-weight: 700;
}

.share-container {
    position: relative;
    display: inline-block;
}

.share-btn {
    width: 31px;
    height: 40px;
    background: #EAEAEA;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 5px;
}


.social-icons {
    position: absolute;
    top: 50%;
    left: -235px;
    transform: translateY(-50%) translateX(-20px);
    display: flex;
    gap: 10px;

    /* Smooth effects */
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.social-icons.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0px);
}

.social-icons .social-links li {
    display: inline-block;
    margin: 0 0.2rem 0 0;
    transition: transform 0.3s ease;
}
.social-icons .social-links li:hover {
    transform: scale(1.1);
}

@media screen and (max-width: 767px) {
    .social-icons {
        left: 38px;
        width: 250px;
    }
}