        :root {
            --primary-color: #3498db;
            --secondary-color: #2c3e50;
            --accent-color: #e74c3c;
            --light-bg: #f8f9fa;
            --dark-text: #2c3e50;
            --light-text: #7f8c8d;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f5f7fa;
            color: var(--dark-text);
            line-height: 1.6;
        }
        
        .form-container {
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 40px;
            margin-top: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        .form-title {
            color: var(--secondary-color);
            text-align: center;
            margin-bottom: 40px;
            font-weight: 700;
            font-size: 2.2rem;
            letter-spacing: -0.5px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .form-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--primary-color);
            border-radius: 2px;
        }
        
        .form-section {
            margin-bottom: 35px;
            padding-bottom: 25px;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        
        .section-title {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-size: 1.4rem;
            font-weight: 600;
            position: relative;
            padding-left: 15px;
        }
        
        .section-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            height: 20px;
            width: 5px;
            background: var(--primary-color);
            border-radius: 3px;
        }
        
        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 1.05rem;
            color: var(--dark-text);
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #ddd;
            font-size: 1rem;
            transition: all 0.3s;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(52, 152, 219, 0.25);
        }
        
        .bank-details {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            border-left: 4px solid var(--primary-color);
        }
        
        .hidden {
            display: none;
        }
        
        .document-list {
            background-color: var(--light-bg);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
        }
        
        .employment-details {
            background-color: #f0f8ff;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--primary-color);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        
        .form-check-input:checked {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }
        
        .form-check-label {
            font-size: 1.05rem;
            margin-left: 5px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
        }
        
        .btn-secondary {
            padding: 12px 30px;
            font-size: 1.1rem;
            font-weight: 500;
            border-radius: 8px;
        }
        
        .sub-section-title {
            font-size: 1.2rem;
            font-weight: 500;
            color: var(--secondary-color);
            margin-bottom: 15px;
            margin-top: 20px;
        }
        
        /* Animation for form sections */
        .form-section {
            animation: fadeIn 0.5s ease forwards;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        /* Custom checkbox style */
        .form-check-input {
            width: 1.2em;
            height: 1.2em;
            margin-top: 0.2em;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .form-container {
                padding: 25px;
            }
            
            .form-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.2rem;
            }
        }
        
        /* Floating labels effect */
        .form-floating {
            position: relative;
            margin-bottom: 20px;
        }
        
        /* Alert styling */
        .alert {
            border-radius: 8px;
            padding: 15px 20px;
        }
        
        /* Icon styling */
        .input-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--light-text);
        }
        
        /* Enhanced checkbox styling */
        .form-check {
            margin-bottom: 10px;
        }
        
        /* Luxurious hover effects */
        .form-control:hover {
            border-color: #aaa;
        }
        
        /* Section animations */
        .form-section {
            transition: all 0.3s ease;
        }
        
        /* Submit button animation */
        .btn-primary {
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 50%;
            width: 5px;
            height: 5px;
            background: rgba(255, 255, 255, 0.5);
            opacity: 0;
            border-radius: 100%;
            transform: scale(1, 1) translate(-50%);
            transform-origin: 50% 50%;
        }
        
        .btn-primary:focus:not(:active)::after {
            animation: ripple 1s ease-out;
        }
        
        @keyframes ripple {
            0% {
                transform: scale(0, 0);
                opacity: 0.5;
            }
            100% {
                transform: scale(20, 20);
                opacity: 0;
            }
        }
        
        /* Address Type Styling */
        .address-type-container {
            background-color: #f9f9f9;
            padding: 15px;
            border-radius: 8px;
            margin-top: 15px;
            border: 1px solid #eaeaea;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        
        .address-type-title {
            font-weight: 600;
            margin-bottom: 0;
            color: var(--secondary-color);
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .address-type-title i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        
        .address-type-options {
            display: flex;
            gap: 15px;
            margin-top: 10px;
            width: 100%;
        }
        
        .address-fields-container {
            margin-top: 15px;
            padding: 15px;
            border: 1px solid #eaeaea;
            border-radius: 8px;
            background-color: #f9f9f9;
        }
        
        .address-field-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .form-check-inline {
            display: inline-flex;
            align-items: center;
            margin-right: 15px;
        }
        
        /* New address type indicator */
        .address-type-indicator {
            display: flex;
            align-items: center;
            background: #e3f2fd;
            padding: 8px 15px;
            border-radius: 20px;
            font-weight: 500;
            margin-top: 5px;
        }
        
        .address-type-indicator i {
            margin-right: 8px;
            color: var(--primary-color);
        }
        
        /* Improved layout for address section */
        .address-section-container {
            margin-bottom: 25px;
            padding: 20px;
            border-radius: 10px;
            background-color: #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid rgba(0,0,0,0.05);
        }
        
        /* Scheme selection highlight */
        .scheme-highlight {
            background-color: #e3f2fd;
            border-radius: 8px;
            padding: 10px;
            margin-top: 10px;
            border-left: 4px solid var(--primary-color);
        }
        
        /* Date section styling */
        .date-section {
            background-color: #f0f8ff;
            border-radius: 10px;
            padding: 20px;
            margin-top: 15px;
            border-left: 4px solid #3498db;
        }