/* about us */
.hire-banner{
    position: relative;
    background: rgba(17, 17, 17, 0.2);
    /* height: 800px; */
    overflow: hidden;
    padding-top: 120px;
}

.hire-banner::after{
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(17, 17, 17, 0.2);
    position: absolute;
    backdrop-filter: blur(400px);
    z-index: -1;
}

.hire-circle1{
    width: 250px;
    height: 250px;
    background-color: #931EE2;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: 100px;
    z-index: -2;
}

.hire-circle2{
    width: 250px;
    height: 250px;
    background-color: #931EE2;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.hire-banner .hire-circle1{
    animation: flow 10s ease-in-out infinite;
}

@keyframes flow {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(100px) ; 
    }
    100% {
      transform: translateX(0) ; 
    }
}

.hire-banner .hire-circle2{
    animation: flow2 10s ease-in-out infinite;
}

@keyframes flow {
    0% {
      transform: translateX(0); 
    }
    50% {
      transform: translateX(-200px) ; 
    }
    100% {
      transform: translateX(0) ; 
    }
}

@keyframes flow2 {
    0% {
      transform: translateY(0); 
    }
    50% {
      transform: translateY(400px) ; 
    }
    100% {
      transform: translateY(0) ; 
    }
}


.hire-banner-card{
    padding: 100px 50px;
    /* min-height: 330px; */
    background-color: #7c7c7c29;
    border-radius: 30px;
    border: 1px dashed #7c7c7c;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 100%;
}

.hire-banner-card h1{
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    width: 70%;
    margin: auto;
}

.hire-banner-card p{
    text-align: center;
    width: 50%;
    margin: 30px auto 50px;
  
}

.hire-email-container {
  display: flex;
    gap: auto;
  align-items: center;
  background: #111111;
  border-radius: 9999px;
  padding: 10px 10px 10px 30px;
  /* max-width: 500px; */
}

.email-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: white;
  font-size: 16px;
  padding: 8px;
  font-family: inherit;
}

.email-input::placeholder {
  color: white;
  opacity: 0.8;
}

.email-button {
  background: #6b21a8;
  color: white;
  border: none;
  padding: 16px 35px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
  font-family: inherit;
  white-space: nowrap;
  width: 100%;
}

.email-button:hover {
  background: #5a1a94;
}

.hire-why-choose {
    background-color: #1e1e1e;
}

.dot_card {
    padding: 40px 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
}

.hire-why-choose .hire-banner-card{
    padding: 40px 30px;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 30px;
}

.hire-why-choose .hire-banner-card p {
    text-align: start;
    width: 100%;
    margin: 0px;
}

.engagement-highlights .hire-banner-card {
  background: #6b21a8;
  align-items: end ;
  height: 350px;
  padding: 50px;
  justify-content: end;
}

.hire-cta-section{
     background-color: #1e1e1e;
}

.highlight {
  display: inline-block;
  border: 2px solid #A12DFF;
  padding: 8px 16px;
  border-radius: 10px;
  color: white;
}

.hire-cta-section .text-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hire-abt img{
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 90%;
    border-radius: 30px;
}


/* responsive */
@media (max-width: 1024px) {
   .hire-banner-card {
    padding: 50px 50px;
   }

    .hire-banner-card h1 {
     width: 90%;
    }

    .hire-banner-card p {
      width: 98%;
    }
}

@media (max-width: 768px){
 .hire-banner-card h1 {
    width: 100%;
 }

 .hire-email-container {
    gap: 50px;
    border-radius: 30px;
    padding: 10px 10px 10px 10px;
    /* max-width: 500px; */
    flex-direction: column;
    width: 100%;
}
.engagement-highlights .hire-banner-card {
    height: 250px;
    padding: 30px;
}
.email-input {
  width: 100%;
}
} 

@media (max-width: 430px){
.hire-cta-section .text-content {
    flex-direction: column;
    align-items: start;
    gap: 30px;
}
}