.stats-section {
            --st-bg:       #f5f5f0;
            --st-card:     #F7F7F7;
            --st-border:   #ff2150;
            --st-ink:      #1a1a2e;
            --st-soft:     #555e6e;
            --st-green:    #1a9e4a;
            --st-yellow:   #d4a000;
            --st-radius:   14px;

            width: 100%;
            padding: 60px 0;
        }

        .stats-section .st-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 32px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* ── CARD ── */
        .stats-section .st-card {
            background: var(--st-card);
            border-radius: var(--st-radius);
            border-left: 4px solid var(--st-border);
            padding: 24px 24px 22px;
            display: flex;
            flex-direction: column;
            gap: 0;
            position: relative;
            transition: transform 0.3s cubic-bezier(.22,.68,0,1.2),
                        box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: st-up 0.55s cubic-bezier(.22,.68,0,1.2) forwards;
        }

        .stats-section .st-card:nth-child(1) { animation-delay: 0.05s; }
        .stats-section .st-card:nth-child(2) { animation-delay: 0.12s; }
        .stats-section .st-card:nth-child(3) { animation-delay: 0.19s; }

        @keyframes st-up {
            to { opacity: 1; transform: translateY(0); }
        }

        .stats-section .st-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.10);
        }

        /* ── ICON ── */
        .stats-section .st-icon {
            width: 36px;
            height: 36px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stats-section .st-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--st-border);
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        /* ── BIG NUMBER ── */
        .stats-section .st-value {
            font-size: clamp(1.8rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--st-ink);
            letter-spacing: -0.03em;
            line-height: 1;
            margin-bottom: 6px;
        }

        /* ── LABEL ── */
        .stats-section .st-label {
            font-size: 0.88rem;
            color: var(--st-soft);
            font-weight: 400;
            line-height: 1.4;
            margin-bottom: 10px;
        }

        /* ── SUB TEXT ── */
        .stats-section .st-sub {
            font-size: 0.8rem;
            font-weight: 600;
            line-height: 1.3;
        }

        .stats-section .st-sub.green  { color: var(--st-green); }
        .stats-section .st-sub.yellow { color: var(--st-yellow); }
        .stats-section .st-sub.red { color: var(--st-border); }

        /* ── RESPONSIVE ── */
        @media (max-width: 900px) {
            .stats-section .st-wrap {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 480px) {
            .stats-section .st-wrap {
                grid-template-columns: 1fr;
                padding: 0 16px;
            }
        }

        /* header */

        nav.navbar.bootsnav li.dropdown ul.dropdown-menu {
        top: 70px !important;
        display: none;
        opacity: 1;
        }

        .mega-dropdown .dropdown-menu {
            width: 100%;
            left: 0;
            right: 0;
            border: none;
            border-radius:4px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .mega-title {
            font-weight: 600;
            font-size: 15px;
            margin-bottom: 12px;
            color: #111827;
        }

        .mega-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mega-list li {
            margin-bottom: 8px;
        }

        .mega-list a {
            text-decoration: none;
            color: #4b5563;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .mega-list a:hover {
            color: #ff2150!important;
            padding-left: 4px;
        }