* {
    padding: 0;
    margin: 0
}

body {
    background-color: #fff;
    font-family: source sans pro, sans-serif;
    font-size: 16px;
    line-height: 26px;
    color: #8d9aa8;
    font-weight: 400;
    letter-spacing: -.2px;
    position: relative;
    overflow-x: hidden
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #ff7607
}

::selection {
    background-color: #ff7607;
    color: #fff
}

-webkit-::selection {
    background-color: #ff7607;
    color: #fff
}

::-moz-selection {
    background-color: #ff7607;
    color: #fff
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: poppins, sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #263a4f
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5 {
    color: #fff
}

.bg-dark p,
.bg-dark span {
    color: #999
}

h1 {
    font-size: 45px;
    font-weight: 400;
    line-height: 55px;
    margin: 0 0 10px;
    color: #263a4f
}

h2 {
    font-size: 32px;
    line-height: 42px;
    color: #263a4f;
    margin: 0 0 10px;
    font-weight: 600;
    letter-spacing: -1px
}

h3,
h4 {
    margin: 0 0 10px;
    font-weight: 400;
    line-height: 1.7;
    color: #263a4f;
    letter-spacing: -.5px
}

h3 {
    font-size: 20px
}

h4 {
    font-size: 16px
}

h5,
h6 {
    font-size: 14px;
    margin: 0 0 10px
}

img {
    border: none;
    outline: none;
    max-width: 100%
}

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

p,
li,
a,
span {}

p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 15px
}

a,
a:hover {
    text-decoration: none
}

a:focus {
    outline: 0;
    text-decoration: none
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #ddd !important
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #ddd !important
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #ddd !important
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #ddd !important
}

button {
    border: none;
    background: 0 0
}

.padding {
    padding: 100px 0
}

.no-padding {
    padding: 0
}

.padding-15 {
    padding: 15px
}

.padding-20 {
    padding: 20px
}

.box-padding {
    padding: 0 50px
}

.bg-white {
    background-color: #fff
}

.bg-grey {
    background-color: #f9fafa
}

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

.bd-top {
    border-top: 1px solid #e5e5e5
}

.bd-bottom {
    border-bottom: 1px solid #e5e5e5
}

.mb-10 {
    margin-bottom: 10px
}

.mb-15 {
    margin-bottom: 15px
}

.mb-20 {
    margin-bottom: 20px
}

.mb-25 {
    margin-bottom: 25px
}

.mb-30 {
    margin-bottom: 30px
}

.mb-35 {
    margin-bottom: 35px
}

.mb-40 {
    margin-bottom: 40px
}

.mb-45 {
    margin-bottom: 45px
}

.mb-50 {
    margin-bottom: 50px
}

/* Quote modal – clean, low-friction popup */
.quote-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.quote-modal.is-open {
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
}

.quote-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(38, 58, 79, 0.35);
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.quote-modal-dialog {
    position: relative;
    z-index: 1;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: scale(0.96);
    transition: transform 0.25s ease;
}

.quote-modal.is-open .quote-modal-dialog {
    transform: scale(1);
}

.quote-modal-header {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 0 20px;
    gap: 12px;
}

.quote-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: #263a4f;
    letter-spacing: -0.3px;
}

.quote-modal-close {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 1.5rem;
    line-height: 1;
    color: #8d9aa8;
    background: #f0f2f5;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: color 0.15s ease, background 0.15s ease;
}

.quote-modal-close:hover {
    color: #263a4f;
    background: #e4e6ea;
}

.quote-modal-body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 16px 20px 20px 20px;
    -webkit-overflow-scrolling: touch;
}

.quote-modal-intro {
    margin: 0 0 18px 0;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6b7c8f;
}

.quote-form .form-group {
    margin-bottom: 14px;
}

.quote-form .form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quote-form .form-row .form-group {
    flex: 1 1 0;
    min-width: 0;
}

.quote-form label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #263a4f;
}

.quote-form .required {
    color: #c0392b;
}

.quote-form .form-control {
    width: 100%;
    padding: 10px 12px;
    font-size: 0.9375rem;
    line-height: 1.4;
    color: #263a4f;
    background: #fff;
    border: 1px solid #e0e3e8;
    border-radius: 8px;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.quote-form .form-control:focus {
    outline: none;
    border-color: #ff7607;
    box-shadow: 0 0 0 3px rgba(255, 118, 7, 0.12);
}

.quote-form .form-control::placeholder {
    color: #a8b2bd;
}

.quote-file-input {
    width: 100%;
    padding: 8px 0;
    font-size: 0.875rem;
    color: #263a4f;
}

.quote-form .form-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.75rem;
    color: #8d9aa8;
}

.quote-form-msg {
    margin-bottom: 12px;
    padding: 10px 12px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.quote-form-msg.alert-success {
    background: #e8f5e9;
    color: #2e7d32;
}

.quote-form-msg.alert-danger {
    background: #ffebee;
    color: #c62828;
}

.quote-form .form-actions {
    margin-top: 6px;
    padding-top: 4px;
}

.quote-submit-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #fff;
    background: #ff7607;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.15s ease, opacity 0.15s ease;
}

.quote-submit-btn:hover {
    background: #e66a06;
}

.quote-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

body.quote-modal-open {
    overflow: hidden;
}

@media (max-width: 567px) {
    .quote-modal {
        padding: 12px;
        align-items: flex-end;
    }

    .quote-modal-dialog {
        max-height: 92vh;
        border-radius: 12px 12px 0 0;
    }

    .quote-modal-header,
    .quote-modal-body {
        padding-left: 18px;
        padding-right: 18px;
    }
}

.ml-15 {
    margin-left: 15px
}

.ml-20 {
    margin-left: 20px
}

.ml-25 {
    margin-left: 25px
}

.ml-30 {
    margin-left: 30px
}

.ml-35 {
    margin-left: 35px
}

.mt-20 {
    margin-top: 20px
}

.mt-30 {
    margin-top: 30px
}

.mt-40 {
    margin-top: 40px
}

.mt-50 {
    margin-top: 50px
}

.fz-28 {
    font-size: 28px
}

.fz-24 {
    font-size: 24px
}

.fz-22 {
    font-size: 22px
}

.fz-20 {
    font-size: 20px
}

.fz-18 {
    font-size: 18px
}

.fz-16 {
    font-size: 16px
}

.text-black {
    color: #333
}

.text-white {
    color: #fff
}

.box-shadow,
.box-shadow-hover:hover {
    -webkit-box-shadow: 0 .2rem 2.8rem rgba(36, 36, 36, .1);
    -moz-box-shadow: 0 .2rem 2.8rem rgba(36, 36, 36, .1);
    box-shadow: 0 .2rem 2.8rem rgba(36, 36, 36, .1)
}

.loaded .site-preloader-wrap {
    opacity: 0;
    visibility: hidden
}

.site-preloader-wrap {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 0;
    left: 0
}

.site-preloader-wrap .spinner {
    background-color: #ff7607;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: sk-scaleout 1s infinite ease-in-out;
    animation: sk-scaleout 1s infinite ease-in-out
}

@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.btn_group {}

.btn_group a {
    margin: 5px
}

.btn_group_left a {
    margin-right: 15px;
    margin-bottom: 15px
}

.default-btn {
    background-color: #ff7607;
    text-transform: uppercase;
    font-family: work sans, sans-serif;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    line-height: 45px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: .5px;
    padding: 0 30px;
    -webkit-box-shadow: 0 3px 10px rgba(71, 44, 173, .2);
    box-shadow: 0 3px 10px rgba(71, 44, 173, .2)
}

.default-btn:hover {
    background-color: #232427;
    color: #fff
}

.section-heading h2 {
    font-size: 32px;
    display: block
}

.section-heading span {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    color: #263a4f;
    font-weight: 600;
    letter-spacing: 0;
    font-family: work sans, sans-serif;
    position: relative;
    margin-bottom: 10px;
    z-index: 1
}

.section-heading span:before {
    background-color: transparent;
    position: absolute;
    content: "";
    width: 20px;
    height: 30px;
    left: calc(50% - 10px);
    top: calc(50% - 15px);
    border: 3px solid #ff7607;
    opacity: .5;
    z-index: -1
}

a,
a:hover,
.overlay,
img,
.form-control,
.form-control:hover,
button {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.header {
    background-color: #fff;
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .06)
}

.primary-header {
    border-bottom: 1px solid rgba(38, 58, 79, .08);
    transition: border-color .2s ease, box-shadow .2s ease
}

.viewport-sm .primary-header {
    padding: 10px 0
}

.header-menu-wrap {
    margin-left: auto;
    flex-shrink: 1;
    min-width: 0
}

.header-menu-wrap ul {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    list-style: none
}

.sticky-header {
    width: 100%;
    position: fixed;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    z-index: 99
}

.sticky-header .primary-header {
    background-color: #fff;
    box-shadow: 0 2px 5px -2px rgba(0, 0, 0, .1)
}

.sticky-header.headroom--top {
    transform: translateY(-100%)
}

.headroom {
    transition: transform .25s ease-in-out;
    will-change: transform
}

.headroom--unpinned {
    transform: translateY(-100%)
}

.headroom--pinned {
    transform: translateY(0)
}

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

.mobile-menu-icon {
    display: none
}

.burger-menu {
    width: 20px;
    height: 17px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    -webkit-transition: transform 330ms ease-out;
    -moz-transition: transform 330ms ease-out;
    -o-transition: transform 330ms ease-out;
    transition: transform 330ms ease-out
}

.burger-menu.menu-open {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.line-menu {
    background-color: #222;
    border-radius: 2px;
    width: 100%;
    height: 3px
}

.line-menu.line-half {
    width: 50%
}

.line-menu.first-line {
    transition: transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transform-origin: right
}

.menu-open .line-menu.first-line {
    -webkit-transform: rotate(-90deg) translateX(3px);
    -moz-transform: rotate(-90deg) translateX(3px);
    -o-transform: rotate(-90deg) translateX(3px);
    transform: rotate(-90deg) translateX(3px)
}

.line-menu.last-line {
    align-self: flex-end;
    transition: transform 330ms cubic-bezier(.54, -.81, .57, .57);
    transform-origin: left
}

.menu-open .line-menu.last-line {
    -webkit-transform: rotate(-90deg) translateX(-3px);
    -moz-transform: rotate(-90deg) translateX(-3px);
    -o-transform: rotate(-90deg) translateX(-3px);
    transform: rotate(-90deg) translateX(-3px)
}

.header-menu-wrap ul li {
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap
}

.header-menu-wrap ul li>a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: poppins, sans-serif;
    font-size: 11px;
    letter-spacing: .02em;
    text-transform: uppercase;
    font-weight: 600;
    color: #263a4f;
    padding: 0 10px;
    height: 80px;
    line-height: 80px;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    white-space: nowrap
}

.more-menu-arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: .85;
    transition: transform .25s ease
}

.header-menu-wrap li.has-dropdown:hover>a .more-menu-arrow {
    transform: rotate(180deg)
}

.header-menu-wrap ul li:hover>a {
    color: #ff7607
}

.header-menu-wrap ul li a.current {
    color: #ff7607
}

.header-menu-wrap li ul,
.header-menu-wrap li ul.dropdown-menu {
    background-color: #fff;
    display: block;
    width: 260px;
    padding: 12px 0;
    border-radius: 8px;
    border: 1px solid rgba(38, 58, 79, .08);
    -webkit-box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 0;
    -webkit-transition: opacity .25s ease, visibility .25s ease, transform .2s ease;
    -o-transition: opacity .25s ease, visibility .25s ease, transform .2s ease;
    transition: opacity .25s ease, visibility .25s ease, transform .2s ease
}

.header-menu-wrap li:hover>ul {
    opacity: 1;
    visibility: visible;
    z-index: 99;
    transform: translateX(-50%) translateY(2px)
}

.header-menu-wrap li ul.more-dropdown {
    width: 280px;
    max-height: 70vh;
    overflow-y: auto
}

.header-menu-wrap li li {
    display: block;
    padding: 0 35px;
    margin-bottom: 5px;
    text-align: left;
    position: relative
}

.header-menu-wrap li li:last-child {
    margin: 0
}

.header-menu-wrap li li>a {
    font-family: source sans pro, sans-serif;
    display: flex;
    align-items: center;
    gap: 10px;
    height: auto;
    line-height: inherit;
    color: #263a4f;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 2.5;
    text-transform: capitalize;
    padding: 10px 20px;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    border-radius: 4px;
    margin: 0 8px
}

.header-menu-wrap li li>a i {
    font-size: 13px;
    color: #ff7607;
    opacity: .85;
    width: 18px;
    text-align: center
}

.header-menu-wrap li li:hover>a i {
    opacity: 1
}

.header-menu-wrap li li:hover>a {
    color: #ff7607 !important;
    background-color: #f9f9f9
}

.header-menu-wrap li ul li ul {
    width: 250px;
    position: absolute;
    left: 100%;
    top: 0
}

@media(min-width:993px) {
    .header-menu-wrap li ul {
        display: block !important
    }
    .header-menu-wrap ul li>a {
        font-size: 13px;
        padding: 0 14px;
        gap: 8px
    }
    .more-menu-arrow {
        font-size: 11px;
        margin-left: 5px
    }
}

@media(max-width:992px) {

    .headroom--top .header-menu-wrap,
    .headroom--unpinned .header-menu-wrap {
        display: none !important
    }

    .hdr-call-full {
        display: none !important
    }

    .header-right a.menu-btn {
        padding: 0 14px;
        font-size: 12px
    }

    .dropdown-plus {
        width: 49px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 0;
        right: 0;
        cursor: pointer
    }

    .dropdown-plus:before,
    .dropdown-plus:after {
        position: absolute;
        content: '';
        top: 24px;
        right: 18px;
        width: 13px;
        height: 1px;
        background-color: #222
    }

    .dropdown-plus:after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg)
    }

    .dropdown-plus.dropdown-open:after {
        display: none
    }

    .mobile-menu-icon {
        display: block
    }

    .header-menu-wrap {
        display: none;
        background-color: #fff;
        width: 100%;
        height: auto;
        padding: 0 20px;
        position: absolute;
        left: 0;
        top: 50px;
        z-index: 999
    }

    .header-menu-wrap ul {
        flex-direction: column;
        flex-wrap: wrap;
        align-items: stretch
    }

    .header-menu-wrap ul li {
        display: block;
        border-bottom: 1px solid rgba(0, 0, 0, .04)
    }

    .header-menu-wrap ul li:first-child {
        border-top: 1px solid rgba(0, 0, 0, .04)
    }

    .header-menu-wrap ul li>a {
        padding: 10px 15px;
        height: inherit;
        line-height: inherit
    }
    .more-menu-arrow {
        display: none
    }

    .header-menu-wrap ul li ul li ul,
    .header-menu-wrap ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none
    }

    .header-menu-wrap li li {
        padding-left: 11px
    }

    .header-menu-wrap li li:last-child {
        border-bottom: none
    }

    .header-menu-wrap li li>a {
        color: #263a4f;
        font-size: 13px
    }

    .header-menu-wrap li li:hover>a {
        color: #666
    }
}

@media(max-width:580px) {
    .header-right a.menu-btn {
        line-height: 40px;
        font-size: 10px;
        padding: 0 25px
    }

    .primary-header .header-logo {
        max-width: 150px
    }
}

.primary-header-inner .header-right {
    display: flex;
    align-items: center;
    line-height: 80px;
    margin-left: 20px
}

.header-right .mobile-menu-icon {
    margin-left: 20px
}

.header-right a.menu-btn {
    background-color: #ff7607;
    line-height: 40px;
    color: #fff;
    border-radius: 6px;
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: background-color .25s ease, opacity .25s ease, transform .2s ease
}

.menu-btn-icon {
    font-size: 14px;
    opacity: .95
}

.menu-btn-text {
    display: inline
}

.hdr-call-full {
    display: inline
}

.header-right a.menu-btn:hover {
    background-color: #e66a06;
    opacity: 1;
    color: #fff;
    transform: translateY(-1px)
}

.primary-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative
}

.primary-header .header-logo {
    max-width: 110px
}

.viewport-lg .primary-header .header-menu-wrap {
    display: block !important
}

.about-section {}

.about-wrap {
    display: flex;
    align-items: center
}

.about-content {}

.about-content h2 {
    margin-bottom: 20px
}

.about-content p {
    margin-bottom: 30px
}

.about-content .about-lead {
    font-size: 17px;
    color: #263a4f;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 14px
}

.about-offer-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.about-offer-list li {
    position: relative;
    padding-left: 1.35em;
    margin-bottom: 12px;
    line-height: 1.5;
    color: #5a6b7a
}

.about-offer-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: .5em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff7607
}

.about-offer-list li strong {
    color: #263a4f
}

.about-promo {
    padding-left: 80px
}

.about-promo .about-promo-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px
}

.about-promo .about-promo-item:last-child {
    margin-bottom: 0
}

.about-promo .about-promo-item i {
    font-size: 70px;
    color: #ff7607;
    margin-right: 30px
}

.service-section {
    position: relative;
    z-index: 1
}

.service-section .dark-bg {
    position: absolute;
    background-color: #232427;
    width: 100%;
    height: 350px;
    left: 0;
    top: 0;
    z-index: -2;
    padding-top: 80px
}

.service-section:before {
    background-image: url(../img/map-pattern.webp);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

.section-heading.dark-background h2 {
    color: #fff
}

.section-heading.dark-background span {
    color: #ddd
}

/* ── Core Services (What We Do) ─────────────────────────── */
.core-services-section {
    background-color: #fff;
    padding: 72px 0 80px;
    border-top: 1px solid #e8ecf0;
}

.core-services-section .section-heading {
    margin-bottom: 48px;
}

.core-services-section .section-heading h2 {
    margin-bottom: 12px;
}

.core-services-section .section-sub {
    max-width: 540px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.55;
    color: #5a6b7a;
}

.core-services-row {
    align-items: stretch;
}

.core-service-card-link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

.core-service-card-link:hover {
    color: inherit;
}

.core-service-card {
    background: #f9fafa;
    border-radius: 12px;
    padding: 36px 28px 32px;
    height: 100%;
    box-shadow: none;
    border: 1px solid #e5e9ee;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.core-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #ff7607;
}

.core-service-card:hover {
    border-color: rgba(255, 118, 7, .25);
    background: #fafbfc;
}

.core-service-icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background-color: rgba(255, 118, 7, .12);
    color: #ff7607;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.core-service-icon-wrap i {
    font-size: 22px;
}

.core-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #263a4f;
    margin-bottom: 8px;
    line-height: 1.3;
}

.core-service-tagline {
    font-size: 15px;
    line-height: 1.5;
    color: #5a6b7a;
    margin-bottom: 20px;
}

.core-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.core-service-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    color: #5a6b7a;
}

.core-service-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ff7607;
}

.core-service-list li strong {
    color: #263a4f;
}

.core-service-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.core-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #ff7607;
    background-color: rgba(255, 118, 7, .08);
    padding: 5px 10px;
    border-radius: 4px;
}

.core-service-card-actions {
    text-align: center;
    margin-top: auto;
    padding-top: 8px;
}

.core-service-btn {
    display: inline-block;
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    color: #fff;
    background-color: #ff7607;
    padding: 12px 24px;
    line-height: 1.4;
    border-radius: 6px;
    text-decoration: none;
    border: none;
    transition: background-color .2s ease;
}

.core-service-btn:hover {
    background-color: #e66a06;
    color: #fff;
}

@media (max-width: 991px) {
    .core-services-section {
        padding: 56px 0 64px;
    }

    .core-services-section .section-heading {
        margin-bottom: 36px;
    }

    .core-service-card {
        padding: 32px 24px 28px;
    }

    .core-services-section .section-sub {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .core-services-section {
        padding: 48px 0 56px;
    }

    .core-service-card h3 {
        font-size: 18px;
    }

    .core-service-tagline {
        font-size: 14px;
    }
}

.service-item {
    background-color: #fff;
    padding: 40px 20px;
    border-right: 1px solid rgba(0, 0, 0, .03);
    transition: all .2s ease-in-out;
    text-align: center;
    position: relative;
    z-index: 1
}

.service-item .service-icon {
    color: #ff7607;
    font-size: 60px;
    margin-bottom: 10px
}

.service-item .overlay-icon {
    position: absolute;
    left: 50%;
    bottom: 50%;
    font-size: 130px;
    color: #ff7607;
    opacity: .09;
    transform: translate(-50%, 50%);
    z-index: -1
}

.service-item h3 {
    font-size: 18px
}

.service-item .read-more {
    font-family: work sans, sans-serif;
    color: #263a4f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative
}

.service-item .read-more:hover {
    opacity: .8
}

.service-item:hover {
    background-color: #ff7607;
    transition: all .2s ease-in-out
}

.service-item:hover h3,
.service-item:hover .service-icon,
.service-item:hover .overlay-icon,
.service-item:hover p,
.service-item:hover .read-more {
    color: #fff;
    transition: all .2s ease-in-out
}

.service-carousel {
    position: relative
}

.service-carousel .owl-nav {}

.service-carousel .owl-nav div {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    left: -70px;
    top: calc(50% - 20px);
    background-color: #fff;
    color: #263a4f;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.service-carousel .owl-nav div.owl-next {
    left: auto;
    right: -70px
}

.service-section.section-2 {
    position: relative;
    z-index: 1;
    padding-bottom: 100px
}

.service-section.section-2 .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.service-content {}

.service-content span {
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block
}

.service-content h2 {
    margin-bottom: 20px
}

.service-content p {
    margin-bottom: 30px
}

.services-list .offset-top {
    transform: translateY(30px)
}

.services-list .service-item {
    text-align: left
}

.services-list .service-item i {
    font-size: 50px;
    color: #ff7607;
    margin-bottom: 10px;
    display: block
}

.services-list .service-item:hover i {
    color: #fff
}

.services-list .service-item h3 {
    margin: 0 0 5px
}

.services-list .service-item p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0
}

.promo-section {}

.promo-wrap {}

.promo-item {
    padding: 30px 15px
}

.promo-item h3 {
    font-size: 18px;
    margin: 0 0 5px
}

.promo-item i {
    display: block;
    font-size: 50px;
    color: #ff7607;
    margin-bottom: 10px
}

.promo-item p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0
}

.work-pro-section {
    background-image: url(../img/d-slide-6.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1
}

.work-pro-section:before {
    background-color: rgba(35, 36, 39, .8);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

/* Who We Help — visible heading, enhanced section */
.who-we-help-section {
    padding: 56px 0 64px;
    position: relative;
    z-index: 1;
}

.who-we-help-heading {
    margin-bottom: 44px;
}

.who-we-help-label {
    display: inline-block;
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #ff7607;
    margin-bottom: 10px;
}

.who-we-help-title {
    font-family: poppins, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 14px;
    line-height: 1.25;
}

.who-we-help-sub {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
    max-width: 560px;
    margin: 0 auto;
}

.who-we-help-row {
    align-items: stretch;
}

.who-we-help-card {
    padding: 28px 20px 24px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    margin-bottom: 0;
}

.who-we-help-card .number {
    margin-bottom: 16px;
}

.who-we-help-card h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.who-we-help-card p {
    color: rgba(255, 255, 255, .85);
    font-size: 14px;
    line-height: 1.5;
}

.who-we-help-card .number-line {
    background-color: rgba(255, 255, 255, .15);
}

@media (max-width: 991px) {
    .who-we-help-section {
        padding: 48px 0 56px;
    }

    .who-we-help-title {
        font-size: 26px;
    }

    .who-we-help-sub {
        font-size: 15px;
    }

    .who-we-help-card {
        padding: 24px 16px 20px;
    }
}

@media (max-width: 576px) {
    .who-we-help-title {
        font-size: 22px;
    }

    .who-we-help-card h3 {
        font-size: 16px;
    }
}

.work-pro-item {}

.work-pro-item .number {
    font-size: 18px;
    color: #fff;
    font-family: poppins, sans-serif;
    font-weight: 600;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #ff7607;
    display: inline-block;
    border-radius: 50%;
    margin-bottom: 20px;
    position: relative;
    z-index: 1
}

.work-pro-item .number-line {
    background-color: rgba(255, 255, 255, .08);
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    top: 25px;
    left: 150px;
    z-index: -1
}

.work-pro-item h3 {
    color: #fff;
    font-size: 18px
}

.work-pro-item p {
    color: #ddd;
    margin: 0
}

/* How It Works — light section: less padding, stronger text */
.how-it-works-section {
    padding: 0 0 64px;
    background-color: #fff;
}

.how-it-works-section .section-heading {
    margin-bottom: 40px;
}

.how-it-works-section .section-heading span {
    color: #263a4f;
}

.how-it-works-section .section-heading h2 {
    color: #263a4f;
}

.how-it-works-section .work-pro-item h3 {
    color: #263a4f;
    font-weight: 600;
}

.how-it-works-section .work-pro-item p {
    color: #4a5c6d;
    font-size: 15px;
    line-height: 1.55;
}

.how-it-works-section .work-pro-item .number {
    color: #fff;
    background-color: #ff7607;
}

.how-it-works-section .work-pro-item .number-line {
    background-color: rgba(38, 58, 79, .15);
}

.projects-section {}

.projects-section .container-fluid {
    padding: 0
}

.projects-loading,
.projects-empty {
    padding: 40px 20px;
    color: #6b7c8f
}

.project-cta-section {
    padding: 50px 20px
}

.project-cta-text {
    margin: 0 0 20px 0;
    font-size: 1.125rem;
    color: #263a4f
}

.projects-carousel {}

.project-item {
    position: relative;
    overflow: hidden;
    z-index: 1;
    cursor: pointer
}

.project-item img {
    width: 100%
}

.project-item .overlay {
    background-color: rgba(255, 118, 7, .8);
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    z-index: 1
}

.project-item:hover .overlay {
    visibility: visible;
    opacity: 1;
    cursor: pointer;
    transition: all 300ms ease
}

.projects-content {
    position: absolute;
    width: 100%;
    height: auto;
    left: 0;
    bottom: 0;
    padding: 30px;
    z-index: 1;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all .4s cubic-bezier(.37, .31, .2, .85);
    transition: all .4s cubic-bezier(.37, .31, .2, .85)
}

.project-item:hover .projects-content {
    transform: translateY(0)
}

.project-item .tittle:hover {
    text-decoration: underline
}

.projects-content .category {
    font-family: work sans, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 15px;
    color: #fff;
    display: block
}

.projects-content .tittle {
    font-size: 18px;
    color: #fff;
    line-height: 26px;
    font-weight: 600;
    letter-spacing: 0;
    display: block
}

.project-item .view-icon {
    position: absolute;
    width: auto;
    height: auto;
    right: 40px;
    top: 30px;
    display: block;
    font-size: 25px;
    color: #fff;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 400ms ease;
    -o-transition: all 400ms ease;
    transition: all 400ms ease
}

.project-item:hover .view-icon {
    cursor: pointer;
    right: 20px;
    visibility: visible;
    opacity: 1;
    z-index: 1
}

/* Project detail modal (brief) */
.project-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility .2s, opacity .2s
}

.project-modal[aria-hidden="false"].project-modal-visible {
    visibility: visible;
    opacity: 1
}

.project-modal-backdrop {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5)
}

.project-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow: auto
}

.project-modal-content {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
    padding: 32px 28px
}

.project-modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f0f2f5;
    border-radius: 50%;
    font-size: 22px;
    line-height: 1;
    color: #263a4f;
    cursor: pointer;
    padding: 0
}

.project-modal-close:hover {
    background: #e5e7eb
}

.project-modal-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #ff7607;
    margin-bottom: 8px
}

.project-modal-title {
    margin: 0 0 16px 0;
    font-size: 1.375rem;
    font-weight: 600;
    color: #263a4f;
    line-height: 1.3
}

.project-modal-summary {
    margin: 0 0 24px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #555
}

.project-modal-body .default-btn {
    display: inline-block
}

.projects-carousel {
    position: relative
}

.projects-carousel .owl-nav {}

.projects-carousel .owl-nav div {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    left: -70px;
    top: calc(50% - 20px);
    background-color: #fff;
    color: #263a4f;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.projects-carousel .owl-nav div.owl-next {
    left: auto;
    right: -70px
}

.project-gallery {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.project-gallery img {
    width: 100%;
    height: auto;
    display: block
}

.project-single-section {
    position: relative;
    z-index: 1
}

.project-single-section .dots {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.project-single-content {
    background-color: #fff;
    padding-left: 30px
}

.project-single-content p,
.project-single-content h2 {
    margin-bottom: 20px
}

.project-single-content .project-details li {
    line-height: 40px
}

.project-single-content .project-details span {
    font-family: work sans, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    color: #263a4f;
    font-size: 14px;
    letter-spacing: 0;
    width: 150px;
    display: inline-block
}

.cta-section {
    background-image: url(../img/cta-bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1
}

.cta-section:before {
    background-color: rgba(35, 36, 39, .8);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

.cta-content {}

.cta-content span {
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
    color: #ddd
}

.cta-content h2 {
    color: #fff;
    font-size: 42px;
    line-height: 46px;
    margin-bottom: 30px
}

.content-section {}

.content-wrap {
    display: flex;
    align-items: center
}

.content-wrap img {
    border-radius: 5px
}

.content-info {}

.content-info span {
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block
}

.content-info h2 {
    margin-bottom: 20px
}

.content-info p {
    margin-bottom: 30px
}

.counter-section {
    background-image: url(../img/counter-bg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1
}

.counter-section:before {
    background-color: rgba(35, 36, 39, .8);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

.counter-content {
    text-align: center
}

.counter-content .counter {
    font-family: work sans, sans-serif;
    color: #ff7607;
    font-size: 48px;
    line-height: 1;
    font-weight: 600;
    position: relative;
    display: block;
    margin: 0 0 10px
}

.counter-content h4 {
    font-family: work sans, sans-serif;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
    display: block;
    text-transform: uppercase
}

.team-section {
    position: relative;
    z-index: 1
}

.team-section .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.team-wrap .col-lg-3 {
    padding: 0
}

.team-item {
    position: relative;
    overflow: hidden;
    z-index: 1
}

.team-item img {
    width: 100%
}

.team-item .team-content {
    display: block
}

.team-item .team-content h3 {
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
    bottom: -58px;
    background-color: #fff;
    box-shadow: 0 14px 70px -10px rgba(0, 0, 0, .15);
    transform: rotate(-90deg);
    transform-origin: 0 0;
    padding: 10px 15px;
    font-size: 16px;
    z-index: 2
}

.bg-dark .team-item .team-content h3 {
    color: #263a4f
}

.team-item .team-content span {
    position: absolute;
    width: auto;
    height: auto;
    right: 20px;
    bottom: 20px;
    color: #fff;
    font-size: 10px;
    letter-spacing: 1px;
    font-family: work sans, sans-serif;
    padding: 5px 10px;
    background-color: #ff7607;
    box-shadow: 0 14px 70px -10px rgba(0, 0, 0, .15);
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2
}

.team-item .team-social {
    position: absolute;
    width: auto;
    height: auto;
    right: 20px;
    top: 20px;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
    transition: all .3s linear
}

.team-item .team-social li {
    transform: translateX(100px);
    transition: all .3s linear
}

.team-item .team-social li:nth-child(1) {
    transition-delay: 0ms
}

.team-item .team-social li:nth-child(2) {
    transition-delay: 100ms
}

.team-item .team-social li:nth-child(3) {
    transition-delay: 150ms
}

.team-item .team-social li:nth-child(4) {
    transition-delay: 200ms
}

.team-item:hover .team-social li {
    transform: translateX(0)
}

.team-item .team-social li a {
    color: #fff;
    margin-bottom: 10px;
    display: block
}

.team-item:hover img {
    transform: scale(1.08);
    cursor: pointer
}

.team-item:hover .team-social {
    visibility: visible;
    opacity: 1
}

.team-item .overlay {
    background-color: rgba(0, 0, 0, .2);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0
}

.team-item:hover .overlay {
    visibility: visible;
    opacity: 1
}

.testimonial-section {
    position: relative;
    z-index: 1
}

.testimonial-section.padding {
    padding-top: 50px;
    padding-bottom: 50px
}

.testimonial-section .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.testi-item img {
    width: 100px !important;
    height: 100px;
    line-height: 100px;
    border-radius: 50%
}

.testimonial-carousel .owl-item {
    display: flex;
    align-items: stretch;
}

.testimonial-carousel .testi-item {
    min-height: 280px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 30px 28px;
}

.testimonial-carousel .testi-content {
    padding-left: 0;
    flex: 1;
}

.testi-content h3 {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    margin: 0
}

.testi-content span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-family: work sans, sans-serif
}

.testi-item {
    background-color: #fff;
    position: relative;
    padding: 30px;
    border-left: 4px solid #ff7607;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.testi-item .fa-quote-right {
    position: absolute;
    right: 30px;
    bottom: 25px;
    font-size: 50px;
    color: #ff7607;
    opacity: .5
}

.testi-content .rattings {
    display: inline-block;
    margin-left: 5px
}

.testi-content .rattings li {
    display: inline-block
}

.testi-content .rattings li i {
    font-size: 10px;
    color: #ff7607;
    display: inline-block
}

.testimonial-google-link-wrap {
    margin: 56px 0 0;
    padding: 0;
    text-align: right;
    position: relative;
    z-index: 2;
}

.testimonial-google-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ff7607;
    text-decoration: none;
    padding: 8px 4px;
    position: relative;
    z-index: 2;
}

.testimonial-google-link:hover {
    color: #e66a06;
    text-decoration: underline;
}

.owl-controls .owl-dots {
    width: 100%;
    height: auto;
    position: absolute;
    left: 0;
    bottom: -50px;
    text-align: center
}

.owl-controls .owl-dots .owl-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 1px;
    background-color: #555;
    margin: 0 3px;
    position: relative;
    text-align: center
}

.owl-controls .owl-dots .owl-dot.active {
    background-color: #ff7607
}

.page-header {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: hidden
}

.page-header-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -1
}

.page-header:before {
    background-color: rgba(0, 0, 0, .1);
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1
}

.page-content {}

.page-content h2 {
    color: #fff;
    font-size: 36px
}

.page-content p {
    color: #ddd;
    margin: 0
}

.error-section {}

.error-content {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: center;
    justify-content: center
}

.error-content img {
    max-width: 100%
}

.error-content .error-info {
    padding-left: 50px;
    text-align: center
}

.error-content .error-info h2 {
    font-size: 200px;
    line-height: 200px;
    letter-spacing: -10px
}

.error-content .error-info a {
    color: #263a4f;
    font-weight: 600;
    text-decoration: underline
}

.error-content .error-info a:hover {
    color: #ff7607
}

.contact-section {
    position: relative;
    z-index: 1
}

.contact-section .dots {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.contact-info h3 {
    line-height: 28px
}

.contact-info h4 {
    font-size: 15px;
    line-height: 28px
}

.contact-info span {
    text-transform: uppercase;
    margin-right: 5px
}

.contact-info .contact-lead {
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.6;
    color: #555
}

.contact-channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px
}

.contact-channel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 18px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,.08);
    text-decoration: none;
    color: inherit;
    border: 1px solid #eee;
    transition: border-color .2s, box-shadow .2s, transform .15s
}

.contact-channel:hover {
    border-color: #ff7607;
    box-shadow: 0 4px 20px rgba(255,118,7,.15);
    transform: translateY(-2px)
}

.contact-channel-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,118,7,.12);
    color: #ff7607;
    border-radius: 10px;
    font-size: 18px;
    margin-bottom: 12px
}

.contact-channel-social .contact-channel-icon {
    background: #f0f2f5;
    color: #263a4f
}

.contact-channel:hover .contact-channel-icon {
    background: #ff7607;
    color: #fff
}

.contact-channel-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #888;
    margin-bottom: 4px
}

.contact-channel-value {
    font-size: 14px;
    font-weight: 500;
    color: #263a4f;
    line-height: 1.4;
    word-break: break-word
}

.contact-channel-social .contact-channel-value {
    display: none
}

.contact-addresses {
    padding-top: 20px;
    border-top: 1px solid #eee
}

.contact-address-item {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555
}

.contact-address-item:last-child {
    margin-bottom: 0
}

@media (max-width: 576px) {
    .contact-channels {
        grid-template-columns: 1fr
    }
}

.form-control {
    background-color: #fff;
    border-radius: 0;
    padding: 15px 10px;
    box-shadow: none
}

.form-control:focus {
    border-color: #ff7607;
    box-shadow: none;
    outline: none
}

#form-messages {
    display: none
}

#form-messages.alert-danger,
#form-messages.alert-success {
    display: block
}

#google-map {
    width: 100%;
    height: 400px
}

.blog-section {}

.blog-section.bg-dark .dots {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.blog-item .blog-thumb {
    position: relative
}

.blog-item .blog-thumb .category {
    background-color: #ff7607;
    padding: 5px 15px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: work sans, sans-serif;
    position: absolute;
    width: auto;
    height: auto;
    left: 0;
    bottom: 0
}

.blog-item .blog-thumb .category a {
    color: #fff
}

.blog-item .blog-thumb img {
    width: 100%;
    margin: 0
}

.blog-content {
    background-color: #f9fafa;
    padding: 30px
}

.blog-content h3 {
    line-height: 24px
}

.blog-content h3 a {
    color: #263a4f;
    font-size: 18px;
    line-height: 24px
}

.blog-content h3 a:hover {
    color: #ff7607
}

.blog-content .read-more {
    font-family: work sans, sans-serif;
    color: #263a4f;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    padding-left: 30px;
    transition: all 200ms linear 0ms
}

.blog-content .read-more:before {
    background-color: #ff7607;
    position: absolute;
    content: "";
    width: 20px;
    height: 2px;
    left: 0;
    top: calc(50% - 1px);
    transition: all 200ms linear 0ms
}

.blog-content .read-more:hover {
    color: #ff7607;
    padding-left: 40px
}

.blog-content .read-more:hover:before {
    width: 30px
}

.pagination-wrap {}

.pagination-wrap li {
    display: inline-block;
    margin: 0 5px
}

.pagination-wrap.text-left li {
    margin: 0 10px 0 0
}

.pagination-wrap li a {
    border: 1px solid #e5e5e5;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
    color: #263a4f;
    font-weight: 600;
    border-radius: 2px
}

.pagination-wrap li a:hover {
    background-color: #ff7607;
    color: #fff;
    opacity: 1;
    text-decoration: none
}

.pagination-wrap li a.active {
    background-color: #ff7607;
    border: 1px solid #ff7607;
    color: #fff
}

.sidebar-wrap {
    padding-left: 40px
}

.sidebar-wrap .widget-content {
    margin-bottom: 40px
}

.sidebar-wrap .widget-content h4 {
    position: relative;
    margin-bottom: 30px
}

.sidebar-wrap .widget-content h4:before {
    background-color: #ff7607;
    position: absolute;
    content: "";
    width: 20%;
    height: 3px;
    left: 0;
    bottom: -5px
}

.sidebar-wrap .widget-content .widget-links li a:hover {
    text-decoration: underline
}

.search-form {
    position: relative;
    margin-left: -2px
}

.search-form .form-control {
    background-color: #f5f5f5;
    box-shadow: none;
    width: 100%;
    display: block;
    border: 1px solid #e5e5e5;
    color: #263a4f;
    height: auto;
    padding: 15px 20px;
    border-radius: 2px;
    padding-right: 60px
}

.search-form .search-btn {
    background-color: transparent;
    font-size: 15px;
    color: #263a4f;
    width: 60px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 10px 0;
    opacity: .6
}

.search-form .search-btn:focus,
.search-form .search-btn:hover {
    opacity: 1;
    cursor: pointer
}

.search-form input::-webkit-input-placeholder {
    color: #8d9aa8 !important
}

.search-form input:-moz-placeholder {
    color: #8d9aa8 !important
}

.search-form input::-moz-placeholder {
    color: #8d9aa8 !important
}

.search-form input:-ms-input-placeholder {
    color: #8d9aa8 !important
}

.thumb-post {}

.thumb-post li {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    align-items: top;
    margin-bottom: 20px
}

.thumb-post li:last-child {
    margin-bottom: 0
}

.thumb-post li img {
    width: 100px;
    display: block
}

.thumb-post li a {
    font-family: poppins, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #263a4f;
    padding-left: 15px;
    letter-spacing: -.5px
}

.thumb-post li a:hover {
    color: #ff7607;
    text-decoration: underline
}

.widget-content .tags {}

.widget-content .tags li {
    display: inline-block
}

.widget-content .tags li a {
    display: inline-block;
    background-color: #ff7607;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    margin: 3px
}

.widget-content .tags li a:hover {
    background-color: #263a4f;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.blog-thumb {}

.blog-thumb img {
    margin-bottom: 20px
}

.blog-single-content {}

.blog-single-content h2 a {
    font-size: 28px;
    color: #263a4f
}

.blog-single-content h2 a:hover {
    color: #ff7607
}

.single-post-meta {
    margin-bottom: 20px
}

.single-post-meta li {
    display: inline-block;
    margin-right: 20px
}

.single-post-meta li i {
    font-size: 12px;
    color: #ff7607;
    margin-right: 5px
}

.single-post-meta li a {
    display: inline-block;
    font-family: work sans, sans-serif;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: #263a4f
}

blockquote {
    background-color: #f5f5f5;
    padding: 40px;
    border-left: 4px solid #ff7607;
    margin: 30px 0;
    position: relative;
    z-index: 1
}

blockquote .dots {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

blockquote p {
    color: #263a4f;
    font-size: 20px
}

blockquote span {
    display: block;
    margin-top: 20px;
    color: #263a4f
}

.post-tags {
    margin-top: 30px
}

.post-tags li {
    display: inline-block
}

.post-tags li a {
    display: inline-block;
    background-color: #ff7607;
    padding: 5px 10px;
    border-radius: 2px;
    font-size: 12px;
    color: #fff;
    margin: 3px
}

.post-tags li a:hover {
    background-color: #263a4f;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .1)
}

.author-box {
    display: flex;
    align-items: center;
    padding: 30px;
    margin-top: 30px;
    border-left: 4px solid #ff7607
}

.author-box img {
    border-radius: 50%
}

.author-info {
    padding-left: 30px
}

.author-info h3 {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 5px
}

.author-box .social-icon {}

.author-box .social-icon li {
    display: inline-block;
    margin-right: 8px
}

.author-box .social-icon li a {
    font-size: 14px;
    color: #263a4f
}

.author-box .social-icon li a:hover {
    color: #ff7607
}

.post-navigation {
    border: 1px solid #e5e5e5;
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0
}

.post-navigation .col {
    padding: 20px
}

.post-navigation .col:not(:last-of-type) {
    border-right: 1px solid rgba(17, 17, 17, .04)
}

.post-navigation .col a {
    color: #263a4f;
    font-size: 12px;
    text-transform: uppercase;
    font-family: work sans, sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center
}

.post-navigation .col.next-post a {
    justify-content: flex-end
}

.post-navigation .col i {
    display: inline-block;
    font-size: 14px
}

.post-navigation .ti-arrow-left {
    margin-right: 10px
}

.post-navigation .ti-arrow-right {
    margin-left: 10px
}

.post-navigation .col a:hover {
    color: #ff7607
}

.post-navigation .col.prev-post .fa {
    margin-right: 10px
}

.post-navigation .col.next-post .fa {
    margin-left: 10px
}

.blog-single-wrap .comments-area {
    margin-top: 40px
}

.blog-single-wrap .comments-area .comments {
    border-bottom: 0
}

.blog-single-wrap .comments-area li>div {
    border-bottom: 1px solid rgba(17, 17, 17, .05);
    padding: 35px
}

.blog-single-wrap .comments-area ol {
    list-style-type: none;
    padding-left: 0
}

.blog-single-wrap .comments-area ol ul {
    padding-left: 30px;
    list-style-type: none;
    margin: 0
}

.blog-single-wrap .comments-area ol>li:last-child div {
    border-bottom: 0
}

.blog-single-wrap .comments-area .comments-title {
    font-size: 22px;
    font-weight: 600
}

.blog-single-wrap .comments-area li>div {
    position: relative
}

.blog-single-wrap .comments-area .comment-thumb {
    position: absolute;
    left: 35px
}

.blog-single-wrap .comments-area .comment-thumb .comment-img {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.blog-single-wrap .comments-area .comment-thumb .comment-img img {
    border-radius: 50%
}

.blog-single-wrap .comments-area .comment-main-area {
    padding-left: 100px
}

.blog-single-wrap .comments-area .comment-main-area p {
    margin-bottom: 20px
}

.blog-single-wrap .comments-area .comments-meta h4 {
    font-family: poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -1px
}

.blog-single-wrap .comments-area .comments-meta h4 span {
    font-family: work sans, sans-serif;
    font-weight: 600;
    text-transform: none;
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    margin-left: 5px
}

.blog-single-wrap .comments-area .comment-reply-link {
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #ff7607;
    display: inline-block;
    text-transform: uppercase;
    padding-left: 35px;
    position: relative
}

.blog-single-wrap .comments-area .comment-reply-link:before {
    background-color: #ff7607;
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    left: 0;
    top: calc(50% - 1px)
}

.blog-single-wrap .comments-area .comment-reply-link:hover {
    text-decoration: underline
}

.blog-single-wrap .comment-respond {}

.blog-single-wrap .comment-respond .comment-reply-title {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px
}

.blog-single-wrap .comment-respond form input,
.blog-single-wrap .comment-respond form textarea {
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 50px;
    padding: 6px 15px;
    margin-bottom: 15px;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all .3s
}

.blog-single-wrap .comment-respond form input:focus,
.blog-single-wrap .comment-respond form textarea:focus {
    border-color: #ff7607
}

.blog-single-wrap .comment-respond form textarea {
    height: 200px;
    padding: 15px
}

.blog-single-wrap .comment-respond .form-inputs {
    overflow: hidden
}

.blog-single-wrap .comment-respond .form-inputs>input:nth-child(2) {
    width: 49%;
    float: left
}

.blog-single-wrap .comment-respond .form-inputs>input:nth-child(3) {
    width: 49%;
    float: right
}

.blog-single-wrap .comment-respond .form-submit input {
    font-family: work sans, sans-serif;
    max-width: 180px;
    background-color: #ff7607;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    cursor: pointer;
    border-radius: 0;
    text-transform: uppercase
}

.blog-single-wrap .comment-respond .form-submit input:hover {
    opacity: .9
}

.sponsor-section {
    padding: 50px 0;
    position: relative;
    z-index: 1
}

.sponsor-section .dots {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: url(../img/bg-dots.webp) 0 0 repeat;
    z-index: -1
}

.sponsor-item img {
    opacity: .5
}

.sponsor-item:hover img {
    opacity: 1;
    cursor: pointer
}

/* Static sections (carousel-free) */
.hero-static {
    position: relative;
    overflow: hidden
}

.hero-static .single-slide {
    display: block;
    position: relative;
    width: 100%;
    min-height: 650px
}

/* Hero modern: full refresh — gradient or bg image, stat pills, strong hierarchy */
.hero-modern {
    padding: 56px 0 72px;
    position: relative;
    overflow: hidden;
}

/* Hero with full-bleed background image (slider-1 = construction/hero scene) */
.hero-modern-bg-image {
    padding: 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-modern-bg-image .hero-modern-row {
    min-height: 85vh;
    align-items: center;
}

.hero-modern-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 35%, #fef7f0 70%, #faf5f0 100%);
    z-index: 0;
}

/* Hero photo: real <img> in HTML (LCP) + solid fallback */
.hero-modern-bg-image .hero-modern-bg {
    background: #1a2a38;
}

.hero-modern-bg-image .hero-modern-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    animation: hero-bg-ease 1s ease-out forwards;
}

@keyframes hero-bg-ease {
    from {
        transform: scale(1.02);
        opacity: 0.96;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Hero text gentle move into place — all done within 1s */
.hero-modern-animate .hero-modern-badge {
    animation: hero-text-up 0.7s ease-out forwards;
    opacity: 0;
}

.hero-modern-animate .hero-modern-headline {
    animation: hero-text-up 0.7s ease-out 0.06s forwards;
    opacity: 0;
}

.hero-modern-animate .hero-modern-stats {
    animation: hero-text-up 0.7s ease-out 0.12s forwards;
    opacity: 0;
}

.hero-modern-animate .hero-modern-subline {
    animation: hero-text-up 0.7s ease-out 0.18s forwards;
    opacity: 0;
}

.hero-modern-animate .hero-modern-cta-group {
    animation: hero-text-up 0.7s ease-out 0.24s forwards;
    opacity: 0;
}

@keyframes hero-text-up {
    from {
        transform: translateY(10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-modern-bg-image .hero-modern-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(105deg, rgba(26, 42, 56, 0.88) 0%, rgba(26, 42, 56, 0.75) 45%, rgba(26, 42, 56, 0.5) 100%);
    pointer-events: none;
}

.hero-modern-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 118, 7, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(38, 58, 79, 0.03) 0%, transparent 45%);
    pointer-events: none;
}

/* Light text when hero has background image */
.hero-modern-bg-image .hero-modern-headline {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero-modern-bg-image .hero-modern-subline {
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
}

.hero-modern-bg-image .hero-modern-badge {
    color: rgba(255, 255, 255, 0.9);
}

.hero-modern-bg-image .hero-stat {
    color: rgba(255, 255, 255, 0.95);
}

.hero-modern-bg-image .hero-stat i {
    color: #ff7607;
}

.hero-modern-bg-image .hero-modern-cta-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.hero-modern-bg-image .hero-modern-cta-secondary:hover {
    background: #fff;
    color: #263a4f;
    border-color: #fff;
}

.hero-modern-row {
    min-height: 0;
    position: relative;
    z-index: 1;
}

.hero-modern-text-col {
    padding-left: 28px;
    padding-right: 28px;
    position: relative;
}

.hero-modern-inner {
    max-width: 540px;
    padding: 16px 0 20px;
}

.hero-modern-badge {
    display: inline-block;
    font-family: work sans, sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff7607;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 12px;
    border: none;
}

.hero-modern-headline {
    font-family: poppins, sans-serif;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1a2a38;
    margin: 0 0 20px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.hero-modern-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 22px;
}

.hero-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #263a4f;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

.hero-stat i {
    color: #ff7607;
    font-size: 15px;
}

.hero-modern-subline {
    font-size: 17px;
    line-height: 1.6;
    color: #4a5c6b;
    margin: 0 0 28px;
    max-width: 480px;
}

.hero-modern-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-modern-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: work sans, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 0 28px;
    line-height: 52px;
    border-radius: 10px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-modern-cta:hover {
    transform: translateY(-2px);
}

.hero-modern-cta i {
    font-size: 16px;
    opacity: 0.95;
}

.hero-modern-cta-primary {
    background: linear-gradient(135deg, #ff7607 0%, #f06d05 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(255, 118, 7, 0.35);
}

.hero-modern-cta-primary:hover {
    box-shadow: 0 6px 24px rgba(255, 118, 7, 0.4);
    color: #fff;
}

.hero-modern-cta-secondary {
    background-color: #fff;
    color: #263a4f;
    border: 2px solid #263a4f;
    box-shadow: 0 2px 10px rgba(38, 58, 79, 0.08);
}

.hero-modern-cta-secondary:hover {
    background-color: #263a4f;
    color: #fff;
    border-color: #263a4f;
}

.hero-modern-image-col {
    padding-left: 36px;
    padding-right: 28px;
    position: relative;
}

.hero-modern-image-accent {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90%;
    height: 94%;
    background: linear-gradient(145deg, rgba(255, 118, 7, 0.08) 0%, rgba(255, 118, 7, 0.02) 100%);
    border-radius: 24px;
    z-index: 0;
    pointer-events: none;
}

.hero-modern-image-wrap {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 20px 50px rgba(38, 58, 79, 0.12), 0 8px 24px rgba(0, 0, 0, 0.06);
    max-width: 100%;
    width: 102%;
    margin-left: -2%;
    border: 1px solid rgba(38, 58, 79, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-modern-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 56px rgba(38, 58, 79, 0.14), 0 12px 28px rgba(0, 0, 0, 0.08);
}

.hero-modern-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tagline strip below hero */
.hero-tagline-strip {
    padding: 20px 0;
    background: linear-gradient(180deg, #fff 0%, #fafbfc 100%);
    border-top: 1px solid rgba(38, 58, 79, 0.06);
}

.hero-tagline-text {
    font-size: 17px;
    font-weight: 600;
    color: #263a4f;
    text-align: center;
    margin: 0;
    line-height: 1.45;
}

/* Problem-driven section: distinct from What We Do — tinted bg, outline-style cards */
.problem-section {
    background-color: #f5f6f9;
    padding: 64px 0 72px;
    border-top: 1px solid #e8ecf0;
}

.problem-section-headline {
    font-family: poppins, sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    color: #263a4f;
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    letter-spacing: -.02em;
}

.problem-cards-row {
    margin-bottom: 40px;
}

.problem-card {
    background-color: #fff;
    border: 1px solid #e0e4e9;
    border-left: 4px solid #ff7607;
    border-radius: 0 8px 8px 0;
    padding: 28px 24px 26px 28px;
    height: 100%;
    text-align: left;
    box-shadow: 0 1px 4px rgba(38, 58, 79, .04);
}

.problem-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: #ff7607;
    border-radius: 8px;
    font-size: 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 118, 7, .25);
}

.problem-card-icon i {
    font-size: 18px;
}

.problem-card-title {
    font-family: poppins, sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #263a4f;
    margin: 0 0 12px;
    line-height: 1.3;
}

.problem-card-text {
    font-size: 15px;
    line-height: 1.55;
    color: #5a6b7a;
    margin: 0;
}

.problem-section-close {
    font-size: 17px;
    font-weight: 600;
    color: #263a4f;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.5;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .7);
    border-radius: 8px;
    border: 1px solid rgba(38, 58, 79, .08);
}

.problem-section-close strong {
    color: #ff7607;
}

@media only screen and (max-width: 992px) {
    .problem-section {
        padding: 48px 0 56px;
    }

    .problem-section-headline {
        font-size: 24px;
        margin-bottom: 36px;
    }

    .problem-cards-row {
        margin-bottom: 32px;
    }

    .problem-card {
        padding: 28px 24px;
    }

    .problem-section-close {
        font-size: 16px;
    }
}

@media only screen and (max-width: 576px) {
    .problem-section {
        padding: 40px 0 48px;
    }

    .problem-section-headline {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .problem-card-title {
        font-size: 17px;
    }

    .problem-card-text {
        font-size: 14px;
    }

    .problem-section-close {
        font-size: 15px;
    }
}

/* Trust badges row below hero */
.hero-trust-badges {
    padding: 28px 0;
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 8px;
    font-size: 13px;
    color: #263a4f;
    font-weight: 500;
    text-align: center;
}

.hero-badge-item span {
    line-height: 1.3;
}

.hero-badge-item i {
    color: #ff7607;
    font-size: 18px;
    flex-shrink: 0;
}

@media only screen and (max-width: 992px) {
    .hero-modern {
        padding: 44px 0 56px;
    }

    .hero-modern-bg-image {
        min-height: 75vh;
    }

    .hero-modern-bg-image .hero-modern-row {
        min-height: 75vh;
    }

    .hero-modern-text-col {
        order: 1;
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-modern-inner {
        max-width: 100%;
        padding: 0 0 16px;
    }

    .hero-modern-badge {
        font-size: 10px;
        padding: 4px 10px;
        margin-bottom: 8px;
    }

    .hero-modern-headline {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .hero-modern-stats {
        gap: 6px 10px;
        margin-bottom: 12px;
    }

    .hero-stat {
        font-size: 11px;
        padding: 4px 8px;
    }

    .hero-modern-subline {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .hero-trust-badges {
        padding: 24px 0;
    }

    .hero-badge-item {
        font-size: 12px;
        padding: 10px 6px;
    }
}

@media only screen and (max-width: 576px) {
    .hero-modern {
        padding: 36px 0 44px;
    }

    .hero-modern-bg-image {
        min-height: 70vh;
    }

    .hero-modern-bg-image .hero-modern-row {
        min-height: 70vh;
    }

    .hero-modern-badge {
        font-size: 10px;
        padding: 5px 12px;
        margin-bottom: 12px;
    }

    .hero-modern-headline {
        font-size: 26px;
        margin-bottom: 14px;
    }

    .hero-modern-stats {
        gap: 6px 10px;
        margin-bottom: 16px;
    }

    .hero-stat {
        font-size: 12px;
        padding: 6px 10px;
    }

    .hero-stat i {
        font-size: 13px;
    }

    .hero-modern-subline {
        font-size: 15px;
        margin-bottom: 22px;
    }

    .hero-modern-cta {
        line-height: 48px;
        padding: 0 24px;
        font-size: 12px;
    }

    .hero-modern-cta-group {
        gap: 10px;
    }
}

.service-grid .service-item {
    margin-bottom: 30px
}

/* What We Deliver – equal height/width cards, compact size */
#what-we-deliver.padding {
    padding-top: 50px;
    padding-bottom: 50px
}

#what-we-deliver .service-grid {
    align-items: stretch
}

#what-we-deliver .service-grid [class*="col-"] {
    display: flex;
    margin-bottom: 20px
}

#what-we-deliver .service-grid .service-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 0;
    padding: 22px 16px;
    min-height: 100%;
    border-right: none
}

#what-we-deliver .service-item .service-icon {
    font-size: 42px;
    margin-bottom: 8px
}

#what-we-deliver .service-item .overlay-icon {
    font-size: 90px
}

#what-we-deliver .service-item h3 {
    font-size: 16px;
    margin-bottom: 8px
}

#what-we-deliver .service-item p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0
}

.projects-grid .project-item {
    margin-bottom: 30px
}

.testimonial-grid .testi-item {
    margin-bottom: 30px
}

.sponsor-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem
}

.sponsor-carousel {
    display: flex;
    gap: 2rem;
}

.sponsor-logos .sponsor-item {
    flex: 0 0 auto
}

/* Tools & Technology section (about-us) */
.tools-section {
    position: relative;
    z-index: 1;
    padding: 50px 0;
}

.tools-section .section-heading .section-sub {
    font-size: 15px;
    color: #8d9aa8;
    margin-top: 8px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.tools-carousel {
    margin: 0 -10px;
}

.tools-item {
    padding: 0 10px;
}

.tools-item-inner {
    background: #fff;
    border-radius: 12px;
    padding: 28px 24px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(38, 58, 79, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tools-item-inner:hover {
    box-shadow: 0 8px 24px rgba(38, 58, 79, 0.1);
    transform: translateY(-2px);
}

.tools-item-inner img {
    max-height: 56px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.tools-item-inner:hover img {
    opacity: 1;
}

@media only screen and (max-width: 992px) {
    .hero-static .single-slide {
        min-height: 400px
    }
}

@media only screen and (max-width: 576px) {
    .hero-static .single-slide {
        min-height: 360px
    }
}

/* Trust bar: on mobile show only "Quantity takeoffs & cost estimation" */
@media only screen and (max-width: 767px) {

    .trust-bar .trust-bar-hide-mobile,
    .trust-bar .trust-bar-sep-hide-mobile {
        display: none !important
    }

    .trust-bar .trust-bar-inner {
        justify-content: center
    }

    .trust-bar-item {
        font-size: 12px
    }
}

@media only screen and (max-width: 520px) {
    .trust-bar-item {
        font-size: 11px
    }
}

.widget-section {
    background-color: #232427;
    border-bottom: 1px solid #333
}

.widget-content {}

.widget-content img {
    margin-bottom: 20px
}

.widget-section .widget-content h4 {
    color: #fff
}

.widget-content p {}

.widget-content span {
    display: block
}

.widget-content .widget-links {}

.widget-content .widget-links li {}

.widget-content .widget-links li a {
    color: #8d9aa8;
    line-height: 1.9
}

.widget-content .widget-links li a:hover {
    color: #ff7607;
    text-decoration: underline
}

.subscribe-form {
    position: relative
}

.subscribe-form .form-input {
    border: 1px solid #e5e5e5;
    width: 100%;
    height: 50px;
    padding: 10px;
    padding-right: 140px;
    border-radius: 2px
}

.subscribe-form .submit-btn {
    background-color: #ff7607;
    font-family: work sans, sans-serif;
    text-transform: uppercase;
    color: #fff;
    font-size: 12px;
    border-radius: 2px;
    line-height: 50px;
    font-weight: 600;
    display: inline-block;
    letter-spacing: .5px;
    padding: 0 30px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer
}

.footer-section {
    background-color: #232427;
    display: block;
    color: #fff;
    text-align: center;
    padding: 25px 0
}

.footer-section p {
    font-size: 12px;
    color: #ababc7;
    margin: 0
}

#scroll-to-top {
    background: linear-gradient(145deg, #ff8607 0%, #e66a06 100%);
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 118, 7, .45);
    border: 2px solid rgba(255, 255, 255, .25);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    text-decoration: none
}

#scroll-to-top i {
    font-size: 20px;
    line-height: 1;
    display: block
}

#scroll-to-top:hover {
    background: linear-gradient(145deg, #ff8c1a 0%, #ff7607 100%);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 118, 7, .5)
}

#scroll-to-top:active {
    transform: translateY(-2px)
}

/* ── WhatsApp Floating Button ───────────────────────── */
#whatsapp-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    background-color: #25d366;
    border-radius: 50%;
    position: fixed;
    bottom: 92px;
    right: 28px;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease
}

#whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #25d366;
    opacity: .6;
    animation: whatsapp-pulse 2s ease-out infinite
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: .6
    }
    70% {
        transform: scale(1.55);
        opacity: 0
    }
    100% {
        transform: scale(1.55);
        opacity: 0
    }
}

#whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .55)
}

#whatsapp-float:active {
    transform: scale(0.98)
}

#whatsapp-float svg {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 28px;
    height: 28px
}

.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background-color: #263a4f;
    color: #fff;
    font-family: poppins, sans-serif;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    padding: 8px 14px;
    border-radius: 8px;
    pointer-events: none;
    opacity: 0;
    transition: opacity .3s ease
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #263a4f
}

#whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    #scroll-to-top {
        width: 54px;
        height: 54px;
        bottom: 24px;
        right: 24px
    }
    #scroll-to-top i {
        font-size: 22px
    }
    #whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 88px;
        right: 24px
    }
    #whatsapp-float svg {
        width: 30px;
        height: 30px
    }
}

/* Mobile – larger touch targets */
@media (max-width: 767px) {
    #scroll-to-top {
        width: 58px;
        height: 58px;
        bottom: 22px;
        right: 20px;
        box-shadow: 0 4px 22px rgba(255, 118, 7, .5)
    }
    #scroll-to-top i {
        font-size: 24px
    }
    #whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 86px;
        right: 20px;
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5)
    }
    #whatsapp-float svg {
        width: 30px;
        height: 30px
    }
    .whatsapp-tooltip {
        font-size: 13px;
        padding: 8px 12px
    }
}

/* Very small screens */
@media (max-width: 380px) {
    #scroll-to-top {
        width: 56px;
        height: 56px;
        bottom: 18px;
        right: 16px
    }
    #scroll-to-top i {
        font-size: 22px
    }
    #whatsapp-float {
        width: 54px;
        height: 54px;
        bottom: 80px;
        right: 16px
    }
}


.widget-content-link {
    color: #8d9aa8;
    text-decoration: none
}

.widget-content-link:hover {
    color: #ff7607;
    text-decoration: underline
}

.widget-content-copy,
.contact-email-copy {
    color: #8d9aa8;
    font-size: 12px;
    margin-left: 6px;
    text-decoration: underline
}

.widget-content-copy:hover,
.contact-email-copy:hover {
    color: #ff7607
}

#msg:empty {
    display: none !important
}

#msg.alert-success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb
}

#msg.alert-danger {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb
}

/* ── Header Social Icons (beside Call Us button) ───── */
.header-social-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-right: 14px;
    padding-right: 14px;
    border-right: 1px solid rgba(38, 58, 79, .2)
}

.hdr-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(38, 58, 79, .18);
    color: #263a4f;
    font-size: 13px;
    text-decoration: none;
    background-color: transparent;
    transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .2s ease
}

.hdr-icon-btn:hover {
    background-color: #ff7607;
    border-color: #ff7607;
    color: #fff;
    transform: translateY(-2px)
}

@media (max-width: 992px) {
    .header-social-icons {
        margin-right: 8px;
        padding-right: 8px
    }
    .header-social-icons .hdr-icon-btn {
        width: 32px;
        height: 32px;
        font-size: 12px
    }
}

.trust-bar {
    background: linear-gradient(180deg, #1e2d3d 0%, #263a4f 100%);
    color: rgba(255, 255, 255, .92);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .02em;
    text-align: center;
    padding: 10px 20px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.trust-bar .container,
.trust-bar .trust-bar-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
}

.trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.trust-bar-item i {
    color: #ff7607;
    font-size: 14px;
}

.trust-bar a {
    color: #ff7607;
    text-decoration: none;
    font-weight: 600
}

.trust-bar a:hover {
    text-decoration: underline;
    color: #ff8c2e
}

.trust-bar-sep {
    color: rgba(255, 255, 255, .25);
    font-weight: 300;
    user-select: none
}

.trust-strip {
    background: #f9fafa;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    text-align: center
}

.trust-strip p {
    margin: 0;
    font-size: 15px;
    color: #263a4f;
    font-weight: 600
}

.trust-strip .trust-count {
    color: #ff7607
}

.dl-slider .dl-caption.value-line {
    font-size: 14px;
    color: rgba(255, 255, 255, .95);
    font-family: work sans, sans-serif;
    letter-spacing: 0;
    margin-top: 8px
}

.sponsor-item img {
    height: 60px;
    width: auto;
    opacity: .8;
    transition: .3s;
}

.sponsor-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ── FAQ Section (accordion style) ───── */
.faq-section {
    background-color: #fff;
}

.faq-heading {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 32px;
    line-height: 1.25;
    color: #263a4f;
    margin: 0;
    font-weight: 600;
}

.faq-title-accent {
    color: #ff7607;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #f5f6f7;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .04);
    transition: box-shadow .2s ease, border-color .2s ease;
}

.faq-item:hover {
    border-color: #d0d4d9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
}

.faq-item.is-open {
    border-color: #ff7607;
    box-shadow: 0 2px 12px rgba(255, 118, 7, .15);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    text-align: left;
    font-family: poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #263a4f;
    background: none;
    border: none;
    cursor: pointer;
    transition: color .2s ease, background-color .2s ease;
}

.faq-question:hover {
    color: #ff7607;
}

.faq-question:focus {
    outline: 2px solid #ff7607;
    outline-offset: 2px;
}

.faq-question span {
    flex: 1;
}

.faq-chevron {
    flex-shrink: 0;
    font-size: 14px;
    color: #8d9aa8;
    transition: transform .25s ease, color .25s ease;
}

.faq-item.is-open .faq-chevron {
    transform: rotate(180deg);
    color: #ff7607;
}

.faq-answer {
    border-top: 1px solid #e8eaed;
}

.faq-answer p {
    margin: 0;
    padding: 16px 20px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #5a6573;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 26px;
    }
    .faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
    .faq-answer p {
        padding: 14px 16px 18px;
        font-size: 14px;
    }
}