@media (min-width:1025px) {
    .row .content-box-col:not(:last-child) {
        border-right: 2px solid #f6f6f6;
    }
}

.header-search {
    max-width: 160px;
    margin-left: 10px;
}
form.searchbox-new {
    display: flex;
    align-items: center;
    position: relative;
}
.header-search input.searchbox-input {
    padding-left: 0;
    color: #616161;
    font-weight: 400;
    font-size: 17px;
    padding-right: 30px;
    height: 28px;
    display: none;
}
.header-search .searchbox-new.show_searchbox input.searchbox-input {
    display: block;
    position: absolute;
    width: 200px;
    top: 54px;
    padding: 22px 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    z-index: 9;
    left: -144px;
}
.header-search input.searchbox-submit {
    background: transparent !important;
    display: none;
}
span.search-icon {
    border: 1px solid #c7c7c7;
    border-radius: 8px;
    height: 38px;
    width: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9;
}
form.searchbox-new.show_searchbox:before {
    content: "";
    position: absolute;
    left: 50%;
    display: block;
    border-right: 1px solid #c7c7c7;
    border-top: 1px solid #c7c7c7;
    width: 10px;
    height: 10px;
    transform: translate(-50%, 0) rotate(-45deg);
    bottom: -20px;
    background: #ffffff;
    z-index: 99;
}
.row .content-box {
    padding: 0 10px;
    height: 100%;
}

.row .content-box p {
    margin: 0;
}

/* Who We Service Section */
.who-we-service {
    background-color: #f6f6f6;
    /* Light blue background for fresh look */
    padding: 4rem 0;
}

.who-we-service .section-title {
    color: #2c3e50;
    /* Dark, professional color */
    text-align: center;
    margin-bottom: 3rem;
    text-transform: capitalize;
}

.who-we-service .service-box {
    background: #ffffff;
    /* White background */
    border: 1px solid #ddd;
    /* Subtle border */
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.who-we-service .service-box:hover {
    transform: translateY(-8px);
    /* Slight lift on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    /* Enhanced shadow on hover */
}

.who-we-service .service-title {
    margin-bottom: 1rem;
    text-transform: capitalize;
}

/* Responsive Design */
@media (max-width: 767.98px) {
    .who-we-service .service-box {
        padding: 1.5rem;
    }

    .table-responsive {
        overflow-x: scroll;
    }
}

.box-left-border {
    border-left: 5px solid #f6940c;
    background-color: #f6f6f6;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-left-border:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.box-bottom-border {
    border-left: 5px solid #f6940c;
    background-color: #f6f6f6;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.box-bottom-border:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.grey-bg-radius {
    background: #f6f6f6;
    padding: 30px;
    border-radius: 12px;
}

.white-bg-radius {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
}

.table-container {
    margin-top: 30px;
    padding: 20px;
    background-color: #f6f6f6;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    text-align: left;
    margin-bottom: 0;
}

.comparison-table th {
    background-color: #f6940c;
    color: white;
    position: sticky;
    top: 0;
    /* For sticky header */
    z-index: 1;
}

.comparison-table td,
.comparison-table th {
    vertical-align: middle;
    padding: 20px;
    font-size: 15px;
}

.comparison-table tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.comparison-table th[scope="row"] {
    background-color: #f6940c;
    font-weight: bold;
}

/* FAQ Section */
.faq-section {
    background-color: #ffffff;
    /* Light gray background */
    padding: 4rem 0;
}

.faq-section .accordion-item {
    margin-bottom: 10px;
}

.faq-section .accordion-button {
    font-weight: bold;
    background-color: #f6f6f6;
    /* Inactive/Collapsed tab background */
    border: 1px solid #ddd;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    /* Space between the question text and the icon */
    align-items: center;
    /* Center the content vertically */
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #f6940c;
    /* Active tab color */
    border: 1px solid #f6940c;
    color: #fff;
}

.faq-section .accordion-body {
    border-left: 1px solid #f6940c;
    border-right: 1px solid #f6940c;
    border-bottom: 1px solid #f6940c;
    padding: 20px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
}

/* The icon will be placed at the end */
.faq-section .accordion-button::after {
    content: "+";
    font-weight: bold;
    font-size: 1.25rem;
    /* Adjust size */
}

/* Change to '-' when the accordion is expanded */
.faq-section .accordion-button:not(.collapsed)::after {
    content: "-";
    /* Change to minus when tab is active */
}

.timeline {
    position: relative;
    padding: 20px 0;
    margin: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #f6940c;
    transform: translateX(-50%);
}

.timeline-step {
    position: relative;
    margin: 20px 0;
}

.timeline-step .step-content {
    position: relative;
    width: 48%;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-step:nth-child(even) .step-content {
    left: 50%;
    margin-left: 2%;
}

.timeline-step:nth-child(odd) .step-content {
    left: 0;
    margin-right: 2%;
    text-align: right;
}

.timeline-step .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #f6940c;
    border: 4px solid #fff;
    border-radius: 50%;
    z-index: 1;
}

.timeline-step .step-content h5 {
    margin-bottom: 10px;
}

.timeline-step .step-content p {
    margin: 0;
    text-align: justify;
}

.timeline-step .step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 8px;
    }

    .timeline-step:nth-child(even) .step-content,
    .timeline-step:nth-child(odd) .step-content {
        width: 90%;
        left: 15px;
        margin: 10px 0 10px 25px;
    }

    .timeline-step .circle {
        left: 8px;
    }
}

.personalized-solutions {
    background-color: #f6f6f6;
    padding: 4rem 0;
}

.icon-before {
    position: relative;
    padding-left: 45px;
    margin-bottom: 20px;
}

.why-choose-img {
    border-radius: 12px;
}

.icon-before::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background-image: url('/assets/images/orange-cirlce-tick-icon.png');
    /* Replace with actual path to the icon */
    background-size: cover;
    background-repeat: no-repeat;
}

.invoice-processing-section {
    background-color: #f9f9f9;
}

.section-title {
    color: #f6940c;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    margin-bottom: 30px;
}

.description {
    text-align: justify;
}

.highlight-box {
    background-color: #fff;
    transition: transform 0.3s ease-in-out;
}

.highlight-box:hover {
    transform: translateY(-5px);
}


.bi {
    font-size: 24px;
    color: #f6940c;
}

.industries-list {
    background-color: #f8f9fa;
    padding: 3em 0;
}

.section-title {
    color: #f6940c;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.industry-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.industry-grid li {
    flex: 1 1 calc(45% - 20px);
    padding: 20px;
    background: #fff;
    border-left: 4px solid #f6940c;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-grid li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.industry-title {

    color: #f6940c;
    margin-bottom: 8px;
}

.industry-grid p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .industry-grid li {
        flex: 1 1 100%;
    }
}


.row-equal-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.p_column {
    background: #fff;
    padding: 30px;
    flex: 1;
    border: solid 1px #d4d4d4;
    box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    position: relative;
    padding: 15px;
}
.p_column p{
    margin: 0;
}

.step-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}
.step-number {
    width: 50px;
    height: 50px;
    background-color: #f6940c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto;
    margin-bottom: 10px;
  }

/* Change color of your first-child */