.container {
            max-width: 1000px;
            width: 100%;
/*             background: rgba(255, 255, 255, 0.95); */
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            overflow: hidden;
        }
        
        .headers-one {
            background: linear-gradient(to right, #0052a3, #0066cc);
            color: white !important;
            padding: 30px;
            text-align: center;
            position: relative;
        }
        
        .header-content {
            max-width: 700px;
            margin: 0 auto;
        }
        
        h1 {
            font-size: 2.5rem ;
					  color: white !important;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .calculator-container {
            display: flex;
            flex-wrap: wrap;
            padding: 0;
        }
        
        .input-section {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background: #f8f9ff;
            border-right: 1px solid #e0e6ff;
        }
        
        .result-section {
            flex: 1;
            min-width: 300px;
            padding: 30px;
            background: #ffffff;
            display: flex;
            flex-direction: column;
        }
        
        .section-title {
            color: #0052a3;
            margin-bottom: 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #e0e6ff;
            font-size: 1.5rem;
        }
        
        .input-group {
            margin-bottom: 22px !important;
        }
        
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
            font-size: 0.95rem;
        }
        
        .input-with-icon {
            position: relative !important;
        }
        
        .input-with-icon i {
            position: absolute !important;
            left: 15px !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
            color: #007bff !important;
            font-size: 1.1rem !important;
        }

        input {
            width: 100% ;
            padding: 14px 14px 14px 45px !important;
            border: 2px solid #d1e0ff !important;
            border-radius: 10px !important;
            font-size: 1.1rem !important;
            transition: all 0.3s ease !important;
            background: white !important;
            color: #2c3e50 !important;
        }
        
        input:focus {
            outline: none !important;
            border-color: #007bff !important ;
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2) !important;
        }
        
        .calculate-btn {
            background: linear-gradient(to right, #28a745, #2ecc71);
            color: white;
            border: none;
            padding: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 10px;
            box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
        }
        
        .calculate-btn:hover {
            background: linear-gradient(to right, #218838, #27ae60);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(40, 167, 69, 0.4);
        }
        
        .result-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 14px 0;
            border-bottom: 1px dashed #e0e6ff;
        }
        
        .result-item:last-child {
            border-bottom: none;
        }
        
        .result-label {
            font-weight: 600;
            color: #2c3e50;
        }
        
        .result-value {
            font-weight: 700;
            color: #0052a3;
            font-size: 1.1rem;
        }
        
        .gross-salary {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .gross-label {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .gross-amount {
            font-size: 2.2rem;
            font-weight: 800;
            color: #28a745;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .explanation {
            background: #e3f2fd;
            border-radius: 10px;
            padding: 20px;
            margin-top: 25px;
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        .explanation h3 {
            color: #0052a3;
            margin-bottom: 12px;
        }
        
        .explanation ul {
            padding-left: 20px;
        }
        
        .explanation li {
            margin-bottom: 8px;
        }
        
        footer {
            text-align: center;
            padding: 20px;
            background: #f0f7ff;
            color: #5a6a7e;
            font-size: 0.9rem;
        }
        
        .bank-icon {
            font-size: 3.5rem !important;
            color: #0052a3 !important;
            margin-bottom: 15px !important; 
        }

        #head-icon{
	         color:white !important;
	         padding:10px;
        }
       