
/* survey welcome style  */

.survey-landing-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: calc(100vh - 56px);
  position: relative;
  display: flex;
  align-items: center;
  /* padding: 60px 0; */
}

.survey-landing-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Main Card */
.landing-card {
  background: white;
  border-radius: 24px;
  padding: 30px 40px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.landing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Survey Icon */
.survey-icon-wrapper {
  text-align: center;
  margin-bottom: 30px;
}

.survey-icon-large {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.survey-icon-large:hover {
  transform: rotate(0deg) scale(1.05);
}

/* Title */
.survey-landing-title {
  font-size: 38px;
  font-weight: 800;
  color: #1a202c;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

/* Description Box */
.survey-description-box {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 40px;
}

.description-content {
  color: #4a5568;
  font-size: 16px;
  line-height: 1.8;
}

.description-content p {
  margin-bottom: 12px;
}

.description-content p:last-child {
  margin-bottom: 0;
}

.description-content strong {
  color: #2d3748;
  font-weight: 600;
}

.description-content ul, 
.description-content ol {
  margin: 15px 0;
  padding-left: 25px;
}

.description-content li {
  margin-bottom: 8px;
}

/* Features */
.survey-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon svg {
  stroke: #000; /* adjust color */
}


.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: #f7fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #eef5ff;
  border-color: #667eea;
  transform: translateY(-2px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.feature-item span {
  font-weight: 600;
  color: #2d3748;
  font-size: 14px;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding-top: 20px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
  color: white;
}

.btn-cta:active {
  transform: translateY(-1px);
}

.cta-subtext {
  margin-top: 16px;
  color: #718096;
  font-size: 14px;
  font-weight: 500;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  color: #059669;
  font-weight: 600;
  font-size: 13px;
}

.trust-badge svg {
  flex-shrink: 0;
  color: #10b981;
}

/* Responsive */
@media (max-width: 768px) {
  .landing-card {
    padding: 40px 30px;
  }

  .survey-landing-title {
    font-size: 28px;
  }

  .survey-icon-large {
    width: 80px;
    height: 80px;
  }

  .survey-icon-large svg {
    width: 45px;
    height: 45px;
  }

  .survey-features {
    grid-template-columns: 1fr;
  }

  .btn-cta {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .survey-landing-wrapper {
    padding: 40px 0;
  }

  .landing-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .survey-landing-title {
    font-size: 24px;
  }

  .survey-description-box {
    padding: 20px;
  }

  .description-content {
    font-size: 15px;
  }

  .trust-badge {
    font-size: 12px;
    padding: 12px 20px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.landing-card {
  animation: fadeInUp 0.6s ease;
}







/* survey start style  */

.survey-start-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: calc(100vh - 56px);
  position: relative;
}

.survey-start-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.progress-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.progress-step.active .step-circle {
  background: white;
  color: #667eea;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.step-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.progress-step.active .step-label {
  color: white;
  font-weight: 600;
}

.progress-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 8px;
  margin-bottom: 28px;
}

@media (max-width: 576px) {
  .progress-line {
    width: 40px;
  }
  .step-label {
    font-size: 11px;
  }
  .step-circle {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.survey-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
  background: white;
}

.survey-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.survey-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a202c;
  margin: 0;
}

.survey-subtitle {
  font-size: 16px;
  color: #718096;
  margin: 0;
}

.form-label {
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 8px;
  font-size: 14px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #a0aec0;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.form-control {
  height: 52px;
  padding-left: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: #f7fafc;
}

.form-control:hover {
  border-color: #cbd5e0;
  background: white;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: white;
}

.form-control.is-invalid {
  border-color: #fc8181;
  background: #fff5f5;
}

.form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(252, 129, 129, 0.1);
}

.invalid-feedback {
  color: #e53e3e;
  font-size: 13px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.privacy-note {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: #f0fdf4;
  border: 1px solid #d1fae5;
  border-radius: 12px;
  color: #065f46;
  font-size: 13px;
  line-height: 1.5;
}

.privacy-note svg {
  flex-shrink: 0;
  color: #10b981;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 12px;
  padding: 14px 28px;
  transition: all 0.3s ease;
  border: none;
  font-size: 15px;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  flex: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline-secondary {
  background: white;
  color: #4a5568;
  border: 2px solid #e2e8f0;
  min-width: 120px;
}

.btn-outline-secondary:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
  color: #2d3748;
}

@media (max-width: 576px) {
  .survey-card .card-body {
    padding: 2rem 1.5rem !important;
  }
  
  .survey-title {
    font-size: 24px;
  }
  
  .survey-icon {
    width: 64px;
    height: 64px;
  }
  
  .survey-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .btn {
    width: 100%;
  }
}

/* Smooth animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.survey-card {
  animation: fadeInUp 0.6s ease;
}

.form-group {
  animation: fadeInUp 0.6s ease backwards;
}

.form-group:nth-child(1) { animation-delay: 0.1s; }
.form-group:nth-child(2) { animation-delay: 0.2s; }
.form-group:nth-child(3) { animation-delay: 0.3s; }
.form-group:nth-child(4) { animation-delay: 0.4s; }


/* survey question style  */


.survey-question-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: calc(100vh - 56px);
  position: relative;
}

.survey-question-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Survey Badge */
.survey-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  color: #667eea;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.survey-badge svg {
  flex-shrink: 0;
}

/* Progress Bar */
.progress-container {
  position: relative;
}

.progress-bar-wrapper {
  height: 8px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #4ade80 0%, #22c55e 100%);
  border-radius: 50px;
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.progress-text {
  text-align: center;
  color: white;
  font-weight: 600;
  font-size: 13px;
  margin-top: 8px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Question Card */
.question-card {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  background: white;
  position: relative;
  overflow: hidden;
}

.question-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

/* Question Header */
.question-header {
  position: relative;
}

.question-number-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.question-title {
  font-size: 26px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.4;
  margin: 0;
}

.question-subtitle {
  font-size: 15px;
  color: #718096;
  margin-top: 12px;
  margin-bottom: 0;
}

/* Options Container */
.options-container {
  margin-top: 30px;
}

/* Radio/Checkbox Options */
.option-item {
  position: relative;
  margin-bottom: 12px;
}

.option-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.option-label {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  background: #f7fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
}

.option-label:hover {
  background: #eef5ff;
  border-color: #667eea;
  transform: translateX(4px);
}

.option-input:checked + .option-label {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.option-check {
  width: 24px;
  height: 24px;
  border: 2px solid #cbd5e0;
  border-radius: 50%;
  margin-right: 14px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.option-input:checked + .option-label .option-check {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
}

.option-input:checked + .option-label .option-check::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

/* Checkbox specific */
.checkbox-check {
  border-radius: 6px;
}

.checkbox-input:checked + .option-label .checkbox-check::after {
  width: 12px;
  height: 8px;
  background: none;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  border-radius: 0;
  transform: translate(-50%, -60%) rotate(-45deg);
}

.option-text {
  font-size: 16px;
  color: #2d3748;
  font-weight: 500;
}

/* Select Dropdown */
.select-wrapper {
  position: relative;
}

.select-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #a0aec0;
  z-index: 2;
}

.form-select {
  appearance: none;
  height: 56px;
  padding: 0 50px 0 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  color: #2d3748;
  background: #f7fafc;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.form-select:hover {
  border-color: #cbd5e0;
  background: white;
}

.form-select:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: white;
  outline: none;
}

/* Text/Number/Date Inputs */
.input-group-modern {
  position: relative;
}

.form-input {
  height: 56px;
  padding: 0 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f7fafc;
  color: #2d3748;
}

.form-input:hover {
  border-color: #cbd5e0;
  background: white;
}

.form-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: white;
  outline: none;
}

/* Textarea */
.form-textarea {
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f7fafc;
  resize: vertical;
  min-height: 120px;
  color: #2d3748;
  line-height: 1.6;
}

.form-textarea:hover {
  border-color: #cbd5e0;
  background: white;
}

.form-textarea:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  background: white;
  outline: none;
}

/* Scale Options */
.scale-container {
  padding: 20px 0;
}

.scale-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  padding: 0 10px;
}

.scale-label-start,
.scale-label-end {
  font-weight: 700;
  color: #667eea;
  font-size: 16px;
}

/* Slider Wrapper */
.scale-slider-wrapper {
  position: relative;
  height: 80px;
  padding: 0 25px;
  cursor: pointer;
}

.scale-track {
  position: absolute;
  top: 50%;
  left: 25px;
  right: 25px;
  height: 8px;
  background: #e2e8f0;
  border-radius: 50px;
  transform: translateY(-50%);
  overflow: hidden;
}

.scale-track-fill {
  height: 100%;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  width: 0%;
  transition: width 0.2s ease;
}

.scale-markers {
  position: absolute;
  top: 50%;
  left: 25px;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.scale-marker {
  position: relative;
  width: 16px;
  height: 16px;
  background: white;
  border: 3px solid #cbd5e0;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1;
}

.scale-marker.active {
  background: white;
  border-color: #667eea;
  border-width: 4px;
  transform: scale(1.4);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
}

.scale-marker-number {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 600;
  color: #718096;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.scale-marker.active .scale-marker-number {
  color: #667eea;
  font-size: 16px;
  font-weight: 700;
  top: 32px;
}

.scale-handle {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  cursor: grab;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 10;
  border: 4px solid white;
}

.scale-handle:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.6);
}

.scale-handle.dragging {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.7);
}

.scale-handle-value {
  color: white;
  font-weight: 700;
  font-size: 22px;
  user-select: none;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background: white;
  color: #4a5568;
  border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
  background: #f7fafc;
  border-color: #cbd5e0;
}

.btn-success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Alert */
.alert {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border-radius: 12px;
  background: #fef3c7;
  border: 1px solid #fbbf24;
  color: #92400e;
}

/* Responsive */
@media (max-width: 768px) {
  .question-title {
    font-size: 22px;
  }

  .scale-circle {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .navigation-buttons {
    flex-direction: column-reverse;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .question-card .card-body {
    padding: 2rem 1.5rem !important;
  }

  .question-title {
    font-size: 20px;
  }

  .scale-options {
    gap: 4px;
  }

  .scale-circle {
    width: 38px;
    height: 38px;
    font-size: 14px;
    border-width: 2px;
  }

  .scale-handle {
    width: 48px;
    height: 48px;
  }

  .scale-handle-value {
    font-size: 20px;
  }

  .scale-marker {
    width: 14px;
    height: 14px;
    border-width: 2px;
  }

  .scale-track {
    height: 6px;
  }

  .scale-slider-wrapper {
    padding: 0 20px;
  }

  .scale-track {
    left: 20px;
    right: 20px;
  }

  .scale-markers {
    left: 20px;
    right: 20px;
  }

  .scale-marker-number {
    font-size: 13px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.question-card {
  animation: fadeInUp 0.6s ease;
}