

  html, body {
  margin: 0;
  padding: 0;
  font-family: assistant, sans-serif;
  /*background: linear-gradient(to right, #400080, #560981);*/
  background: #000;
  color: #fff;
}

* {
  box-sizing: border-box;
}

.main {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* Top section styles */
.top {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 40px;
}

.logo img {
  width: 130px;
}

.rightside {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 20px;
}

.lock {
  overflow: hidden; /* Contains the scaled image */
  transform-style: preserve-3d; /* Better 3D rendering */
  perspective: 1000px; /* Adds depth to the scaling */
}

.lock img {
  width: 186px;
  margin-right: 80px;
  transition: transform 0.3s ease;
  transform-origin: center center; /* Scale from the center */
}

.lock img:hover {
  cursor: pointer;
  transform: scale(1.1); /* Scale to 110% on hover */
  z-index: 1; /* Ensure it stays on top of other elements */
}

.title {
  display: flex;
  flex-direction: column;
  color: #fff;
  margin-top: 50px;
}

.title-main {
  font-size: 36px;
}

.title-large {
  font-size: 56px;
  line-height: 65px;
  font-weight: bold;
}

.highlight {
  color: #35A8DF;
}

.cta-button {
  width: 150px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  margin-top: 20px;
  font-size: 20px;
  border-radius: 25px;
  background-color: #35A8DF;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}


.cta-button:hover {
  box-shadow: 0 0 5px 2px rgba(53, 168, 223, 0.4);
}

/* Separator styles */
.seperator {
  background-color: #3EA8E4;
  height: 2px;
  margin-top: 40px;
}

/* Middle section styles */
.middle_title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}

.middle-secondary-title {
  font-weight: 700;
  margin-top: 40px;
}

.feature-container {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-right:40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex: 1;
  min-width: 200px;
}

.feature-icon img {
  width: 40px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 500;
}

/* Job cards section */
.job-cards-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-right: 70px;
  margin-left: 70px;
  flex-wrap: wrap;
}

.arrow-left {
  position: absolute;
  left: -80px;
  top: 90px;
}

.arrow-left img {
  width: 70px;
  animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: rotate(0deg) translateY(0) translateX(0);
  }
  50% {
    transform: rotate(-5deg) translateY(10px) translateX(10px);
  }
}

.job-card {
  position: relative;
  flex: 1;
  min-width: 280px;
  height: 180px;
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.job-card-header {
  display: flex;
  flex-direction: row;
  height: 58px;
  width: 100%;
}

.job-icon-container {
  background-color: #333333;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  border-bottom-left-radius: 0px;
}

.job-icon-inner {
  background-color: #000000;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 15px;
  height: 58px;
  width: 58px;
}

.job-icon {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background-color: #35A8DF;
  padding-top: 13px;
  box-sizing: border-box;
}

.job-icon-circle {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: 4px solid #000;
  margin-right: 13px;
}

.job-title {
  font-size: 22px;
  font-weight: 500;
  padding-right: 15px;
  padding-top: 5px;
  background-color: #333333;
  border-radius: 15px;
  border-bottom-right-radius: 0px;
  height: 58px;
  width: 100%;
  border-bottom-left-radius: 0px;
}

.job-subtitle {
  font-size: 16px;
  color: #fff;
}

.job-card-content {
  border-radius: 15px;
  background-color: #333333;
  flex: 1;
  border-top-left-radius: 0px;
  padding-left: 20px;
  box-sizing: border-box;
}

.job-note {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 50px;
  margin-right: 70px;
  margin-left: 70px;
}

/* Join section */
.join-section {
  position: relative;
  flex: 1;
  border-radius:15px;
  height: auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  margin-right: 70px;
  margin-left: 70px;
  transition: all 0.3s ease;
}

/* Highlight effect for the join section */
.highlight-section {
  
}

.highlight-section .job-icon, .highlight-section .join-title, .highlight-section .join-content {
  animation: pulse 0.5s infinite alternate;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 5px 2px rgba(53, 168, 223, 0.4);
  }
  100% {
    box-shadow: 0 0 25px 10px rgba(53, 168, 223, 0.8);
  }
}

.join-header {
  display: flex;
  flex-direction: row;
  height: 58px;
  width: 100%;
}

.join-icon-container {
  background-color: #35A8DF;
  width: 58px;
  height: 58px;
  border-radius: 15px;
  border-bottom-left-radius: 0px;
}

.join-title {
  letter-spacing: 1px;
  font-size: 26px;
  font-weight: bold;
  padding-top: 5px;
  padding-right: 15px;
  line-height: 40px;
  background-color: #35A8DF;
  border-radius: 15px;
  border-bottom-right-radius: 0px;
  height: 58px;
  width: 100%;
  border-bottom-left-radius: 0px;
}

.join-content {
  border-radius: 15px;
  background-color: #35A8DF;
  flex: 1;
  border-top-left-radius: 0px;
  padding-left: 20px;
  box-sizing: border-box;
}

.form-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  flex: 1;
  padding: 30px;
  flex-wrap: wrap;
}

.form-container > div {
  flex: 1;
  min-width: 200px;
  margin-bottom: 15px;
}

.form-input {
 font-family:assistant,sans-serif; width: 100%;
  padding: 0px 10px;
  display: block;
  border: none;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
}

.file-upload-button {
  background: #fff;
  padding: 0px 10px 0px 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
  line-height: 40px;
  height: 40px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}

.upload-icon {
  vertical-align: middle;
  width: 20px;
}

.file-label {
  color: #888;
  font-family: assistant, sans-serif;
}

.hidden-input {
  display: none;
}

.submit-button {
  display: block;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  padding: 0px 40px;
  height: 40px;
  line-height: 40px;
  background-color: #003B73;
  font-weight: bold;
  color: #fff;
  min-width: 120px;
  font-family:'assistant', sans-serif;
}

.disclaimer {
  margin-top: 20px;
  margin-bottom: 40px;
  margin-right: 70px;
  margin-left: 170px;
  font-size: 14px;
}

input::placeholder {
  font-family: assistant, sans-serif;
  color: #888;
}

button:hover {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}

/* Form validation styles */
.input-error {
  border: 1px solid #ff0000 !important;
}

.form-error {
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: bold;
}

.file-upload-button {
  position: relative;
  overflow: hidden;
}

.hidden-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  display: block;
}

/* Media Queries for Responsive Design */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .job-cards-container,
  .join-section,
  .job-note,
  .disclaimer {
    margin-right: 40px;
    margin-left: 40px;
  }
  
  .arrow-left {
    display: none;
  }

  .feature-container {
    justify-content: space-around;  
    margin-right:20px;
  }

  .feature-item {
    flex:none;
    min-width:170px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .title-large {
    font-size: 42px;
    line-height: 50px;
  }
  
  .title-main {
    font-size: 30px;
  }
  
  .middle_title {
    font-size: 30px;
  }
  
  .job-card {
    min-width: 45%;
  }
  
  .disclaimer {
    margin-left: 40px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .top {
    flex-direction: column;
    align-items: center;
  }
  
  .rightside {
    flex-direction: column;
    align-items: center;
  }
  
  .lock img {
    margin-right: 0;
    margin-top: 20px;
  }
  
  .title {
    text-align: center;
    margin-top: 20px;
  }
  
  .cta-button {
    margin: 20px auto;
  }
  
  .feature-container {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .feature-item {
    min-width: 45%;
    flex: 0 0 calc(50% - 10px);
    margin-bottom: 15px;
  }
  
  .join-content {
    padding-left: 0px;
  }

  .job-cards-container {
    flex-direction: column;
    margin-right: 20px;
    margin-left: 20px;
  }
  
  .job-card {
    width: 100%;
  }
  
  .job-note,
  .join-section,
  .disclaimer {
    margin-right: 20px;
    margin-left: 20px;
  }
  
  .form-container {
    flex-direction: column;
    padding: 20px;
  }
  
  .submit-button {
    width: 100%;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

	.file-label {
	  max-width:55vw;
	  text-overflow:ellipsis;
	  white-space:nowrap;
	  overflow:hidden;
	  box-sizing:border-box;
	}
	
  .top {
    margin-top: 10px;
  }

  .job-title.first {
    padding-top:15px;
  }

  .job-title.third {
    padding-top:15px;
  }
  

  .title-large {
    font-size: 32px;
    line-height: 38px;
  }
  
  .title-main {
    font-size: 24px;
  }
  
  .middle_title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  
  .job-title {
    font-size: 20px;
    font-weight:bold;
  }
  
  .join-title {
    font-size: 22px;
  }

  .job-note {
    margin-top: 0px;
    margin-bottom:30px;
  }
}

/* Very small devices (small phones, less than 400px) */
@media (max-width: 403px) {

	

  .job-title.third {
    padding-top:5px;
  }

  .rightside {
    gap: 0px;
  }

  .feature-container {
    flex-direction: column;
    margin-right:0px;
  }
  
  
  .feature-item {
    min-width: 100%;
    flex: 0 0 100%;
    padding-right:20px;
  }
  
  .feature-icon img {
	  width:45px;
  }
  
  .middle-secondary-title {
 
  margin-top: 20px;
}

  .feature-text {
	font-size:18px;
    display:block;
  }
  .feature-text div.merge {
    display:inline;
  }
}
