* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #f5f6fa;
  color: #222;
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: white;
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #222;
}

.logo-icon {
  background: #f05423;
  color: white;
  padding: 6px 10px;
  border-radius: 50%;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 600;
  font-size: 14px;
}

.nav-links a:hover {
  color: #f05423;
}

.btn-nav {
  background: #f05423;
  color: white;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
}

.btn-nav:hover {
  background: #d8471d;
}

/* MAIN CONTAINER */
.container {
  max-width: 1050px;
  margin: auto;
  padding: 30px 15px;
}

.page-header {
  text-align: center;
  margin-bottom: 30px;
}

.page-header h1 {
  font-size: 34px;
  font-weight: 800;
  color: #1e2b44;
}

.page-header p {
  margin-top: 10px;
  color: #666;
  font-size: 14px;
}

/* UPLOAD SECTION */

/* illustration */
.illustration {
  flex: 1;
  display: flex;
  justify-content: center;
}

.illustration img {
  width: 100%;
  max-width: 300px;
}
/* CAREER SECTION */
.career-section {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  align-items: stretch;
}

.career-video,
.career-ad {
  flex: 1;
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0px 6px 25px rgba(0,0,0,0.08);
}

.career-video h2 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #1e2b44;
}

.career-video p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 14px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.career-ad h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.career-ad p {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

.ad-box {
  border: 2px dashed #f05423;
  border-radius: 14px;
  padding: 40px 15px;
  text-align: center;
  font-weight: 700;
  color: #f05423;
  background: #fff5f0;
}

/* Responsive */
@media(max-width: 900px) {
  .career-section {
    flex-direction: column;
  }
}

/* OR divider */
.or-divider {
  text-align: center;
  margin: 25px 0;
  position: relative;
}

.or-divider span {
  background: #f5f6fa;
  padding: 0 15px;
  font-weight: 800;
  color: #555;
}

.or-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ddd;
  z-index: -1;
}

/* manual button */
.manual-btn-box {
  text-align: center;
  margin-bottom: 25px;
}

.manual-btn {
  background: #f05423;
  color: white;
  border: none;
  padding: 14px 30px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.manual-btn:hover {
  background: #d8471d;
}

/* FORM CARD */
.form-card {
  background: white;
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0px 8px 30px rgba(0,0,0,0.08);
}

.section-title {
  font-size: 18px;
  font-weight: 800;
  margin: 15px 0;
  color: #1e2b44;
}

/* GRID */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 13px;
  color: #444;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  background: #f8f8f8;
  font-size: 14px;
}

.form-group textarea {
  resize: none;
  height: 100px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #f05423;
  background: white;
}

.form-group.full {
  grid-column: span 2;
}

/* save button */
.save-box {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.save-btn {
  background: #f05423;
  color: white;
  border: none;
  padding: 14px 45px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0px 6px 18px rgba(240, 84, 35, 0.35);
}

.save-btn:hover {
  background: #d8471d;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .upload-section {
    flex-direction: column;
    text-align: center;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.repeat-box {
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 15px;
  background: #fcfcfc;
}

.add-more-btn {
  background: white;
  border: 2px dashed #f05423;
  color: #f05423;
  font-weight: 800;
  padding: 12px;
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  margin-bottom: 25px;
  transition: 0.2s ease;
}

.add-more-btn:hover {
  background: #fff0ea;
}

.repeat-box {
  position: relative;
}

.delete-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff4d4d;
  color: white;
  border: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  font-size: 12px;
}

.delete-btn:hover {
  background: #d93636;
}

.progress-wrapper{
  background:white;
  padding:18px;
  border-radius:14px;
  margin-bottom:20px;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
}

.progress-header{
  display:flex;
  justify-content:space-between;
  font-weight:700;
  margin-bottom:8px;
}

.progress-bar{
  height:10px;
  background:#eee;
  border-radius:20px;
  overflow:hidden;
}

#progressFill{
  height:100%;
  width:0%;
  background:#f05423;
  transition:0.3s ease;
}