.af-v2-background-section {
    height: 387px;
    background: url('../images/acufore-main2.jfif') no-repeat center center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 80px;
    position: relative;
    transition: opacity 0.3s ease-in-out;
    margin-top: 102px;
}

.af-v2-carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.af-v2-carousel-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.af-v2-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    transition: transform 0.6s ease-in-out;
}

.af-v2-carousel-item.af-v2-active {
    display: block;
}

.af-v2-carousel-item.af-v2-active.af-v2-left {
    transform: translateX(-100%);
}

.af-v2-carousel-item.af-v2-active.af-v2-right {
    transform: translateX(100%);
}

.af-v2-carousel-item.af-v2-next {
    display: block;
    transform: translateX(100%);
}

.af-v2-carousel-item.af-v2-prev {
    display: block;
    transform: translateX(-100%);
}

.af-v2-carousel-item.af-v2-next.af-v2-left,
.af-v2-carousel-item.af-v2-prev.af-v2-right {
    transform: translateX(0);
}hero-images

.af-v2-overlay-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.af-v2-text-overlay {
    position: absolute;
    left: 120px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 1;
    color: #FFF;
    text-align: left;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.53);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -1.2px;
}

.af-v2-side-element {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background-color: #2BA88A;
    filter: drop-shadow(0px 4px 8px rgba(0, 0, 0, 0.25));
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.af-v2-side-element:hover {
    background-color: #239778;
}

.af-v2-side-element img {
    width: 12px !important;
    height: 10px !important;
}

.af-v2-side-element.af-v2-left {
    left: calc(80px - 19px);
}

.af-v2-side-element.af-v2-right {
    right: calc(80px - 19px);
}

.af-v2-side-element.af-v2-right img {
    transform: rotate(180deg);
}

/* Media query for screens between 1200px and 1799px */
@media screen and (max-width: 1799px) {
    .af-v2-background-section {
        padding: 0 60px;
    }
    
    .af-v2-text-overlay {
        left: 100px;
        font-size: 36px;
    }
    
    .af-v2-side-element.af-v2-left {
        left: calc(60px - 19px);
    }
    
    .af-v2-side-element.af-v2-right {
        right: calc(60px - 19px);
    }
}

/* Media query for screens between 992px and 1199px */
@media screen and (max-width: 1199px) {
    .af-v2-background-section {
        padding: 0 40px;
        height: 350px;
    }
    
    .af-v2-text-overlay {
        left: 80px;
        font-size: 32px;
        letter-spacing: -1px;
    }
    
    .af-v2-side-element.af-v2-left {
        left: calc(40px - 19px);
    }
    
    .af-v2-side-element.af-v2-right {
        right: calc(40px - 19px);
    }
}

/* Media query for tablets (768px to 991px) */
@media screen and (max-width: 991px) {
    .af-v2-background-section {
        padding: 0 30px;
        height: 300px;
    }
    
    .af-v2-text-overlay {
        left: 60px;
        font-size: 28px;
        letter-spacing: -0.8px;
    }
    
    .af-v2-side-element {
        width: 34px;
        height: 34px;
    }
    
    .af-v2-side-element.af-v2-left {
        left: calc(30px - 17px);
    }
    
    .af-v2-side-element.af-v2-right {
        right: calc(30px - 17px);
    }
    
    .af-v2-side-element img {
        width: 10px !important;
        height: 8px !important;
    }
}

/* Media query for large mobile devices (576px to 767px) */
@media screen and (max-width: 767px) {
    .af-v2-background-section {
        padding: 0 20px;
        height: 250px;
    }
    
    .af-v2-text-overlay {
        left: 40px;
        font-size: 24px;
        letter-spacing: -0.6px;
    }
    
    .af-v2-side-element {
        width: 30px;
        height: 30px;
    }
    
    .af-v2-side-element.af-v2-left {
        left: calc(20px - 15px);
    }
    
    .af-v2-side-element.af-v2-right {
        right: calc(20px - 15px);
    }
}

/* Media query for mobile devices (up to 575px) */
@media screen and (max-width: 575px) {
    .af-v2-background-section {
        padding: 0 15px;
        height: 200px;
    }
    
    .af-v2-text-overlay {
        left: 20px;
        right: 20px;
        font-size: 20px;
        letter-spacing: -0.4px;
        text-align: center;
    }
    
    .af-v2-side-element {
        width: 28px;
        height: 28px;
    }
    
    .af-v2-side-element.af-v2-left {
        left: calc(15px - 14px);
    }
    
    .af-v2-side-element.af-v2-right {
        right: calc(15px - 14px);
    }
    
    .af-v2-side-element img {
        width: 8px !important;
        height: 6px !important;
    }
}

.fade-background {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}


/* second section */

.acufore-v3-section-img{
  background: url('../images/white-gradient-background.png'); 
  height: auto;
  background-size: cover;
} 

.acufore-v3-section {
    height: auto;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 70px;
}

.acufore-v3-box {
    width: 537px;
    height: 275px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 10px;
    flex-direction: column;
}

.acufore-v3-box-text {
    text-align: right;
}

.acufore-v3-title {
    color: #404C4D;
    font-family: Manrope, sans-serif;
    font-size: 68.796px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -2.064px;
}

.acufore-v3-subtitle-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.acufore-v3-subtitle {
    color: rgba(64, 76, 77, 0.70);
    font-family: Manrope, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.acufore-v3-divider {
    width: 3px;
    height: 24px;
    background: #2BA88A;
    display: inline-block;
    margin-left: 10px;
}

.acufore-v3-description {
    text-align: right;
    margin-top: 20px;
    color: var(--Cool-grey, #8D9FB2);
    font-family: Manrope, sans-serif;
    font-size: 22px !important;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.66px;
}

.acufore-v3-highlight {
    font-weight: 800 !important;
}

.acufore-v3-button-container {
    text-align: right;
    margin-top: 20px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.acufore-v3-button {
    display: inline-flex !important;
    padding: 8px 16px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 5px !important;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A !important;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.20) !important;
    border: none;
    cursor: pointer;
}

.acufore-v3-button-text {
    color: #2BA88A !important;
    font-family: Manrope, sans-serif !important;
    font-size: 17px !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: normal !important;
}

.acufore-v3-button-icon {
    width: 23px;
    height: 23px !important;
}

.acufore-v3-main-image {
    width: 267px;
    height: 275px;
    margin-left: 30px;
    display: inline-flex;
    flex-shrink: 0;
    background: url('../images/new-acufore/agriculture-main-acufore.png');
}

.acufore-v3-additional-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 10px;
    gap: 10px;
}

.acufore-v3-additional-image,
.acufore-v3-sub-image {
    width: 205px;
    height: 132.5px;
    display: inline-flex;
    flex-shrink: 0;
}

.acufore-v3-additional-image {
    background: url('../images/new-acufore/acufore-sub1.png');
}

.acufore-v3-sub-image {
    background: url('../images/new-acufore/acufore-sub2.png');
}


/* Large screens: 1400px - 1799px */
@media screen and (max-width: 1799px) {
    .acufore-v3-box {
        width: 480px;
        height: 250px;
    }

    .acufore-v3-title {
        font-size: 60px;
        letter-spacing: -1.8px;
    }

    .acufore-v3-description {
        font-size: 20px !important;
    }

    .acufore-v3-main-image {
        width: 240px;
        height: 250px;
    }

    .acufore-v3-additional-image,
    .acufore-v3-sub-image {
        width: 185px;
        height: 120px;
    }
}

/* Medium screens: 1200px - 1399px */
@media screen and (max-width: 1399px) {
    .acufore-v3-box {
        width: 420px;
        height: 230px;
    }

    .acufore-v3-title {
        font-size: 52px;
        letter-spacing: -1.5px;
    }

    .acufore-v3-description {
        font-size: 18px !important;
    }

    .acufore-v3-main-image {
        width: 220px;
        height: 230px;
        margin-left: 20px;
    }

    .acufore-v3-additional-image,
    .acufore-v3-sub-image {
        width: 165px;
        height: 110px;
    }
}

/* Small screens: 992px - 1199px */
@media screen and (max-width: 1199px) {
    .acufore-v3-section {
        padding-top: 50px;
        padding-bottom: 50px;
        flex-wrap: wrap;
    }

    .acufore-v3-box {
        width: 100%;
        max-width: 500px;
        height: auto;
        margin-bottom: 30px;
    }

    .acufore-v3-title {
        font-size: 48px;
    }

    .acufore-v3-main-image {
        width: 200px;
        height: 210px;
        margin-left: 15px;
    }

    .acufore-v3-additional-image,
    .acufore-v3-sub-image {
        width: 150px;
        height: 100px;
    }
}

/* Tablet screens: 768px - 991px */
@media screen and (max-width: 991px) {
    .acufore-v3-section {
        padding: 40px 20px;
    }

    .acufore-v3-box {
        text-align: center;
        align-items: center;
    }

    .acufore-v3-box-text {
        text-align: center;
    }

    .acufore-v3-subtitle-container {
        justify-content: center;
    }

    .acufore-v3-button-container {
        justify-content: center;
    }

    .acufore-v3-main-image {
        margin: 0;
        width: 100%;
        max-width: 300px;
        height: 250px;
        background-size: cover;
        background-position: center;
    }

    .acufore-v3-additional-container {
        flex-direction: row;
        justify-content: center;
        width: 100%;
        gap: 15px;
        margin-top: 15px;
    }
}

/* Mobile screens: Up to 767px */
@media screen and (max-width: 767px) {
    .acufore-v3-section {
        padding: 30px 15px;
    }

    .acufore-v3-title {
        font-size: 40px;
        letter-spacing: -1.2px;
    }

    .acufore-v3-description {
        font-size: 16px !important;
    }

    .acufore-v3-additional-container {
        flex-direction: column;
        align-items: center;
    }

    .acufore-v3-additional-image,
    .acufore-v3-sub-image {
        width: 100%;
        max-width: 300px;
        height: 200px;
        background-size: cover;
        background-position: center;
    }

    .acufore-v3-button {
        width: 100%;
        max-width: 300px;
    }
}

/* next section */

.acufore-v4-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 30px 10px 50px 10px;
}

.acufore-v4-section-item {
    text-align: center;
}

.acufore-v4-section-stat {
    color: #2BA88A;
    font-family: Manrope;
    font-size: 33.18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.995px;
}

.acufore-v4-section-label {
    color: var(--Medium-Gray, #292C2F);
    font-family: Manrope;
    font-size: 19.2px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.384px;
}

/* Base styles */
.acufore-v4-section-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    padding: 30px 10px 50px 10px;
    flex-wrap: wrap;
    max-width: 1800px;
    margin: 0 auto;
}

.acufore-v4-section-item {
    text-align: center;
}

.acufore-v4-section-stat {
    color: #2BA88A;
    font-family: Manrope;
    font-size: 33.18px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    letter-spacing: -0.995px;
}

.acufore-v4-section-label {
    color: #292C2F;
    font-family: Manrope;
    font-size: 19.2px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.384px;
}

/* Large screens */
@media screen and (max-width: 1400px) {
    .acufore-v4-section-container {
        gap: 60px;
        padding: 25px 20px 40px 20px;
    }
    
    .acufore-v4-section-stat {
        font-size: 30px;
    }
    
    .acufore-v4-section-label {
        font-size: 17px;
    }
}

/* Medium screens */
@media screen and (max-width: 1024px) {
    .acufore-v4-section-container {
        gap: 40px;
        padding: 20px 15px 35px 15px;
    }
    
    .acufore-v4-section-stat {
        font-size: 28px;
    }
    
    .acufore-v4-section-label {
        font-size: 16px;
    }
}

/* Tablet */
@media screen and (max-width: 768px) {
    .acufore-v4-section-container {
        gap: 30px;
        padding: 20px 10px 30px 10px;
    }
    
    .acufore-v4-section-item {
        flex-basis: calc(50% - 30px);
    }
    
    .acufore-v4-section-stat {
        font-size: 26px;
    }
    
    .acufore-v4-section-label {
        font-size: 15px;
    }
}

/* Mobile */
@media screen and (max-width: 480px) {
    .acufore-v4-section-container {
        gap: 25px;
        padding: 15px 10px 25px 10px;
        flex-direction: column;
    }
    
    .acufore-v4-section-item {
        flex-basis: 100%;
    }
    
    .acufore-v4-section-stat {
        font-size: 24px;
        letter-spacing: -0.72px;
    }
    
    .acufore-v4-section-label {
        font-size: 14px;
        letter-spacing: -0.28px;
    }
}


/* next section */


.acufore-v5-section {
    background: url('../images/new-acufore/blue-blended-background.png');
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 50px;
}

.acufore-v5-section-text {
    background: linear-gradient(0deg, var(--Cool-grey, #8D9FB2), var(--Cool-grey, #8D9FB2)),
                linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
                linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-align: center;
    font-family: 'Manrope';
    font-size: 26px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.78px;
    margin-bottom: 20px;
}
.acufore-v5-categories {
    display: flex;
    justify-content: center;
    gap: 20px; /* Adds space between the categories */
    margin-bottom: 20px; /* Adds space between the categories and the boxes */
    padding-top: 10px;
}

.acufore-v5-categories span {
    color: #61707E;
    font-family: 'Manrope';
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.acufore-v5-categories span:hover {
    color: #2ba88a;
    cursor: pointer;
}


.acufore-v5-box-container {
    display: flex;
    gap: 10px; /* Adds space between the boxes */
    justify-content: center;
    align-items: center;
    border-radius: 8px; /* Optional rounded corners for the container */
}

.acufore-v5-box {
    width: 344px;
    height: 244px;
    border-radius: 6px;
    background: var(--Cool-grey, #8D9FB2);
    overflow: hidden; /* Ensures that any overflow of the image is hidden */
    display: flex;
    flex-direction: column;
    position: relative; /* Needed to position the "Learn more" button at the bottom */
}

.acufore-v5-box-image {
    width: 344px;
    height: 111px;
    object-fit: cover; /* Ensures the image covers the box area */
}

.acufore-v5-box-text {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 10px 10px 10px 20px;
}

.acufore-v5-box-title {
    color: var(--Light-Gray, #F5F5F5);
    font-family: 'Manrope';
    font-size: 14px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-align: center;
}

.acufore-v5-box-description {
    color: var(--Light-Gray, #F5F5F5);
    font-family: 'Manrope';
    font-size: 13.33px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: start;
    width: 304px; /* Width for the description */
    margin-top: 5px; /* Adds space between the title and description */
}

.acufore-v5-box-learn-more {
    position: absolute;
    bottom: 10px; /* Places the button near the bottom of the box */
    right: 10px; /* Aligns it to the right */
    display: inline-flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 19px;
    border: 1px solid rgba(255, 255, 255, 0.43);
    background: rgba(217, 223, 228, 0.02);
    cursor: pointer;
}

.acufore-v5-box-learn-more span {
    color: var(--Light-Gray, #F5F5F5);
    font-family: 'Manrope';
    font-size: 13.33px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.acufore-v5-box-learn-more:hover {
    background: rgba(168, 178, 189, 0.4);
    background-blend-mode: multiply;
    box-shadow: 0px 2px 4px 0px #BCC6D147;
    border: 1px solid rgba(255, 255, 255, 0.43);
}


/* Add these styles to your existing CSS */
.hidden {
    display: none !important;
}

/*.category-btn {*/
/*    padding: 8px 16px;*/
/*    border-radius: 4px !important;*/
/*    transition: all 0.3s ease;*/
/*    cursor: pointer;*/
/*    border-radius: 12px;              */
/*    font-weight: 500;*/
/*    font-size: 16px;*/
/*    color: #61707E;               */
/*    transition: all 0.3s ease;*/
/*    display: inline-flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.category-btn.active {*/
/*    background: #E8EEF3;*/
/*    color: #2ba88a !important;*/
/*    font-weight: 600;*/
/*    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);*/
/*    border: 2px solid rgba(255, 255, 255, 0.61) !important;*/
/*}*/


/* Media query for screens between 1400px and 1799px */
@media screen and (max-width: 1799px) {
    .acufore-v5-box-container {
        gap: 15px;
        padding: 0 20px;
    }

    .acufore-v5-box {
        width: 320px;
        height: 240px;
    }

    .acufore-v5-box-image {
        width: 320px;
        height: 105px;
    }

    .acufore-v5-box-description {
        width: 280px;
        font-size: 13px;
    }
}

/* Media query for screens between 1200px and 1399px */
@media screen and (max-width: 1399px) {
    .acufore-v5-section-text {
        font-size: 24px;
    }

    .acufore-v5-box-container {
        gap: 12px;
        padding: 0 15px;
    }

    .acufore-v5-box {
        width: 300px;
        height: 230px;
    }

    .acufore-v5-box-image {
        width: 300px;
        height: 100px;
    }

    .acufore-v5-box-description {
        width: 260px;
    }
}

/* Media query for screens between 992px and 1199px */
@media screen and (max-width: 1199px) {
    .acufore-v5-categories {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        padding: 0 20px;
    }

    .acufore-v5-box-container {
        flex-wrap: wrap;
        gap: 20px;
        padding: 20px;
    }

    .acufore-v5-box {
        width: 280px;
        height: 220px;
    }

    .acufore-v5-box-image {
        width: 280px;
        height: 95px;
    }

    .acufore-v5-box-description {
        width: 240px;
        font-size: 12px;
    }
}

/* Media query for screens between 768px and 991px */
@media screen and (max-width: 991px) {
    .acufore-v5-section-text {
        font-size: 22px;
        padding: 0 20px;
    }

    .acufore-v5-categories {
        gap: 10px;
    }

    .acufore-v5-categories span {
        font-size: 14px;
    }

    .acufore-v5-box-container {
        gap: 15px;
    }

    .acufore-v5-box {
        width: 340px;
        height: 230px;
    }

    .acufore-v5-box-image {
        width: 340px;
        height: 105px;
    }

    .acufore-v5-box-description {
        width: 300px;
        font-size: 13px;
    }
}

/* Media query for screens between 576px and 767px */
@media screen and (max-width: 767px) {
    .acufore-v5-section {
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .acufore-v5-section-text {
        font-size: 20px;
    }

    .acufore-v5-categories {
        padding: 0 10px;
    }

    .acufore-v5-box {
        width: 100%;
        max-width: 400px;
        height: auto;
        min-height: 220px;
    }

    .acufore-v5-box-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .acufore-v5-box-description {
        width: calc(100% - 40px);
    }
}

/* Media query for screens smaller than 576px */
@media screen and (max-width: 575px) {
    .acufore-v5-section-text {
        font-size: 18px;
        padding: 0 15px;
    }

    .acufore-v5-categories {
        gap: 8px;
    }

    .acufore-v5-categories span {
        font-size: 13px;
        padding: 6px 12px;
    }

    .acufore-v5-box-container {
        padding: 10px;
    }

    .acufore-v5-box {
        max-width: 340px;
    }

    .acufore-v5-box-title {
        font-size: 13px;
    }

    .acufore-v5-box-description {
        font-size: 12px;
    }

    .acufore-v5-box-learn-more span {
        font-size: 12px;
    }
}

/* next section */


.acufore-v6-section {
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    padding-bottom: 50px;
    background: rgba(141, 159, 178, 0.26);
    position: relative;
}

.acufore-v6-section-text {
    color: #465E75;
    font-family: 'Manrope', sans-serif;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
    letter-spacing: -1.35px;
    text-align: center;
    margin-bottom: 30px;
    position: absolute;
    top: 50px;
}

.acufore-v6-boxes-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    width: 100%;
    margin-top: 80px;
}

.acufore-v6-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 682px;
    height: 54px;
    border-radius: 3px;
    background: var(--Light-Gray, #F5F5F5);
    position: relative;
    overflow: hidden;
    transition: height 0.3s ease;
    cursor: pointer;
}

.acufore-v6-box.expanded {
    height: 127px;
}

.acufore-v6-box-image {
    width: 173px;
    height: 54px;
    object-fit: cover;
    margin-right: 30px;
    transition: height 0.3s ease;
}

.acufore-v6-box.expanded .acufore-v6-box-image {
    height: 127px;
}

.acufore-v6-box-text {
    color: #2F4963;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    transition: margin-top 0.3s ease;
}

.acufore-v6-box.expanded .acufore-v6-box-text {
    margin-top: 0;
}

.acufore-v6-box-title {
    color: #2F4963;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 5px;
}

.acufore-v6-box-subtext {
    color: #7A8A9B !important;
    font-family: 'Manrope', sans-serif;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 347px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 0;
}

.acufore-v6-box.expanded .acufore-v6-box-subtext {
    opacity: 1;
}

.acufore-v6-box-readmore {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    padding: 4px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 3px;
    border: 1px solid #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.00) 100%), rgba(255, 255, 255, 0.45);
    box-shadow: 0px 2px 4px 0px #C7DCE3;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.acufore-v6-box.expanded .acufore-v6-box-readmore {
    opacity: 1;
}

.acufore-v6-box-readmore-text {
    color: #2ba88a;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

/* Keep all your existing CSS above, then add these media queries */

@media screen and (max-width: 1800px) {
    .acufore-v6-section {
        padding-top: 20px;
        padding-bottom: 40px;
    }

    .acufore-v6-section-text {
        font-size: 28px;
        line-height: 38px;
        top: 40px;
    }

    .acufore-v6-boxes-container {
        margin-top: 70px;
    }
}

@media screen and (max-width: 768px) {
    .acufore-v6-section-text {
        font-size: 24px;
        line-height: 34px;
        padding: 0 15px;
        top: 30px;
    }

    .acufore-v6-boxes-container {
        margin-top: 60px;
        padding: 0 15px;
    }

    .acufore-v6-box {
        width: 100%;
        max-width: 682px;
    }

    .acufore-v6-box-image {
        width: 120px;
        margin-right: 15px;
    }

    .acufore-v6-box-text {
        font-size: 14px;
    }

    .acufore-v6-box-subtext {
        width: calc(100% - 20px);
        font-size: 13px !important;
    }
}

@media screen and (max-width: 480px) {
    .acufore-v6-section-text {
        font-size: 22px;
        line-height: 30px;
    }

    .acufore-v6-box {
        height: 48px;
    }

    .acufore-v6-box.expanded {
        height: 120px;
    }

    .acufore-v6-box-image {
        width: 100px;
        height: 48px;
        margin-right: 10px;
    }

    .acufore-v6-box.expanded .acufore-v6-box-image {
        height: 120px;
    }

    .acufore-v6-box-text {
        font-size: 13px;
        margin-top: 40px;
    }

    .acufore-v6-box-title {
        font-size: 13px;
    }

    .acufore-v6-box-subtext {
        font-size: 12px !important;
    }

    .acufore-v6-box-readmore {
        padding: 3px 6px;
    }

    .acufore-v6-box-readmore-text {
        font-size: 12px;
    }
}

/* Add this for very small screens */
@media screen and (max-width: 360px) {
    .acufore-v6-box-image {
        width: 80px;
    }

    .acufore-v6-section-text {
        font-size: 20px;
        line-height: 28px;
    }

    .acufore-v6-box-text {
        font-size: 12px;
    }

    .acufore-v6-box-subtext {
        font-size: 11px !important;
    }
}

/* next section */


.acufore-v7-section {
    background: url('../images/new-acufore/career-section.png');
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 32px 16px !important;
}

.acufore-v7-section-content {
    display: flex;
    flex-direction: row; /* Align items in a row */
    align-items: center; /* Vertically center items */
    gap: 30px; /* Space between text and button */
}

.acufore-v7-section-text {
    font-family: 'Manrope';
    font-size: 23.04px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.461px;
    color: var(--Cool-grey, #8D9FB2);
}

.acufore-v7-button {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.20);
    border: none;
    cursor: pointer;
}

.acufore-v7-button-text {
    font-family: 'Manrope';
    font-size: 19.2px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.384px;
    color: #2BA88A;
}

.acufore-v7-section {
    background: url('../images/new-acufore/career-section.png');
    background-size: cover;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.acufore-v7-section-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

.acufore-v7-section-text {
    font-family: 'Manrope';
    font-size: 23.04px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.461px;
    color: var(--Cool-grey, #8D9FB2);
}

.acufore-v7-button {
    display: flex;
    padding: 8px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 5px;
    background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.20);
    border: none;
    cursor: pointer;
}

.acufore-v7-button-text {
    font-family: 'Manrope';
    font-size: 19.2px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.384px;
    color: #2BA88A;
}

/* Media Queries */
@media screen and (max-width: 1800px) {
    .acufore-v7-section-text {
        font-size: 21px;
        letter-spacing: -0.42px;
    }
    
    .acufore-v7-button-text {
        font-size: 18px;
        letter-spacing: -0.36px;
    }
}

@media screen and (max-width: 1400px) {
    .acufore-v7-section {
        padding: 35px;
    }
    
    .acufore-v7-section-text {
        font-size: 19px;
        letter-spacing: -0.38px;
    }
    
    .acufore-v7-button-text {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
}

@media screen and (max-width: 1024px) {
    .acufore-v7-section {
        padding: 30px;
    }
    
    .acufore-v7-section-content {
        gap: 20px;
    }
    
    .acufore-v7-section-text {
        font-size: 17px;
        letter-spacing: -0.34px;
    }
}

@media screen and (max-width: 768px) {
    .acufore-v7-section {
        padding: 25px;
    }
    
    .acufore-v7-section-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .acufore-v7-section-text {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
    
    .acufore-v7-button {
        padding: 6px 14px;
    }
    
    .acufore-v7-button-text {
        font-size: 15px;
        letter-spacing: -0.3px;
    }
}

@media screen and (max-width: 480px) {
    .acufore-v7-section {
        padding: 20px;
    }
    
    .acufore-v7-section-text {
        font-size: 15px;
        letter-spacing: -0.3px;
    }
    
    .acufore-v7-button {
        padding: 5px 12px;
    }
    
    .acufore-v7-button-text {
        font-size: 14px;
        letter-spacing: -0.28px;
    }
}

/* next section */

.acufore-v8-section-adv-sec {
    background: url('../images/new-acufore/distinct-advantages-section.png'); 
    padding: 20px;
    display: flex;
    justify-content: center;
}

.acufore-v8-section-ab {
    padding-top: 50px;
    padding-bottom: 50px;
}

.acufore-v8-section-ac {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px; /* Gap between cards */
    max-width: 1017px; /* Ensures three cards per row */
    width: 100%; /* Ensures responsiveness */
}

.acufore-v8-section-ad {
    /* background: #1D2324; */
    background: var(--Light-Gray, #F5F5F5);
    width: calc(33.33% - 10px); /* Adjusted width to fit 3 cards in a row with gap */
    height: auto;
    padding: 5px; /* Adjusted padding to create a 5px gap around the card */
    align-items: flex-start;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 0px;
    color: #F5F5F5;
    text-align: left;
    box-sizing: border-box; /* Ensures padding is included in width calculation */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

.acufore-v8-section-ae {
    display: flex;
    padding: 43px 31px 53px 30px;
    /* background: #161A1B; */
    background: transparent !important;
}


.acufore-v8-section-af {
    margin-bottom: 15px !important;
}

.acufore-v8-section-ag {
    padding: 32.494px 38px 48.722px 32px;
}

.acufore-v8-section-ai {
    margin-bottom: 30px;
}

.acufore-v8-section-ad:not(:first-child):hover {
    background: var(--Light-Gray, #ffffff);
}

.acufore-v8-section-ad svg {
    width: 34px;
}

.acufore-v8-section-ad h1 {
    font-size: 39.81px !important; /* Font size for the first card */
    letter-spacing: -1.791px !important;
    margin-bottom: 0 !important; /* Remove margin bottom for consistency */
    color: #465E75 !important;
    font-family: 'Manrope'!important;
    font-weight: 800 !important;
    line-height: 42px !important;
    letter-spacing: -4.5%!important;
    vertical-align: middle;
}

.acufore-v8-section-ad h2 {
    font-size: 20px !important;
    letter-spacing: -0.4px !important;
    margin-bottom: 5px ;
    color: #577D85 !important;
}

.acufore-v8-section-ad p { 
    font-size: 16px !important;
    margin-bottom: 0;
    color: rgba(70, 94, 117, 1) !important;
    font-family: 'Manrope' !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    letter-spacing: 1px !important;
    vertical-align: middle;
    padding: 0px 15px 0px 0px;

}

.acufore-v8-section-ad img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto; /* Maintain aspect ratio */
}

/* Add responsive styles for smaller devices and breakpoints as per the original code */
@media (max-width: 768px) {
    .acufore-v8-section-ad {
        width: calc(50% - 10px); /* Adjusted width for two cards per row */
        padding: 5% 3% !important;
    }

    .acufore-v8-section-ah {
        margin-bottom: 10px !important;
    }

    .acufore-v8-section-ad h1 {
        font-size: 5vw !important;
        letter-spacing: -0.5vw !important;
    }

    .acufore-v8-section-ad h2 {
        font-size: 3vw !important;
        letter-spacing: -0.1vw !important;
    }

    .acufore-v8-section-ad p { 
        font-size: 2.5vw !important;
    }

    .acufore-v8-section-ab {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* next section */

/* Section styling */
/* Section styling */
.acufore-v9-section {
    background: url('../images/new-acufore/divide-section.png');
    text-align: center;
    padding: 20px;
}

/* Title styling */
.acufore-v9-title {
    color: #465E75;
    font-family: Manrope;
    font-size: 30px;
    font-style: normal;
    font-weight: 800;
    line-height: 42px;
    letter-spacing: -1.35px;
    margin: 0;
}

/* Container styling */
.acufore-v9-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

/* Individual box styling */
.acufore-v9-box {
    color: #577D85;
    width: 294px;
    padding-bottom: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border-radius: 3px;
    border-bottom: 6px solid rgba(43, 168, 138, 0.80);
    background: #FFF;
    text-align: center; /* Ensures content is centered */
}

/* Image styling */
.acufore-v9-image {
    width: 294px !important;
    height: 139px !important;
    object-fit: cover !important; /* Ensures the image covers the box area */
}

/* Paragraph styling inside box */
.acufore-v9-box p {
    margin: 0; /* Reset default margin */
}

/* Video text styling */
.acufore-v9-video-text {
    color: var(--Light-Gray, #F5F5F5);
    font-family: Manrope;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 42px; /* 175% */
    letter-spacing: -1.08px;
    margin-top: 20px;
}

.acufore-v9-image {
  width: 100%;
  display: block;
    filter: opacity(0.7);
  transition: filter 0.3s ease; /* smooth effect */
}

.acufore-v9-image:hover {
  filter: opacity(1);            /* clear on hover */
}


.acufore-v5-box-learn-more-new {
 /* position: absolute; */
    bottom: 10px; /* Places the button near the bottom of the box */
    right: 10px; /* Aligns it to the right */
    display: inline-flex;
    padding: 3px 10px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 19px;
    border: 1px solid rgba(255, 255, 255, 0.43);
    background: rgba(217, 223, 228, 0.02);
    cursor: pointer;
}

.acufore-v5-box-learn-more-new span {
    color: var(--Light-Gray, #F5F5F5);
    font-family: 'Manrope';
    font-size: 13.33px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.acufore-v5-box-learn-more-new:hover {
    background: rgba(187, 197, 208, 0.4);
    background-blend-mode: multiply;
    box-shadow: 0px 2px 4px 0px rgba(188, 198, 209, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.43)
}


.client-section {
  background-color: #dbe2e8;       /* light gray like your screenshot */
  padding: 47px 0;
}

.client-title {
  text-align: center;
  font-size: 35px !important;
  font-weight: 600;
  color: rgba(70, 94, 117, 1) !important; /* dark gray text */
  margin-bottom: 2rem;
  padding: 25px 0px 0px 0px;
  /* background: rgba(70, 94, 117, 1); */
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  gap: 1px;                              /* thin lines between boxes */
  max-width: 800px;                      /* center block */
  margin: 0 auto;
  background-color: #cfd6db;             /* line color between boxes */
}

.client-box {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 80px; /* controls height */
}

.client-box img {
  max-width: 100%;
  max-height: 50px; /* keeps logos small and uniform */
  object-fit: contain;
  filter: grayscale(0%); /* normal logo */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-box:hover img {
  transform: scale(1.1); /* zoom on hover */
}


.my-box {
  width: 343px;          /* width */
  height: 209px;         /* height */
  transform: rotate(0deg); /* angle */
  opacity: 1;            /* full opacity */
  border-radius: 3px;    /* rounded corners */
}
.my-box .card {
  width: 336px;       /* optional fixed width */
  height: 209px;      /* optional fixed height */
  border-radius: 3px;
  box-shadow: 0px 4px 4px 0px #D9DFE499;
}

.my-box .card-body {
  overflow: hidden;   /* keeps text inside */
}

.cust_head{
    color: rgba(41, 44, 47, 1) !important;
font-family: 'Manrope' !important;
font-weight: 700 !important;
font-size: 15px !important;
line-height: 100% !important;
letter-spacing: 0% !important;
}
.cust_para{
color: rgba(41, 44, 47, 1) !important;
font-family: 'Manrope' !important;
font-weight: 500 !important;
font-size: 13px !important;
line-height: 19px !important;
letter-spacing: 0% !important;
}

.cust_name{
color: rgba(41, 44, 47, 1) !important;
font-family: 'Manrope' !important;
font-weight: 400 !important;
font-style: Regular !important;
font-size: 13.33px !important;
line-height: 100% !important;
margin-bottom: 0px !important;
}
.cust_para a {
  color: #4B9DD9; /* initial blue (Bootstrap primary) */
  text-decoration: none !important;
  font-family: 'Manrope' !important;
    font-weight: 500!important;
    font-style: Medium!important;
    font-size: 13px !important;
    line-height: 100%!important;
    letter-spacing: 0%!important;
}

.cust_para a:hover {
  color: #4B9DD9 !important; /* darker blue on hover */
  text-decoration: none !important; /* optional underline on hover */
}

.read-more-inline {
  font-size: 13px;
  color: #4B9DD9 !important;
  text-decoration: none !important; 
  cursor: pointer;
}

.read-more-inline:hover {
  color: #4B9DD9 !important;
  text-decoration: none !important;
}


.acufore-v9-box-text{
  color: #577D85 !important;
  /* background: #577D85; */
  font-family: 'Manrope' !important;
  font-weight: 400 !important;
  font-size: 13.33px !important;
  line-height: 100% !important;
  margin-bottom: 0px !important;
}

.video-section {
  background-color: #b0bac2; /* same light gray as in your image */
  height: 437px; /* set same height as image */
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.video-section p {
  color: white !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  margin-top: 53px !important;
}


/* ===== Footer Styles (Forced with !important) ===== */
footer {
  background-color: #2a2d2e !important;   /* Dark gray background */
  color: #ccc !important;                 /* Default light gray text */
  font-family: 'Manrope'!important;
  font-size: 14px !important;
  line-height: 1.6 !important;
}

footer h6 {
  color: #ffffff !important;
  margin-bottom: 0px !important;
  font-family: 'Manrope' !important;
    font-weight: 500 !important;
    font-style: Medium !important;
    font-size: 19.2px !important;
    line-height: 103% !important;
    letter-spacing: 1px !important;
}

/* Right aligned for Industries, Services, Quick links */
footer .col-md-3 h6,
footer .col-md-3 p {
  text-align: right !important;
}

footer p {
  margin-bottom: 0px !important;
  font-size: 16px !important;
  color: rgba(255, 255, 255, 1) !important;
  font-family: 'Manrope' !important;
font-weight: 400 !important;
line-height: 25px !important;
}

footer a {
  color: #bbb !important;
  font-size: 14px !important;
  text-decoration: none !important;
  transition: color 0.2s ease !important;
}

footer a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* Social Icons */
footer .fa-brands {
  font-size: 20px !important;
  transition: color 0.3s ease !important;
}

footer .fa-brands:hover {
  color: #1da1f2 !important; /* Twitter Blue (can customize per brand) */
}

/* Bottom bar */
footer .border-top {
  border-color: rgba(255,255,255,0.1) !important;
}

footer .text-md-end a {
  margin-left: 15px !important;
  font-size: 13px !important;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  footer {
    text-align: center !important;
  }
  footer .col-md-3 h6,
  footer .col-md-3 p {
    text-align: center !important;
  }
  footer .text-md-end {
    text-align: center !important;
    margin-top: 10px !important;
  }
  footer .d-flex {
    justify-content: center !important;
  }
}

.copyright-p{
font-family: Manrope !important;
font-weight: 400 !important;
font-style: Regular !important;
font-size: 13.33px !important;
line-height: 100% !important;
letter-spacing: 0% !important;
margin-top: 10px !important;
}

.copyright-p a{
font-family: Manrope !important;
font-weight: 400 !important;
font-style: Regular !important;
font-size: 13.33px !important;
line-height: 100% !important;
letter-spacing: 0% !important;
}


.hero-section {
  background: linear-gradient(to bottom, #f5f9fa 0%, #ffffff 100%);
  padding: 60px 0;
  position: relative;
}

.container.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.hero-text {
  flex: 1 1 45%;
}

.main-acufore {
    font-family: 'Manrope' !important;
    font-size: 68.796px !important;
    font-style: normal !important;
    font-weight: 800 !important;
    line-height: normal !important;
    letter-spacing: -2.064px !important;
    margin-bottom: 0px !important;
  color: rgba(64, 76, 77, 1) !important;
}

.innovation {
  font-size: 1.5rem;
  color: #666;
  position: relative;
  display: inline-block;
}

.vertical-line {
  display: inline-block;
  width: 2px;
  height: 20px;
  background: #2BA88A;
  margin-left: 10px;
  vertical-align: middle;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 20px;
}

.acf-header-btn-new i {
  color: #239676;
}

/* .acf-header-btn-new i:hover {
  color: #FFF;
} */


.acf-header-btn-new {
  display: inline-flex !important;
  padding: 8px 16px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 5px !important;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A !important;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.40) !important;
  color: #2BA88A !important;
  font-family: 'Manrope' !important;
  font-size: 17.2px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
}

.acf-header-btn-new:hover {
  display: inline-flex !important;
  padding: 8px 8px 8px 16px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  border-radius: 5px !important; 
  background: #2BA88A !important;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.40) !important;
  color: white !important;
  transition: all 400ms ease-in-out !important;
}

.hero-images {
  flex: 1 1 45%;
  display: flex;
  gap: 15px;
  height: 450px; /* set a fixed height (adjust as needed) */
}

/* Main containers */
.hero-image-large,
.hero-image-small {
  display: flex;
  transition: flex 0.5s ease;
}

/* Default sizes */
.hero-image-large {
  flex: 3;
  position: relative;
  overflow: hidden;
}

.hero-image-small {
  flex: 2.5;
  flex-direction: column;
  gap: 15px;
}

/* Small boxes */
.img-box {
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.5s ease;
}

/* Images */
.hero-image-large img,
.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Zoom effect */
.hero-image-large:hover img,
.img-box:hover img {
  transform: scale(1.05);
}

/* =================================
   EXPAND ON HOVER EFFECT
================================= */

/* When hovering big image */
.hero-image-large:hover {
  flex: 6;
}

.hero-image-large:hover ~ .hero-image-small {
  flex: 0;
}

/* When hovering any small image */
/*.hero-image-small:has(.img-box:hover) {*/
/*  flex: 3;*/
/*}*/


/* Expand hovered small image inside */
.img-box:hover {
  flex: 10;
}

/* Caption */
.img-caption {
  font-family: 'Manrope', sans-serif;
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 5px 8px;
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  transition: background 0.5s ease;
}

.stats-row {
  max-width: 1200px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.stats-row .stat h3 {
  color: #2BA88A !important;
  font-family: 'Manrope'  !important;
  font-weight: 800 !important;
  font-size: 34px !important;
  margin-bottom: 5px !important;
  font-size: 33.18px !important;
  line-height: 100%  !important;
  vertical-align: middle;

}

.stats-row .stat p {
  color: #292C2F !important;
  font-family: 'Manrope' !important;
  font-weight: 600 !important;
  font-style: SemiBold;
  font-size: 19.2px !important;
  line-height: 100% !important;
  vertical-align: middle;

}

.innov-new{
    color: rgba(64, 76, 77, 0.7) !important;
    position: relative !important;
    display: inline-block !important;
    font-family: 'Manrope' !important;
    font-weight: 600 !important;
    font-style: SemiBold !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    text-align: right !important;
    vertical-align: middle !important;
}

.build-new{
    background: linear-gradient(0deg, #8D9FB2, #8D9FB2),
              linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
  -webkit-background-clip: text; /* for Safari/Chrome */
  -webkit-text-fill-color: transparent; /* make text transparent */
  background-clip: text; /* for Firefox */
  color: transparent; /* fallback */

    font-family: 'Manrope' !important;
    font-size: 22px !important;
    font-style: normal !important;
    font-weight: 600 !important;
    line-height: normal !important;
    letter-spacing: 0.539px !important;
}

.build-strong{
    font-family: 'Manrope' !important;
    font-weight: 800 !important;
    font-style: ExtraBold !important;
    font-size: 22px !important;
    line-height: 100% !important;
    letter-spacing: -3% !important;
    text-align: right !important;
    background: rgba(45, 83, 87, 0.64);
    -webkit-background-clip: text; /* for Safari/Chrome */
    -webkit-text-fill-color: transparent; /* make text transparent */
    background-clip: text; /* for Firefox */
    color: transparent; /* fallback */

} 

.acf-header-btn {
  display: inline-flex !important;
  padding: 8px 16px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 5px !important;
  background: linear-gradient(0deg, #FFF 0%, #FFF 100%), #2BA88A !important;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.40) !important;
  color: #2BA88A !important;
  font-family: 'Manrope' !important;
  font-size: 17.2px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: normal !important;
}

.acf-header-btn:hover {
  display: inline-flex !important;
  padding: 8px 8px 8px 16px !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 16px !important;
  border-radius: 5px !important; 
  background: #2BA88A !important;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.40) !important;
  color: white !important;
  transition: all 400ms ease-in-out !important;
}

@media (min-width: 1400px) and (max-width: 1800px) {
  .navbar-nav-contact .navbar-nav .nav-item {
        margin-right: 0px !important;
    }
}


.acufore-v8-section {
  padding: 60px 40px !important;
  background: linear-gradient(to bottom right, #f9fbfc, #e9f1f5) !important;
}

.acufore-v8-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 5px !important;
  max-width: 996px !important;
  margin: 0 auto !important;
}

.acufore-v8-left{
    background: #fff !important;
    padding: 32px !important;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    transition: none !important;
    width: 329px;
    height: 275px;
    angle: 0 deg;
    opacity: 1;
}

.acufore-v8-card {
  background: #F5F5F5 !important;
    padding: 32px !important;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    transition: none !important;
    width: 329px;
    height: 275px;
    angle: 0 deg;
    opacity: 1;
}

.acufore-v8-card:hover {
    background: #FFFFFF !important;    
  transform: none !important;
}

.acufore-v8-card img {
  width: 30px !important;
  height: 30px !important;
}

.acufore-v8-card h3 {
    color: #577D85 !important;
    font-family: 'Manrope' !important;
    font-weight: 800 !important;
    font-style: ExtraBold !important;
    font-size: 20px !important;
    leading-trim: NONE;
    line-height: 100% !important;
    letter-spacing: 0px !important;
    vertical-align: middle !important;

}

.acufore-v8-card p {
  color: #577D85 !important;
    font-family: 'Manrope'!important;
    font-weight: 400 !important;
    font-style: Regular !important;
    font-size: 16px !important;
    line-height: 21px !important;
    letter-spacing: 0% !important;
    vertical-align: middle !important;

}

.acufore-v8-card a {
  color:#577D85 !important;
  transition: none !important;
    font-family: Manrope !important;
    font-weight: 400 !important;
    font-style: Regular !important;
    font-size: 16px !important;
    line-height: 100%!important;
    letter-spacing: 0% !important;
    vertical-align: middle !important;
    text-decoration: underline !important;
    text-decoration-style: solid !important;
    text-decoration-offset: 0% !important;
    text-decoration-thickness: 0% !important;

}


.acufore-v8-left {
  background: transparent !important;
  box-shadow: none !important;
  /*padding: 0 !important;*/
  /*gap: 24px !important;*/
  padding: 43px 0px 0px 35px !important;
    width: 259px;
    height: 190px;
    top: 43px;
    left: 35px;
    gap: 12px;
    opacity: 1;
}

.acufore-v8-title {
  color: #2d3a46 !important;
  font-family: 'Manrope'!important;
  font-weight: 800!important;
  font-style: ExtraBold!important;
  font-size: 39.81px!important;
  line-height: 42px!important;
  letter-spacing: -4.5%!important;
  vertical-align: middle;

}

.acufore-v8-subtitle {
  color: #5f6e7a !important;
  font-size: 1rem !important;
}

.acufore-v8-link {
  color: rgba(43, 168, 138, 1) !important;
  font-weight: 600 !important;
  transition: color 0.3s ease !important;
  font-family: 'Manrope'!important;
    font-weight: 700 !important;
    font-style: Bold !important;
    font-size: 16px !important;
    line-height: 100% !important;
    letter-spacing: 0% !important;
    vertical-align: middle;
    text-decoration: underline !important;
    text-decoration-style: solid !important;
    text-decoration-offset: 0% !important;
    text-decoration-thickness: 0% !important;

}
.acufore-v8-link:hover {
  color: #0f6d58 !important;
}


.acufore-v5-categories {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}


.acufore-v5-box-container {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  gap: 20px;
  flex-wrap: wrap;
}

.acufore-v5-box-container.show {
  display: flex; /* or grid if you prefer */
  opacity: 1;
  transform: translateY(0);
}

.category-btn {
    padding: 3px 10px;
    border-radius: 4px !important;
    font-weight: 500;
    font-size: 16px;
    color: #61707E;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /*border: 2px solid rgba(255, 255, 255, 0.61);*/
    /*background: #E8EEF3;*/
    /*box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.08);*/
    transition: all 0.3s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden; /* Needed for ripple */
}

/* Hover effect */
.category-btn:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.12);
}

/* Active (selected) state */
.category-btn.active {
    background: #E8EEF3;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.61) !important;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15) !important;

    /* gradient text */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #2BA88A, #1D6E5C);
}

/* Ripple effect (span will be injected via JS) */
.category-btn .ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background-color: rgba(43, 168, 138, 0.3);
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/*Client-sucess*/
.client-success-main-section {
    background-color: #f8fafc;
    padding-bottom: 151px !important;
}

.client-success-header-heading {
    font-family: 'Manrope' !important;
    font-weight: 700 !important;
    font-style: Bold !important;
    font-size: 26px !important;
    line-height: 100%;
    letter-spacing: -3%;
    text-align: center;
    vertical-align: middle;
    background: linear-gradient(
      0deg,
      var(--Cool-grey, #8D9FB2),
      var(--Cool-grey, #8D9FB2)
    ),
    linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.2),
      rgba(0, 0, 0, 0.2)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

/* Tabs (Filters) */
.client-success-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 25px;
}

.client-tab {
    border-width: 2px;
    padding-top: 3px;
    padding-right: 10px;
    padding-bottom: 3px;
    padding-left: 10px;
    border-radius: 3px !important;
    font-weight: 500;
    font-size: 16px !important;
    font-family: 'Manrope' !important;
    color: #61707E;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: all 0.3s ease, transform 0.2s ease;
    position: relative;
}



.client-tab.active {
    background: #E8EEF3;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.61) !important;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1) !important;

    /* gradient text */
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #2BA88A, #1D6E5C);
}

.client-tab:hover {
    background-color: #e6f8f2;
    color: #00a68a;
}

/* Card Grid */
.client-success-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(320px, 1fr));
    gap: 38px;
    margin-top: 40px;
    justify-items: center;
}

.client-success-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    /*transition: all 0.3s ease;*/
    cursor: pointer;
    /*opacity:0.7 !important;*/
    width: 410px;
    height: 258px;
    border-radius: 6px;

}

.client-success-card:hover {
    /*transform: translateY(-10px);*/
    opacity:1 !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    
}

.client-success-card-img img {
    width: 100%;
    height: 111px;
    object-fit: cover;
    opacity:0.7 !important;
    transition: transform 0.4s ease, filter 0.4s ease;
    transform-origin: center center; /* <-- ensures scaling is from center */
}

.client-success-card:hover .client-success-card-img img {
    transform: scale(1.05);
    filter: brightness(0.9);
    opacity:1 !important;
}

.client-success-card:hover .client-success-card-body {
    background: #6f8498;
    transition: background 0.3s ease;
}

.client-success-card-body {
    background: #8D9FB2;
    color: #F5F5F5;
    padding: 10px 20px 42px 20px;
    position: relative; /* Important for positioning the button inside */
    height: 147px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.client-success-card-title {
    font-family: 'Manrope' !important;
    font-weight: 800;
    font-style: ExtraBold;
    font-size: 15px !important;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px !important;
    vertical-align: middle;
    /*white-space: nowrap;*/
}

.client-success-card-text {
   font-family: 'Manrope' !important;
    font-weight: 400;
    font-style: Regular;
    font-size: 13.33px !important;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;

}

.client-success-card-body a {
    text-decoration: none;
    font-family: 'Manrope' !important;
    font-weight: 400;
    font-style: Regular;
    font-size: 13.33px !important;
    line-height: 100%;
    letter-spacing: 0px;
    vertical-align: middle;

}

.client-success-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 12px;
    border-radius: 19px;
    border: 1px solid rgba(255, 255, 255, 0.43);
    background: rgba(217, 223, 228, 0.02);
    color: #fff;
    font-family: 'Manrope' !important;
    font-size: 13px !important;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.client-success-btn:hover {
    background: rgba(168, 178, 189, 0.4);
    box-shadow: 0px 2px 4px 0px #BCC6D147;
    border: 1px solid rgba(255, 255, 255, 0.43);
}

.no-client-success {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 0;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    color: #61707E;
    opacity: 0.8;
}

/* ============================= */
/* Responsive Enhancements */
/* ============================= */


/* Tablet (â‰¤1092px) */
@media (min-width: 1025px) and (max-width: 1399px) {
  .client-success-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
  }

  .client-success-card {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .client-success-card-img img {
    height: 150px;
  }

  .client-success-card-body {
    padding: 12px 16px 40px 16px;
  }

  /* ðŸ”¹ Tabs on Tablet */
  .client-success-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 1rem;
  }

  .client-success-tab {
    padding: 8px 16px;
    text-align: center;
  }
}

/* Tablet (â‰¤1024px) */
@media (max-width: 1024px) {
  .client-success-grid {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 30px;
  }

  .client-success-card {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .client-success-card-img img {
    height: 150px;
  }

  .client-success-card-body {
    padding: 12px 16px 40px 16px;
  }

  /* ðŸ”¹ Tabs on Tablet */
  .client-success-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 1rem;
  }

  .client-success-tab {
    padding: 8px 16px;
    text-align: center;
  }
}

/* Mobile (â‰¤768px) */
@media (max-width: 768px) {
  .client-success-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* ðŸ”¹ Tabs on Mobile (wrap instead of scroll) */
  .client-success-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    padding: 0 10px;
  }

  .client-success-tab {
    flex: 1 1 auto;
    text-align: center;
    border-radius: 30px;
    padding: 6px 12px;
    transition: filter 0.3s ease;
  }

  .client-success-tab:hover {
    filter: brightness(1.2);
  }

  .client-success-card {
    width: 100%;
    height: auto;
  }

  .client-success-card-img img {
    height: 140px;
  }

  .client-success-card-body {
    height: auto;
    padding: 10px 14px 38px 14px;
  }

  .client-success-card-title {
    font-size: 14px !important;
  }

  .client-success-card-text {
    font-size: 12.5px !important;
  }

  .client-success-btn {
    font-size: 12px !important;
  }
}

/* Small Mobile (â‰¤480px) */
@media (max-width: 480px) {
  .client-success-main-section {
    padding-bottom: 100px !important;
  }

  /* ðŸ”¹ Tabs on Small Mobile (multi-line wrap) */
  .client-success-tabs {
    gap: 10px;
    justify-content: center;
    padding: 0 8px;
  }

  .client-success-tab {
    flex: 1 1 45%;
    font-size: 13px;
    padding: 6px 10px;
    text-align: center;
  }

  .client-success-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .client-success-card-img img {
    height: 130px;
  }

  .client-success-card-body {
    padding: 10px 12px 36px 12px;
  }

  .client-success-btn {
    padding: 4px 10px;
  }
}


/* ================================
   FORCE CIRCLE LAYOUT (FIXED)
================================ */

.acufore-integrated-eng-section {
     background: url('../images/integrated_bg.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; 
    overflow: hidden;
}

.integrated-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

.integrated-container {
    position: relative;
    height: 400px;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -27%);
}

/* --- GLOBAL TYPOGRAPHY --- */
.integrated-wrapper h2 {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 600 !important;
    font-size: 24px !important;
    line-height: 100%;
    text-align: center;
    letter-spacing: 0px !important;
    color: #5F5F5F !important;
    margin-top: 50px !important;
}

.integrated-wrapper p.integrated-subtitle {
    font-family: 'Manrope', sans-serif !important;p
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 100%;
    text-align: center;
    color: #5F5F5F !important;
    letter-spacing: 0px !important;
}

/* --- BASE CARD STYLING --- */
.int-card {
    position: absolute;
    width: 470px !important;
    padding: 20px 35px;
    z-index: 1;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    overflow: hidden; 
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}
/* Card Content Typography */
.int-card h3 {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 600 !important;
    font-size: 15.33px !important;
    line-height: 120%;
    color: #5F5F5F !important;
    margin-bottom: 8px;
    transition: color 0.3s ease, font-size 0.3s ease;
    letter-spacing: 0px !important;
}

.int-card p {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important; /* Adjusted slightly for readability */
    line-height: 1.4;
    color: #5F5F5F !important;
    margin: 0;
    transition: color 0.3s ease;
    letter-spacing: 0px !important;
}

/* --- SPECIFIC DIMENSIONS & POSITIONS --- */
/* Right Side */
.mechanical { top: 145.91px; left: 722.83px; height: 124.91px; }
.embedded   { top: 254.12px; left: 803.91px; height: 102.07px; }
.plant      { top: 339.49px; left: 722.52px; height: 131.50px; width: 470px !important;}

/* Left Side */
.building   { top: 145.91px; left: 222.39px; height: 124.91px; }
.data       { top: 254.12px; left: 141.00px; height: 102.07px; }
.software   { top: 339.49px; left: 222.39px; height: 124.76px; }

/* --- HOVER EFFECTS --- */
/* --- DYNAMIC HOVER OVERLAY --- */
.int-card:hover {
    z-index: 2; 
    background-image: var(--hover-img) !important; 
    background-blend-mode: normal !important;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

/* Typography Changes */
.int-card:hover h3 {
    color: #222222 !important;
    font-size: 17px !important;
}

.int-card:hover p {
    color: #333333 !important;
}
/* Tangential Expansion Logic */
/* Right side expands further right */
.mechanical:hover, .embedded:hover, .plant:hover {
    transform: scale(1.03) translateX(15px);
    transform-origin: left center;
}

/* Left side expands further left */
.building:hover, .data:hover, .software:hover {
    transform: scale(1.03) translateX(-15px);
    transform-origin: right center;
}

/* --- CENTER LOGO STYLING --- */

.integrated-logo-center { 
    position: absolute; 
    top: 207.98px; 
    left: 623px; 
    /* FIX 2: Higher z-index ensures logo stays ABOVE card background images */ 
    z-index: 20; 
}

.logo-circle {
    width: 230.04px;
    height: 200.04px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* FIX 3: Prevents vector_bg and ellipse from popping out of the circle */
    overflow: hidden; 
    /*background: linear-gradient(140.31deg, #7AD5A9 18.66%, #36A688 54.02%, #1C8575 89.37%);*/
    right:22px;
}

/* Background */
.vector-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Middle layer */
.vector-ellipse {
    position: absolute;   /* change from relative */
    width: 145px;         /* adjust as needed */
    height: auto;
    z-index: 2;
    margin-bottom:4px;
}

/* Top logo */
.af-logo-overlay {
    position: absolute;   /* change from relative */
    width: 102.69px;
    height: auto;
    z-index: 3;
}

/* Ensure the border-radius applies even with border-image */
.logo-circle::after {
    content: '';
    position: absolute;
    /* Use inset to ensure it wraps the circle perfectly */
    inset: 0; 
    /*border-radius: 50%;*/
    /*border: 4.6px solid;*/
    /*border-image-source: linear-gradient(180deg, #CDCDCD 0%, #F9F9F9 50%, #C9C9C9 75%, #D8D8D8 100%);*/
    /*border-image-slice: 1;*/
    pointer-events: none;
    z-index: 4;
}

/* --- RESPONSIVE LAYOUT (Mobile) --- */
@media (max-width: 1200px) {
    .integrated-container {
        display: flex;
        flex-direction: column;
        height: auto;
        align-items: center;
        gap: 20px;
        padding: 0 20px;
    }
    .int-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        max-width: 500px;
        text-align: center;
    }
    .integrated-logo-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-bottom: 30px;
    }
    .int-card:hover {
        transform: scale(1.02); /* Simpler scale for mobile */
    }
}

.nav-item.nav-align.dropdown.mega-dropdown > a#services::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-51%);
        border-left: 10px solid transparent;
        border-right: 10px solid transparent;
        border-top: 10px solid #00646b !important;
        background: none;
        width: 20px;
        height: 10px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

