/*banner-stripe-animation*/
.hero-banner {
      position: relative;
      color: white;
      text-align: center;
      padding: 12rem 0 9rem;
      overflow: hidden;
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: linear-gradient(313deg, rgb(41 160 212 / 80%) 45%, rgb(243 244 246 / 30%) 70%, #f5851f 100%),
      url('..//images/contact-banner.webp') no-repeat center/cover;
      background-size: cover;
      /* Animation only on this layer */
      animation: bgZoom 8s ease-in-out infinite alternate;
      will-change: transform;
      transition: background-size 0.4s;
    }

    .hero-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgb(1 21 90 / 35%); /* overlay for readability */
      z-index: 0;
    }

    .banner-content {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      opacity: 0;
      animation: fadeIn 3s ease forwards;
    }

    /* Zooming background effect */
    @keyframes bgZoom {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(40px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeText {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 767px) {
      .banner-content .hero-title {
        font-size: 2rem;
        padding: 0 1rem;
        margin-bottom: 0rem;
      }
      .banner-content .hero-subtitle {
        font-size: 1rem;
      }
      .banner {
        padding: 90px 15px;
      }
    }
.hero-subtitle {
    font-size: 1rem;
    color: #FFF;
    animation: fadeText 1.5s ease-in-out forwards;
    animation-delay: 0.8s;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0px;
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
}
.hero-title {
    font-size: 5rem;
    font-weight: bold;
    word-spacing: 1rem;
    animation: fadeText 1.5s ease-in-out forwards;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    line-height: 1.1;
    margin-bottom: 2rem;
}
/*hero-banner*/

/*career*/
.career{
  padding: 6rem 0;
  background-image: url(..//images/scale-pattern-dw.png), url(..//images/scale-pattern-uw.png);
  background-repeat: no-repeat;
  background-position: top, bottom;
  background-size: contain;
  position: relative;
}
.openPopupBtn{
  padding: .75rem 1.5rem;
  border-radius: 2rem;
  border: none;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Clash Display', sans-serif;
  word-spacing: .25rem;
  background: #29A0D4;
  transition-duration: .3s;
  color: #FFF;

}
.openPopupBtn:hover, .openPopupBtn:focus, .openPopupBtn:active{
  background: #F5851F;
  transition-duration: .3s;
}
.career-image{
  text-align: center;
}
.career-img {
    height: 20rem;
    object-fit: contain;
    max-width: 100%;
}
/*    .openPopupBtn {
      padding: .75rem 1.5rem;
      border-radius: 2rem;
      border: none;
      outline: none;
      font-size: 1rem;
      font-weight: 600;
      font-family: 'Clash Display', sans-serif;
      background: #29A0D4;
      color: #FFF;
      cursor: pointer;
      margin: 48px auto 0 auto;
      display: block;
      transition: background .3s;
    }
    .openPopupBtn:hover, .openPopupBtn:focus {
      background: #F5851F;
      color: #FFF;
    }*/
    #popupOverlay {
      position: fixed; inset: 0; background: linear-gradient(313deg, rgb(41 160 212 / 80%) 45%, rgb(243 244 246 / 30%) 70%, #f5851f 100%);
      display: none; align-items: center; justify-content: center; z-index: 1999;
      transition: background 0.18s;
    }
    #popupOverlay.active { display: flex !important; }
#popupContent {
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 7px 32px #d4e7fa3b;
    padding: 2rem;
    max-width: 500px;
    min-width: 270px;
    width: 94vw;
    position: relative;
    animation: popupin .2s;
}
    @keyframes popupin { from{transform:scale(0.97) translateY(40px); opacity:.64;} to{transform:none; opacity:1;} }
.close-popup-btn {
    position: absolute;
    right: 2rem;
    top: 1rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: #6881ad;
    cursor: pointer;
}
    .form-label {
      color: #29A0D4;
      font-weight: 700;
      font-family: 'Montserrat', sans-serif;
      letter-spacing: 0;
      display: block;
      margin-bottom: 6px;
    }
    .form-control, .form-textbox, .form-textarea, .form-upload, .form-upload-multiple {
      border: 2px solid #e4e7ed !important;
      border-radius: 0.8rem !important;
      font-size: 1.05rem !important;
      font-family: 'Montserrat', sans-serif !important;
      color: #53586A !important;
      background: #fff !important;
      box-shadow: none !important;
      transition: border .14s;
      padding: 10px 14px !important;
      width: 100% !important;
      box-sizing: border-box;
    }
    .form-control:focus, .form-textbox:focus, .form-textarea:focus, .form-upload:focus, .form-upload-multiple:focus {
      border-color: #F5851F !important;
      box-shadow: 0 0 0 0.13rem rgba(255,96,22,0.13) !important;
      color: #29A0D4 !important;
      outline: none !important;
    }
    .form-all { max-width:100%; margin:0; background:transparent; border:none; box-shadow:none; padding:0;}
    .form-section { padding: 0; margin: 0;}
    .form-line { margin-bottom: 18px; list-style: none; }
    .form-submit-button, .submit-button {
      background: #F5851F;
      color: #fff;
      font-weight: 700;
      border-radius: 2rem;
      border: none;
      padding: 12px 38px;
      font-size: 1rem;
      font-family: 'Montserrat', sans-serif;
      transition: background .13s;
      cursor: pointer;
      margin-top: 10px;
      width: 100%;
    }
    .form-submit-button:hover, .submit-button:hover {
      background: #29A0D4 !important; color: #fff !important;
    }
    .form-required { color: #DD3049; margin-left: 2px; }
    .form-all label.form-sub-label {
      display: block; color: #878cab; font-size: 0.97em; font-weight:400; padding-left:0; margin-bottom: 0;
    }
    ::placeholder { color: #b1b5c3 !important; font-family: inherit; }
    #popupJotformIframe {
      display: none; width:100%; height:100%; border:0; margin-top:1rem;
    }
    #popupLoading {
      display: none; text-align: center; margin-top: 16px;
    }
    .spinner-border {
      display:inline-block; width:1.5rem; height:1.5rem; border:.21em solid #f3f3f3;
      border-right-color:#29A0D4; border-radius:50%; animation:spinner-border .75s linear infinite;}
    @keyframes spinner-border { to { transform: rotate(360deg); } }
    @media(max-width: 1199px){
      .career{
        background-size: inherit;
      }
    }
    @media (max-width:767px) {
      #popupContent {
        padding: 1rem;
        width: 100vw;
        min-width: 0;
        margin: 1rem;
        box-shadow: none;
    }
    .career-img{
      height: 10rem;
    }
    }
/*career*/

/*contact-form*/
/*.form-main{
  padding: 2rem;
}*/
.contact{
    padding: 6rem 0;
    position: relative;
}
.contact:before{
    position: absolute;
    content: '';
    top: 0;
    right: 20rem;
    background: url(..//images/hook.webp);
    width: 125px;
    height: 200px;
    background-repeat: no-repeat;
    background-size: contain;
}
.contact-left {
  background: #414141;
    padding: 2rem;
    border-radius: 1.5rem;
    position: relative;
    padding-left: 2.75rem;
    /*background-image: url(..//images/scale-pattern-uw.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: inherit;*/
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 90px), calc(100% - 80px) 100%, 0% 100%);
}
.contact-left:before{
    content: "";
    position: absolute;
    background: #F5851F;
    width: 0.35rem;
    height: 75%;
    left: 0;
    z-index: 0;
    display: block;
    top: 11.5%;
    border-radius: 0 0.5rem 0.5rem 0;
}
.info-label {
  font-family: 'Montserrat', sans-serif;
  /*margin-bottom: 0.4em;*/
}
.info-sec {
  margin-bottom: 2.5rem;
}
.info-anc{
  color: #FFF;
}
.info-anc:hover{
  color: #F5851F;
}
.social-btns {
  display: flex;
  gap: 1rem;
}
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #FFF;
    color: #414141;
    font-size: 1rem;
    text-decoration: none;
    transition: background .16s;
    text-align: center;
}
.social-btn:hover {
  background: #F5851F;
  color: #414141;
}
/*.form-main{
  padding: 2rem;
}
*/
.form-label { color: #29A0D4; font-weight: 700; font-family: 'Montserrat', sans-serif; letter-spacing:0;}
.form-control {
  border: 2px solid #e4e7ed;
  border-radius: 0.8rem;
  font-size: 1.05rem;
  font-family: 'Montserrat', sans-serif;
  color: #53586A;
  background: #fff;
  box-shadow: none;
  transition: border .14s;
}
.form-control:focus {
  border-color: #F5851F;
  box-shadow: 0 0 0 0.13rem rgba(255,96,22,0.13);
  color: #29A0D4;
}
.btn-orange {
  background: #F5851F;
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  border-radius: 2rem;
  border: none;
  padding: 12px 38px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  transition: background .13s;
}
.btn-orange:hover { background: #29A0D4; color: #FFF}
::placeholder { color: #b1b5c3; font-family: inherit; }
/*contact-form*/


/*responsive*/
@media(max-width: 1199px) and (min-width: 992px){
  .contact:before{
    right: 2rem;
  }
}
@media(max-width: 991px){
.sec-main{
  padding: 3rem 0 !important;
}
.contact:before {
    top: 0;
    left: 1rem;
    width: 5rem;
    height: 8rem;
}
.contact-left{
  background-size: 175% 2rem;
  padding: 2rem 2rem 4rem;
}
}
@media(max-width: 767px){
.contact:before {
    top: 0;
    left: 1rem;
    width: 5rem;
    height: 5rem;
}
}