.top-header {
    background-color: #e9ecef;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.navbar.is-sticky {
    position: fixed;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.toogle_menu {
    padding-left: 10px;
    padding-right: 10px;
    color: rgba(0, 0, 0, .55);
    border-color: rgba(0, 0, 0, .1);
    margin-left: 1rem;

}

.collapse_menu {
    padding-left: 0;
}

.collapse_menu li {
    list-style: none;
}

#staticBackdrop .modal-dialog {
    position: absolute;
    height: 100vh;
    left: 0;
    top: 0;
    margin-top: 0 !important;
    width: 100vw;
}

.toogle_menu {
    color: #145090;
    border-color: #5aac45;
    border-radius: 5px;
}

#staticBackdrop .modal-dialog .modal-content {
    min-height: 100vh;
    height: auto;
    width: 100vw;
}

.modal-header {
    border: none;
}

body {
    font-family: 'Poppins', sans-serif;
}

.row {
    margin: 0;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home_faqs {
    padding-bottom: 4rem !important;
}

.index_top a,
.index_top button,
.index_top .btn {
    z-index: 5;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-left a {
    color: #145090;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-left a:hover {
    color: #5aac45;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #145090;
}

.header-right a {
    color: #5aac45;
    text-decoration: none;
    transition: color 0.2s ease;
}

.header-right a:hover {
    color: #0078d7;
}

.header-right .cart-icon {
    font-size: 1.1rem;
    color: #145090;
    transition: color 0.2s ease;
}

.header-right .cart-icon:hover {
    color: #0078d7;
}

/* Navbar styles */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-inline-start: auto;
    padding: 10px;
}

.navbar-brand {
    color: #0c0032;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand:hover {
    color: #0c0032;
}

.navbar-nav .nav-link {
    color: #495057;
    font-size: 1rem;
    margin-left: 1rem;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #145090;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.btn-secondary {
    background-color: #5aac45;
    color: #fff;
    font-size: 0.9rem;
    margin-left: 1rem;
    border-radius: 500px;
    border: none;
}

.btn-secondary:hover {
    background-color: #145090;
    color: #fff;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.dropdown-item {
    font-size: 0.9rem;
    color: #495057;
    transition: background-color 0.2s ease, color 0.2s ease;
    padding: 0.75rem 1.5rem;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #0078d7;
    color: #fff;
}

.call-any-time-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 10px;
}

.phone-icon-container {
    background-color: #e99f23;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 3rem;
}

.phone-icon {
    color: #fff;
    font-size: 1.5rem;
}

.call-info {
    display: flex;
    flex-direction: column;
}

.call-any-time-text {
    color: #495057;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

.phone-number {
    color: #0c0032;
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
}

.home_hero {
    background-image: url("../images/hero-image2.jpg");
    background-size: cover;
    text-align: center;
    padding: 10rem 0;

    position: relative;
}

.team_row {
    display: flex;
    align-items: center;

    flex-wrap: wrap;
    gap: 1rem;

}

.team_col {
    width: calc(25% - 1rem);
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
}

.wave_footer {
    top: -250px;
}

.wave path {
    animation: waveAnim 6s infinite ease-in-out;
}

@keyframes waveAnim {
    0% {
        d: path("M 0 250 C 1200 400 1200 50 3000 250 L 3000 550 L 0 550 L 0 250 ");
    }

    50% {
        d: path("M 0 250 C 400 50 400 400 3000 250 L 3000 550 L 0 550 L 0 250");
    }

    100% {
        d: path("M 0 250 C 1200 400 1200 50 3000 250 L 3000 550 L 0 550 L 0 250");
    }
}


.home_hero h1 {
    font-size: 45px;
    font-weight: 700;
    /* padding-left: 4rem;
    padding-right: 4rem; */

}

/* .home_hero p {
    padding: 0 8rem;
} */

.story-section {
    padding: 4rem 0;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.left-column {
    flex: 1;
    min-width: 300px;
    margin-right: 4rem;
}

.left-column h2 {
    color: #145090;
    font-size: 1rem;
    font-weight: 700;

}

.text-muted {
    font-size: 15px;
}

.left-column p {
    color: #0c0032;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;

}

.left-column blockquote {
    font-size: 2rem;
    font-weight: 500;
    color: #0c0032;
    margin-bottom: 3rem;
    padding-left: 0;
    border-left: none;
    font-style: bold;

}

.left-column blockquote p {
    font-size: 2rem;
    font-weight: 700;

}

.right-column {
    flex: 1;
    min-width: 300px;
}

.right-column h3 {
    color: #0c0032;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.right-column p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: justify;
}

.ceo-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ceo-image {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    overflow: hidden;
}

.ceo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ceo-name {
    color: #0c0032;
    font-size: 1rem;
    font-weight: 600;
}

.ceo-title {
    color: #4a5568;
    font-size: 0.9rem;
}

.line {
    height: 1px;
    background-color: #555;
    width: 100%;
    /* or custom width */
    margin: 20px 0;
}

.text-orange {
    color: #e99f23;
}


.btn-orange {
    background-color: #5aac45;
    color: white;
    border: none;
    padding: 10px 25px;
    font-weight: 500;
    border-radius: 500px;
}


.btn-orange:hover {
    background-color: #145090;
    color: #eafaf8;
}

.border-orange {
    border-color: #e99f23 !important;
}

.service-card {
    background-color: white;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.services_section {
    background-color: #e6fde0;
    padding: 5rem 0;
}

.services_section a:hover {
    color: #145090;

}

.text_color {
    color: #145090;
}

.text_color1 {
    color: #5aac45;
}

.counter-box {
    text-align: center;
    justify-content: center;
    padding: 10px;
    background: #145090;
    border-radius: 10px;
    box-shadow: 0 20px 20px rgba(0, 0, 0, 0.05);

}

.counter-box h3 {
    color: #e6fde0;
    font-size: 1.5rem;
    font-weight: 700;
}

.counter-box p {

    color: #ffffff;
    font-size: 1rem;
}

.Hire_team {
    padding-top: 5rem;
    padding-top: 5rem;
    background-color: #5aac45;
    background-image: url("../images/footer-bg.png");
    background-repeat: no-repeat;


}

.icon-circle {
    width: 120px;
    height: 120px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.icon-circle:hover {
    background-color: #145090;
}

.icon-circle:hover img {
    filter: brightness(10);
}



.cart-icon a:hover {
    color: #145090;
}


.team_uper {
    color: #145090;
}

.hire_more {
    background-color: #145090;
    padding-top: 50px;
    padding-bottom: 50px;

    align-items: center;
}

.hire_more h3 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.more_button {

    padding: 0.75rem 1.5rem;
    border-radius: 1.5rem;
    background-color: #5aac45;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease;

}

.more_button:hover {
    background-color: #fff;
    color: #0f5952;

}

.industries_left h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.industries_left p {

    margin-bottom: 50px;
}

.industries_section1 {

    /* height: 2472px; */
    background-color: #e6fde0;
}


.industries_left {
    height: 750px;
    position: sticky;
    top: 20px;
    padding-top: 8rem;


}

.industries_right {

    /* height: 1600px; */
    padding-left: 30px;
    padding-bottom: 8rem;

}

.industries_card {
    background-color: #fff;
    border-radius: 1rem;
    border: 0.5px solid #999999;
    margin-top: 8rem;
    padding: 2rem;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.industries_card img {

    border-radius: 1rem;
    width: 300px;
}

.industries_card:hover {
    background-color: #5aac45;

}

.industries_card:hover .card-content h2,
.industries_card:hover .card-content p {

    color: #fff !important;
}

.card-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #145090;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;

}

.card-content {
    flex: 1;

}


.card-title {
    color: #0c0032;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.read-more-link {
    color: #145090;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    /* Use inline-flex for better alignment */
    align-items: center;
    /* Vertically align the text and icon */
    gap: 0.5rem;
    /* Add some gap between the text and icon */
}

.read-more-link:hover {
    color: #fff;
}

.view-all-service-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    background-color: #5aac45;
    border-radius: 1.5rem;
    text-decoration: none;
    color: #0c0032;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.2s ease;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.view-all-service-button:hover {
    background-color: #145090;
    color: #eafaf8;
}

.arrow-icon {
    width: 1rem;
    height: 1rem;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.testimonials_1 {
    background-color: #145090;
    padding-top: 50px;
    padding-bottom: 50px;
}

.testimonials_1 .carousel-cell img {

    width: 220px;
    height: 70 !important;
    margin: 0 3rem;
    border-radius: 1rem;

}





.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.client-designation {
    font-size: 0.9rem;
    color: #ffffff;
}

.quote-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 2rem;
    font-size: 5rem;
    color: #ffffff;
    opacity: 0.6;
}


/* faqs */
.faq-section {
    padding-top: 4rem;
    padding-bottom: 8rem !important;
    background-color: #e6fde0;
    /* position: relative;
    z-index: 3; */

}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    color: #0c0032;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-header p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.faq-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item.active .faq-question {
    border-bottom-color: transparent;
}


.faq-item.active .faq-answer {
    border-top-color: transparent;
    padding-top: 0;
}

.faq-question {
    color: #145090;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.2s ease;
    border: 1px solid;
    border-color: #5aac45;
    padding: 20px;
    margin-bottom: 0;
}

.faq-question:hover {
    color: #5aac45;
}

.faq-answer {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    display: none;
    border: 1px solid;
    border-color: #5aac45;
    padding: 20px;

}

.faq-item.active .faq-answer {
    display: block;
}

.faq-question i {
    transition: transform 0.2s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.card-img-top {
    height: 400px;
    object-fit: cover;
}

.card .position-absolute {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.1;
}

.card h6 {
    font-size: 1rem;
    line-height: 1.5;
}

.testimonials_2 {
    /* background-image: url("../images/testimonialsbg-1.jpg"); */
    padding-top: 60px;
    
    padding-bottom: 100px;
}

.testimonials_2 .carousel-cell {
    background-color: #5aac45;
    width: 450px;
    height: 300px !important;
    margin: 0 1rem;
    border-radius: 2rem;
}


.testimonials_2 .carousel-cell.is-selected {

    color: rgb(0, 0, 0);
}

.testimonial-paragraph {
    font-size: 16px;

    text-align: center;
}

.testimonial-title {
    
    font-weight: bold;
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 3rem;
}






.testimonial-card {

    border-radius: 1rem;
    padding: 2rem;
    text-align: left;

    max-width: 450px;
    width: 100%;
    position: relative;
    /* To position the quote */
}

.stars {
    color: #ffc107;
    /* Star color */
    margin-bottom: 1rem;
    display: inline-flex;
}

.stars i {
    margin-right: 0.2rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #e6fde0;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #145090;
}

.client-designation {
    font-size: 0.9rem;
    color: #ffffff;
}

.quote-icon {
    position: absolute;
    bottom: 0.5rem;
    right: 2rem;
    font-size: 5rem;
    color: #ffffff;
    opacity: 0.6;
}

.Latest_news {
    background-color: #e6fde0;
    padding-top: 5rem;
    padding-bottom: 9rem;
    background-image: url("../images/bg.png");
    background-repeat: no-repeat;
}

/* footer */
.footer {
    background-image: url("../images/footer-bg.png");
    background-color: #145090;
    color: white;
    padding: 60px 0 20px 0;

}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.subscribe-input {
    border: none;
    border-bottom: 1px solid #5aac45;
    border-radius: 0;
    background: transparent;
    color: #fff;
}

.subscribe-input:focus {
    box-shadow: none;
    border-color: #fff;
}

.subscribe-btn {
    background-color: #5aac45;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid #5aac45;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #e6fde0;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
}

.logo-symbol {
    font-weight: bold;
    font-size: 30px;
    color: #fff;
}

/* Accounting Outsourcing Services */
.Outsourcing_hero {

    background-image: url("../images/accountingOutsourcingServicesbg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    text-align: center;
    justify-content: center;
    padding: 8rem;
    padding-left: 4rem;
    padding-right: 4rem;
}

.Outsourcing_hero h1 {
    font-size: 45px;
    font-weight: 700;
    padding-left: 4rem;
    padding-right: 4rem;

}

.Outsourcing_hero p {
    padding: 0 7rem;
}

.tax-preparation-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.tax-preparation-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Vertically align image and text */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tax-image-column {
    flex: 1;
    min-width: 400px;
    /* Adjust as needed */
}

.tax-image {
    width: 100%;
    border-radius: 1rem;
}

.tax-text-column {
    flex: 1;
    min-width: 300px;
    /* Adjust as needed */
}

.tax-service-title {
    color: #ff7800;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.tax-preparation-title {
    color: #0c0032;

    font-weight: 700;
    margin-bottom: 1.5rem;
}

.tax-description {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.tax-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.tax-list-item {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    /* Use flexbox for icon alignment */
    align-items: center;
    /* Vertically center icon and text */
    gap: 0.5rem;
    /* Space between icon and text */
}

.tax-list-item::before {
    content: '✔';
    /* Checkmark icon */
    color: #8ac53e;
    /* Green checkmark color */
    font-weight: bold;
}

.why_outsourcing {

    background-image: url("../images/accountingOutsource3.jpg");
    background-repeat: no-repeat;
    object-fit: cover;
    padding: 5rem;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.why_outsourcing h5 {
    color: #145090;
}

.why_outsourcing h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.exert-section {
    padding: 4rem 0;
}


.expert-header {
    text-align: center;
    margin-bottom: 2rem;
}

.expert-header h2 {

    color: #0c0032;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.expert-title {

    background-color: #145090;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 500px;
    padding: 10px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.expert-header p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.expert-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;

}

.expert-cards1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;

    padding: 5px;
}

.expert-card {

    background-image: url("../images/accountingOutsourcesexpert8.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: calc(33.33% - 1rem);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    text-align: left;
    border: none;
}



.feature-list {
    list-style: none;
    padding-top: 10px;
    margin-bottom: 1.5rem;
    padding-left: 0;
    display: flex;
    flex-direction: column;
}

.feature-list-item {
    color: #ffffff;
    margin-bottom: 1.25rem;


}

.feature-list-item p {
    margin-top: -5px;
    line-height: 1.325rem;
    font-size: 16px;
}



.expert-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.hire_outsource {
    background-color: #e6fde0;
}

/* outsource_solutions */
.outsource_solutions {
    background-color: #7bad6e;
    background-image: url("../images/footer-bg.png");
    padding: 5rem 0;
}

.source_1 {
    color: #e6fde0;
}

.source_2 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;

}

.source_3 {
    color: #fdfdfd;
}

.solutions_icons {
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    background-color: #145090;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    z-index: 2;
    position: relative;


}

.hire_outsource4 {
    padding-top: 4rem;
    padding-bottom: 8rem;
    background-color: #e6fde0;
}

.outsource_card {
    z-index: 2;
    position: relative;
}

.outsource_cards {
    background-color: #e6fde0;
    text-align: left;
    padding: 2rem;
    border-radius: 2rem;
    position: relative;
    overflow: hidden;

    height: 100%;



}

.outsource_card p {
    font-size: 16px !important;
}

.outsource_cards::after {
    background-color: #145090;
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;

}

.outsource_cards:hover::after {
    top: 0;
    transition: top .5s ease;

}

.outsource_cards:hover .solutions_icons {
    background-color: #e6fde0;
    color: #145090;
    transition: all .8s ease;
}


.outsource_cards:hover .outsource_card {
    color: #fff !important;
    transition: all .5s ease;

}

.outsource_cards:hover h4,
.outsource_cards:hover p {
    color: #fff !important;
    z-index: 2;
    position: relative;
    transition: all .5s ease;

}

.tab-btn {
    border: none;
    background: #e1e9ff;
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tab-btn.active {
    background: #5aac45;
    color: #fff;
    position: relative;
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-color: #5aac45;
}

.tab-content-box {
    background: #fff;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.tab-text {
    color: #777;
    font-size: 16px;
}

.tab_1 {
    text-align: center;
    justify-content: center;
    color: #145090;
    font-size: 1rem;
}

.tab_2 {
    text-align: center;
    justify-content: center;
    color: #000000;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.outsource_contact {
    background-image: url("../images/outsourcecontact.jpg");
    padding: 11rem;
    align-items: center;
    justify-content: center;

}

.btn_outsource {
    align-items: center;
    justify-content: center;
}

.manufacture_more6 {
    background-color: #e6fde0;
    padding-top: 4rem;
    padding-bottom: 8rem;
}

/* manufacturing-industries */

.Manufacturing_hero {
    background-image: url("../images/manufacturinghero.jpg");
    padding: 8rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
}

.btn-manufacturing {
    background-color: #145090;
    color: #e6fde0;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-manufacturing:hover {
    background-color: #ffffff;
    color: #000000;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.Manufacturing_3 {
    background-image: url("../images/manufacturing2bg.jpg");
    padding: 3rem;

}

.holte_Manufacturing_3 {
    background-image: url("../images/manufacturing2bg.jpg");
    padding: 3rem;
}

.tab-text_1 {
    text-align: left;
}

.nav-tabs {
    background-color: #e6fde0;
    color: white;
}

.nav-link1 {
    color: whitesmoke;
}

.nav-tabs .nav-link.active {
    background-color: #5aac45;
    color: #fff;
}

.tab-content {
    border: 1px solid #e6fde0;
    border-top: none;
    padding: 2rem;
    color: #fff;

}

.manufacturing_tab {
    background-color: #145090;
    padding: 3rem;
}


.section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title h2 {
    font-weight: 600;
    font-size: 2rem;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background-color: #1dd1a1;
    border-radius: 5px;
}

.service-box6 {
    text-align: center;
    padding: 20px 20px;
    transition: all 0.3s ease-in-out;
}

.service-box6 img {
    width: 60px;
    height: auto;
    margin-bottom: 15px;
}

.service-box6 h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box6 p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.manufacture_more {
    background-color: #e6fde0;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.man_more h3 {
    font-size: 2rem;
    font-weight: 700;
}

.realestate_hero {
    background-image: url("../images/realestatehero1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 8rem;
}

.hotels_hero {
    background-image: url("../images/hotelshero.jpg");
    padding: 8rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.shiping_hero {
    background-image: url("../images/Shippinghero1.jpg");
    padding: 8rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.health_hero {
    background-image: url("../images/hethcarehero1.jpg");
    padding: 8rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.ecommerce_hero {
    background-image: url("../images/ecommerce.jpg");
    padding: 7rem;
    background-repeat: no-repeat;
    background-size: cover;
}

.bookeeping_hero {
    background-image: url("../images/bookeepingservicehero.jpg");
    padding: 7rem;
    text-align: center;
}

.bookeeping_cards {
    background-color: #145090;
    color: #e6fde0;


    height: 100%;
    border-radius: 20px;
    padding: 2rem;

}

.bk_icons {
    width: 60px;
    height: 60px;
    background-color: #5aac45;
    padding: 1rem;
    border-radius: 10%;


}

.bk_icons h5 {
    margin-left: 2rem;

}

.exert-solutions {
    padding: 4rem;
}

.tax_hero {
    background-image: url("../images/taxpreparationhero.jpg");
    padding: 7rem;
    padding-bottom: 8rem;
    text-align: center;
}

.faq-section1 {
    background-color: #eef4fa;
    padding-top: 4rem;
    padding-bottom: 8rem;

}

.faq-columns {

    position: relative;
    z-index: 3;
}

.management_hero {
    background-image: url("../images/managementreportinghero.jpg");
    padding: 7rem;
    text-align: center;
}

.management {
    padding: 4rem;

    justify-content: center;
}

.mange_image img {
    border-radius: 20px;
}

.mange_service ul li {
    display: flex;
    text-decoration: none;
    gap: 15px;


    line-height: 1.5rem;
}

.mange_service2 ul li {
    display: flex;
    text-decoration: none;
    gap: 15px;

    color: #e6fde0;
    line-height: 1.5rem;
}

.AR_hero {
    background-image: url("../images/arservicehero.jpg");
    padding: 7rem;
    text-align: center;
}

.management2 {
    background-color: #145090;
    padding: 4rem 0;

}

.About_hero {
    background-image: url("../images/abouthero.jpg");
    padding: 7rem;
    text-align: center;
}


/* aboutus */
.team-section {
    padding: 4rem 0;
    text-align: center;
}

.team-header {
    margin-bottom: 2rem;
}

.team-header h2 {
    color: #0c0032;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.team-header p {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    padding: 1rem;
    text-align: center;
    border: none;
}

.team-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.member-image-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    border: 5px solid #f1f1f1;
}


.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    color: #0c0032;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-designation {
    color: #4a5568;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem;

    background-color: #145090;
}

.main_tab {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;


    margin: 0 auto;
}

.slider-column {
    flex: 1;
    min-width: 300px;
}

.text-column {
    flex: 1;
    min-width: 400px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-content h2 {
    color: #0c0032;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.text-content p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.carousel-inner img {
    border-radius: 0.75rem;
    object-fit: cover;
    height: 100%;
}

.carousel-item {
    height: 440px;
    /* Adjust as needed */
}

.carousel-control-prev,
.carousel-control-next {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 3rem;
    height: 3rem;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 0;
    margin-left: 1rem;
}

.carousel-control-next {
    right: 0;
    margin-right: 1rem;
}

.Blog_hero {
    background-image: url("../images/bloghero1.jpg");
    padding: 7rem;
    text-align: center;
    background-size: cover;
}


.Latest_news1 {
    background-color: #e6fde0;
    padding-bottom: 9rem;
    padding-top: 5rem;
    background-repeat: no-repeat;
}

.hire_outsource1 {
    padding-bottom: 7rem;
    background-color: #e6fde0;
}

.contact_hero {
    background-image: url("../images/contactushero1.jpg");
    padding: 7rem;
    text-align: center;
    background-size: cover;
}


.call i {

    color: #145090;
}

.call_me {
    color: #000000;
    text-decoration: none;
}

.view_more {
    text-decoration: underline;
}

.contact_form {
    background-color: #f7f8fa;
    padding-top: 4rem;
    padding-bottom: 8rem;

}

.contact_left {
    background-color: #fff;
    padding: 5rem 3rem;

    border-radius: 20px;
}

.contact_left p {
    font-size: 0.9rem;
    color: #505050;
}

.contact_left a {
    font-size: 1rem;
    color: #5aac45;
    text-decoration: none;
}

.contact_left a:hover {
    font-size: 1rem;
    color: #145090;
    text-decoration: none;
}

.contact_left .bi {
    color: #145090;
}

input::placeholder,
textarea::placeholder {
    color: #6c757d;
    font-size: 0.95rem;
}

input.form-control:focus,
textarea.form-control:focus {
    box-shadow: none;
    border-color: #145090;
}

input.form-control.border-danger,
textarea.form-control.border-danger {
    border-width: 2px;
}

.hireaccountan_hero {
    background-image: url("../images/hireaccountanthero.jpg");
    padding: 8rem;
    background-size: cover;
}



.service-card_1 {
    background-color: #ebf5ff;
    padding: 2rem;
    border-bottom-right-radius: 2rem;

}

.service-card_2 {
    background-color: #ebf5ff;
    padding: 2rem;
    border-bottom-left-radius: 2rem !important;
}

.service-card_3 {
    background-color: #ebf5ff;
    padding: 2rem;
    border-top-right-radius: 2rem !important;
}

.service-card_4 {
    background-color: #ebf5ff;
    padding: 2rem;
    border-top-left-radius: 2rem !important;
}

.manufacture_more1 {
    background-color: #e6fde0;
    padding: 3rem;
}

.what_do {
    padding: 4rem 1rem !important;
}

.acount_hiring {
    background-color: #ebf5ff;
    padding: 5rem 1rem;
}

.full_time {
    background-color: #fff;
    padding: 3rem;
    height: 100%;
}

.full_time h5 {
    background-color: #145090;
    padding: 1rem;
    color: #fff;
}

.full_time h6 {
    background-color: #5aac45;
    padding: 1rem;
    color: #fff;
}

.outsource_solutions3 {
    padding: 5rem 1rem;

}

.outsource_solutions3 h5 {
    color: #145090;

}

.outsource_solutions3 h2 {
    color: #161515;

}

.outsource_solutions3 p {
    color: #161515;

}

.manufacture_more1 {
    background-color: #e6fde0;
    padding: 4rem;

}

.planning {
    background-color: #f0f3f4;
    padding: 4rem 1rem;
}

.hirebookkeeper_hero {
    background: url("../images/hirebookkeeperhero.jpg");
    padding: 7rem;
    background-size: cover;
}

.hiretax_hero {
    background-image: url("../images/hiretaxpayerhero.jpg");
    padding: 7rem;
    background-size: cover;
}

.left_do img {
    width: 100%;
}

/* financeblog */
.blog2_hero {
    background-image: url("../images/blog2hero.jpg");
    padding: 7rem;
    background-size: cover;
    text-align: center;
}

.blog3_hero {
    background-image: url("../images/blog3hero.jpg");
    padding: 7rem;
    background-size: cover;
    text-align: center;
}

.finance_hero {
    background-image: url("../images/financebloghero.jpg");
    padding: 7rem;
    background-size: cover;
    text-align: center;
}

.finance_2 img {
    border-radius: 20px;
    margin-top: 5rem;

}

.finance_text {
    padding-left: 10rem;
    padding-right: 10rem;
    /* padding-bottom: 8rem; */
}

.section-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-left: 10rem;
    padding-right: 10rem;
    padding-bottom: 10rem;
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    gap: 1rem;
    /* Gap between tag and share section */
}

.tags-group {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.tag-badge {
    background-color: #fddb9e;
    /* Orange-yellow background */
    color: #8b4513;
    /* Darker text color */
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    /* Rounded corners */
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    /* Remove underline for links */
    display: inline-block;
    /* Ensure padding works */
    transition: background-color 0.2s ease;
}

.tag-badge:hover {
    background-color: #fbc77d;
    /* Slightly darker on hover */
    color: #8b4513;
    /* Keep text color */
}

.share-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.share-text {
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.social-icon {
    background-color: #4CAF50;
    /* Green background */
    color: #fff;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.5rem;
    /* Rounded corners */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    text-decoration: none;
    /* Remove underline for links */
    transition: background-color 0.2s ease;
}

.social-icon:hover {
    background-color: #45a049;
    /* Slightly darker green on hover */
    color: #fff;
    /* Keep text color */
}