/* Agricultural Products Range Section */
.agricultural-range-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.agricultural-range-section .machinery-slider-container {
    margin: 0 auto;
    max-width: 1400px;
    overflow: hidden;
    padding: 0 20px;
}

.agricultural-range-section .machinery-slider-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.agricultural-range-section .machinery-slider-track.reverse {
    animation-direction: reverse;
    margin-top: 15px;
}

.agricultural-range-section .machinery-slide {
    flex: 0 0 auto;
    width: 200px;
    transition: transform 0.3s ease;
}

.agricultural-range-section .machinery-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px 15px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 187, 204, 0.08);
}

.agricultural-range-section .machinery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 187, 204, 0.15);
    border-color: rgba(6, 187, 204, 0.3);
}

.agricultural-range-section .machinery-item i {
    font-size: 2.5rem;
    margin-bottom: 12px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.agricultural-range-section .machinery-item span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #334155;
    margin-top: 8px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-200px * 4 - 20px * 3)); }
}

/* Exported Products Section */
.exported-products-section {
    position: relative;
    overflow: hidden;
}

.export-product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.export-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.export-product-img {
    height: 200px;
    overflow: hidden;
}

.export-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.export-product-card:hover .export-product-img img {
    transform: scale(1.05);
}

.export-product-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.export-product-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.export-product-content p {
    color: #64748b;
    margin-bottom: 15px;
    flex-grow: 1;
}

.export-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.export-specs span {
    background: #f8fafc;
    color: #0d9488;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.export-specs i {
    color: #0d9488;
    font-size: 0.7rem;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .export-product-img {
        height: 180px;
    }
}

@media (max-width: 767.98px) {
    .export-product-card {
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
}
