body { background-color: var(--bg-dark-purple); }

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-dark-purple); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 10px; }

/* --- Banner --- */
.hero-section {
  background:
    linear-gradient(rgba(32, 5, 32, 0.7), rgba(32, 5, 32, 0.9)),
    url("../../images/about-us/team-1.jpeg");
  background-size: cover;
  background-position: center 20%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 85vh;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

@media (max-width: 991px) {
  .hero-section {
    background-attachment: scroll;
  }
}

.accent-text { color: var(--accent); }

.label-accent {
  color: var(--accent-yellow);
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: bold;
}

.line {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
  vertical-align: middle;
  margin-right: 10px;
}

.text-secondary-muted {
  color: var(--text-muted);
}

.icon-box {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(251, 176, 52, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-yellow);
  background: rgba(251, 176, 52, 0.05);
}

.email-link {
  color: #9cdada;
  text-decoration: none;
  font-size: 1.2rem;
}

/* --- What We Look For --- */
.look-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color-page);
}

.look-card {
  border-left: 2px solid var(--accent);
  padding: 30px;
  background: linear-gradient(90deg, rgba(249, 181, 34, 0.05) 0%, transparent 100%);
  height: 100%;
  transition: all 0.4s ease;
}

.look-card:hover {
  background: rgba(249, 181, 34, 0.1);
  transform: translateX(10px);
}

/* --- Hiring Process --- */
.process-section {
  background: var(--bg-dark-purple);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.process-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background-image:
    url("../../../images/external/img-freepik-com-premium-vector-business-teamwork-design-24877-47571-jpg-361c45679a02.webp"),
    radial-gradient(circle, rgba(249, 181, 34, 0.08) 0%, transparent 70%);
  background-size: contain;
  background-right: bottom;
  background-repeat: no-repeat;
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  animation: floatingBG 10s ease-in-out infinite;
}

@keyframes floatingBG {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, -10px) rotate(2deg); }
}

@media (max-width: 768px) {
  .process-section::after {
    width: 300px;
    height: 300px;
    opacity: 0.2;
  }
}

.process-container { position: relative; z-index: 2; }

.process-line {
  position: absolute;
  left: 20px;
  top: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--accent), var(--accent), transparent);
  box-shadow: 0 0 15px rgb(249 181 34);
}

.process-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 80px;
}

.step-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  z-index: 3;
}

.step-marker::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--accent);
  animation: markerPulse 2s infinite;
  z-index: -1;
}

@keyframes markerPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.5); opacity: 0; }
}

.process-item h3 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 15px;
  text-transform: uppercase;
  transition: 0.3s;
}

.process-item:hover h3 {
  color: var(--accent);
  transform: translateX(10px);
}

.process-details {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.process-details li {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: 0.3s;
  backdrop-filter: blur(5px);
}

.process-item:hover .process-details li {
  border-color: rgb(249 181 34);
  color: #fff;
  transform: translateY(-5px);
}

/* --- Featured Jobs --- */
.job-row {
  background: var(--deep-purple-page);
  margin-bottom: 15px;
  padding: 25px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: 0.3s;
}

.job-row:hover { border-color: var(--accent); }

.job-row-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.job-row-link:hover { color: inherit; }

.job-tag {
  font-size: 0.75rem;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 10px;
  margin-right: 10px;
}

/* Life at Innowrap Section */
.life-section {
  background-color: var(--bg-dark-purple);
  padding: 100px 0;
  color: #fff;
  overflow: hidden;
}

.life-header h2 { font-size: 3rem; font-weight: 300; margin-bottom: 10px; }
.life-header p { font-size: 1.1rem; margin-bottom: 50px; }

.life-content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
}

.location-info { flex: 0 0 30%; padding-right: 20px; }

.loc-pin { color: var(--accent); font-size: 2rem; margin-bottom: 15px; }

.location-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
  padding-bottom: 10px;
}

.location-address { line-height: 1.8; font-size: 0.95rem; }

.office-carousel-wrapper { flex: 0 0 70%; position: relative; }

.office-img-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.office-img-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.carousel-nav-buttons {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  color: #fff;
}

.nav-btn:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 991px) {
  .life-content-wrapper { flex-direction: column; }
  .location-info, .office-carousel-wrapper { flex: 0 0 100%; }
  .hero-section { background-position: center 35%; }
}

@media (max-width: 767px) {
  .hero-section {
    min-height: 72vh;
    height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
    background-position: center top;
  }
  .office-img-container img {
    width: 100% !important;
    height: 260px !important;
    min-height: 260px;
    object-fit: cover !important;
    display: block;
    background-color: #140e24;
  }
  .office-carousel-wrapper,
  .life-carousel,
  .life-carousel .owl-stage-outer,
  .life-carousel .owl-stage,
  .life-carousel .owl-item,
  .life-carousel .item {
    width: 100%;
  }
  .life-carousel .item {
    display: block;
  }
  .life-carousel .office-img-container {
    width: 100%;
    min-height: 260px;
    border-radius: 12px;
    overflow: hidden;
  }
}

/* Form Styling (spacing from base.css) */
.form-control, .form-select {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--border-color-page);
  color: white !important;
  border-radius: 0;
}

.form-control:focus, .form-select:focus {
  background-color: transparent;
  border-color: var(--accent-yellow);
  box-shadow: none;
}

.input-group-custom { transition: all 0.3s ease; }
.input-group-custom:focus-within .form-label { color: var(--accent-yellow) !important; }

.input-group-custom input::placeholder,
.input-group-custom textarea::placeholder {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

textarea.form-control {
  border: 1px solid var(--border-color-page);
  border-radius: 15px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
}

.resume-upload-box {
  border: 1px dashed var(--border-color-page);
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}

.resume-upload-box:hover {
  border-color: var(--accent-yellow);
  background: rgba(255, 255, 255, 0.03);
}

.file-input { display: none; }

.file-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
}

.file-label i { color: var(--accent-yellow); }
