/* benefits of ml  */
.benefit-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.benefit-card {
    flex: 1 1 320px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 30px 25px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.benefit-card:nth-child(1)::before {
    background: linear-gradient(135deg, #fff, #b0cefb46, #fff);
}
.benefit-card:nth-child(2)::before {
    background: linear-gradient(-135deg, #fff, #f8ddb793, #fff);
}
.benefit-card:nth-child(3)::before {
    background: linear-gradient(135deg, #fff, #b0cefb46, #fff);
}
.benefit-card:nth-child(4)::before {
    background: linear-gradient(-135deg, #fff, #f8ddb793, #fff);
}
.benefit-card:nth-child(5)::before {
    background: linear-gradient(135deg, #fff, #b0cefb46, #fff);
}
.benefit-card:nth-child(6)::before {
    background: linear-gradient(-135deg, #fff, #f8ddb793, #fff);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(31, 38, 135, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: background 0.3s ease;
}

.benefit-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.benefit-card p {
    color: var(--gray);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.benefit-card:nth-child(1) .benefit-icon {
    background: linear-gradient(135deg, #3ba8e1, #169ae17c);
    box-shadow: 0 6px 20px rgba(26, 63, 148, 0.6);
}

.benefit-card:nth-child(2) .benefit-icon {
    background: linear-gradient(135deg, #fa923d, #f87f1c8b);
    box-shadow: 0 6px 20px rgba(122, 82, 18, 0.6);
}
.benefit-card:nth-child(3) .benefit-icon {
    background: linear-gradient(135deg, #3ba8e1, #169ae17c);
    box-shadow: 0 6px 20px rgba(26, 63, 148, 0.6);
}

.benefit-card:nth-child(4) .benefit-icon {
    background: linear-gradient(135deg, #fa923d, #f87f1c8b);
    box-shadow: 0 6px 20px rgba(122, 82, 18, 0.6);
}
.benefit-card:nth-child(5) .benefit-icon {
    background: linear-gradient(135deg, #3ba8e1, #169ae17c);
    box-shadow: 0 6px 20px rgba(26, 63, 148, 0.6);
}

.benefit-card:nth-child(6) .benefit-icon {
    background: linear-gradient(135deg, #fa923d, #f87f1c8b);
    box-shadow: 0 6px 20px rgba(122, 82, 18, 0.6);
}

@media (max-width: 768px) {
    .benefit-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .benefit-card {
        width: 90%;
    }
}

/* what we do */
.ml-neu-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    row-gap: 30px;
}

.ml-neu-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    flex: 1 1 280px;
    background: #f6f9fe;
    border-radius: 30px;
    box-shadow: 8px 8px 15px #dde5f1, -8px -8px 15px #ffffff;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 15px;
}

.ml-neu-card:hover {
    box-shadow: inset 8px 8px 15px #dde5f1, inset -8px -8px 15px #dde5f1;
    transform: translateY(-5px);
}

.ml-neu-icon {
    background: #f6f9fe;
    box-shadow: 6px 6px 12px #dde5f1, -6px -6px 12px #ffffff;
    height: 60px;
    width: 60px;
    margin: 0 auto 20px auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #0077ff;
}

.ml-neu-card h5 {
    font-weight: 600;
}
.ml-neu-card p {
    color: var(--gray);
}

@media (max-width: 768px) {
    .ml-neu-card {
        width: 100%;
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .ml-neu-card {
        max-width: 90%;
        padding: 25px;
    }
}


/* process  */
.gradient-border-right {
    position: relative;
}

.gradient-border-sides {
    position: relative;
    z-index: 1;
}

.gradient-border-sides::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #ffffff, #5fbcff);
    z-index: -1;
    border-radius: 0 10px 10px 0;
}

.gradient-border-sides::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(to right, #ffffff, #5fbcff);
    z-index: -1;
    border-radius: 0 0 10px 10px;
}

.numbered-process-section {
    padding: 60px 20px;
}

.process-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    text-align: center;
}

.ml-process-step {
    flex: 1 1 100%;
    max-width: 300px;
    margin: 20px auto;
    position: relative;
    text-align: center;
}

.step-number {
    font-size: 50px;
    font-weight: bold;
    color: #c7e6f4;
    position: absolute;
    top: -20px;
    left: -20px;
}

.icon-wrapper {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 40px auto 15px;
}

.icon-wrapper img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.icon-base-1 {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: white;
    border: 2px #f5f5f5 solid;
    border-radius: 50%;
    z-index: 1;
    /* opacity: 0.2; */
}

.icon-base {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 20px;
    background: #fa923d;
    border-radius: 50%;
}

.ml-process-step h5 {
    margin-top: 40px;
}
.ml-process-step p {
    color: var(--gray);
}

h5 {
    font-weight: 600;
}

/* .icon-with-shadow {
    display: block;
    margin: 0 auto;
    width: 80px;
    height: auto;
    box-shadow: 0px 20px 10px -10px rgba(255, 162, 0, 0.3);
    border-radius: 10px;
} */

