/* HERO SECTION */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #f8f9fa;
    overflow: hidden;
    /* margin-top:100px ; */
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content1 {
    position: absolute;
    top: 45%;
    left: 5%;
    /* transform: translate(-50%, -50%); */
    text-align: left;
    color: #ffffff;
}

.hero-content1 h1 {
    font-size: 2.5rem;
    font-weight: 600;
}

.btn-contact {
    margin-top: 70px;
    float: left;
}

@media (max-width: 768px) {
    .hero-content1 h1 {
        font-size: 1.8rem;
    }

    .btn-contact {
        padding: 8px 24px;
        margin-top: 20px;
        position: relative;
        
        /*left: 50%;*/
        /*transform: translate(-50%);*/
    }

    .hero-content1 {
        left: 50% !important;
        /* bottom: 20%; */
        width: 100%;
        transform: translate(-50%, -50%);
        text-align: center;
    }
}

/* HEADING SECTION */
.highlight-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
}

.highlight-line {
    display: inline;
    background: linear-gradient(to top, red 40%, transparent 40%);
}

.highlight-line-1 {
    /* display: inline; */
    background: linear-gradient(to top, red 30%, transparent 30%);
}

.heading-section p {
    width: 800px;
}

@media (max-width: 768px) {
    .highlight-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .section-subtitle {
        text-align: center;
    }
}

/* TABS SECTION */
.filter-title {
    background: #f1f1f1;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-options label {
    display: block;
    margin: 8px 0;
    cursor: pointer;
    color: #d5102d;
}

.filter-options input[type="radio"] {
    margin-right: 8px;
}

.card-title {
    color: #d5102d;
    font-weight: 500;
}

.card-text {
    font-size: 14px;
    color: #666;
}

.read-more {
    font-weight: 600;
    font-size: 14px;
    color: #000;
}

.arrow-up::after {
    content: "▲";
    font-size: 12px;
}

.arrow-down::after {
    content: "▼";
    font-size: 12px;
}

.article-card {
    border: none;
}

.article-img {
    /*height: 160px;*/
    object-fit: cover;
}

.filter-container {
    position: sticky;
    top: 20px;
}

/* single indusrty page css */




.arrow-scroll-down {
    bottom: 120px;
}

.why-trust-section {
    background-color: #1d1d1d;
    color: #fff;
    height: 450px;
    align-items: center;
}

.section-heading {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
}

.section-heading .highlight {
    display: inline-block;
    position: relative;
}

.section-heading .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 5px;
    background-color: #ff1f1f;
    z-index: -1;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    flex-direction: column;
}

.check-item p {
    width: 100%;
    max-width: 60%;
}

.check-icon {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1;
}

.agribusiness-solutions {
    background-color: #fff;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.section-title .highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 5px;
    width: 100%;
    background-color: #d0021b;
    z-index: -1;
}

.solution-card {
    border: 1px solid #eee;
    background-color: #fff;
    transition: box-shadow 0.3s;
    position: relative;
    height: 300px;
}

.solution-card::before {
    content: "";
    height: 5px;
    width: 100%;
    background-color: #d0021b;
    position: absolute;
    top: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.card-content {
    padding: 20px;
}

.card-number {
    font-size: 1rem;
    color: #000;
    display: inline-block;
    margin-bottom: 10px;
}

.card-title {
    font-weight: bold;
    color: #d0021b;
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.9rem;
    color: #888;
    min-height: 90px;
}

.read-more {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}

.sector-btn {
    padding: 10px 24px;
    border-radius: 20px;
    border: 1px solid #d0021b;
    background-color: transparent;
    color: #d0021b;
    font-weight: 500;
    transition: all 0.3s;
}

.sector-btn:hover,
.sector-btn.active {
    background-color: #d0021b;
    color: #fff;
}

.custom-learn-more {
    background-color: #d0021b;
    color: white;
    border-radius: 25px;
    padding: 10px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s;
}

.custom-learn-more:hover {
    background-color: #b00118;
    color: white;
}

@media (max-width: 768px) {
    .custom-learn-more {
        margin-bottom: 25px;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    .why-trust-section {
        height: auto;
        padding: 20px;
        margin-top: 20px;
    }
    .check-item p {
        max-width: 100%;
    }
    .stats {
        gap: 20px;
    }
    .page-wrapper .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .borderBottomZero .brdr-bottom::after {
        left: 50% !important;
        transform: translateX(-35%) !important;
    }
    .cta-content .borderBottomZero .brdr-bottom::after {
       display: none !important;
    }
}

/* single indusrty page css */
