.contact-form input, .contact-form textarea, .contact-form select {
  margin-top: 15px;
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
  transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.2);
  outline: none;
}
.contact-form input[type=file] {
  display: none;
}
.contact-form .file_btn {
  padding: 0 15px;
  background: #444;
  color: #fff;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  display: inline-block;
  margin-top: 5px;
  transition: background 0.3s ease;
}
.contact-form .file_btn:hover {
  background: #333;
}
.contact-form .phone_number_container {
  margin-top: 15px;
}
.contact-form .phone_number_container .iti {
  width: 100%;
}
.contact-form h5.section-title {
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
  color: #333;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}
.contact-form .form-section {
  background-color: #fafafa;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.contact-form .upload-preview {
  margin-top: 10px;
}
.contact-form .upload-preview .file-upload-box {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  position: relative;
  background: #fff;
}
.contact-form .upload-preview .file-upload-box .file-thumb {
  width: 50px;
  height: 50px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  border: 1px solid #ccc;
  text-align: center;
  line-height: 50px;
  font-size: 35px;
}
.contact-form .upload-preview .file-upload-box .file-info {
  flex: 1;
}
.contact-form .upload-preview .file-upload-box .file-info .file-name {
  font-weight: 500;
  font-size: 14px;
}
.contact-form .upload-preview .file-upload-box .file-info .file-meta {
  font-size: 12px;
  color: #777;
}
.contact-form .upload-preview .file-upload-box .file-info .progress-bar {
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 4px;
  margin-top: 5px;
  overflow: hidden;
}
.contact-form .upload-preview .file-upload-box .file-info .progress-bar span {
  display: block;
  height: 100%;
  width: 0;
  background: #4caf50;
  transition: width 0.3s ease;
}
.contact-form .upload-preview .file-upload-box .remove-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: #ff4d4d;
  font-size: 16px;
}
.contact-form .upload-preview .file-upload-box .remove-btn:hover {
  color: #e60000;
}
.contact-form .error-message {
  font-size: 13px;
  margin-top: 5px;
  color: #dc3545;
}
.contact-form .btn-one {
  background-color: #c89c40;
  padding: 8px 50px;
  border-radius: 6px;
  font-weight: bold;
  color: white;
  text-transform: uppercase;
  border: none;
  transition: all 0.3s;
}
.contact-form .btn-one:hover {
  background-color: #a97e2d;
}
.contact-form .btn-one .txt {
  font-size: 15px;
  letter-spacing: 1px;
}

#loadingOverlay {
  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;
  flex-direction: column;
  z-index: 10001;
  color: #fff;
}
#loadingOverlay .spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #fff;
  border-top: 6px solid #f5b342;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 10px;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
  .contact-form .form-section {
    padding: 15px;
  }
  .contact-form input, .contact-form .file_btn {
    font-size: 13px;
  }
  .contact-form h5.section-title {
    font-size: 16px;
  }
  .contact-form .btn-one {
    width: 100%;
    font-size: 14px;
  }
  .contact-form .btn-one span {
    display: inline-block;
  }
}/*# sourceMappingURL=style.css.map */