.background-remove-hero {
  min-height: 90vh; /* full screen ka almost 90% */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  font-family: 'Poppins', sans-serif;
}

.content-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.background-remove-hero h1 {
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #000;
  line-height: 1.3;
}

.background-remove-hero h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
  line-height: 1.5;
}

.background-remove-hero p {
  font-size: 1rem;
  font-weight: 400;
  color: #333;
  line-height: 1.6;
}

.background-remove-hero .highlight {
  color: #FF7A00;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .background-remove-hero h1 {
    font-size: 2rem;
  }

  .background-remove-hero h2 {
    font-size: 1.4rem;
  }

  .background-remove-hero p {
    font-size: 0.95rem;
  }
}


/* uload section */

.upload-section {
  width: 100%;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

.upload-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px; /* Gap badhaya buttons aur box ke beech */
  flex-wrap: wrap;
  max-width: 1200px;
  width: 100%;
}

.upload-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.upload-icon {
  width: 80px;
  height: auto;
}

.choose-photo-btn,
.download-btn,
.share-btn {
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Different button colors */
.choose-photo-btn {
  background-color: #FF7A00;
  color: #fff;
}

.download-btn {
  background-color: #73E000;
  color: #000;
}

.share-btn {
  background-color: #007BFF;
  color: #fff;
}

/* Hover Effects */
.choose-photo-btn:hover {
  background-color: #e06600;
}

.download-btn:hover {
  background-color: #5cbc00;
}

.share-btn:hover {
  background-color: #0062cc;
}

.upload-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-info-box {
  background-color: #000;
  color: #fff;
  padding: 60px 30px; /* Box ko aur lamba kiya */
  border-radius: 20px;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.6;
  max-width: 270px;
  height: 420px; /* Height fixed kiya portrait style ke liye */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .upload-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .upload-right {
    order: -2; /* Black box sabse upar */
    margin-bottom: 20px;
  }

  .upload-left {
    order: -1; /* Buttons neeche */
    gap: 15px;
  }
}

