
/* calculator  */
.calculator-loan-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .form-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .btn-calculate {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 25px;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .btn-calculate:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
        }
        
        .result-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .result-value {
            font-size: 2rem;
            font-weight: 700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }
        
        .input-group-text {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-in;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .icon-header {
            color: #667eea;
            font-size: 3rem;
            margin-bottom: 20px;
        }



/* become partner  */

  .apply-now-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .apply-now-btn:active {
            transform: translateY(-1px);
            color: white;
        }
        
        /* Modal Styles */
        .modal-content {
            border: none;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .modal-header {
            background: white;
            color: white;
            border-radius: 15px 15px 0 0;
            border-bottom: none;
            padding: 25px 30px;
        }
        
        .modal-title {
            font-size: 1.8rem;
            font-weight: 700;
        }
        
        .modal-body {
            padding: 30px;
        }
        
        .partner-form-group {
            margin-bottom: 25px;
        }
        
        .partner-form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 9px 15px;
            font-size: 13px;
            transition: all 0.3s ease;
            background: #f8f9fa;
            height: auto;
            min-height: 50px;
        }
        
        .partner-form-control:focus {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
            background: white;
            transform: translateY(-2px);
        }
        
        select.partner-form-control {
            appearance: none;
            -webkit-appearance: none;
            -moz-appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 20px center;
            background-size: 16px;
            color: #495057;
            padding-right: 50px;
        }
        
        select.partner-form-control option {
            background: white;
            color: #495057;
            padding: 10px;
        }
        
        .partner-form-control::placeholder {
            color: #6c757d;
            opacity: 0.8;
        }
        
        .form-label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 8px;
            font-size: 0.95rem;
            display: block;
        }
        
        .custom-file {
            margin-bottom: 10px;
        }
        
        .custom-file-input:focus ~ .custom-file-label {
            border-color: #667eea;
            box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
        }
        
        .custom-file-label {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 20px;
            background: #f8f9fa;
            transition: all 0.3s ease;
            min-height: 50px;
            display: flex;
            align-items: center;
        }
        
        
        .file-info {
            font-size: 0.85rem;
            color: #6c757d;
            margin-top: 5px;
        }
        
        .btn-submit-partner {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            text-transform: uppercase;
            letter-spacing: 1px;
            width: 100%;
        }
        
        .btn-submit-partner:active {
            transform: translateY(-1px);
            color: white;
        }
        
        .close {
            color: white;
            opacity: 0.8;
            font-size: 2rem;
        }
        
        .close:focus,
        .close:hover {
            color: white;
            opacity: 1;
        }
        
        .alert {
            border-radius: 10px;
            border: none;
            padding: 15px 20px;
        }
        
        .alert-success {
            background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
            color: white;
        }
        
        .loading {
            display: none;
        }
        
        .loading.show {
            display: inline-block;
        }
        
        @media (max-width: 768px) {
            .modal-dialog {
                margin: 10px;
            }
            
            .modal-body {
                padding: 20px;
            }
            
            .modal-header {
                padding: 20px;
            }
        }


/* career  */

 :root {
            --primary-purple: #6f42c1;
            --secondary-purple: #5a32a3;
            --dark-blue: #1e3a8a;
            --light-purple: #8b5cf6;
            --purple-gradient: linear-gradient(135deg, #6f42c1 0%, #1e3a8a 100%);
        }

.job-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(111, 66, 193, 0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(111, 66, 193, 0.1);
            position: relative;
            overflow: hidden;
        }

        .job-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--purple-gradient);
        }

        .job-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(111, 66, 193, 0.2);
        }

        .job-type-badge {
            background: var(--purple-gradient);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .apply-btn {
            background: var(--purple-gradient);
            border: none;
            border-radius: 25px;
            padding: 10px 30px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .apply-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(111, 66, 193, 0.3);
            color: white;
        }



/* apply form  */
 .form-container {
            max-width: 500px;
            margin: 50px auto;
            padding: 30px;
            background-color: #fff;
        }
        
        .form-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: bold;
            font-size: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 30px;
            position: relative;
        }
        
        .form-label {
            color: #999;
            font-size: 0.95rem;
            margin-bottom: 5px;
            display: block;
        }
        
        .form-control, .form-select {
            border: none;
            border-bottom: 1px solid #ddd;
            border-radius: 0;
            padding: 5px 0;
            /* background: transparent; */
            font-size: 13px;
            color: #333;
            width: 90%;
        }
        
        .form-control:focus, .form-select:focus {
            border-bottom: 2px solid #007bff;
            box-shadow: none;
            outline: none;
            background: transparent;
        }
        
        .form-control::placeholder {
            color: transparent;
        }
        
        .checkbox-section {
            background-color: #fff;
            padding: 10px 0;
            margin: 10px 0;
            border-bottom: 1px solid #ddd;
        }
        
        .checkbox-section .form-label {
            color: #333;
            font-size: 1rem;
        }
        
        .form-check-input {
            margin-right: 8px;
        }
        
        .form-check-label {
            color: #333;
        }
        
        .check-eligibility-btn {
            background-color: #28a745;
            border: none;
            color: white;
            padding: 15px 30px;
            font-size: 1.2rem;
            font-weight: bold;
            border-radius: 5px;
            display: block;
            margin: 30px auto 0;
            width: 250px;
        }
        
        .check-eligibility-btn:hover {
            background-color: #218838;
            color: white;
        }
        
        .privacy-text {
            font-size: 0.9rem;
            text-align: center;
            margin-top: 15px;
            color: #666;
        }
        
        /* Remove Bootstrap default margins */
        .row {
            margin: 0;
        }
        
        .col-md-6, .col-md-4, .col-md-8 {
            padding: 0;
        }

        .form-label{
            font-size: 15px;
        }

        .form-check-inline{
             font-size: 13px;
        }