/* -----------------------------------------------------
   Apple-Style Clean White Design (excluding top2/footer)
------------------------------------------------------*/

/* Base Reset (safe – does NOT affect header/footer class blocks) */
body {
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display",
                 "SF Pro Text", Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    margin: 0;
    color: #111;
    -webkit-font-smoothing: antialiased;
}




/*--------------------------------------------
  Page Heading
---------------------------------------------*/
.main_heading h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #111;
    margin: 20px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

/*--------------------------------------------
  Careers Section Layout
---------------------------------------------*/
.careers {
    background: #fafafa;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #e7e7e7;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

/* Two-column layout */
.col_sm9, .col_sm99 {
    float: left;
}

.col_sm9 {
    width: 58%;
}

.col_sm99 {
    width: 38%;
    text-align: center;
}

.col_sm99 img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Responsive */
@media(max-width: 900px) {
    .col_sm9, .col_sm99 {
        width: 100%;
    }
    .col_sm99 {
        margin-top: 25px;
    }
}

/*--------------------------------------------
  Form Styling — Apple Minimal
---------------------------------------------*/

.careers form {
    width: 100%;
}

fieldset2 {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

fieldset2 input,
fieldset2 textarea {
    flex: 1;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="file"],
textarea {
    padding: 14px 16px;
    border: 1px solid #d3d3d3;
    border-radius: 14px;
    width: 100%;
    font-size: 15px;
    color: #111;
    background: #fff;
    outline: none;
    transition: all .25s ease;
}

input[type="file"] {
    padding: 6px;
    background: #f7f7f7;
    border-radius: 12px;
}

/* Hover & focus */
input:focus,
textarea:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0,122,255,0.15);
}

/* Textarea */
textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

/* Label Text */
.uply {
    font-size: 15px;
    color: #333;
    margin-top: 10px;
}

/*--------------------------------------------
  Button — Apple Style
---------------------------------------------*/
button#contact-submit {
    background: #111;
    color: #fff;
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    letter-spacing: 0.3px;
    transition: all .25s ease;
}

button#contact-submit:hover {
    background: #000;
    transform: translateY(-1px);
}

/*--------------------------------------------
  Recaptcha alignment
---------------------------------------------*/
.g-recaptcha {
    transform: scale(0.94);
    transform-origin: left;
}

/*--------------------------------------------
  Clear Floats (does NOT affect top2/footer)
---------------------------------------------*/
.clear {
    clear: both;
}
@media (max-width: 600px) {

  fieldset2 {
    flex-direction: column;
    gap: 12px;
  }

}
@media (max-width: 600px) {

  textarea {
    width: 100% !important;
    min-height: 140px;
  }

}
@media (max-width: 600px) {

  .uply {
    display: block;
    text-align: left;
    margin-bottom: 6px;
    margin-top: 0;
    font-size: 14px;
  }

}
@media (max-width: 600px) {

  input[type="file"] {
    padding: 10px;
    border-radius: 14px;
  }

}
/* =========================================
   CAREERS – HIDE IMAGE ON MOBILE
   ========================================= */

@media (max-width: 600px) {
  .col_sm99 {
    display: none !important;
  }

  .col_sm9 {
    width: 100% !important;
  }
}
