```css
/* ============================================================
   TRIMEROUS TECHNOLOGY
   BUSINESS SOFTWARE SERVICES
   COMPLETE CUSTOM CSS
   Paste at the END of assets/css/style.css
============================================================ */


/* ============================================================
   01. GENERAL BUSINESS SOFTWARE SECTIONS
============================================================ */

.bs-hero-section,
.bs-intro-section,
.bs-six-section,
.bs-open-source-intro,
.bs-ecosystem-section,
.bs-platform-section,
.bs-transformation-section,
.bs-business-ecosystem,
.bs-process-section,
.bs-impact-section,
.bs-custom-section,
.bs-final-cta {
    position: relative;
    overflow: hidden;
}

.bs-hero-section *,
.bs-intro-section *,
.bs-six-section *,
.bs-open-source-intro *,
.bs-ecosystem-section *,
.bs-platform-section *,
.bs-transformation-section *,
.bs-business-ecosystem *,
.bs-process-section *,
.bs-impact-section *,
.bs-custom-section *,
.bs-final-cta * {
    box-sizing: border-box;
}


/* ============================================================
   02. SECTION TITLE
============================================================ */

.bs-intro-section .section-title,
.bs-six-section .section-title,
.bs-ecosystem-section .section-title,
.bs-platform-section .section-title,
.bs-transformation-section .section-title,
.bs-business-ecosystem .section-title,
.bs-process-section .section-title,
.bs-impact-section .section-title {
    margin-bottom: 55px;
    text-align: center;
}

.bs-intro-section .section-title h2,
.bs-six-section .section-title h2,
.bs-ecosystem-section .section-title h2,
.bs-platform-section .section-title h2,
.bs-transformation-section .section-title h2,
.bs-business-ecosystem .section-title h2,
.bs-process-section .section-title h2,
.bs-impact-section .section-title h2 {
    margin: 0 0 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
    color: #151515;
    text-transform: none;
}

.bs-intro-section .section-title h2 span,
.bs-six-section .section-title h2 span,
.bs-ecosystem-section .section-title h2 span,
.bs-platform-section .section-title h2 span,
.bs-transformation-section .section-title h2 span,
.bs-business-ecosystem .section-title h2 span,
.bs-process-section .section-title h2 span,
.bs-impact-section .section-title h2 span {
    color: #f05125;
}

.bs-intro-section .section-title > span,
.bs-six-section .section-title > span,
.bs-ecosystem-section .section-title > span,
.bs-platform-section .section-title > span,
.bs-transformation-section .section-title > span,
.bs-business-ecosystem .section-title > span,
.bs-process-section .section-title > span,
.bs-impact-section .section-title > span {
    display: block;
    width: 90px;
    height: 2px;
    margin: 0 auto 18px;
    background: #f5325c;
}

.bs-intro-section .section-title p,
.bs-six-section .section-title p,
.bs-ecosystem-section .section-title p,
.bs-platform-section .section-title p,
.bs-transformation-section .section-title p,
.bs-business-ecosystem .section-title p,
.bs-process-section .section-title p,
.bs-impact-section .section-title p {
    width: auto;
    max-width: 760px;
    margin: 0 auto;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 27px;
    color: #777;
}


/* ============================================================
   03. SMALL TITLE / EYEBROW
============================================================ */

.bs-small-title {
    display: inline-block;
    margin-bottom: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1.4;
    color: #f05125;
    text-transform: uppercase;
}


/* ============================================================
   04. HERO
============================================================ */

.bs-hero-section {
    padding: 135px 0 95px;
    background:
        radial-gradient(circle at 90% 20%, rgba(250, 164, 26, .10), transparent 98%),
        linear-gradient(135deg, #f3efef 0%, #303336 100%);
}

.bs-hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    right: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(240, 81, 37, .04);
}

.bs-hero-content {
    position: relative;
    z-index: 2;
    padding-right: 35px;
}

.bs-hero-content h1 {
    margin: 0 0 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 60px;
    line-height: 1.08;
    font-weight: 500;
    color: #151515;
}

.bs-hero-content h1 span {
    display: block;
    color: #f05125;
}

.bs-hero-content p {
    max-width: 680px;
    margin: 0 0 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    line-height: 30px;
    color: #666;
}

.bs-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.bs-hero-buttons .btn {
    display: inline-block;
    min-width: 165px;
    padding: 14px 25px;
    border-radius: 0;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-align: center;
    text-transform: uppercase;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease,
        color .3s ease;
}

.bs-hero-buttons .btn_one {
    background: #f05125;
    border: 1px solid #f05125;
    color: #fff;
}

.bs-hero-buttons .btn_one:hover {
    background: #d9431b;
    border-color: #d9431b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(240, 81, 37, .20);
}

.bs-hero-buttons .btn_two {
    background: transparent;
    border: 1px solid #222;
    color: #222;
}

.bs-hero-buttons .btn_two:hover {
    background: #222;
    border-color: #222;
    color: #fff;
    transform: translateY(-3px);
}

.bs-hero-visual {
    position: relative;
    z-index: 2;
    width: 100%;
    min-height: 420px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ededed;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .08);
}

.bs-hero-visual:after {
    content: "";
    position: absolute;
    right: -12px;
    bottom: -12px;
    width: 90px;
    height: 90px;
    border-right: 3px solid #faa41a;
    border-bottom: 3px solid #faa41a;
}

.bs-hero-visual img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 380px;
    object-fit: contain;
    object-position: center;
}


/* ============================================================
   05. INTRO
============================================================ */

.bs-intro-section {
    background: #fff;
}

.bs-content-box {
    padding-right: 45px;
}

.bs-content-box h3 {
    margin: 0 0 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 35px;
    line-height: 1.25;
    font-weight: 500;
    color: #151515;
}

.bs-content-box p {
    margin: 0 0 17px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #707070;
}

.bs-content-box strong {
    color: #151515;
    font-weight: 600;
}

.bs-visual-box {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f8f8;
    border: 1px solid #eeeeee;
}

.bs-visual-box:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 75px;
    height: 75px;
    border-top: 3px solid #f05125;
    border-left: 3px solid #f05125;
}

.bs-visual-box img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 350px;
    object-fit: contain;
    object-position: center;
}


/* ============================================================
   06. SIX CORE BUSINESS CARDS
============================================================ */

.bs-six-section {
    background: #f8f9fb;
}

.bs-six-section .row {
    display: flex;
    flex-wrap: wrap;
}

.bs-six-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.bs-info-card {
    position: relative;
    width: 100%;
    min-height: 295px;
    padding: 35px 30px;
    background: #fff;
    border: 1px solid #ebebeb;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.bs-info-card:after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #f05125;
    transition: width .35s ease;
}

.bs-info-card:hover {
    transform: translateY(-7px);
    border-color: #e5e5e5;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
}

.bs-info-card:hover:after {
    width: calc(100% - 60px);
}

.bs-card-icon {
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5ef;
    color: #f05125;
    font-size: 26px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.bs-info-card:hover .bs-card-icon {
    background: #f05125;
    color: #fff;
    transform: rotate(-3deg);
}

.bs-info-card h3 {
    margin: 0 0 13px;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    line-height: 1.25;
    font-weight: 500;
    color: #171717;
}

.bs-info-card p {
    margin: 0 0 18px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #747474;
}

.bs-card-tags {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 18px;
    color: #f05125;
    letter-spacing: .2px;
}


/* ============================================================
   07. OPEN SOURCE INTRO
============================================================ */

.bs-open-source-intro {
    background: #151515;
    color: #fff;
}

.bs-open-source-intro .bs-small-title {
    color: #faa41a;
}

.bs-open-source-intro h2 {
    margin: 0 0 22px;
    font-family: 'Oswald', sans-serif;
    font-size: 43px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.bs-open-source-intro h2 span {
    display: block;
    color: #faa41a;
}

.bs-open-source-intro p {
    max-width: 700px;
    margin: 0 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 28px;
    color: #bcbcbc;
}

.bs-open-source-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 15px;
}

.bs-os-item {
    min-height: 145px;
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    text-align: center;
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.bs-os-item:hover {
    transform: translateY(-5px);
    background: rgba(240,81,37,.10);
    border-color: rgba(240,81,37,.40);
}

.bs-os-item i {
    margin-bottom: 13px;
    font-size: 28px;
    color: #f05125;
}

.bs-os-item span {
    font-family: 'Oswald', sans-serif;
    font-size: 17px;
    font-weight: 400;
    color: #fff;
}


/* ============================================================
   08. OPEN SOURCE ECOSYSTEM
============================================================ */

.bs-ecosystem-section {
    background: #fff;
}

.bs-ecosystem-section .row {
    display: flex;
    flex-wrap: wrap;
}

.bs-ecosystem-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.bs-solution-card {
    position: relative;
    width: 100%;
    min-height: 305px;
    margin-bottom: 0;
    padding: 34px 28px 48px;
    background: #fff;
    border: 1px solid #e9e9e9;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.bs-solution-card:after {
    content: "";
    position: absolute;
    left: 28px;
    bottom: 0;
    width: 0;
    height: 3px;
    background: #f5325c;
    transition: width .35s ease;
}

.bs-solution-card:hover {
    transform: translateY(-7px);
    border-color: #dedede;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.bs-solution-card:hover:after {
    width: calc(100% - 56px);
}

.bs-solution-card > i {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 55px;
    height: 55px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    background: #fff5ef;
    color: #f05125;
    font-size: 23px;
    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.bs-solution-card:hover > i {
    background: #f05125;
    color: #fff;
    transform: translateY(-2px);
}

.bs-solution-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 500;
    color: #181818;
}

.bs-solution-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 17px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 23px;
    color: #777;
}

.bs-tool-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.bs-tool-list span {
    display: inline-block;
    padding: 5px 9px;
    background: #f7f7f7;
    border: 1px solid #ebebeb;
    border-radius: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    line-height: 16px;
    color: #555;
    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.bs-solution-card:hover .bs-tool-list span {
    background: #fff9f5;
    border-color: #f2d8cc;
    color: #f05125;
}


/* ============================================================
   09. PLATFORM SELECTION
============================================================ */

.bs-platform-section {
    background: #f7f8fa;
}

.bs-platform-section .row {
    display: flex;
    flex-wrap: wrap;
}

.bs-platform-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.bs-platform-card {
    width: 100%;
    min-height: 270px;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid #e9e9e9;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.bs-platform-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    border-color: #f05125;
}

.bs-platform-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    color: #faa41a;
    font-size: 21px;
}

.bs-platform-card h3 {
    margin: 0 0 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #151515;
}

.bs-platform-card p {
    margin: 0 0 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 24px;
    color: #777;
}

.bs-platform-tools {
    padding-top: 13px;
    border-top: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    line-height: 20px;
    color: #f05125;
}


/* ============================================================
   10. BEFORE / AFTER TRANSFORMATION
============================================================ */

.bs-transformation-section {
    background: #fff;
}

.bs-before-box,
.bs-after-box {
    position: relative;
    min-height: 390px;
    padding: 35px;
    border: 1px solid #e8e8e8;
}

.bs-before-box {
    background: #fafafa;
}

.bs-after-box {
    background: #151515;
    border-color: #151515;
}

.bs-transform-label {
    display: inline-block;
    margin-bottom: 25px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 500;
    color: #f05125;
}

.bs-after-box .bs-transform-label {
    color: #faa41a;
}

.bs-before-box ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.bs-before-box li {
    display: flex;
    align-items: center;
    min-height: 42px;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    color: #666;
}

.bs-before-box li i {
    width: 28px;
    margin-right: 10px;
    color: #999;
    text-align: center;
}

.bs-transform-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f05125;
    font-size: 42px;
}

.bs-workflow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.bs-workflow div {
    min-width: 65px;
    padding: 9px 10px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
    color: #fff;
    text-align: center;
}

.bs-workflow i {
    color: #f05125;
    font-size: 12px;
}

.bs-after-box p {
    margin: 28px 0 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #aaa;
}


/* ============================================================
   11. BUSINESS ECOSYSTEM DIAGRAM
============================================================ */

.bs-business-ecosystem {
    background: #f7f8fa;
}

.bs-ecosystem-diagram {
    position: relative;
    width: 100%;
    max-width: 900px;
    min-height: 550px;
    margin: 0 auto;
}

.bs-eco-node {
    position: absolute;
    width: 145px;
    min-height: 92px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e7e7e7;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.bs-eco-node:hover {
    transform: translateY(-5px);
    border-color: #f05125;
    box-shadow: 0 15px 35px rgba(0,0,0,.09);
}

.bs-eco-node i {
    margin-bottom: 7px;
    color: #f05125;
    font-size: 21px;
}

.bs-eco-node strong {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #222;
}

.bs-eco-node small {
    margin-top: 3px;
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    color: #888;
}

.bs-eco-core {
    top: 50%;
    left: 50%;
    width: 185px;
    min-height: 130px;
    transform: translate(-50%, -50%);
    background: #151515;
    border-color: #151515;
}

.bs-eco-core:hover {
    transform: translate(-50%, -50%) translateY(-5px);
    border-color: #f05125;
}

.bs-eco-core i {
    font-size: 29px;
    color: #faa41a;
}

.bs-eco-core strong {
    color: #fff;
    font-size: 19px;
}

.bs-eco-core small {
    color: #aaa;
}


/* Connector lines */

.bs-ecosystem-diagram:before,
.bs-ecosystem-diagram:after {
    content: "";
    position: absolute;
    z-index: 0;
    background: #dedede;
}

.bs-ecosystem-diagram:before {
    top: 50%;
    left: 15%;
    right: 15%;
    height: 1px;
}

.bs-ecosystem-diagram:after {
    top: 16%;
    bottom: 16%;
    left: 50%;
    width: 1px;
}

.bs-eco-node {
    z-index: 2;
}


/* Positions */

.bs-eco-crm {
    top: 4%;
    left: 50%;
    transform: translateX(-50%);
}

.bs-eco-erp {
    top: 20%;
    right: 5%;
}

.bs-eco-hr {
    bottom: 20%;
    right: 5%;
}

.bs-eco-finance {
    bottom: 4%;
    left: 50%;
    transform: translateX(-50%);
}

.bs-eco-support {
    bottom: 20%;
    left: 5%;
}

.bs-eco-marketing {
    top: 20%;
    left: 5%;
}

.bs-eco-automation {
    top: 47%;
    right: 0;
}

.bs-eco-data {
    top: 47%;
    left: 0;
}


/* ============================================================
   12. PROCESS
============================================================ */

.bs-process-section {
    background: #fff;
}

.bs-process-section .row {
    display: flex;
    flex-wrap: wrap;
}

.bs-process-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.bs-process-card {
    position: relative;
    width: 100%;
    min-height: 270px;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid #e9e9e9;
    transition:
        transform .3s ease,
        background .3s ease,
        border-color .3s ease;
}

.bs-process-card:hover {
    transform: translateY(-6px);
    background: #151515;
    border-color: #151515;
}

.bs-process-card > span {
    position: absolute;
    top: 18px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    line-height: 1;
    color: #eeeeee;
}

.bs-process-card i {
    display: flex;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    background: #fff5ef;
    color: #f05125;
    font-size: 21px;
}

.bs-process-card h3 {
    margin: 0 0 11px;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    font-weight: 500;
    color: #171717;
}

.bs-process-card p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 24px;
    color: #777;
}

.bs-process-card:hover h3 {
    color: #fff;
}

.bs-process-card:hover p {
    color: #aaa;
}

.bs-process-card:hover > span {
    color: rgba(255,255,255,.08);
}

.bs-process-card:hover i {
    background: #f05125;
    color: #fff;
}


/* ============================================================
   13. BUSINESS IMPACT
============================================================ */

.bs-impact-section {
    background: #f7f8fa;
}

.bs-impact-section .row {
    display: flex;
    flex-wrap: wrap;
}

.bs-impact-section [class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.bs-impact-card {
    width: 100%;
    min-height: 235px;
    padding: 30px 25px;
    background: #fff;
    border: 1px solid #e8e8e8;
    text-align: center;
    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.bs-impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.07);
}

.bs-impact-card i {
    display: block;
    margin-bottom: 18px;
    color: #f05125;
    font-size: 31px;
}

.bs-impact-card h3 {
    margin: 0 0 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 23px;
    font-weight: 500;
    color: #181818;
}

.bs-impact-card p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 23px;
    color: #777;
}


/* ============================================================
   14. CUSTOM SOFTWARE
============================================================ */

.bs-custom-section {
    background: #fff;
}

.bs-custom-section .bs-small-title {
    margin-bottom: 13px;
}

.bs-custom-section h2 {
    margin: 0 0 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
    color: #151515;
}

.bs-custom-section h2 span {
    display: block;
    color: #f05125;
}

.bs-custom-section p {
    max-width: 620px;
    margin: 0 0 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 26px;
    color: #777;
}

.bs-check-list {
    margin: 23px 0 0;
    padding: 0;
    list-style: none;
}

.bs-check-list li {
    position: relative;
    margin-bottom: 11px;
    padding-left: 28px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 22px;
    color: #555;
}

.bs-check-list li i {
    position: absolute;
    top: 3px;
    left: 0;
    color: #f05125;
    font-size: 13px;
}


/* ============================================================
   15. OPEN SOURCE NOTE
============================================================ */

.bs-open-source-note {
    padding: 45px 0;
    background: #f7f7f7;
}

.bs-note-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 27px 30px;
    background: #fff;
    border-left: 4px solid #faa41a;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}

.bs-note-icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff7e8;
    color: #e79a00;
    font-size: 22px;
}

.bs-note-box h3 {
    margin: 0 0 8px;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 500;
    color: #222;
}

.bs-note-box p {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    line-height: 24px;
    color: #777;
}


/* ============================================================
   16. FINAL CTA
============================================================ */

.bs-final-cta {
    padding: 100px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(250,164,26,.10), transparent 30%),
        #151515;
}

.bs-final-cta .bs-small-title {
    color: #faa41a;
}

.bs-final-cta h2 {
    margin: 0 0 18px;
    font-family: 'Oswald', sans-serif;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 500;
    color: #fff;
}

.bs-final-cta h2 span {
    display: block;
    color: #f05125;
}

.bs-final-cta p {
    max-width: 650px;
    margin: 0 auto 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 27px;
    color: #aaa;
}

.bs-final-cta .btn_one {
    display: inline-block;
    padding: 14px 30px;
    background: #f05125;
    border: 1px solid #f05125;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .5px;
    text-transform: uppercase;
    transition:
        transform .3s ease,
        box-shadow .3s ease,
        background .3s ease;
}

.bs-final-cta .btn_one:hover {
    background: #d9431b;
    border-color: #d9431b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(240,81,37,.25);
}


/* ============================================================
   17. IMAGE SAFETY
   IMPORTANT:
   Never force business images to fill a box.
============================================================ */

.bs-hero-visual img,
.bs-visual-box img {
    object-fit: contain !important;
    object-position: center center !important;
    max-width: 100% !important;
    width: 100%;
}

.bs-hero-visual,
.bs-visual-box {
    overflow: hidden;
}


/* ============================================================
   18. REMOVE UNWANTED GLOBAL EFFECTS INSIDE PAGE
============================================================ */

.bs-hero-section a,
.bs-intro-section a,
.bs-six-section a,
.bs-open-source-intro a,
.bs-ecosystem-section a,
.bs-platform-section a,
.bs-transformation-section a,
.bs-business-ecosystem a,
.bs-process-section a,
.bs-impact-section a,
.bs-custom-section a,
.bs-final-cta a {
    text-decoration: none;
}


/* ============================================================
   19. TABLET
============================================================ */

@media only screen and (max-width: 991px) {

    .bs-hero-section {
        padding: 115px 0 75px;
    }

    .bs-hero-content {
        padding-right: 0;
        margin-bottom: 45px;
    }

    .bs-hero-content h1 {
        font-size: 50px;
    }

    .bs-hero-visual {
        min-height: 350px;
    }

    .bs-hero-visual img {
        height: 310px;
    }

    .bs-content-box {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .bs-open-source-intro h2 {
        font-size: 37px;
    }

    .bs-open-source-box {
        margin-top: 35px;
    }

    .bs-solution-card {
        min-height: 290px;
    }

    .bs-platform-card {
        min-height: 250px;
    }

    .bs-before-box,
    .bs-after-box {
        min-height: 350px;
    }

    .bs-transform-arrow {
        padding: 20px 0;
        transform: rotate(90deg);
    }

    .bs-ecosystem-diagram {
        min-height: 620px;
    }

    .bs-custom-section .bs-visual-box {
        margin-bottom: 45px;
    }

    .bs-final-cta h2 {
        font-size: 42px;
    }
}


/* ============================================================
   20. MOBILE
============================================================ */

@media only screen and (max-width: 767px) {

    .bs-hero-section {
        padding: 95px 0 60px;
    }

    .bs-hero-content h1 {
        font-size: 40px;
        line-height: 1.12;
    }

    .bs-hero-content p {
        font-size: 14px;
        line-height: 26px;
    }

    .bs-hero-buttons {
        display: block;
    }

    .bs-hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .bs-hero-visual {
        min-height: 280px;
        padding: 15px;
    }

    .bs-hero-visual img {
        height: 250px;
    }

    .bs-intro-section .section-title h2,
    .bs-six-section .section-title h2,
    .bs-ecosystem-section .section-title h2,
    .bs-platform-section .section-title h2,
    .bs-transformation-section .section-title h2,
    .bs-business-ecosystem .section-title h2,
    .bs-process-section .section-title h2,
    .bs-impact-section .section-title h2 {
        font-size: 33px;
    }

    .bs-intro-section .section-title p,
    .bs-six-section .section-title p,
    .bs-ecosystem-section .section-title p,
    .bs-platform-section .section-title p,
    .bs-transformation-section .section-title p,
    .bs-business-ecosystem .section-title p,
    .bs-process-section .section-title p,
    .bs-impact-section .section-title p {
        width: 100%;
        font-size: 13px;
        line-height: 24px;
    }

    .bs-content-box h3 {
        font-size: 30px;
    }

    .bs-visual-box {
        min-height: 290px;
        padding: 15px;
    }

    .bs-visual-box img {
        height: 255px;
    }

    .bs-open-source-intro h2 {
        font-size: 33px;
    }

    .bs-open-source-intro p {
        font-size: 13px;
        line-height: 25px;
    }

    .bs-open-source-box {
        padding: 0;
        gap: 10px;
    }

    .bs-os-item {
        min-height: 120px;
    }

    .bs-os-item i {
        font-size: 23px;
    }

    .bs-os-item span {
        font-size: 15px;
    }

    .bs-info-card,
    .bs-solution-card,
    .bs-platform-card,
    .bs-process-card {
        min-height: auto;
    }

    .bs-info-card {
        padding: 30px 25px;
    }

    .bs-solution-card {
        padding: 30px 24px 45px;
    }

    .bs-platform-card {
        padding: 28px 23px;
    }

    .bs-before-box,
    .bs-after-box {
        min-height: auto;
        padding: 27px 23px;
    }

    .bs-workflow {
        gap: 6px;
    }

    .bs-workflow div {
        min-width: 58px;
        padding: 8px 6px;
        font-size: 9px;
    }

    .bs-workflow i {
        display: none;
    }

    .bs-ecosystem-diagram {
        min-height: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bs-ecosystem-diagram:before,
    .bs-ecosystem-diagram:after {
        display: none;
    }

    .bs-eco-node,
    .bs-eco-core,
    .bs-eco-crm,
    .bs-eco-erp,
    .bs-eco-hr,
    .bs-eco-finance,
    .bs-eco-support,
    .bs-eco-marketing,
    .bs-eco-automation,
    .bs-eco-data {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: 100%;
        min-height: 100px;
        transform: none;
    }

    .bs-eco-core:hover {
        transform: translateY(-5px);
    }

    .bs-eco-core {
        grid-column: 1 / -1;
        order: -1;
        min-height: 120px;
    }

    .bs-note-box {
        display: block;
        padding: 25px;
    }

    .bs-note-icon {
        margin-bottom: 15px;
    }

    .bs-final-cta {
        padding: 75px 0;
    }

    .bs-final-cta h2 {
        font-size: 36px;
    }

    .bs-final-cta p {
        font-size: 13px;
        line-height: 24px;
    }
}


/* ============================================================
   21. SMALL MOBILE
============================================================ */

@media only screen and (max-width: 480px) {

    .bs-hero-content h1 {
        font-size: 34px;
    }

    .bs-hero-section {
        padding-top: 85px;
    }

    .bs-small-title {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .bs-intro-section .section-title h2,
    .bs-six-section .section-title h2,
    .bs-ecosystem-section .section-title h2,
    .bs-platform-section .section-title h2,
    .bs-transformation-section .section-title h2,
    .bs-business-ecosystem .section-title h2,
    .bs-process-section .section-title h2,
    .bs-impact-section .section-title h2 {
        font-size: 29px;
    }

    .bs-card-icon {
        width: 55px;
        height: 55px;
        font-size: 23px;
    }

    .bs-info-card h3 {
        font-size: 23px;
    }

    .bs-solution-card h3 {
        font-size: 22px;
    }

    .bs-tool-list span {
        font-size: 9px;
        padding: 4px 7px;
    }

    .bs-platform-icon {
        width: 48px;
        height: 48px;
    }

    .bs-final-cta h2 {
        font-size: 31px;
    }

}


/* ============================================================
   22. ACCESSIBILITY / REDUCED MOTION
============================================================ */

@media (prefers-reduced-motion: reduce) {

    .bs-hero-buttons .btn,
    .bs-info-card,
    .bs-card-icon,
    .bs-solution-card,
    .bs-solution-card > i,
    .bs-tool-list span,
    .bs-platform-card,
    .bs-os-item,
    .bs-eco-node,
    .bs-process-card,
    .bs-impact-card,
    .bs-final-cta .btn_one {
        transition: none !important;
    }

}


/* ============================================================
   END BUSINESS SOFTWARE SERVICES CSS
============================================================ */