/* ===== PERFECT SIGNUP PAGE - CLEAR INPUT BOXES ===== */
:root {
      --primary: #225902;
}
/* Header */
.ks-header {
    margin-bottom: 18px;
}

.ks-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.ks-title-row h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}

.ks-percentage {
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    background: #fff3d7;
    padding: 4px 12px;
    border-radius: 30px;
}

.ks-progress-container {
    height: 6px;
    background: #e8f0e8;
    border-radius: 10px;
    overflow: hidden;
}

.ks-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    border-radius: 10px;
}

/* Tabs */
.ks-tab-container {
    display: flex;
    gap: 4px;
    margin-bottom: 5px;
    background: #f0f5f0;
    padding: 5px;
    border-radius: 12px;
    list-style: none;
}

.ks-tab-item {
    flex: 1;
    text-align: center;
    list-style: none;
}

.ks-tab-item a {
    display: block;
    padding: 8px 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    border-radius: 8px;
    color: #666;
}

.ks-tab-item a:hover {
     background-color: #d6edd6;
}

.ks-tab-item.ks-active a {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 6px rgba(34,89,2,0.2);
}

/* Details Box */
.ks-details-box {
    background: white;
    border-radius: 16px;
    padding: 15px;
    border: 1px solid #e8f0e8;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.ks-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--gold-light);
}

.ks-box-title i {
    color: var(--primary);
    font-size: 22px;
}

.ks-box-title span {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
}

/* Data Row */
.ks-data-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid #f0f0f0;
}
 

.ks-row-icon {
    color: var(--primary);
    font-size: 22px;
    min-width: 30px;
}

.ks-row-label {
    font-size: 13px;
    color: #777;
    min-width: 70px;
    font-weight: 500;
}

.ks-row-value {
    font-size: 13px;
    font-weight: 550;
    color: #1e2b1c;
    flex: 1;
}

/* Verified Tag */
.ks-verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    background: #fcfcfc;
    color: #356b11;
}

.ks-verified-tag i {
    font-size: 16px;
    color: #356b11;
}

/* Dual Row */
.ks-dual-row {
    display: flex;
    gap: 15px;
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
}

.ks-dual-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ks-dual-icon {
    color: var(--primary);
    font-size: 22px;
    min-width: 30px;
}

.ks-dual-label {
    font-size: 13px;
    color: #777;
    min-width: 60px;
    font-weight: 500;
}

/* Input Wrapper */
.ks-input-wrapper {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.ks-country-prefix {
    background: #f0f5f0;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    min-width: 45px;
    text-align: center;
}

.ks-input-field {
    border: 1.5px solid #e0e7e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 13.5px;
    width: 100%;
    outline: none;
    background: white;
    transition: all 0.2s;
}

.ks-input-field:focus {
     border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(197,160,40,0.1);
}

.ks-pincode-field {
    width: 90px;
    text-align: center;
    font-family: verdana;
}

/* Radio Set */
.ks-radio-set {
    display: flex;
    gap: 10px;
    flex: 1;
}

.ks-radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: #333;
}

.ks-radio-option input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
}

/* Action Button */
.ks-action-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), #2a6e2a);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 18px 0 15px;
    box-shadow: 0 4px 12px rgba(34,89,2,0.2);
    transition: all 0.3s;
}

.ks-action-btn i {
    font-size: 24px;
}

.ks-action-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34,89,2,0.3);
}

/* Notice Card */
.ks-notice-card {
    display: flex;
    gap: 12px;
    background: #fff7d7;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #f0e2b0;
}

.ks-notice-icon {
    color: var(--primary);
        font-size: 40px;
    margin-top: 10px;
}

.ks-notice-content {
    flex: 1;
}

.ks-notice-line {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 13px;
    color: #2d5a27;
    margin-bottom: 6px;
}

.ks-notice-line i {
    color: var(--gold);
    font-size: 18px;
}

/* Mobile */
@media screen and (max-width: 480px) {
    .ks-dual-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .ks-input-field {
        padding: 8px 10px;
    }
    
    .ks-verified-tag {
        padding: 3px 8px;
        font-size: 11px;
    }
}

@media screen and (max-width: 360px) {
    .ks-data-row {
        flex-wrap: wrap;
    }
    
    .ks-dual-item {
        flex-wrap: wrap;
    }
}

.ks-textarea {
     border: 1.5px solid #e0e7e0;
    border-radius: 8px;
    background: #f8f9fa;
    padding: 8px 5px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    resize: vertical;
    min-height: 60px;
    font-family: Verdana;
}

.ks-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.ks-textarea::placeholder { font-size: 11px; color: #adb5bd; }

.ks-profile-image {
    transition: transform 0.3s ease;
}

.ks-profile-image:hover {
    transform: scale(1.05);
}

/* Additional CSS for Main Container Layout */
 
/* Left Column - Alternate Email & Mobile */
 
/* Right Column - Compact Image Upload */
.ks-details-box.right-compact {
    padding: 12px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

/* Profile Image */
.profile-img-compact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #4CAF50;
    background: white;
}

/* Upload Button Compact */
.upload-btn-compact {
    background: #4CAF50;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    border: none;
}

.upload-btn-compact i {
    font-size: 14px;
}
 
/* Error Message Compact */
.error-compact {
    margin-top: 8px;
    padding: 5px 8px;
    background: #ffebee;
    border-left: 3px solid #f44336;
    font-size: 11px;
    color: #d32f2f;
    display: flex;
    align-items: center;
    gap: 4px;
}

.error-compact i {
    font-size: 14px;
}
 
/* Data Row Compact */
.ks-data-row.compact {
    border-bottom: none;
    padding: 5px 0;
}

.ks-data-row.compact .ks-row-icon {
    font-size: 20px;
}

.ks-data-row.compact .ks-row-label {
    min-width: 80px;
    font-size: 13px;
}

/* Input Fields Compact */
.input-field-compact {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ddd;
    padding: 5px 0;
    font-size: 13px;
    background: transparent;
}

.input-field-compact:focus {
    outline: none;
    border-bottom-color: #4CAF50;
}

.input-field-compact.error {
    border-bottom-color: #dc3545;
}

/* Country Code Compact */
.country-code-compact {
    background: #e8f5e9;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #2e7d32;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .profile-img-compact {
        width: 50px;
        height: 50px;
    }
    
    .upload-btn-compact {
        padding: 3px 10px;
        font-size: 10px;
    }

    .ks-title-row h2 {
        font-size:17px;
    }

    .ks-notice-icon {
        font-size:30px;margin-top:35px;
    }
}



/*Registration Completed*/
/* Professional Registration Completed - Compact CSS */
.ks-reg-card {
    background: white;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    max-width: 100%;
    margin: 0 auto;
    border: 1px solid #edf2ed;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}


.ks-complete-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.ks-icon-circle {
    width: 48px;
    height: 48px;
    background: #e6f4e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ks-icon-circle i {
    font-size: 28px;
    color: #2a7a3b;
}

.ks-complete-icon h3 {
    margin: 0;
    color: #1e3a2a;
    font-size: 21px;
    font-weight: 600;
}

.ks-thanks-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f6faf7;
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 5px;
    border-left: 4px solid #2a7a3b;
}

.ks-thanks-row i {
    font-size: 22px;
    color: #2a7a3b;
}

.ks-thanks-row span {
    color: #1e3a2a;
    font-size: 15px;
    font-weight: 500;
}

.ks-message-item {
    display: flex;
    gap: 12px;
    
    padding: 10px 12px;
    border-radius: 12px;
    margin-bottom: 5px;
    border-left: 4px solid #2a7a3b;
        background: #f6faf7;
}

.ks-message-icon {
    min-width: 24px;
    height: 24px;
    background: #eaf6ec;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.ks-message-icon i {
    font-size: 16px;
    color: #2a7a3b;
}

.ks-message-text {
    color: #3f4a44;
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.ks-highlight-item {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
    padding: 10px 12px;
    background: #fef9ea;
    border-radius: 12px;
    border-left: 4px solid #e6a017;
}

.ks-highlight-item i {
    font-size: 20px;
    color: #b87c10;
    margin-top: 2px;
}

.ks-support-item {
    display: flex;
    gap: 12px;
    margin-bottom: 5px;
    padding: 10px 12px;
    background: #e8f0fe;
    border-radius: 12px;
    border-left: 4px solid #2e5bff;
}

.ks-support-item i {
    font-size: 20px;
    color: #2e5bff;
    margin-top: 2px;
}

.ks-support-link {
    color: #1e4f8a;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px dashed #8bb9fe;
}

.ks-support-link:hover {
    color: #2a7a3b;
    border-bottom-color: #2a7a3b;
}

.ks-btn-explore {
    background: #1e3a2a;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    width: 100%;
    justify-content: center;
    transition: background 0.2s ease;
    margin-top: 10px;
    border: 1px solid #1e3a2a;
}

.ks-btn-explore:hover {
    background: #2a7a3b;
    border-color: #2a7a3b;
}

.ks-btn-explore i {
    font-size: 20px;
}

.ks-badge-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px dashed #d0ded4;
}

.ks-badge-sm {
    background: #f2f8f4;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 11px;
    color: #1e5f2e;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid #c8e0cd;
}

.ks-badge-sm i {
    font-size: 14px;
    color: #2a7a3b;
}

/* Responsive */
@media (max-width: 500px) {
    .ks-reg-card {
        padding: 20px;
    }
    
    .ks-complete-icon h3 {
        font-size: 20px;
    }
}