main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
main .herosection .search-box{
    width: 100%;
    max-width: 1400px;
        position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
margin-bottom: 50px;
}
main .herosection #Search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  max-width: 600px;
  height: 50px;
  margin: 10px;
  border-radius: 15px;
  padding: 15px 15px 15px 40px;
  border: none;
  font-family: 'handipro';
  background: #24242487 url('https://www.2sidemusic.net/img/search.png') no-repeat 12px center;
  background-size: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.8px);
  -webkit-backdrop-filter: blur(4.8px);
  border: 2px solid #3b3a3a63;
  color: #fff;
  transition: all .3s ease-in-out;
}

main .herosection #Search:hover {
  border: 2px solid #e73c45;
}

main .herosection #Search:focus {
  border: 2px solid #e73c45;
  outline: none;
  color: #fff;

}
main .titletext{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    height: auto;
    text-align: left;
    margin-bottom: 10px;
  margin-top: 25px;

}
main .titletext h4{
    position: relative;
    color: white;
    font-family: 'tusker';
    font-size: clamp(1.5rem,5vw,4rem);
width: 95%;
font-weight: 200;

}
main .herotitletext{
    font-size: clamp(3rem,5vw,8rem);
    font-family: 'tusker';
    color: white;
    margin-top: 100px;
padding: 10px;
border-top: 1px solid #e73c45;
border-bottom: 1px solid #e73c45;
width: 95%;
max-width: 1840px;
text-align: center;
user-select: none;
    font-weight: 100;

}
main .title{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin-top: 50px;
    text-align: left;

}
main .title h4{
    position: relative;
    color: white;
    font-family: 'tusker';
    font-size: clamp(1rem,5vw,4rem);
width: 90%;

}
main .herosection{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1440px;
    height: auto;
    margin-top: 50px;
}
main .herosection .herobc{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 95%;
}
main .herosection ul{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
  flex-wrap: wrap;
  gap: 25px;
  list-style: none;
  padding: 0;
}

main .herosection ul li {
  position: relative;
  width: 100%;
  border-radius: 15px;
  background: rgba(199, 199, 199, 0.08); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  color: white;
  padding: 25px;
  gap: 10px;
}
main .herosection ul li h4{
font-size: clamp(0.8rem,4vw,1.2rem);
font-family: 'handipro';
}
main .herosection ul li p{
font-size: clamp(0.7rem,3vw,1rem);
font-family: 'musticapro';
}

main .herosection button{
    height: 100%;
    width: 100%;
    background: none;
    border: none;
    border-radius: 10px;
    color: white;
cursor: pointer;
    font-family: 'handipro';
    background-color: #e73c45;
    font-size: 1rem;
    margin-top: 15px;
    height: 50px;
    width: 175px;
    border-radius: 10px;

}
main .herosection button:hover{
    transition: .3s ease;
    opacity: 0.8;
}

.apply-form-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(8, 8, 8, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.apply-form-container {
  background: rgba(199, 199, 199, 0.08); 
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 1024px;
  position: relative;
  color: white;
  font-family: 'handipro';
}

.close-apply-form {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: white;
  cursor: pointer;
  transition: 0.3s ease;
}

.close-apply-form:hover {
  color: #e73c45;
}

.apply-form-container form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.apply-form-container label{
    font-family: 'handipro';
}

.apply-form-container input,
.apply-form-container select,
.apply-form-container textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #555;
  background: #1a1a1a;
  color: white;
  font-family: 'musticapro';
  outline: none;
}
.apply-form-container textarea {
  resize: vertical;
    width: 100%;
  max-width: 100%;
  min-width: 100%;
  height: auto;
  min-height: 150px;
  max-height: 300px;
}
.apply-form-container input:hover,
.apply-form-container select:hover,
.apply-form-container textarea:hover{
      border: 1px solid #e73c45;
transition: all .2s ease-in-out;
      outline: none;
}
.apply-form-container input:focus,
.apply-form-container select:focus,
.apply-form-container textarea:focus{
      border: 1px solid #e73c45;

}
.apply-form-container button[type="submit"] {
  background-color: #e73c45;
  border: none;
  border-radius: 10px;
  padding: 12px;
  color: white;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: all .3s ease;
}

.apply-form-container button[type="submit"]:hover {
  opacity: 0.8;
  background-color: #616161;
}

