
        :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --teal: #008080;
            --gold: #FFD700;
            --primary: #2e7d32;
        }
        
        body {
            background-color: #f8f9fa;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        .navbar {
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .district-hero {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border-radius: 16px;
            padding: 3rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }
        
        .district-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 8px;
            background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
            z-index: 1;
        }
        
        .district-title {
            position: relative;
            color: var(--navy);
            font-weight: 800;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        
        .district-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--saffron);
            border-radius: 2px;
        }
        
        .card-section {
            background-color: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .card-section:hover {
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
        }
        
        .section-title {
            color: var(--navy);
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--saffron);
            transition: width 0.3s ease;
        }
        
        .card-section:hover .section-title::after {
            width: 100px;
        }
        
        .converter-box {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .input-group-custom {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        
        .input-group-custom .form-control, 
        .input-group-custom .form-select {
            border: none;
            height: 50px;
        }
        
        .input-group-custom .form-control:focus, 
        .input-group-custom .form-select:focus {
            box-shadow: none;
            border-color: var(--saffron);
        }
        
        .btn-convert {
            background: linear-gradient(135deg, var(--saffron), #ff6600);
            border: none;
            color: white;
            font-weight: 600;
            height: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-convert:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255, 153, 51, 0.4);
        }
        
        .result-box {
            background: linear-gradient(135deg, var(--green), #0B5E08);
            color: white;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 15px rgba(19, 136, 8, 0.3);
            margin-top: 1.5rem;
            display: none;
        }
        
        .result-value {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .unit-badge {
            display: inline-block;
            padding: 5px 10px;
            margin-right: 8px;
            margin-bottom: 8px;
            font-size: 12px;
            font-weight: 600;
            border-radius: 8px;
            background-color: rgba(255,255,255,0.9);
            color: #333;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .shape-btn {
            border-radius: 8px;
            padding: 0.75rem;
            text-align: center;
            background: white;
            border: 1px solid rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        
        .shape-btn.active {
            border-color: var(--saffron);
            background: rgba(255, 153, 51, 0.1);
            box-shadow: 0 0 0 3px rgba(255, 153, 51, 0.2);
        }
        
        .shape-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }
        
        .shape-icon {
            font-size: 2rem;
            margin-bottom: 0.5rem;
            color: var(--navy);
        }
        
        .price-indicator {
            height: 10px;
            background: linear-gradient(90deg, #4CAF50, #FFC107, #F44336);
            border-radius: 5px;
            margin: 1rem 0;
        }
        
        .price-labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            color: #666;
        }
        
        .district-map {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 15px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .district-map img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .common-units {
            background: rgba(46, 125, 50, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .fact-card {
            background: white;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            margin-bottom: 1rem;
            border-left: 4px solid var(--saffron);
        }
        
        .fact-icon {
            font-size: 2rem;
            color: var(--saffron);
            margin-bottom: 1rem;
        }
        
        .table-custom th {
            background: rgba(46, 125, 50, 0.1);
            color: var(--navy);
            font-weight: 600;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0.75rem 0;
            margin-bottom: 1rem;
        }
        
        .breadcrumb-item a {
            color: var(--navy);
            text-decoration: none;
        }
        
        .breadcrumb-item.active {
            color: #6c757d;
        }
        
        .hindi-text {
            display: none;
        }
        
        @media (max-width: 768px) {
            .district-hero {
                padding: 1.5rem;
            }
            
            .district-title {
                font-size: 1.8rem;
            }
            
            .card-section {
                padding: 1.5rem;
            }
        }
    