.overview-section {
  padding-top: 14px;
  padding-bottom: 70px;
}

.apps-section {
  padding-top: 3px;
  padding-bottom: 20px;
}

.steps-section {
  padding: 51px 0px;
}

.how-it-works-section {
  padding: 44px 0px;
}

.team-section {
  padding: 36px 0px 47px;
}

.contact-section {
  padding: 31px 0px 29px;
}

.sec-title .title {
  color: #f47211;
}

.overview-details .text p {
  text-align: justify;
}

.cus-para {
  text-align: justify;
}

.featured-section .content-column .text p {
  text-align: justify;
}

.main-footer {
  background-color: #f37f29;
}

.main-footer .footer-bottom .copyright {
  color: #eff3ff;
}

#clients {
  background-color: #ffeee2;
}

/* form-popup */
/* Overlay background */
.form-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.form-popup {
  background: #fff;
  border-radius: 12px;
  width: 95%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeInUp 0.4s ease;
}

/* Slide animation */
@keyframes fadeInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

/* Disable popup on desktop */
@media (min-width: 768px) {
  .form-popup-overlay {
    display: none !important;
  }
}

/* Popup title */
.popup-title {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: #ff6600; /* You can change this color */
  margin-top: 5px;
  margin-bottom: 15px;
}

/* Reduce height of form fields */
.form-popup input[type="text"],
.form-popup input[type="email"],
.form-popup select,
.form-popup textarea {
  height: 38px !important;
  padding: 6px 10px !important;
  font-size: 14px !important;
  border-radius: 6px !important;
}

.form-popup textarea {
  min-height: 80px !important;
}

/* Adjust spacing between fields */
.form-popup .form-group {
  margin-bottom: 10px !important;
}

/* Reduce button height */
.form-popup .submit-btn {
  padding: 8px 18px !important;
  font-size: 15px !important;
}
