h5{
    margin-bottom: 0px !important;
}
.header {
            padding: 30px;
        }
        .header h1 {
            font-size:2rem !important;
            margin-bottom: 10px;
        }
        .header p {
            color: #666;
            font-size: 1em;
            line-height: 1.6;
        }
        .h3{
            font-size:1.5rem !important;
        }
        .rjd-contact {
            color: white;
            border-radius: 15px;
            padding: 15px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .rjd-contact h2 {
            margin-bottom: 15px;
            font-size: 1.8em;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
            margin-top: 15px;
        }

        .contact-item {
            background: #f8f9fa;
            padding: 15px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
            color:#747373;
            line-height: normal;
        }

        .contact-item strong {
            display: block;
            /*margin-bottom: 5px;*/
            font-size: 0.9em;
            color:#cc1d2d;
        }

        .district-summary {
            overflow:auto;
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .district-summary h2 {
            color: #00229e;
            margin-bottom: 20px;
            font-size: 1.6em;
        }

        .summary-table {
            width: 100%;
            border-collapse: collapse;
            overflow: hidden;
            border-radius: 10px;
        }

        .summary-table th {
            background:grey;
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }

        .summary-table td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
        }

        .summary-table tr:hover {
            background: #f8f9ff;
        }

        .summary-table tr:last-child td {
            border-bottom: none;
            font-weight: bold;
            background: #f0f0f0;
        }

        .section {
            background: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .section h2 {
            color: #00229e;
            margin-bottom: 20px;
            font-size: 1.5em;
            border-left: 5px solid #667eea;
            padding-left: 15px;
        }

        .office-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }

        .office-card {
            box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
            /* background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
            border-radius: 10px;
            padding: 20px;
            border-left: 5px solid #667eea;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .office-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(102,126,234,0.3);
        }

        .office-card h3 {
            color: #667eea;
            margin-bottom: 5px;
            font-size: 1em;
        }

        .office-card .district-name {
            color: #764ba2;
            font-weight: bold;
            font-size: 1.2em;
            /*margin-bottom: 10px;*/
        }

        .office-card .detail {
            margin: 8px 0;
            color: #555;
        }

        .office-card .detail strong {
            color: #333;
            display: inline-block;
            min-width: 65px;
        }

        .iti-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 20px;
        }

        .iti-card {
          box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        border-radius: 10px;
            padding: 20px;
            border-left: 5px solid #764ba2;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .iti-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(255,107,107,0.3);
        }

        .iti-card .iti-name {
            color: #510a9f;
            font-weight: bold;
            font-size: 1.2em;
            /*margin-bottom: 10px;*/
        }

        .iti-card .district-tag {
            display: inline-block;
            background: #c50cae;
            color: white;
            padding: 0px 10px;
            border-radius: 20px;
            font-size: 0.75em;
            /*margin-bottom: 10px;*/
            font-weight: 700;
        }

        .iti-card .detail {
            margin: 0px 0;
            color: #555;
        }

        .iti-card .detail strong {
            color: #333;
        }

        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 2px 15px;
            border: none;
            background: #e0e0e0;
            border-radius: 25px;
            cursor: pointer;
            font-size: 0.9em;
            transition: all 0.3s;
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .tab-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0,0,0,0.2);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: grid;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 1.8em;
            }
            .section h2 {
                font-size: 1.4em;
            }
            .office-grid, .iti-grid {
                grid-template-columns: 1fr;
            }
        }
        .search-box {
            width: 100%;
            padding: 5px;
            border: 2px solid #667eea;
            border-radius: 25px;
            font-size: 1em;
            margin-bottom: 20px;
            transition: all 0.3s;
        }

        .search-box:focus {
            outline: none;
            box-shadow: 0 0 15px rgba(102,126,234,0.3);
        }
