/* Business Solutions CSS */

@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #0d6efd;
  --primary-light: #3d8bfd;
  --primary-dark: #0a58ca;
  --primary-gradient: linear-gradient(135deg, #0d6efd, #0a58ca);
  --secondary: #6c757d;
  --secondary-light: #adb5bd;
  --accent: #0dcaf0;
  --light: #f8f9fa;
  --dark: #212529;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  color: var(--dark);
  background-color: #f8f9fa;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f9ff, #eaf3ff);
}

/* Hero Banner */
.hero-banner {
  background-color: #fff5f8;
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 350px; /* Increased height */
  width: 100%;
  margin-bottom: 30px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 48px; /* Increased font size */
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight {
  color: #ffde59;
  font-weight: 700;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Services Icons */
.services-icons {
  background-color: white;
  padding: 40px 0;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.icons-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
  justify-items: center;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-5px);
}

.icon {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
}

.icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-title {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  text-align: center;
}

/* Solution Sections */
.solution-section {
  padding: 60px 0;
}

.light-section {
  background-color: #fff5f8;
}

.dark-section {
  background-color: white;
}

.solution-content {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.solution-content.reverse {
  flex-direction: row-reverse;
}

.solution-text {
  flex: 1;
}

.solution-text h2 {
  font-size: 28px;
  font-weight: 600;
  color: #222;
  margin-bottom: 20px;
}

.solution-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
}

.btn-sign-up {
  display: inline-block;
  background-color: transparent;
  border: 2px solid #1c2e58;
  color: #1c2e58;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-sign-up:hover {
  background-color: #1c2e58;
  color: white;
}

.solution-image {
  flex: 1;
  text-align: center;
}

.solution-image img {
  max-width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: contain;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
  
}


/* Active Page Navigation */

/* Responsive Styles */
@media (max-width: 1200px) {
  .container {
    padding: 0 20px;
  }

  .icons-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-banner {
    height: 500px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .solution-content {
    flex-direction: column;
    gap: 30px;
  }

  .solution-content.reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 400px;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .icons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .solution-text h2 {
    font-size: 24px;
  }

  .solution-text p {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 350px;
  }

  .hero-text h1 {
    font-size: 24px;
  }

  .solution-section {
    padding: 40px 0;
  }
}

/* bKash Business Popup CSS */
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  animation: slideUp 0.4s ease-out;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #1c2e58;
  color: white;
  position: sticky;
  top: 0;
  z-index: 2;
}

.popup-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.popup-close:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.popup-body {
  padding: 30px;
  overflow-y: auto;
  max-height: calc(90vh - 80px);
}

/* Form Styles */
.business-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group.half {
  flex: 1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #333;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
}

.form-select {
  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='%23333' 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 15px center;
  background-size: 15px;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

.form-input::placeholder {
  color: #999;
}

/* Toggle Switch Styles */
.toggle-group {
  margin-bottom: 20px;
}

.toggle-switch {
  display: flex;
  background-color: #f1f1f1;
  border-radius: 30px;
  width: fit-content;
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

.toggle-switch input[type="radio"] {
  display: none;
}

.toggle-switch label {
  padding: 10px 20px;
  cursor: pointer;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.toggle-switch input[type="radio"]:checked + label {
  color: white;
}

.toggle-switch
  input[type="radio"]:nth-of-type(1):checked
  ~ label:nth-of-type(1),
.toggle-switch
  input[type="radio"]:nth-of-type(2):checked
  ~ label:nth-of-type(2) {
  color: white;
}

.toggle-switch input[type="radio"]:nth-of-type(1):checked + label {
  background-color: #1c2e58;
}

.toggle-switch input[type="radio"]:nth-of-type(2):checked + label {
  background-color: #1c2e58;
}

/* Captcha Styles */
.captcha-group {
  margin-top: 30px;
}

.g-recaptcha-placeholder {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkbox-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-container input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.captcha-box {
  background-color: #f9f9f9;
  padding: 10px;
  border-radius: 5px;
  color: #777;
  font-size: 14px;
}

/* Button Styles */
.form-actions {
  margin-top: 30px;
  text-align: center;
}

.btn-submit {
  background-color: #1c2e58;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #1c2e58;
}

.btn-close {
  background-color: #333;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-close:hover {
  background-color: #555;
}

/* Verification Popup Styles */
.verification-content {
  max-width: 500px;
}

.verification-message {
  margin-bottom: 30px;
  text-align: center;
}

.verification-message p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.verification-form {
  max-width: 300px;
  margin: 0 auto;
}

.resend-code {
  text-align: center;
  margin-top: 15px;
}

.resend-code a {
  color: #1c2e58;
  text-decoration: none;
  font-weight: 500;
}

.resend-code a:hover {
  text-decoration: underline;
}

/* Success Popup Styles */
.success-content {
  max-width: 500px;
}

.success-message {
  text-align: center;
  margin-bottom: 30px;
}

.success-icon {
  font-size: 80px;
  color: #4caf50;
  margin-bottom: 20px;
}

.success-message h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.success-message p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Active State */
.popup-container.active {
  display: block;
}

/* Scrollbar Styling */
.popup-body::-webkit-scrollbar {
  width: 10px;
}

.popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.popup-body::-webkit-scrollbar-thumb {
  background: #1c2e58;
  border-radius: 5px;
}

.popup-body::-webkit-scrollbar-thumb:hover {
  background: #1c2e58;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .popup-content {
    width: 95%;
    margin: 20px auto;
  }

  .popup-header h2 {
    font-size: 1.5rem;
  }

  .popup-body {
    padding: 20px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  .form-input,
  .form-select {
    font-size: 14px;
    padding: 10px 12px;
  }

  .btn-submit,
  .btn-close {
    width: 100%;
  }
}

/* Merchant Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 15px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
}

#email-sent,
#verification-email {
  font-weight: 600;
}

/* Verification Code Inputs */
.verification-code-container {
  margin: 30px 0;
}

.verification-code-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.verification-input {
  width: 45px;
  height: 45px;
  font-size: 24px;
  text-align: center;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.verification-input:focus {
  border-color: #1c2e58;
  box-shadow: 0 0 0 3px rgba(226, 20, 108, 0.2);
  outline: none;
}

.verification-input.filled {
  background-color: #f0f0f0;
  border-color: #1c2e58;
}

.timer {
  font-size: 14px;
  color: #777;
  margin-top: 10px;
  text-align: center;
}

#timer {
  font-weight: 600;
  color: #1c2e58;
}

/* Success Page Styles */
.merchant-ref {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
}

.merchant-ref p {
  margin-bottom: 10px;
}

.merchant-ref strong {
  color: #1c2e58;
  font-size: 18px;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 576px) {
  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }

  .verification-code-inputs {
    gap: 6px;
  }

  .verification-input {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* Animation for Successful Verification */
@keyframes verificationSuccess {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-animation {
  animation: verificationSuccess 0.5s ease;
}

/* Educational Institution Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Form Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: vertical;
}

.form-textarea:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

/* Checkbox Group Styles */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 15px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
}

/* Success Page Styles */
.edu-ref {
  margin-top: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
}

.edu-ref p {
  margin-bottom: 10px;
}

.edu-ref strong {
  color: #1c2e58;
  font-size: 18px;
}

.edu-next-steps {
  margin-top: 25px;
  padding: 15px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.edu-next-steps h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.edu-next-steps ul {
  list-style-type: none;
  padding-left: 0;
}

.edu-next-steps ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #444;
}

.edu-next-steps ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
}

.terms-link:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }
}

/* Animation for Success Icon */
@keyframes successPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-icon {
  animation: successPulse 2s infinite;
}

/* Payroll Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Form Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

/* Checkbox Group Styles */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
}

.checkbox-item:hover {
  transform: translateX(5px);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1c2e58;
}

.checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 18px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Success Page Styles */
.payroll-ref {
  margin-top: 25px;
  padding: 18px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.payroll-ref p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.payroll-ref strong {
  color: #1c2e58;
  font-size: 18px;
  letter-spacing: 1px;
}

.payroll-benefits {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.payroll-benefits h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.payroll-benefits ul {
  list-style-type: none;
  padding-left: 0;
}

.payroll-benefits ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
}

.payroll-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
  transition: all 0.2s ease;
}

.terms-link:hover {
  text-decoration: underline;
  color: #1c2e58;
}

/* Button Hover Effects */
.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #1c2e58;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(226, 20, 108, 0.2);
}

.btn-close {
  transition: all 0.3s ease;
}

.btn-close:hover {
  background-color: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Input Focus Effects */
.form-input:focus,
.form-select:focus {
  border-color: #1c2e58;
  box-shadow: 0 0 0 3px rgba(226, 20, 108, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }
}

/* Animation for Success Icon */
@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  animation: successPulse 2s infinite;
  color: #4caf50;
  font-size: 80px;
}

/* Popup Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-container.active {
  animation: fadeIn 0.3s forwards;
}

.popup-container.active .popup-content {
  animation: slideUp 0.4s forwards;
}

/* Corporate & Enterprise Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Form Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

/* Checkbox Group Styles */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
  padding: 8px;
  border-radius: 5px;
}

.checkbox-item:hover {
  transform: translateX(5px);
  background-color: #f9f9f9;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1c2e58;
}

.checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 18px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Success Page Styles */
.corporate-ref {
  margin-top: 25px;
  padding: 18px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.corporate-ref p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.corporate-ref strong {
  color: #1c2e58;
  font-size: 18px;
  letter-spacing: 1px;
}

.corporate-benefits {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.corporate-benefits h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.corporate-benefits ul {
  list-style-type: none;
  padding-left: 0;
}

.corporate-benefits ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
}

.corporate-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
  transition: all 0.2s ease;
}

.terms-link:hover {
  text-decoration: underline;
  color: #1c2e58;
}

/* Button Hover Effects */
.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #c01259;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(226, 20, 108, 0.2);
}

.btn-close {
  transition: all 0.3s ease;
}

.btn-close:hover {
  background-color: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Input Enhancements */
.form-input:focus,
.form-select:focus {
  border-color: #e2146c;
  box-shadow: 0 0 0 3px rgba(226, 20, 108, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e2146c' 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-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/* Animation for Success Icon */
@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  animation: successPulse 2s infinite;
  color: #4caf50;
  font-size: 80px;
}

/* Popup Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-container.active {
  animation: fadeIn 0.3s forwards;
}

.popup-container.active .popup-content {
  animation: slideUp 0.4s forwards;
}

/* Input field focus highlight */
.input-focused {
  position: relative;
}

.input-focused label {
  color: #1c2e58;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }

  .success-icon {
    font-size: 60px;
  }
}

/* Microfinance Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Form Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

/* Checkbox Group Styles */
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 10px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease;
  padding: 8px;
  border-radius: 5px;
}

.checkbox-item:hover {
  transform: translateX(5px);
  background-color: #f9f9f9;
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #1c2e58;
}

.checkbox-item label {
  margin-bottom: 0;
  cursor: pointer;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 18px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Success Page Styles */
.microfinance-ref {
  margin-top: 25px;
  padding: 18px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.microfinance-ref p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.microfinance-ref strong {
  color: #1c2e58;
  font-size: 18px;
  letter-spacing: 1px;
}

.microfinance-benefits {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.microfinance-benefits h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.microfinance-benefits ul {
  list-style-type: none;
  padding-left: 0;
}

.microfinance-benefits ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
}

.microfinance-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
  transition: all 0.2s ease;
}

.terms-link:hover {
  text-decoration: underline;
  color: #1c2e58;
}

/* Button Hover Effects */
.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #1c2e58;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(226, 20, 108, 0.2);
}

.btn-close {
  transition: all 0.3s ease;
}

.btn-close:hover {
  background-color: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Input Enhancements */
.form-input:focus,
.form-select:focus {
  border-color: #1c2e58;
  box-shadow: 0 0 0 3px rgba(226, 20, 108, 0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23e2146c' 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-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 16px;
}

/* Animation for Success Icon */
@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  animation: successPulse 2s infinite;
  color: #4caf50;
  font-size: 80px;
}

/* Popup Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-container.active {
  animation: fadeIn 0.3s forwards;
}

.popup-container.active .popup-content {
  animation: slideUp 0.4s forwards;
}

/* Input field focus highlight */
.input-focused {
  position: relative;
}

.input-focused label {
  color: #1c2e58;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }

  .success-icon {
    font-size: 60px;
  }
}

/* Supplier Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Form Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

/* Toggle Switch Styles */
.toggle-group {
  margin-bottom: 20px;
}

.toggle-switch {
  display: flex;
  background-color: #f1f1f1;
  border-radius: 30px;
  width: fit-content;
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

.toggle-switch input[type="radio"] {
  display: none;
}

.toggle-switch label {
  padding: 10px 20px;
  cursor: pointer;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 14px;
  min-width: 80px;
  text-align: center;
}

.toggle-switch input[type="radio"]:checked + label {
  color: white;
}

.toggle-switch
  input[type="radio"]:nth-of-type(1):checked
  ~ label:nth-of-type(1),
.toggle-switch
  input[type="radio"]:nth-of-type(2):checked
  ~ label:nth-of-type(2) {
  color: white;
}

.toggle-switch input[type="radio"]:nth-of-type(1):checked + label {
  background-color: #1c2e58;
}

.toggle-switch input[type="radio"]:nth-of-type(2):checked + label {
  background-color: #1c2e58;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 18px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Yes/No Values Styling */
.yes-value {
  color: #28a745;
  font-weight: 600;
}

.no-value {
  color: #dc3545;
  font-weight: 600;
}

/* Success Page Styles */
.supplier-ref {
  margin-top: 25px;
  padding: 18px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.supplier-ref p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.supplier-ref strong {
  color: #1c2e58;
  font-size: 18px;
  letter-spacing: 1px;
}

.supplier-benefits {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.supplier-benefits h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.supplier-benefits ul {
  list-style-type: none;
  padding-left: 0;
}

.supplier-benefits ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
}

.supplier-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
  transition: all 0.2s ease;
}

.terms-link:hover {
  text-decoration: underline;
  color: #1c2e58;
}

/* Button Hover Effects */
.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #1c2e58;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(226, 20, 108, 0.2);
}

.btn-close {
  transition: all 0.3s ease;
}

.btn-close:hover {
  background-color: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Input Enhancements */
.form-input:focus,
.form-select:focus {
  border-color: #1c2e58;
  box-shadow: 0 0 0 3px rgba(226, 20, 108, 0.15);
}

/* Animation for Success Icon */
@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  animation: successPulse 2s infinite;
  color: #4caf50;
  font-size: 80px;
}

/* Popup Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-container.active {
  animation: fadeIn 0.3s forwards;
}

.popup-container.active .popup-content {
  animation: slideUp 0.4s forwards;
}

/* Input field focus highlight */
.input-focused {
  position: relative;
}

.input-focused label {
  color: #1c2e58;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }

  .success-icon {
    font-size: 60px;
  }

  .toggle-switch label {
    padding: 8px 15px;
    font-size: 13px;
    min-width: 60px;
  }
}

/* Agent Popup Styles */
.required {
  color: #1c2e58;
  font-weight: bold;
}

/* Form Textarea Styles */
.form-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  color: #333;
  resize: vertical;
  transition: border-color 0.3s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #1c2e58;
  box-shadow: 0 0 0 2px rgba(226, 20, 108, 0.1);
}

/* Toggle Switch Styles */
.toggle-group {
  margin-bottom: 20px;
}

.toggle-switch {
  display: flex;
  background-color: #f1f1f1;
  border-radius: 30px;
  width: fit-content;
  position: relative;
  margin-top: 10px;
  overflow: hidden;
}

.toggle-switch input[type="radio"] {
  display: none;
}

.toggle-switch label {
  padding: 10px 20px;
  cursor: pointer;
  margin: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  font-size: 14px;
  min-width: 80px;
  text-align: center;
}

.toggle-switch input[type="radio"]:checked + label {
  color: white;
}

.toggle-switch
  input[type="radio"]:nth-of-type(1):checked
  ~ label:nth-of-type(1),
.toggle-switch
  input[type="radio"]:nth-of-type(2):checked
  ~ label:nth-of-type(2) {
  color: white;
}

.toggle-switch input[type="radio"]:nth-of-type(1):checked + label {
  background-color: #1c2e58;
}

.toggle-switch input[type="radio"]:nth-of-type(2):checked + label {
  background-color: #1c2e58;
}

/* Application Details Styles */
.application-details {
  background-color: #fff;
  border-radius: 10px;
}

.application-details h3 {
  text-align: center;
  margin-bottom: 25px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
}

.details-container {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-item {
  display: flex;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.detail-item:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.detail-label {
  font-weight: 600;
  width: 40%;
  color: #555;
}

.detail-value {
  width: 60%;
  color: #333;
}

.verification-info {
  text-align: center;
  margin: 25px 0;
  padding: 18px;
  background-color: #f0f9ff;
  border-left: 4px solid #0086e6;
  border-radius: 4px;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
}

/* Yes/No Values Styling */
.yes-value {
  color: #28a745;
  font-weight: 600;
}

.no-value {
  color: #1c2e58;
  font-weight: 600;
}

/* Success Page Styles */
.agent-ref {
  margin-top: 25px;
  padding: 18px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.agent-ref p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.agent-ref strong {
  color: #1c2e58;
  font-size: 18px;
  letter-spacing: 1px;
}

.agent-benefits {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #4caf50;
}

.agent-benefits h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
  font-weight: 600;
}

.agent-benefits ul {
  list-style-type: none;
  padding-left: 0;
}

.agent-benefits ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #444;
}

.agent-benefits ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
  font-size: 18px;
}

/* Terms Link */
.terms-link {
  color: #1c2e58;
  text-decoration: none;
  transition: all 0.2s ease;
}

.terms-link:hover {
  text-decoration: underline;
  color: #1c2e58;
}

/* Button Hover Effects */
.btn-submit {
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background-color: #1c2e58;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(226, 20, 108, 0.2);
}

.btn-close {
  transition: all 0.3s ease;
}

.btn-close:hover {
  background-color: #444;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Form Input Enhancements */
.form-input:focus,
.form-select:focus {
  border-color: #1c2e58;
  box-shadow: 0 0 0 3px rgba(226, 20, 108, 0.15);
}

/* Animation for Success Icon */
@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon {
  animation: successPulse 2s infinite;
  color: #4caf50;
  font-size: 80px;
}

/* Popup Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-container.active {
  animation: fadeIn 0.3s forwards;
}

.popup-container.active .popup-content {
  animation: slideUp 0.4s forwards;
}

/* Input field focus highlight */
.input-focused {
  position: relative;
}

.input-focused label {
  color: #1c2e58;
}

/* Trade License Fields Animation */
#trade-license-fields {
  max-height: 1000px;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  opacity: 1;
  transform: translateY(0);
}

#trade-license-fields.hidden {
  max-height: 0;
  opacity: 0;
  transform: translateY(-20px);
  margin: 0;
  padding: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .detail-item {
    flex-direction: column;
  }

  .detail-label,
  .detail-value {
    width: 100%;
  }

  .detail-label {
    margin-bottom: 5px;
    color: #777;
  }

  .success-icon {
    font-size: 60px;
  }

  .toggle-switch label {
    padding: 8px 15px;
    font-size: 13px;
    min-width: 60px;
  }
}
