        .card1{
            padding:15px;
            border-radius:12px;
            box-shadow:0 2px 10px rgba(0,0,0,0.15);
            background:#fff;
        }

        #container{
            display:flex;
            /*height:100vh;*/
        }

        #map{
            width:100%;
            background:#f5f5f5;
        }

        #panel{
            width:100%;
            /*border-left:1px solid #ccc;*/
            padding:0px 10px 10px 10px;
            overflow:auto;
        }

        svg path{
            /*fill:#e0e0e0;*/
            /*stroke:#333;*/
            /*stroke-width:0.5;*/
            cursor:pointer;
        }

        .card1{
            border-bottom:1px solid #ddd;
        }
        @keyframes popIn {
            from { transform: scale(0.92); opacity: 0; }
            to   { transform: scale(1);    opacity: 1; }
        }
        .card1-header p {
            color: rgba(255,255,255,0.8);
            font-size: 0.8rem;
            margin-top: 2px;
        }

        .card1-body {
            padding: 24px 24px 20px;
        }

        .stat-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 7px 16px;
            border-radius: 12px;
            margin-bottom: 10px;
            transition: all 0.25s ease;
            cursor: default;
        }

        .stat-row:hover {
            transform: translateX(6px);
            box-shadow: 0 4px 14px rgba(0,0,0,0.08);
        }

        .stat-row:last-child { margin-bottom: 0; }

        .stat-row.gov   { background: #eff6ff; }
        .stat-row.women { background: #fdf2f8; }
        .stat-row.priv  { background: #f0fdf4; }
        .stat-row.st    { background: #fffbeb; }
        .stat-row.sc    { background: #fff1f2; }

        .gov   .stat-icon { background: #dbeafe; color: #2563eb; }
        .women .stat-icon { background: #fce7f3; color: #db2777; }
        .priv  .stat-icon { background: #dcfce7; color: #16a34a; }
        .st    .stat-icon { background: #fef9c3; color: #ca8a04; }
        .sc    .stat-icon { background: #ffe4e6; color: #e11d48; }

        .gov   .stat-value { color: #2563eb; }
        .women .stat-value { color: #db2777; }
        .priv  .stat-value { color: #16a34a; }
        .st    .stat-value { color: #ca8a04; }
        .sc    .stat-value { color: #e11d48; }

        /* ── SUB ROWS ── */
        .sub-rows {
            margin: -4px 0 10px 20px;
            border-left: 2px solid #e0e7ff;
            padding-left: 10px;
        }
        
        .sub-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 9px 13px;
            border-radius: 10px;
            margin-bottom: 6px;
            cursor: default;
            transition: all 0.2s ease;
        }
        .sub-row:last-child { margin-bottom: 0; }
        .sub-row:hover { transform: translateX(4px); box-shadow: 0 3px 8px rgba(0,0,0,0.06); }
        
        .sub-row.women  { background: #fdf2f8; }
        .sub-row.tech   { background: #eff6ff; }
        .sub-row.sc     { background: #fff1f2; }
        .sub-row.st     { background: #fffbeb; }
        .sub-row.prison { background: #f0fdf4; }
        
        .sub-icon {
            width: 32px; height: 32px;
            border-radius: 8px;
            display: flex; align-items: center; justify-content: center;
            font-size: 13px; flex-shrink: 0;
        }
        
        .sub-row.women  .sub-icon { background: #fce7f3; color: #db2777; }
        .sub-row.tech   .sub-icon { background: #dbeafe; color: #2563eb; }
        .sub-row.sc     .sub-icon { background: #ffe4e6; color: #e11d48; }
        .sub-row.st     .sub-icon { background: #fef9c3; color: #ca8a04; }
        .sub-row.prison .sub-icon { background: #dcfce7; color: #16a34a; }
        
        .sub-label { flex: 1; font-size: 0.82rem; color: #6b7280; font-weight: 500; }
        
        .sub-value { font-size: 0.95rem; font-weight: 700; min-width: 28px; text-align: right; }
        
        .sub-row.women  .sub-value { color: #db2777; }
        .sub-row.tech   .sub-value { color: #2563eb; }
        .sub-row.sc     .sub-value { color: #e11d48; }
        .sub-row.st     .sub-value { color: #ca8a04; }
        .sub-row.prison .sub-value { color: #16a34a; }
        
        /* ── add indus to existing stat colours ── */
        .stat-row.indus { background: #fff7ed; }
        .indus .stat-icon { background: #ffedd5; color: #ea580c; }
        .indus .stat-value { color: #ea580c; }
                /* Very small phones */
        @media (max-width: 340px) {
            .card-header h4 { font-size: 1rem; }

            .stat-row { padding: 9px 10px; gap: 8px; }

            .stat-icon {
                width: 30px;
                height: 30px;
                font-size: 13px;
            }

            .stat-label { font-size: 0.78rem; }
            .stat-value { font-size: 0.92rem; }
            .total-value { font-size: 1.1rem; }
        }
        
        /* Responsive Breakpoints */
        @media (max-width: 767px) {
            #map {
                margin-bottom: 20px;
            }
        
            #panel {
                position: static; /* remove sticky on mobile */
            }
             #container{
                    display:block;
                    /*height:100vh;*/
                }
        }
        
        @media (max-width: 480px) {
            #panel {
                padding: 15px;
            }
        
            #panel h3 {
                font-size: 1.1rem;
            }
        }
        .iti-summary-card1 {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.3);
            width: 100%;
            max-width: 420px;
            animation: popIn 0.5s ease;
        }

        @keyframes popIn {
            from { transform: scale(0.92); opacity: 0; }
            to   { transform: scale(1);    opacity: 1; }
        }
        .card1-header h4 { color: white; font-size: 1.3rem; font-weight: 700; margin: 0; }
        .card1-header p  { color: rgba(255,255,255,0.8); font-size: 0.8rem; margin-top: 2px; }

        .card1-body { padding: 24px 24px 20px; }

        /* ── MAIN STAT ROW ── */
        .stat-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 16px;
            border-radius: 12px;
            margin-bottom: 10px;
            transition: all 0.25s ease;
            cursor: default;
        }
        .stat-row:hover {
            transform: translateX(6px);
            box-shadow: 0 4px 14px rgba(0,0,0,0.08);
        }

        .stat-row.gov   { background: #eff6ff; }
        .stat-row.women { background: #fdf2f8; }
        .stat-row.priv  { background: #f0fdf4; }
        .stat-row.st    { background: #fffbeb; }
        .stat-row.sc    { background: #fff1f2; }

        .stat-icon {
            width: 40px; height: 40px;
            border-radius: 10px;
            display: flex; align-items: center; justify-content: center;
            font-size: 17px; flex-shrink: 0;
        }

        .gov   .stat-icon { background: #dbeafe; color: #2563eb; }
        .women .stat-icon { background: #fce7f3; color: #db2777; }
        .priv  .stat-icon { background: #dcfce7; color: #16a34a; }
        .st    .stat-icon { background: #fef9c3; color: #ca8a04; }
        .sc    .stat-icon { background: #ffe4e6; color: #e11d48; }

        .stat-label { flex: 1; font-size: 0.92rem; color: #4b5563; font-weight: 500; }

        .stat-value { font-size: 1.15rem; font-weight: 700; min-width: 36px; text-align: right; }

        .gov   .stat-value { color: #2563eb; }
        .women .stat-value { color: #db2777; }
        .priv  .stat-value { color: #16a34a; }
        .st    .stat-value { color: #ca8a04; }
        .sc    .stat-value { color: #e11d48; }

        /* ── RESPONSIVE ── */
        @media (max-width: 480px) {
            .iti-summary-card1 { border-radius: 16px; }
            .card1-header { padding: 16px 18px; gap: 12px; }
            .card1-header-icon { width: 40px; height: 40px; font-size: 18px; }
            .card1-header h4 { font-size: 1.1rem; }
            .card1-body { padding: 16px 16px 14px; }
            .stat-row { padding: 10px 12px; gap: 10px; margin-bottom: 8px; }
            .stat-icon { width: 34px; height: 34px; font-size: 14px; }
            .stat-label { font-size: 0.82rem; }
            .stat-value { font-size: 1rem; }
            .sub-rows { margin-left: 14px; }
            .sub-row { padding: 8px 11px; }
            .sub-icon { width: 28px; height: 28px; font-size: 12px; }
            .sub-label { font-size: 0.76rem; }
            .sub-value { font-size: 0.88rem; }
            .total-row { padding: 13px 16px; }
            .total-value { font-size: 1.25rem; }
        }

        @media (max-width: 340px) {
            .stat-row { padding: 9px 10px; }
            .stat-icon { width: 30px; height: 30px; font-size: 13px; }
            .stat-label { font-size: 0.78rem; }
            .stat-value { font-size: 0.92rem; }
            .total-value { font-size: 1.1rem; }
        }
        
     .iti-summary-card1 {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0,0,0,0.3);
            width: 100%;
            max-width: 420px;
            animation: popIn 0.5s ease;
        }

        @keyframes popIn {
            from { transform: scale(0.92); opacity: 0; }
            to   { transform: scale(1);    opacity: 1; }
        }

        /* ── card1 HEADER ── */
        .card1-header {
            background: #6E1299;
            padding: 10px 28px;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .card1-header-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: white;
            flex-shrink: 0;
        }

        .card1-header h4 {
            color: white;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
        }

        .card1-header p {
            color: rgba(255,255,255,0.8);
            font-size: 0.8rem;
            margin-top: 2px;
        }

        /* ── card1 BODY ── */
        .card1-body {
            padding: 24px 24px 20px;
        }

        /* ── STAT ROWS ── */
        .stat-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 13px 16px;
            border-radius: 12px;
            margin-bottom: 10px;
            transition: all 0.25s ease;
            cursor: default;
        }

        .stat-row:hover {
            transform: translateX(6px);
            box-shadow: 0 4px 14px rgba(0,0,0,0.08);
        }

        .stat-row:last-child { margin-bottom: 0; }

        /* color variants */
        .stat-row.gov   { background: #eff6ff; }
        .stat-row.women { background: #fdf2f8; }
        .stat-row.priv  { background: #f0fdf4; }
        .stat-row.st    { background: #fffbeb; }
        .stat-row.sc    { background: #fff1f2; }

        .stat-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            flex-shrink: 0;
        }

        .gov   .stat-icon { background: #dbeafe; color: #2563eb; }
        .women .stat-icon { background: #fce7f3; color: #db2777; }
        .priv  .stat-icon { background: #dcfce7; color: #16a34a; }
        .st    .stat-icon { background: #fef9c3; color: #ca8a04; }
        .sc    .stat-icon { background: #ffe4e6; color: #e11d48; }

        .stat-label {
            flex: 1;
            font-size: 0.92rem;
            color: #4b5563;
            font-weight: 500;
        }

        .stat-value {
            font-size: 1.15rem;
            font-weight: 700;
            color: #1f2937;
            min-width: 36px;
            text-align: right;
        }

        .gov   .stat-value { color: #2563eb; }
        .women .stat-value { color: #db2777; }
        .priv  .stat-value { color: #16a34a; }
        .st    .stat-value { color: #ca8a04; }
        .sc    .stat-value { color: #e11d48; }

        /* ── DIVIDER ── */
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
            margin: 18px 0;
        }

        .total-row {
            background: linear-gradient(90deg, #00229E 0%, #6E1299 47.92%, #FE0094 100%);
            border-radius: 14px;
            padding: 8px 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            margin: 0 0 4px;
        }

        .total-icon {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            flex-shrink: 0;
        }

        .total-label {
            flex: 1;
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            font-weight: 600;
        }

        .total-value {
            font-size: 1.5rem;
            font-weight: 800;
            color: white;
        }
        @media(min-width:1000px) and (max-width:2900px){
            #panel{
                margin:0rem 3rem 0rem 3rem;
            }
        }  
/* home banner  */
  /* ── WRAPPER ── */
  .slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  /* ── TRACK ── */
  .slider-track {
    display: flex;
    transition: transform 750ms cubic-bezier(0.77, 0, 0.175, 1);
    will-change: transform;
  }
.slider-track {
  background: transparent; /* fills any gap between slides */
  align-items: stretch;
}

.slide {
  background: transparent;
  min-height: 100%; /* ensures no gap */
}
.slide img {
  transform: scale(1); /* remove the scale effect, or increase to 1.05 */
}
.slide.active img {
  transform: scale(1);
}
  /* ── SLIDE ── */
  .slide {
    min-width: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
  }

  /* Full image, no crop, height follows image natural ratio */
  .slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 900ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: scale(1.03);
  }
  .slide.active img {
    transform: scale(1);
  }

  /* ── ARROWS ── */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 35px; height: 35px;
    border-radius: 50%;
    background: rgba(0,0,0,0.4);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.2s, transform 0.2s;
  }
  .arrow:hover {
    background: rgba(0,0,0,0.65);
    transform: translateY(-50%) scale(1.1);
  }
  .arrow-left  { left: 16px; }
  .arrow-right { right: 16px; }
  .arrow svg   { width: 20px; height: 20px; }

  @media (max-width: 480px) {
    .arrow { width: 32px; height: 32px; }
    .arrow svg { width: 14px; height: 14px; }
    .arrow-left  { left: 8px; }
    .arrow-right { right: 8px; }
  }
