/* POSP Agent Login Page Styles */

/* Header Contact Info */
.contact-info .phone-number {
  color: #0fb1f6;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

.contact-info p {
  color: #6c757d;
  font-size: 14px;
}

/* Hero Section - Login Card */
.login-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0px 4px 20px rgba(15, 177, 246, 0.15);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.login-card .mb-4 {
  margin-bottom: 1.5rem !important;
}

/* Center the card when showing details form */
.login-card-centered {
  max-width: 700px;
  margin: 0 auto;
}

.login-card h2 {
  font-size: 32px;
  font-weight: 600;
}

.login-card h5 {
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

#displayNumber {
  font-weight: 500;
  color: #000;
}

#changeNumber {
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

#changeNumber:hover {
  text-decoration: underline;
}

#resendOtp {
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
}

#resendOtp:hover {
  text-decoration: underline;
}

/* Back Button */
.btn-back {
  background: transparent;
  border: none;
  font-size: 24px;
  color: #000;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background-color: #f0f0f0;
}

/* Form Labels */
.login-card .form-label {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  margin-bottom: 12px;
}

/* Radio Button Group */
.radio-group {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.radio-option {
  flex: 0 0 auto;
  min-width: 130px;
}

.btn-outline-secondary {
  border: 2px solid #d0d0d0;
  color: #000;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 24px;
  width: 100%;
  font-size: 16px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-secondary:hover {
  border-color: #0fb1f6;
  background-color: #f0f9ff;
  color: #000;
}

.btn-check:checked + .btn-outline-secondary {
  background-color: #0fb1f6;
  border-color: #0fb1f6;
  color: #ffffff;
}

.btn-outline-secondary .bi-circle {
  font-size: 18px;
  margin-right: 8px;
}

.btn-check:checked + .btn-outline-secondary .bi-circle::before {
  content: "\f26a" !important; /* Bootstrap filled circle icon */
}

.login-card .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
}

.login-card .form-control:focus {
  border-color: #0fb1f6;
  box-shadow: 0 0 0 0.2rem rgba(15, 177, 246, 0.15);
}

.login-card .btn-primary {
  background-color: #0fb1f6;
  border: none;
  border-radius: 10px;
  padding: 15px;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.login-card .btn-primary:hover {
  background-color: #0c8ec9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 177, 246, 0.3);
}

/* Benefits Section Cards */
.benefit-card {
  background: #ffffff;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card h5 {
  color: #000;
  font-size: 18px;
}

.benefit-card p {
  font-size: 14px;
  margin-bottom: 0;
}

/* POSP Info Section */
.posp-info-section .posp-description p {
  font-size: 18px;
  color: #333;
}

/* Advantages Section Cards */
.advantage-card {
  background: #ffffff;
  border-radius: 15px;
  border: 2px solid #e7f8ff;
  transition: all 0.3s ease;
}

.advantage-card:hover {
  border-color: #0fb1f6;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(15, 177, 246, 0.2);
}

.advantage-card h5 {
  color: #000;
  font-size: 18px;
}

.advantage-card p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Category Cards */
.category-card {
  background: #ffffff;
  border-radius: 15px;
  border: 2px solid #e7f8ff;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: #0fb1f6;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(15, 177, 246, 0.2);
}

.category-card h5 {
  color: #000;
  font-size: 18px;
}

.category-card p {
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

/* CTA Section */
.cta-card {
  background: #ffffff;
}

.cta-section .btn-primary {
  background-color: #0fb1f6;
  border: none;
  border-radius: 10px;
  padding: 15px 50px;
  font-size: 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-section .btn-primary:hover {
  background-color: #0c8ec9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 177, 246, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .login-card {
    padding: 25px;
  }

  .login-card h2 {
    font-size: 24px;
  }

  .login-card h5 {
    font-size: 18px;
  }

  .benefit-card,
  .advantage-card,
  .category-card {
    margin-bottom: 20px;
  }

  .contact-info {
    margin-right: 0 !important;
    text-align: center;
    margin-bottom: 10px;
  }

  .radio-group {
    flex-direction: row;
    gap: 10px;
  }

  .btn-outline-secondary {
    font-size: 14px;
    padding: 10px 15px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 30px 0 !important;
  }

  .login-card {
    padding: 20px;
  }

  .benefit-card,
  .advantage-card,
  .category-card {
    padding: 25px !important;
  }
}

/* Override default link styles for this page */
.benefit-card a,
.advantage-card a,
.category-card a,
.cta-card a {
  text-decoration: none;
}

/* Icon containers */
.benefit-icon,
.advantage-icon,
.category-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Section headings */
section h2 {
  font-size: 36px;
  color: #000;
}

section .text-primary {
  color: #0fb1f6 !important;
}

@media (max-width: 768px) {
  section h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  section h2 {
    font-size: 24px;
  }
}

/* Fix navbar link styles for this page */
.navbar-brand {
  margin: 0 !important;
}

.navbar a {
  margin: 0 !important;
}

/* Ensure proper spacing */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

/* Animation for cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.advantage-card,
.category-card {
  animation: fadeInUp 0.6s ease-out;
}

/* PAN Card Upload Box Styles */
.upload-box {
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #fafafa;
  position: relative;
}

.upload-box:hover {
  border-color: #0fb1f6;
  background: #f0f9ff;
}

.upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.upload-label i {
  font-size: 32px;
  color: #666;
  margin-bottom: 10px;
}

.upload-text {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin-bottom: 5px;
  display: block;
}

.file-types {
  font-size: 12px;
  color: #999;
  display: block;
}

.uploaded-preview {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.uploaded-preview i {
  font-size: 32px;
  color: #0fb1f6;
  margin-bottom: 10px;
}

.uploaded-preview .file-name {
  font-size: 14px;
  color: #333;
  word-break: break-all;
  padding: 0 10px;
}

/* PAN Details Section Heading */
#panDetailsSection h4 {
  font-size: 24px;
  color: #000;
}

#panDetailsSection p {
  font-size: 16px;
  color: #6c757d;
}

/* Aadhar Details Section Heading */
#aadharDetailsSection h4 {
  font-size: 24px;
  color: #000;
}

#aadharDetailsSection p {
  font-size: 16px;
  color: #6c757d;
}

/* Date input styling */
input[type="date"].form-control {
  color: #6c757d;
}

input[type="date"].form-control:focus {
  color: #000;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.6;
}

input[type="date"].form-control::-webkit-calendar-picker-indicator:hover {
  opacity: 1;
}

/* Textarea styling for address field */
textarea.form-control {
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
  font-family: inherit;
}

textarea.form-control:focus {
  border-color: #0fb1f6;
  box-shadow: 0 0 0 0.2rem rgba(15, 177, 246, 0.15);
}

/* Processing Indicator */
.processing-indicator {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.processing-indicator .spinner-border {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 15px;
}

.processing-text {
  font-size: 14px;
  color: #0fb1f6;
  font-weight: 500;
}

/* Re-upload Button */
.btn-reupload {
  margin-top: 12px;
  padding: 6px 14px;
  background-color: #0fb1f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-reupload:hover {
  background-color: #0c8ec9;
  transform: translateY(-1px);
}

.btn-reupload i {
  font-size: 13px;
}

/* Selfie Upload Section */
#selfieUploadSection h4 {
  font-size: 24px;
  color: #000;
}

#selfieUploadSection h5 {
  font-size: 18px;
  color: #000;
}

#selfieUploadSection p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

.selfie-guidelines ol {
  padding-left: 20px;
  margin: 0;
}

.selfie-guidelines li {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* Upload Option Buttons */
.upload-option-btn {
  width: 100%;
  padding: 30px 20px;
  background: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  color: #0fb1f6;
}

.upload-option-btn:hover {
  border-color: #0fb1f6;
  background-color: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 177, 246, 0.15);
}

.upload-option-btn i {
  font-size: 32px;
  color: #0fb1f6;
}

.upload-option-btn span {
  color: #0fb1f6;
  font-size: 16px;
  font-weight: 500;
}

/* Selfie Preview */
.selfie-preview-box {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #e0e0e0;
}

.selfie-preview-box img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-remove-selfie {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.btn-remove-selfie:hover {
  background: #fff;
  transform: scale(1.1);
}

.btn-remove-selfie i {
  font-size: 24px;
  color: #dc3545;
}

/* Skip Button */
.btn-outline-secondary {
  background: transparent;
  color: #6c757d;
  border: 2px solid #e0e0e0;
}

.btn-outline-secondary:hover {
  background: #f8f9fa;
  color: #6c757d;
  border-color: #d0d0d0;
}

/* Educational Details Section */
#educationalDetailsSection h4 {
  font-size: 24px;
  color: #000;
}

#educationalDetailsSection h5 {
  font-size: 18px;
  color: #000;
}

#educationalDetailsSection p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

/* Bank Details Section */
#bankDetailsSection h4 {
  font-size: 24px;
  color: #000;
}

#bankDetailsSection h5 {
  font-size: 18px;
  color: #000;
}

#bankDetailsSection p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

/* Bank Account Form Section */
#bankDetailsFormSection h4 {
  font-size: 24px;
  color: #000;
}

#bankDetailsFormSection p {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
}

/* Bank Account Form Inputs */
#bankDetailsFormSection .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

#bankDetailsFormSection .form-control:focus {
  border-color: #0fb1f6;
  box-shadow: 0 0 0 0.2rem rgba(15, 177, 246, 0.15);
  outline: none;
}

#bankDetailsFormSection .form-control::placeholder {
  color: #999;
}

/* Declaration Checkbox */
.declaration-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.declaration-check .form-check-input {
  width: 24px;
  height: 24px;
  border: 2px solid #0fb1f6;
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 0;
  margin-left: 0;
  position: relative;
  top: 2px;
  background-color: white;
}

.declaration-check .form-check-input:checked {
  background-color: #0fb1f6;
  border-color: #0fb1f6;
}

.declaration-check .form-check-input:focus {
  box-shadow: 0 0 0 0.2rem rgba(15, 177, 246, 0.15);
}

.declaration-check .form-check-label {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  cursor: pointer;
  margin: 0;
  padding-top: 0;
  flex: 1;
}

/* Profile Summary Section */
#profileSummarySection h4 {
  font-size: 22px;
  color: #000;
}

#profileSummarySection h5 {
  font-size: 18px;
  color: #000;
}

/* Success Icon Circle */
.success-icon-circle {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0fb1f6 0%, #0c8ec9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon-circle i {
  font-size: 50px;
  color: white;
}

/* Profile Info Boxes */
.profile-info-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
}

.profile-label {
  font-size: 13px;
  color: #999;
  margin-bottom: 5px;
  display: block;
}

.profile-value {
  font-size: 16px;
  color: #000;
  font-weight: 500;
}

/* Document Section Boxes */
.document-section-box {
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
}

.document-section-header {
  margin-bottom: 12px;
  font-size: 16px;
}

.document-section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.document-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.document-item:not(:last-child) {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 8px;
  padding-bottom: 12px;
}

.document-name {
  font-size: 15px;
  color: #000;
  margin-bottom: 3px;
}

.document-status {
  font-size: 13px;
  color: #999;
}

.view-link {
  color: #0fb1f6;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-link:hover {
  color: #0c8ec9;
  text-decoration: underline;
}

/* Go to Home Button */
.btn-outline-primary {
  background: transparent;
  color: #0fb1f6;
  border: 2px solid #0fb1f6;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: #0fb1f6;
  color: white;
  border-color: #0fb1f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 177, 246, 0.3);
}

/* Image Preview Modal */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.image-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}

.image-modal-content {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  max-width: 90%;
  max-height: 90vh;
  width: 800px;
  display: flex;
  flex-direction: column;
  z-index: 10001;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.image-modal-header {
  padding: 20px 25px;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
}

.image-modal-header h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.btn-close-modal {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close-modal:hover {
  color: #000;
  background: #f0f0f0;
  border-radius: 50%;
}

.image-modal-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  overflow: auto;
  max-height: calc(90vh - 80px);
  padding: 20px;
}

.image-modal-body img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.image-modal-body #imageModalPdf {
  text-align: center;
  padding: 40px 20px;
}

.image-modal-body #imageModalPdf p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
}

/* Custom Select Dropdown */
.form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  color: #999;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 12px;
}

.form-select:focus {
  border-color: #0fb1f6;
  box-shadow: 0 0 0 0.2rem rgba(15, 177, 246, 0.15);
  color: #000;
}

.form-select option {
  color: #000;
}

/* Certificate Upload Box */
.upload-certificate-box {
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  background: #fafafa;
  position: relative;
}

.upload-certificate-box:hover {
  border-color: #0fb1f6;
  background: #f0f9ff;
}

.certificate-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 40px 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  text-align: center;
}

.certificate-upload-label i {
  font-size: 40px;
  color: #666;
  margin-bottom: 15px;
}

.upload-certificate-text {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  margin-bottom: 8px;
  display: block;
}

.certificate-file-types {
  font-size: 13px;
  color: #999;
  display: block;
}

.certificate-uploaded-preview {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  text-align: center;
  width: 100%;
}

.certificate-uploaded-preview i {
  font-size: 40px;
  color: #0fb1f6;
  margin-bottom: 15px;
}

.certificate-file-name {
  font-size: 15px;
  color: #333;
  word-break: break-all;
  padding: 0 20px;
  margin-bottom: 15px;
}

.btn-reupload-certificate {
  margin-top: 10px;
  padding: 8px 18px;
  background-color: #0fb1f6;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.btn-reupload-certificate:hover {
  background-color: #0c8ec9;
  transform: translateY(-1px);
}

.btn-reupload-certificate i {
  font-size: 14px;
}

/* Camera Modal */
.camera-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.camera-modal-content {
  width: 90%;
  max-width: 600px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}

.camera-modal-header {
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e0e0e0;
}

.camera-modal-header h5 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.btn-close-camera {
  background: transparent;
  border: none;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

.btn-close-camera:hover {
  color: #000;
}

.camera-modal-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  overflow: hidden;
}

.camera-modal-body video {
  width: 100%;
  height: auto;
  max-height: 60vh;
  display: block;
}

.camera-modal-footer {
  padding: 20px;
  background: #fff;
  display: flex;
  justify-content: center;
}

.btn-capture {
  background: #0fb1f6;
  color: white;
  border: none;
  border-radius: 10px;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-capture:hover {
  background: #0c8ec9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(15, 177, 246, 0.3);
}

.btn-capture i {
  font-size: 18px;
}

/* Mobile responsive for upload boxes */
@media (max-width: 576px) {
  .upload-box {
    min-height: 120px;
  }
  
  .upload-label i {
    font-size: 24px;
  }
  
  .upload-text {
    font-size: 14px;
  }
  
  .file-types {
    font-size: 11px;
  }
  
  .processing-indicator .spinner-border {
    width: 2rem;
    height: 2rem;
  }
  
  .processing-text {
    font-size: 12px;
  }

  .upload-option-btn {
    padding: 25px 15px;
  }

  .upload-option-btn i {
    font-size: 28px;
  }

  .upload-option-btn span {
    font-size: 14px;
  }

  .selfie-guidelines li {
    font-size: 14px;
  }

  .camera-modal-content {
    width: 95%;
    max-height: 95vh;
  }

  .camera-modal-header {
    padding: 15px;
  }

  .camera-modal-header h5 {
    font-size: 18px;
  }

  .camera-modal-body video {
    max-height: 70vh;
  }

  .camera-modal-footer {
    padding: 15px;
  }

  .btn-capture {
    padding: 12px 30px;
    font-size: 14px;
  }

  .upload-certificate-box {
    min-height: 150px;
  }

  .certificate-upload-label {
    padding: 30px 15px;
  }

  .certificate-upload-label i {
    font-size: 32px;
  }

  .upload-certificate-text {
    font-size: 16px;
  }

  .certificate-file-types {
    font-size: 12px;
  }

  .declaration-check .form-check-input {
    width: 20px;
    height: 20px;
  }

  .declaration-check .form-check-label {
    font-size: 13px;
  }

  .success-icon-circle {
    width: 100px;
    height: 100px;
  }

  .success-icon-circle i {
    font-size: 40px;
  }

  #profileSummarySection h4 {
    font-size: 20px;
  }

  #profileSummarySection h5 {
    font-size: 16px;
  }

  .profile-info-box {
    padding: 12px 15px;
  }

  .profile-value {
    font-size: 15px;
  }

  .document-section-box {
    padding: 12px 15px;
  }

  .document-name {
    font-size: 14px;
  }

  .view-link {
    font-size: 14px;
  }

  /* Image Modal Responsive */
  .image-modal-content {
    max-width: 95%;
    width: 100%;
  }
  
  .image-modal-header {
    padding: 15px;
  }
  
  .image-modal-header h5 {
    font-size: 18px;
  }
  
  .image-modal-body {
    padding: 15px;
    max-height: calc(90vh - 70px);
  }
}

