.job_sqr{
    padding-bottom: 4rem;
}
.accordion {
  width: 100%;
  margin-bottom: 1rem;
  color: white;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 32px;
  background: linear-gradient(90deg, rgba(89, 45, 160, 0.3) 0%, rgba(43, 22, 80, 0.3) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
              0 0 25px rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  cursor: pointer;
  position: relative;
}

.job-item {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 4px;
}

.label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.value {
  font-size: 14px;
  font-weight: 400;
  line-height: 27px;
  color: #ffffff;
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  background: rgba(30, 20, 70, 0.4);
  border-radius: 0 0 16px 16px;
  padding: 0px 32px;
  line-height: 1.6;
  transition: transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
}

.accordion.active .accordion-content {
  max-height: 100%;
  overflow-y: auto;
  padding: 20px 32px 32px 20px;
}

.accordion.active .arrow {
  transform: rotate(180deg);
}
.accordion-content h5{
  font-size: 18px;
  line-height: 27px;
  font-family: 'Inter-reg', sans-serif
}
.accordion-content p{
    margin-bottom: 0.5rem;
    font-size: 13px;
    line-height: 24px;
    font-family: 'Inter-reg', sans-serif;
    color: rgba(255, 255, 255, 0.6);
}
.accordion-content h6{
    font-size: 13px;
    line-height: 24px;
    font-family: 'Inter-reg', sans-serif
}
.contact_sqr{
    padding-bottom: 4rem;
}
.contact-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
  margin: 0 auto;
  padding: 18px 32px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(89, 45, 160, 0.3) 0%, rgba(43, 22, 80, 0.3) 100%);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.05),
              0 0 25px rgba(0, 0, 0, 0.4);
  color: white;
}

.contact-card form{
    width: 100%;
}
.contact-card input[type='text'],
.contact-card input[type='email'],
.contact-card textarea {
  width: 100%;
  padding: 5px 10px;
  margin-bottom: 12px;
  border: 1px solid #FFFFFF99;
  border-radius: 8px;
  background: transparent;
  /* backdrop-filter: blur(30px); */
  color: white;
  font-size: 13px;
  line-height: 20px;
}

.contact-card textarea {
  height: 100px;
}
.attach{
      display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
}
.modal-content.contact-card{
  width: 90%;
}
@media (max-width: 767px) {
    .contact-card{
        width: 100%;
    }
    .f-col{
      flex-direction: column;
    }
    .job-item{
      display: none;
    }
    .job-item:nth-of-type(2){
      display: flex;
    }
}

/* Hide the real file input */
.custom-file-upload input[type="file"] {
  display: none;
}

/* Gradient button styling */
.gradient-btn {
  display: inline-block;
  /* background: linear-gradient(90deg, #2F57EF 0%, #A54EFF 100%); */
  color: #888;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: none;
  box-shadow: 0px 4px 20px rgba(63, 74, 175, 0.4); */
      border: 1px solid #3f4aaf66;
    font-size: 13px;
    line-height: 20px;
}
.career_submit, .open_popup{
  background: linear-gradient(90deg, #2F57EF 0%, #A54EFF 100%) !important;
      margin-bottom: 1rem;
}
.modal-content.contact-card .form-label {
    margin-bottom: 0.5rem;
    font-size: 13px;
    color: #777;
    line-height: 20px;
}
.gradient-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Filename text */
#file-name {
  margin-left: 10px;
  color: #ccc;
  font-size: 0.95rem;
}
