 :root {
            --brand-purple: #662583;
            --brand-gold: #D4AF37;
            --light-gold: #F9F4E8;
            --dark-text: #2d2d2d;
        }

        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        .vl-breadcrumb
 {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    height: 300px;
    overflow: hidden;
}


.vl-breadcrumb-title {
    padding-top: 108px;
    padding-bottom: 100px;
}

.vl-breadcrumb-title .heading {
    font-size: clamp(1.5rem, 5vw, 3rem);
    line-height: var(--ztc-specing-height90);
    font-family: var(--ztc-family-font2);
    font-weight: var(--ztc-weight-bold);
    padding-top: 24px;
    padding-bottom: 0;
}
        .ihd{
            font-family: 'monserat_extrabold',sans-serif;
            text-transform: capitalize;
        }

        .ishd{
            font-family: 'inter',sans-serif;
            width: 60%;
        }

        .hdlogo{
            background: var(--brand-gold);
    border-radius: 50px;
    padding: 10px;
        }

        .stat-card {
            height: 100%;
            border: none;
            transition: transform 0.2s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .label-badge {
            font-size: 0.65rem;
            text-transform: uppercase;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 15px;
            width: max-content;
        }

        /* Color Variants */
        .bg-purple {
            background-color: var(--brand-purple);
            color: white;
        }

        .bg-gold {
            background-color: var(--brand-gold);
            color: white;
        }

        .bg-light-gold {
            background-color: var(--light-gold);
            color: var(--dark-text);
        }

        .bg-white-alt {
            background-color: #ffffff;
            color: var(--dark-text);
            border: 1px solid #eee !important;
        }

        .stat-number {
            font-weight: 800;
            font-size: 2.5rem;
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-desc {
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 1.4;
        }

        .badge-purple-outline {
            border: 1px solid rgba(255, 255, 255, 0.4);
            color: white;
        }

        .badge-dark-outline {
            border: 1px solid rgba(0, 0, 0, 0.1);
            color: var(--dark-text);
        }

        .row {
            display: flex;
            flex-wrap: wrap;
            gap: 0 0;
        }


        @media(max-width:991px){
            .ishd{
                width: auto;
            }
        }