body {
    font-family: 'Inter', sans-serif;
    background: #f8f9fb;
    margin: 0;

}

.hero-bg {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.drop-zone, .dropzone {
    border: 2px dashed #25D366;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-zone:hover, .drop-zone.dz-drag-hover {
    background-color: #e9f7ef;
    border-color: #059669;
}

.custom-checkbox {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #6b7280;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: #059669;
    border-color: #059669;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.custom-checkbox:hover {
    border-color: #059669;
}

.step-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-success {
    background: #25D366;
}

.btn-success:hover {
    background: #128C7E;
}


.dropzone-wrapper {
    background: #ffffff;
    max-width: 600px;
    margin: 60px auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    padding: 40px 30px;
}

.dropzone {
    border: 2px dashed #25D366;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    cursor: pointer;
}

.dropzone:hover {
    background-color: #e9f7ef;
}

.dz-message {
    font-size: 1.1rem;
    color: #495057;
}

.chat-box {
    max-height: 500px;
    overflow-y: auto;
    background: url('https://via.placeholder.com/300x500/E5DDD5?text=WhatsApp+Background') repeat;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    padding: 1.5rem;
}

.message {
    max-width: 70%;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

.message.received {
    background: #ffffff;
    margin-right: auto;
    border-bottom-left-radius: 0.1rem;
}

.message.sent {
    background: #dcf8c6;
    margin-left: auto;
    border-bottom-right-radius: 0.1rem;
}

.message strong {
    font-size: 0.9rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    display: block;
}

.message small {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.25rem;
    display: block;
    text-align: right;
}

.btn-primary {
    background: #25D366;
}

.btn-primary:hover:not(:disabled) {
    background: #128C7E;
}

.btn-primary:disabled {
    background: #6ee7b7;
    cursor: not-allowed;
}

.loader-container {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.loader {
    border: 3px solid #e5e7eb;
    border-top: 3px solid #25D366;
    border-radius: 50%;
    width: 1.5rem;
    height: 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.error-message {
    display: none;
    transition: opacity 0.3s ease;
}

.options-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.options-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}



.select-container {
    max-width: 500px;
    margin: 4rem auto;
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.select-container:hover {
    transform: translateY(-5px);
}

.custom-select {
    transition: all 0.2s ease;
}

.custom-select:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.btn-primary {
    background: #25D366;
}

.btn-primary:hover {
    background: #128C7E;
}


/* Existing styles (unchanged) */
.drop-zone, .dropzone {
    border: 2px dashed #25D366;
    border-radius: 10px;
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.drop-zone:hover, .drop-zone.dz-drag-hover {
    background-color: #e9f7ef;
    border-color: #059669;
}

/* New styles to fix buttons */
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    display: none !important;
}

.dropzone .dz-preview .dz-progress {
    display: none;
}

.dropzone .dz-preview .dz-filename {
    font-size: 1rem;
    color: #495057;
}

/* Style for remove link (if keeping it) */
.dropzone .dz-preview .dz-remove {
    font-size: 0.875rem;
    color: #25D366;
    text-decoration: none;
    transition: color 0.2s ease;
}

.dropzone .dz-preview .dz-remove:hover {
    color: #128C7E;
}

/* Existing checkbox and button styles (unchanged) */
.custom-checkbox {
    appearance: none;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #6b7280;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-checkbox:checked {
    background-color: #059669;
    border-color: #059669;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

.custom-checkbox:hover {
    border-color: #059669;
}

.btn-success {
    background: #25D366;
}

.btn-success:hover {
    background: #128C7E;
}

.dz-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    width: 70px;  !important;
    margin: 0 auto;
}

.dz-image img {
    max-width: 60px;
    max-height: 60px;
    object-fit: contain;
}


@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.animate-bounce-slow {
  animation: bounce-slow 2s infinite;
}

ul, ol {
    list-style: disc;  /* or decimal for <ol> */
    padding-left: 20px;
}
