/* ===== What You Receive Section ===== */
.whatReceiveSection {
    padding: var(--section-bg-py) 0;
}

.whatReceiveSection .sectionHeadwrap {
    text-align: left;
}

/* ===== List: single column ===== */
.whatReceiveSection .secWrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
 
}

/* ===== Feature Card Item ===== */
.receiveItem {
    display: flex;
    align-items: start;
    gap: 17px;
    padding: 23px 25px;
    background: #fff;
    border: 1px solid #E7EEF9;
    border-radius: 30px;
 
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Top bar on hover */
.receiveItem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2.5px;
    background: var(--color-primary, #3A66D4);
    transition: width 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.receiveItem:hover {
    transform: translateY(-3px);
    border-color: rgba(58, 102, 212, 0.25);
    box-shadow: 0px 8px 24px rgba(58, 102, 212, 0.1);
}

.receiveItem:hover::before {
    width: 100%;
}

/* ===== Icon Box ===== */
.receiveIcon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: #F2F5FF;
    border: 1px solid #E8EDFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
}

.receiveIcon::before {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-color: var(--color-primary, #3A66D4);
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.25 1.29648V5.84008C14.25 6.45613 14.25 6.76417 14.3726 6.99947C14.4805 7.20644 14.6525 7.37472 14.8642 7.48019C15.1049 7.60008 15.4199 7.60008 16.05 7.60008H20.6968M8.625 15.4L10.875 17.6L15.9375 12.65M14.25 1H8.4C6.50982 1 5.56473 1 4.84278 1.35968C4.20773 1.67606 3.69143 2.18089 3.36785 2.80183C3 3.50774 3 4.43182 3 6.28V17.72C3 19.5682 3 20.4922 3.36785 21.1982C3.69143 21.8192 4.20773 22.3239 4.84278 22.6403C5.56473 23 6.50982 23 8.4 23H15.6C17.4902 23 18.4352 23 19.1572 22.6403C19.7923 22.3239 20.3086 21.8192 20.6321 21.1982C21 20.4922 21 19.5682 21 17.72V7.6L14.25 1Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M14.25 1.29648V5.84008C14.25 6.45613 14.25 6.76417 14.3726 6.99947C14.4805 7.20644 14.6525 7.37472 14.8642 7.48019C15.1049 7.60008 15.4199 7.60008 16.05 7.60008H20.6968M8.625 15.4L10.875 17.6L15.9375 12.65M14.25 1H8.4C6.50982 1 5.56473 1 4.84278 1.35968C4.20773 1.67606 3.69143 2.18089 3.36785 2.80183C3 3.50774 3 4.43182 3 6.28V17.72C3 19.5682 3 20.4922 3.36785 21.1982C3.69143 21.8192 4.20773 22.3239 4.84278 22.6403C5.56473 23 6.50982 23 8.4 23H15.6C17.4902 23 18.4352 23 19.1572 22.6403C19.7923 22.3239 20.3086 21.8192 20.6321 21.1982C21 20.4922 21 19.5682 21 17.72V7.6L14.25 1Z' stroke='black' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    transition: background-color 0.3s ease;
}

.receiveItem:hover .receiveIcon {
    background: var(--color-primary, #3A66D4);
    transform: scale(1.05);
}

.receiveItem:hover .receiveIcon::before {
    background-color: #fff;
}

/* ===== Content ===== */
.receiveContent {
    flex: 1;
}

.receiveContent h3 {
    font-family: var(--font-primary);
    font-size: 17px;
    font-weight: 500;
    line-height: var(--lh-heading);
    color: var(--color-heading);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.receiveDesc,
.receiveDesc p {
    font-family: var(--font-primary);
    font-size: var(--fs-15);
    font-weight: var(--fw-regular);
    line-height: var(--lh-relaxed);
    color: var(--color-text);
    margin: 0;
}

 

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .receiveItem {
        padding: 16px 20px;
        gap: 16px;
    }

    .receiveIcon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .receiveIcon svg {
        width: 20px;
        height: 20px;
    }

    .receiveContent h3 {
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .whatReceiveSection .secWrapper {
        gap: 10px;
    }

    .receiveItem {
        padding: 14px 16px;
        gap: 14px;
    }

    .receiveIcon {
        width: 38px;
        height: 38px;
        border-radius: 9px;
    }

    .receiveIcon svg {
        width: 18px;
        height: 18px;
    }

    .receiveContent h3 {
        font-size: 14px;
    }
    .whatReceiveSection .sectionHeadwrap {
    text-align: center;
}
}
