﻿
body {
 /*   font-family: 'Noto Sans Devanagari', sans-serif;
    background: #f0f4f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 16px;*/
}

.widget-card {
    width: 460px;
    border-radius: 20px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.06);
    border: none;
}

/* HEADER */
.widget-header {
    background: linear-gradient(100deg, #1565C0 0%, #1976D2 60%, #1E88E5 100%);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

    .widget-header::after {
        content: '';
        position: absolute;
        right: -30px;
        top: -30px;
        width: 120px;
        height: 120px;
        background: rgba(255,255,255,0.08);
        border-radius: 50%;
    }

    .widget-header::before {
        content: '';
        position: absolute;
        right: 40px;
        bottom: -40px;
        width: 90px;
        height: 90px;
        background: rgba(255,255,255,0.06);
        border-radius: 50%;
    }

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.header-icon-box {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.header-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.2px;
    margin: 0;
}

.header-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.75);
    font-weight: 400;
    margin: 0;
}

.btn-see-all {
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Noto Sans Devanagari', sans-serif;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1;
    white-space: nowrap;
}

    .btn-see-all:hover {
        background: rgba(255,255,255,0.30);
        color: #fff;
        transform: translateX(2px);
    }

/* COLOR STRIP */
.color-strip {
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FFD700, #1E88E5, #00C9A7);
}

/* LIST */
.item-list {
    padding: 12px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 12px;
    background: #f8fafd;
    border: 1.5px solid #e8eef6;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
    animation: fadeUp 0.35s both;
}

    .list-item:nth-child(1) {
        animation-delay: 0.04s;
    }

    .list-item:nth-child(2) {
        animation-delay: 0.08s;
    }

    .list-item:nth-child(3) {
        animation-delay: 0.12s;
    }

    .list-item:nth-child(4) {
        animation-delay: 0.16s;
    }

    .list-item:nth-child(5) {
        animation-delay: 0.20s;
    }

    .list-item:nth-child(6) {
        animation-delay: 0.24s;
    }

    .list-item:nth-child(7) {
        animation-delay: 0.28s;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.list-item:hover {
    background: #eaf1fb;
    border-color: #1976D2;
    transform: translateX(4px);
    box-shadow: 0 3px 14px rgba(25,118,210,0.10);
}

    .list-item:hover .item-arrow {
        opacity: 1;
        transform: translateX(0);
        color: #1976D2;
    }

    .list-item:hover .item-icon-wrap {
        transform: scale(1.1);
    }

.item-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.list-item:nth-child(1) .item-icon-wrap {
    background: #fff3ee;
}

.list-item:nth-child(2) .item-icon-wrap {
    background: #e8f5e9;
}

.list-item:nth-child(3) .item-icon-wrap {
    background: #e3f2fd;
}

.list-item:nth-child(4) .item-icon-wrap {
    background: #fffde7;
}

.list-item:nth-child(5) .item-icon-wrap {
    background: #f3e5f5;
}

.list-item:nth-child(6) .item-icon-wrap {
    background: #fff8e1;
}

.list-item:nth-child(7) .item-icon-wrap {
    background: #e0f7fa;
}

.item-text {
    flex: 1;
    font-size: 13.5px;
    font-weight: 500;
    color: #2c3e50;
    line-height: 1.5;
}

.item-arrow {
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
    font-size: 14px;
    flex-shrink: 0;
    color: #aaa;
}

/* FOOTER */
.widget-footer {
    padding: 10px 20px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid #eef2f7;
    gap: 6px;
}

.footer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1976D2;
}

    .footer-dot:nth-child(2) {
        background: #FF6B35;
        opacity: 0.6;
    }

    .footer-dot:nth-child(3) {
        background: #00C9A7;
        opacity: 0.4;
    }

.footer-text {
    font-size: 11px;
    color: #a0aec0;
    margin-left: 4px;
}

