/* :root {
    --primary-color: #1a1e23;
    --secondary-color: #14171b;
    --text-color: #ffffff;
    --accent-color: #2196f3;
} */

.hire-link{
    width: 65%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.11);
border-radius: 16px;
box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
backdrop-filter: blur(7.1px);
-webkit-backdrop-filter: blur(7.1px);
border: 1px solid rgba(255, 255, 255, 0.06);
}

.hire-container {
    max-width: 1280px;
    min-height: 100vh;
    display: flex;
    position: relative;
    overflow: hidden;
    /* padding: 5rem 0rem; */
    margin: 0 auto;
    background: #00000063;
    border-radius: 10px;
     margin-top:4rem;
}

.hire-left-section {
    width: 50%;
    padding: 4rem;
    /* background: var(--primary-color); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hire-right-section {
    width: 50%;
    padding: 4rem;
    /* background: var(--secondary-color); */
    display: flex;
    justify-content: center;
    align-items: center;
}

.hire-wave-divider {
    position: absolute;
    top: 0;
    left: 45%;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    transform: skewX(-10deg);
    z-index: 0;
}

.hire-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 4rem;
}

.hire-content {
    max-width: 500px;
}

/* h1 {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0.7;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
} */

.hire-contact-info {
    margin-bottom: 2rem;
}

.hire-social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hire-social-link {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.hire-social-link:hover {
    opacity: 1;
}

.hire-billing-info {
    opacity: 0.7;
    font-size: 0.9rem;
}

.hire-billing-info h3 {
    margin-bottom: 1rem;
}

.hire-form-container {
    width: 100%;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.hire-form-container h3 {
    margin-bottom: 2rem;
}

.hire-form-group {
    margin-bottom: 1.5rem;
}

input,
select,
textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 4px;
    color: var(--text-color);
    font-size: 1rem;
}
select{
    color:gray;
}
select option {
  margin: 40px;
  background: rgb(10 9 9 / 88%);
  color: gray;
  /* text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4); */
}

textarea {
    height: 150px;
    resize: vertical;
}

.hire-button {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid var(--text-color);
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.hire-button:hover {
    background: var(--text-color);
    color: var(--secondary-color);
}


.hire-content h1 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}


@media (max-width: 768px) {
    .hire-container {
        flex-direction: column;
    }

    .hire-left-section,
    .hire-right-section {
        width: 100%;
        padding: 2rem;
    }

    .hire-wave-divider {
        display: none;
    }

    h2 {
        font-size: 2rem;
    }

    .hire-form-container {
        margin-top: 2rem;
    }
}

.send-btn {
    font-family: inherit;
    font-size: 1rem;
    background: #7C3AED;
    color: white;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 10px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
  
    /* &::after {
      position: absolute;
      content: "";
      top: 15px;
      left: 0;
      right: 0;
      z-index: -1;
      height: 100%;
      width: 100%;
      transform: scale(0.9) translateZ(0);
      filter: blur(10px);
      background: linear-gradient(
        to left,f
        #ff5770,
        #e4428d,
        #c42da8,
        #9e16c3,
        #6501de,
        #9e16c3,
        #c42da8,
        #e4428d,
        #ff5770
      );
      background-size: 200% 200%;
      animation: animateGlow 3s linear infinite;
    } */
  }
  
  .send-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
  }
  
  .send-btn:active {
    transform: scale(0.95);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  }

  @media screen and (min-width: 1920px) {
    .hire-container {
        max-width: 1800px;
        margin: 0 auto;
        /* padding: 7rem 0; */
    }

    .hire-left-section,
    .hire-right-section {
        padding: 6rem;
    }

    .hire-logo {
        font-size: 2rem;
        margin-bottom: 5rem;
    }

    .hire-content {
        max-width: 700px;
    }

    /* Typography scaling */
    .hire-content h1 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }

    .hire-content h2 {
        font-size: 3.5rem;
        margin-bottom: 2.5rem;
    }

    .hire-contact-info {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }

    .hire-social-links {
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .hire-social-link {
        font-size: 1.25rem;
    }

    .hire-billing-info {
        font-size: 1.1rem;
    }

    .hire-billing-info h3 {
        margin-bottom: 1.5rem;
        font-size: 1.4rem;
    }

    /* Form scaling */
    .hire-form-container {
        max-width: 600px;
    }

    .hire-form-container h3 {
        font-size: 1.75rem;
        margin-bottom: 3rem;
    }

    .hire-form-group {
        margin-bottom: 2rem;
    }

    input,
    select,
    textarea {
        padding: 1.25rem;
        font-size: 1.2rem;
        border-radius: 6px;
    }

    textarea {
        height: 200px;
    }

    .send-btn {
        font-size: 1.25rem;
        padding: 0.6rem 1.5rem 0.6rem 0.6rem;
        border-radius: 10px;
    }
}

/* 2560px and above (27 inch monitors) */
@media screen and (min-width: 2560px) {
    .hire-container {
        max-width: 2400px;
        /* padding: 9rem 0; */
    }

    .hire-left-section,
    .hire-right-section {
        padding: 8rem;
    }

    .hire-logo {
        font-size: 2.5rem;
        margin-bottom: 6rem;
    }

    .hire-content {
        max-width: 900px;
    }

    /* Typography scaling */
    .hire-content h1 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .hire-content h2 {
        font-size: 4.5rem;
        margin-bottom: 3rem;
    }

    .hire-contact-info {
        font-size: 1.5rem;
        margin-bottom: 4rem;
    }

    .hire-social-links {
        gap: 2rem;
        margin-bottom: 5rem;
    }

    .hire-social-link {
        font-size: 1.5rem;
    }

    .hire-billing-info {
        font-size: 1.25rem;
    }

    .hire-billing-info h3 {
        margin-bottom: 2rem;
        font-size: 1.6rem;
    }

    /* Form scaling */
    .hire-form-container {
        max-width: 800px;
    }

    .hire-form-container h3 {
        font-size: 2rem;
        margin-bottom: 4rem;
    }

    .hire-form-group {
        margin-bottom: 2.5rem;
    }

    input,
    select,
    textarea {
        padding: 1.5rem;
        font-size: 1.4rem;
        border-radius: 8px;
    }

    textarea {
        height: 250px;
    }

    .send-btn {
        font-size: 1.5rem;
        padding: 0.8rem 2rem 0.8rem 0.8rem;
        border-radius: 10px;
    }

    /* Wave divider adjustment */
    .hire-wave-divider {
        left: 47%;
        transform: skewX(-12deg);
    }
}

/* Shared hover effects and animations */
@media screen and (min-width: 1920px) {
    .send-btn::after {
        border-radius: 10px;
    }

    .hire-form-container input:focus,
    .hire-form-container textarea:focus,
    .hire-form-container select:focus {
        outline: 2px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.15);
    }
}