/*==========================================
100App Careers
Hero Section
==========================================*/
  :root {
    --primary: #ff7a1a;
    --primary-dark: #ff6200;
    --dark: #101010;
    --dark2: #181818;
    --white: #ffffff;
    --text: #c8c8c8;
    --border: rgba(255, 122, 26, .18);
  }

  /*=========================================
RESET
=========================================*/
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: #fff;
    overflow-x: hidden;
  }

  img {
    max-width: 100%;
    display: block;
  }

  a {
    text-decoration: none;
  }

  ul {
    list-style: none;
  }

  .container,
  .career-container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
  }

  /*=========================================
HEADER
=========================================*/
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
  }

  .logo img {
    height: 52px;
  }

  nav ul {
    display: flex;
    gap: 45px;
    align-items: center;
  }

  nav a {
    color: #fff;
    font-weight: 600;
    transition: .3s;
  }

  nav a:hover {
    color: #ff7a1a;
  }

  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }

  .download-btn {
    background: #ff7a1a;
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
  }

  .download-btn:hover {
    background: #ff6200;
  }

  .menu-toggle {
    display: none;
    border: none;
    background: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
  }

  /* ===========================
   FOOTER
=========================== */
  footer {
    background: #0f0f0f;
    color: #fff;
    padding: 70px 0 25px;
  }

  .footer-content {
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }

  .footer-column h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 22px;
  }

  .footer-column p {
    color: #cfcfcf;
    line-height: 1.8;
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
    margin-bottom: 12px;
  }

  .footer-links a {
    color: #d5d5d5;
    text-decoration: none;
    transition: .3s;
  }

  .footer-links a:hover {
    color: #ff7a1a;
  }

  .footer-logo {
    height: 60px;
    margin-bottom: 20px;
  }

  .social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
  }

  .social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #1d1d1d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
  }

  .social-link:hover {
    background: #ff7a1a;
  }

  .copyright {
    border-top: 1px solid rgba(255, 255, 255, .08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    color: #999;
  }

  .footer-logo {
    height: 70px;
    margin-bottom: 30px;
  }

  .footer-column:first-child p {
    max-width: 320px;
    color: #bfbfbf;
    line-height: 1.9;
  }

  .footer-column h3 {
    position: relative;
    margin-bottom: 28px;
  }

  .footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 45px;
    height: 3px;
    background: #ff7a1a;
    border-radius: 50px;
  }

  .footer-social {
    justify-content: center;
    margin: 45px 0;
    gap: 18px;
  }

  .footer-social a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #1f1f1f;
    font-size: 20px;
  }

  .footer-social a:hover {
    background: #ff7a1a;
    transform: translateY(-5px);
  }

  .copyright {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    color: #999;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 35px 0 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
  }

  .footer-social .social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 18px;
    transition: .3s;
  }

  .footer-social .social-link:hover {
    background: #ff7a1a;
    transform: translateY(-4px);
  }

  .footer-links li a i {
    width: 22px;
    color: #ff7a1a;
  }

  /*=====================================
MOBILE HEADER
=====================================*/
  @media (max-width: 768px) {
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background: #000;
      z-index: 9999;
    }

    .header-content {
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo img {
      height: 42px;
      width: auto;
    }

    nav {
      display: none;
    }

    .download-btn {
      display: none;
    }

    .menu-toggle {
      display: flex;
      width: 42px;
      height: 42px;
      border: none;
      background: #ff7a1a;
      border-radius: 10px;
      color: #fff;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      cursor: pointer;
    }

    body {
      padding-top: 70px;
    }
  }

  .mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: #111;
    padding: 25px;
    transition: .35s;
    z-index: 9998;
    overflow-y: auto;
  }

  .mobile-menu.active {
    left: 0;
  }

  .mobile-menu a {
    display: block;
    padding: 14px 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }

  .mobile-menu a:hover {
    color: #ff7a1a;
  }

  .mobile-download {
    margin-top: 20px;
    background: #ff7a1a;
    color: #fff !important;
    text-align: center;
    padding: 14px;
    border-radius: 10px;
    border: none !important;
  }

  @media(max-width:768px) {
    .career-hero {
      padding-top: 40px;
    }

    .section-tag {
      margin-top: 10px;
    }
  }

  @media(max-width:768px) {
    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 30px;
    }

    .footer-links li a {
      justify-content: center;
    }

    .footer-social {
      margin-top: 25px;
    }
  }

  /*=========================================
MOBILE
=========================================*/
  @media(max-width:768px) {
    footer {
      padding: 60px 0 20px;
    }

    .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      gap: 30px;
    }

    .footer-column {
      text-align: center;
    }

    .footer-column h3:after {
      left: 50%;
      transform: translateX(-50%);
    }

    .footer-logo {
      margin: auto;
      margin-bottom: 20px;
    }

    .footer-column ul li a {
      justify-content: center;
    }

    .footer-social {
      gap: 12px;
    }

    .footer-social a {
      width: 44px;
      height: 44px;
    }

    .copyright {
      font-size: 13px;
      line-height: 1.8;
    }
  }

  /*End head and footer*/
  /*========================*/
  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #111;
    color: #fff;
  }

  /*====================================
CONTACT HERO
====================================*/
  .contact-hero {
    padding: 140px 0 90px;
    background: linear-gradient(135deg, #111, #1d1d1d);
    position: relative;
    overflow: hidden;
    text-align: center;
  }

  .contact-hero h1 {
    font-size: 68px;
    font-weight: 800;
    margin: 25px 0;
  }

  .contact-hero h1 span {
    color: #ff7a1a;
  }

  .contact-hero p {
    max-width: 760px;
    margin: auto;
    color: #cfcfcf;
    line-height: 1.9;
    font-size: 18px;
  }

  .hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 45px;
    flex-wrap: wrap;
  }

  .hero-feature {
    background: #1d1d1d;
    padding: 14px 22px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    border: 1px solid rgba(255, 122, 26, .2);
  }

  .hero-feature i {
    color: #ff7a1a;
    margin-right: 8px;
  }

  /*====================================
CONTACT CARDS
====================================*/
  .contact-info-section {
    padding: 100px 0;
    background: #181818;
  }

  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
  }

  .contact-card {
    background: #222;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .35s;
    border: 1px solid rgba(255, 122, 26, .12);
  }

  .contact-card:hover {
    transform: translateY(-10px);
    border-color: #ff7a1a;
  }

  .contact-icon {
    width: 75px;
    height: 75px;
    margin: auto auto 25px;
    border-radius: 50%;
    background: #ff7a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
  }

  .contact-card h3 {
    margin-bottom: 15px;
    color: #fff;
  }

  .contact-card p {
    color: #cfcfcf;
    line-height: 1.8;
  }

  /*====================================
CONTACT FORM
====================================*/
  .contact-form-section {
    padding: 100px 0;
    background: #111;
  }

  .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
  }

  .contact-left h2 {
    font-size: 48px;
    margin: 20px 0;
  }

  .contact-left h2 span {
    color: #ff7a1a;
  }

  .contact-left p {
    color: #bfbfbf;
    line-height: 1.9;
    margin-bottom: 35px;
  }

  .contact-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #fff;
  }

  .point i {
    color: #ff7a1a;
    font-size: 20px;
  }

  .contact-form-card {
    background: #1d1d1d;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 122, 26, .15);
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-group {
    margin-bottom: 20px;
  }

  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .form-control {
    width: 100%;
    padding: 14px 16px;
    border: none;
    background: #2b2b2b;
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
  }

  .form-control:focus {
    outline: none;
    border: 1px solid #ff7a1a;
  }

  textarea.form-control {
    resize: none;
  }

  .form-check {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    align-items: flex-start;
  }

  .form-check label {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
  }

  .career-btn {
    width: 100%;
    padding: 16px;
    background: #ff7a1a;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
  }

  .career-btn:hover {
    background: #ff6200;
  }

  /*====================================
MAP
====================================*/
  .map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
  }

  @media(max-width:768px) {
    .contact-wrapper {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .form-row {
      grid-template-columns: 1fr;
    }

    .contact-left h2 {
      font-size: 34px;
    }

    .contact-form-card {
      padding: 25px;
    }

    .map-section iframe {
      height: 320px;
    }
  }

  /*====================================
SUPPORT
====================================*/
  .support-section {
    padding: 100px 0;
    background: #181818;
  }

  .support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
  }

  .support-card {
    background: #222;
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    transition: .3s;
    border: 1px solid rgba(255, 122, 26, .15);
  }

  .support-card:hover {
    transform: translateY(-8px);
    border-color: #ff7a1a;
  }

  .support-card i {
    font-size: 40px;
    color: #ff7a1a;
    margin-bottom: 20px;
  }

  .support-card h3 {
    margin-bottom: 15px;
  }

  .support-card p {
    color: #bbb;
    line-height: 1.8;
  }

  /*====================================
FAQ
====================================*/
  .contact-faq {
    padding: 100px 0;
    background: #111;
  }

  .faq-list {
    max-width: 900px;
    margin: 60px auto 0;
  }

  .faq-item {
    background: #222;
    padding: 30px;
    border-radius: 18px;
    margin-bottom: 20px;
    border-left: 4px solid #ff7a1a;
  }

  .faq-item h3 {
    margin-bottom: 15px;
  }

  .faq-item p {
    color: #bbb;
    line-height: 1.8;
  }

  /*====================================
CTA
====================================*/
  .contact-cta {
    padding: 100px 0;
    background: #181818;
  }

  .contact-cta-box {
    padding: 70px 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff7a1a, #ff9445);
    text-align: center;
  }

  .contact-cta-box h2 {
    font-size: 50px;
    color: #fff;
    margin: 20px 0;
  }

  .contact-cta-box p {
    max-width: 700px;
    margin: auto;
    color: #fff;
    line-height: 1.9;
  }

  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
  }

  .career-btn.outline {
    background: #fff;
    color: #ff7a1a;
  }

  .career-btn.outline:hover {
    background: #111;
    color: #fff;
  }

  @media(max-width:768px) {
    .support-grid {
      grid-template-columns: 1fr;
    }

    .contact-cta {
      padding: 70px 0;
    }

    .contact-cta-box {
      padding: 45px 25px;
    }

    .contact-cta-box h2 {
      font-size: 34px;
    }

    .cta-buttons {
      flex-direction: column;
    }

    .cta-buttons a {
      width: 100%;
    }
  }
  
  /*====================================
CONTACT INFO MOBILE
====================================*/

@media (max-width:768px){

.contact-info-section{
    padding:60px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    margin-top:35px;
}

.contact-card{
    padding:25px 20px;
    border-radius:18px;
    min-height:auto;
}

.contact-icon{
    width:65px;
    height:65px;
    font-size:24px;
    margin-bottom:18px;
}

.contact-card h3{
    font-size:24px;
    margin-bottom:12px;
    line-height:1.4;
}

.contact-card p{
    font-size:15px;
    line-height:1.8;
    word-break:break-word;
}

}
