.supply-chains-section {
    background: #111113;
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}


.supply-chains-section  .section-title {
font-size: 48px;
font-weight: 700;
line-height: 1.1;
letter-spacing: .03em;
color: #ffffff;
margin-bottom: 16px;
}

.supply-chains-section  .section-title span {
color: #daff01;
}


    .supply-chains-section .supply-chains-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
    }

    .supply-chains-section .supply-chains-card {
        background: var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
        transition-property: all;
        transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        transition-duration: 150ms;
    }

/*        .supply-chains-section .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: #daff01;
            opacity: 0;
            transition: opacity 0.3s ease;
        }*/

/*        .supply-chains-section .feature-card:hover {
            transform: translateY(-4px);
            border-color: #daff01;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }*/

/*    .supply-chains-section .feature-card:hover::before {
        opacity: 1;
    }*/

    .supply-chains-section .supply-chains-card:hover {
        box-shadow: 0 10px 40px #daff0126;
        transform: translateY(-5px);
        border-color: rgb(218, 255, 1, 0.3);
        background-color: rgb(17, 17, 17, .1);
        border-width: 1px;
        border-style: solid;
    }

    .supply-chains-section .supply-chains-icon {
        width: 56px;
        height: 56px;
        background: rgb(239, 68, 68,0.1);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #f87171;
        transition: all 0.3s ease;
    }

    .supply-chains-section .supply-chains-card:hover .supply-chains-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .supply-chains-section .supply-chains-title {
        font-size: 20px;
        font-weight: 600;
        color: #ffffff;
        margin-bottom: 6px;
    }



    .supply-chains-section .supply-chains-description {
        font-size: 16px;
        line-height: 1.6;
        color: #dadada;
    }

@media (max-width: 768px) {
  .supply-chains-section  {
    padding: 40px 0;
  }
    .supply-chains-section .section-title {
        font-size: 30px;
        line-height: 1.2;
    }

    .supply-chains-section .supply-chains-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}