.success-section {
  background: linear-gradient(135deg, #008f42, #00a34d);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  width: 80vw;
  margin: 0 auto;
  border-radius: 20px;
}

.success-section .container {
  margin: auto;
}

.success-section .title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.success-section .intro {
  font-size: 1.2rem;
  margin-bottom: 40px;
}

.success-section .success-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.success-section .success-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

.success-section .success-card:hover {
  transform: translateY(-5px);
}

.success-section h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.upload-btn {
  display: flex !important;
  align-items: center !important;
  gap: 8px;
  background-color: #008f43b0;
  color: white !important;
  margin-top: 1em;
  padding: 8px 26px !important;
  border-radius: 2px;
  cursor: pointer;
  font-size: 15px !important;
  font-weight: bold !important;
  border: none;
  outline: none;
  transition: background 0.3s ease;
  width: 30% !important;
}
/* Hidden file input */
.file-input {
  display: none;
}

/* File info display */
.file-info {
  margin-top: 12px;
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  background: #f8f8f8;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  width: fit-content;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-icon {
  font-size: 18px;
}

/* Image preview container */
.preview-container {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Image preview */
.file-preview {
  max-width: 100%;
  height: auto;
  max-height: 220px;
  border-radius: 8px;
  border: 2px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.file-preview:hover {
  transform: scale(1.05);
}


.rider .form-group .upload-btn {
    width: 70% !important;
}


.upload-btn:hover {
  background-color: #008f43;
}

.upload-btn svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.file-input {
  display: none;
}

@media (max-width: 1024px) { 
  .rider .form-group .upload-btn {
    width: 90% !important;
 }
}

@media (max-width: 768px) { 

  .form-group {
    flex-direction: column;
    /* background-color: red; */
  }
  .rider .form-group .upload-btn {
    width: 100% !important;
}
.upload-btn {
 
  width: 60% !important;
}

}
