/* Hero Section Styles */
.hero-section {
  margin-top: 40px;
  margin-bottom: 40px;
}

.hero-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 30px;
  margin-top: 70px;
}

.hero-text-content {
  display: flex;
  flex: 1;
  justify-content: space-between;
  align-items: center;
}

.hero-main-heading {
  line-height: 70px;
  margin-bottom: 30px;
  max-width: 440px;
}

.hero-description {
  max-width: 700px;
  text-align: right;
}

.image-container {
}

.workers-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 50%, #e67e22 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.worker {
  width: 80px;
  height: 120px;
  margin: 0 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hard-hat {
  width: 50px;
  height: 35px;
  background: #ecf0f1;
  border-radius: 25px 25px 5px 5px;
  margin-bottom: 5px;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hard-hat::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 45px;
  height: 8px;
  background: #bdc3c7;
  border-radius: 10px;
}

.face {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 5px;
}

.worker:nth-child(1) .face {
  background: #8b4513;
}

.worker:nth-child(2) .face {
  background: #deb887;
}

.worker:nth-child(3) .face {
  background: #d2b48c;
}

.safety-vest {
  width: 55px;
  height: 35px;
  background: #e67e22;
  border-radius: 5px;
  position: relative;
}

.safety-vest::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  height: 4px;
  background: #f1c40f;
  border-radius: 2px;
}

.safety-vest::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 3px;
  right: 3px;
  height: 4px;
  background: #f1c40f;
  border-radius: 2px;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="%23334155" opacity="0.8"/><circle cx="20" cy="20" r="2" fill="%23fbbf24" opacity="0.3"/><circle cx="80" cy="30" r="1.5" fill="%23fbbf24" opacity="0.4"/><circle cx="60" cy="70" r="1" fill="%23fbbf24" opacity="0.2"/></svg>');
  opacity: 0.3;
}

/* Job Vacancies Section Styles */
.vacancies-container {
  margin-top: 140px;
}

.vacancies-header {
  font-size: 70px;
  font-weight: 700;
  margin-bottom: 96px;
  text-align: left;
}

.intro-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
  align-items: start;
}
.intro-left {
  max-width: 460px;
}
.intro-left h2 {
  margin-bottom: 20px;
  max-width: 460px;
}

.intro-right {
  line-height: 20px;
}

.intro-right p {
  margin-bottom: 15px;
  line-height: 22px;
}

.email-link {
  color: #3498db;
  text-decoration: none;
}

.email-link:hover {
  text-decoration: underline;
}

.jobs-section {
  margin-bottom: 60px;
}

.job-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.job-item:hover {
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.job-header {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.job-title {
  font-size: 22px;
  font-weight: 600;
}
.job-item.active {
  box-shadow: none;
}
.job-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  border: 2px solid #93d500;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
.jobs-section-bg {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(137, 138, 141, 0.1) 98.65%
  );
  padding-bottom: 200px;
}
.job-item.active .job-toggle {
  display: flex;
}
.job-item.active .read-more-btn {
  display: none;
}
.job-toggle::before {
  content: "+";
  color: #93d500;
  font-size: 40px;

  transition: transform 0.3s ease;
}
.read-more-btn.job-toggle::before {
  content: "";
}

.job-item.active .job-toggle::before {
  transform: rotate(45deg);
}

.job-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.job-item.active .job-content {
  max-height: 1000px;
  transition: max-height 0.5s ease-in;
}
.job-item.active .job-header {
  padding: 25px 0px;
}
.job-description {
  padding: 0 0px 48px 0px;
  font-size: 0.95rem;
  line-height: 22px;
  max-width: 910px;
}

.application-form {
  padding: 60px;
  background: #ededee;
  border-radius: 20px;
}

.form-title {
  margin-bottom: 20px;
  margin-top: 40px;
}

.form-subtitle {
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  color: #535353;
  margin-bottom: 6px;
  font-size: 16px;
}

.form-input {
  padding: 17px 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 16px;
  color: #808080;
  transition: border-color 0.3s ease;
  background: white;
}
.file-upload-group {
  margin-top: 40px;
  margin-bottom: 40px;
}

.form-input:focus {
  outline: none;
  border-color: #93d500;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: inherit;
}

.file-upload {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-button {
  padding: 12px 20px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.file-button:hover {
  background: #e9ecef;
}

.submit-button {
  color: #000;
  border: 1px solid #000;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 10px;
  background: #ededee;
}

.submit-button:hover {
  background: #93d500;
  color: white;
  border-color: #93d500;
}

.job-listing {
  background: white;
  border-radius: 12px;
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.job-listing:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.job-listing-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #2c3e50;
}

.read-more-btn {
  background: none;
  border: none;
  width: 140px;
  color: #000;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.read-more-btn:hover {
  color: #93d500;
}

.read-more-btn::after {
  content: "↓";
  transition: transform 0.3s ease;
  padding-left: 20px;
  font-weight: bold;
}
.image-container img {
  width: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .footer-section {
    margin-top: -63px;
  }
}

@media (max-width: 1000px) {
  .hero-text-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-description {
    text-align: left;
  }
  .image-container img {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-main-heading {
    margin-bottom: 10px;
  }
  .hero-section {
    padding: 40px 20px;
    margin: 20px;
  }

  .hero-content-wrapper {
    flex-direction: column;
    gap: 30px;
    margin-top: 25px;
  }

  .hero-main-heading {
    font-size: 2.5rem;
  }

  .hero-description {
    max-width: 100%;
  }

  .image-container {
    max-width: 100%;
  }

  .intro-section {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 0px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .job-header {
    padding: 20px;
  }

  .job-description,
  .application-form {
    padding: 20px;
  }

  .vacancies-header {
    font-size: 40px;
    margin-bottom: 32px;
  }

  .vacancies-container {
    padding: 0 0px 40px 0px;
    margin-top: 50px;
  }
  .intro-left h2 {
    font-size: 30px;
    margin-bottom: 0px;
  }
  .footer-section {
    margin-top: -40px;
    padding-top: 69px;
  }
  .jobs-section-bg {
    padding-bottom: 100px;
  }
  .job-item.active .job-content {
    max-height: fit-content;
  }
}

@media (max-width: 500px) {
  .hero-main-heading {
    font-size: 40px;
    line-height: 44px;
  }

  .worker {
    width: 60px;
    height: 100px;
    margin: 0 5px;
  }

  .hard-hat {
    width: 35px;
    height: 25px;
  }

  .face {
    width: 30px;
    height: 30px;
  }

  .safety-vest {
    width: 40px;
    height: 25px;
  }
  .footer-section {
    margin-top: -26px;
  }
  .application-form {
    border-radius: 13px;
  }
}
