 
        :root {
            --saffron: #FF9933;
            --white: #FFFFFF;
            --green: #138808;
            --navy: #000080;
            --teal: #008080;
            --gold: #FFD700;
            --light-saffron: #FFE4CC;
            --light-green: #E6F4E6;
            --light-navy: #CCCCFF;
        }
        
        body {
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .navbar {
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            background: white !important;
            padding: 0.5rem 0;
        }
        
        .district-hero {
            background: linear-gradient(135deg, rgba(255, 153, 51, 0.15), rgba(19, 136, 8, 0.15)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="white" width="100" height="100"/><path d="M0,0 L100,100 M100,0 L0,100" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></svg>');
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(255, 153, 51, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .district-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 153, 51, 0.1) 0%, transparent 70%);
        }
        
        .converter-card {
            background: white;
            border-radius: 18px;
            padding: 2.2rem;
            box-shadow: 0 8px 25px rgba(0,0,0,0.09);
            margin-bottom: 2.5rem;
            border: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        
        .converter-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, var(--saffron), var(--white), var(--green));
            border-radius: 9px 9px 0 0;
        }
        
        .converter-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.15);
        }
        
        .card-header {
            background: transparent;
            color: var(--navy);
            font-weight: 700;
            padding: 0 0 1.5rem 0;
            border: none;
            display: flex;
            align-items: center;
        }
        
        .card-header i {
            background: linear-gradient(135deg, var(--saffron), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-right: 12px;
            font-size: 1.8rem;
        }
        
        .input-group {
            margin-bottom: 1.2rem;
            position: relative;
        }
        
        .input-group-text {
            background: linear-gradient(to bottom, var(--navy), #1a1a8d);
            color: white;
            border: none;
            font-weight: 600;
            min-width: 100px;
            justify-content: center;
            box-shadow: 0 3px 8px rgba(0,0,0,0.12);
        }
        
        .form-control {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 0.8rem 1.2rem;
            font-size: 1rem;
            transition: all 0.3s;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.04);
        }
        
        .form-control:focus {
            border-color: var(--saffron);
            box-shadow: 0 0 0 0.25rem rgba(255, 153, 51, 0.25), inset 0 2px 4px rgba(0,0,0,0.05);
        }
        
        .btn-primary {
            background: linear-gradient(to right, var(--green), #0B5E08);
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(19, 136, 8, 0.3);
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(19, 136, 8, 0.4);
            background: linear-gradient(to right, #0B5E08, #084c06);
        }
        
        .result-box {
            background: linear-gradient(to bottom right, var(--light-green), #f0f8f0);
            border-radius: 15px;
            padding: 1.8rem;
            margin-top: 2rem;
            border: 1px solid rgba(19, 136, 8, 0.15);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .unit-badge {
            display: inline-block;
            padding: 8px 15px;
            margin: 0 10px 10px 0;
            font-size: 13px;
            font-weight: 600;
            border-radius: 10px;
            background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
            color: #444;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.2s;
        }
        
        .unit-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.12);
        }
        
        .conversion-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            margin-top: 2rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .conversion-table th {
            background: linear-gradient(to bottom, var(--navy), #1a1a8d);
            color: white;
            padding: 1rem;
            text-align: center;
            font-weight: 600;
        }
        
        .conversion-table td {
            padding: 0.9rem;
            text-align: center;
            border-bottom: 1px solid #f0f0f0;
            background: white;
        }
        
        .conversion-table tr:last-child td {
            border-bottom: none;
        }
        
        .conversion-table tr:hover td {
            background-color: #f8f9fa;
        }
        
        .note-box {
            background: linear-gradient(to bottom right, #fff9e6, #fff3cc);
            border-left: 5px solid var(--saffron);
            padding: 1.2rem 1.5rem;
            margin-top: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
        }
        
        .section-title {
            position: relative;
            padding-bottom: 15px;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--saffron), var(--green));
            border-radius: 2px;
        }
        
        .value-card {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s;
            height: 100%;
        }
        
        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.12);
        }
        
        .value-card i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--saffron), var(--green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .breadcrumb {
            background-color: transparent;
            padding: 0.75rem 0;
        }
        
        @media (max-width: 768px) {
            .district-hero {
                padding: 1.5rem;
            }
            
            .converter-card {
                padding: 1.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
        }
    