
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-default);
}
img{
  max-width: 100%;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--color-white);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-green);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}
img{
  max-width: 100%;
}
@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}
.text_brand_sky{
  color: var(--color-brand_sky) !important;
}
/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary-light);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--color-green);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-white);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--color-green-rgb), 0.85);
  color: var(--color-white);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 5px 0;
  transition: all 0.5s;
  z-index: 997;
  /* background: var(--color-brand_green); */
}

.header.sticked {
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0px 2px 20px rgba(var(--color-secondary-rgb), 0.1);
}

.header .logo img {
  max-height: 100px;
  margin-right: 6px;
}




.header .btn_try_now,
.header .btn_try_now:focus {
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-brand_blue);
  padding: 8px 23px;
  border-radius: 20px;
  transition: 0.3s;
  font-family: var(--font-primary);
}

.header .btn_try_now:hover,
.header .btn_try_now:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-green-rgb), 0.85);
}

.hero_home_banner{
  background-image: url('../img/banner.webp');
  background-position: center;
  background-size: cover;
  min-height: 750px;
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
  .banner_content{
    display: grid;
    gap: 10px;
    h1{
      font-size: 45px;
      font-weight: 700;
      color: var(--color-white);
      font-family: var(--font-primary);
    }
    h3{
      font-size: 30px;
      font-weight: 600;
      color: var(--color-white);
      font-family: var(--font-primary);
    }
    p{
      font-size: 15px;
      font-weight: 500;
      color: var(--color-white);
      line-height: 2;
      .no_extra_cost{
        margin-left: 10px;
        background-color: var(--color-white);
        color: #000000;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 135px;
        height: 28px;
        top: 419px;
        left: 210px;
        border-radius: 7px;

      }
    }
  }

  .counter{
    max-width: 700px;
    ul{
      list-style: none;
      padding: 0px;
      li{
        position: relative;
        margin: 0px;
        padding: 10px 0px;
        &::before{
          content: '';
          position: absolute;
          height: calc(100% - 30px);
          width: 2px;
          background-color: #ffffff;
          left: 0px;
          top: 50%;
          transform: translateY(-50%);
        }

        &:first-child::before{
          display: none;
        }
      }
    }
    h4{
      font-size: 38px;
      font-weight: 600;
      color: #ffffff;
      font-family: var(--font-primary);
    }
    p{
      font-size: 13px;
      font-weight: 400;
      color: #ffffff;
      font-family: var(--font-primary);
      
    }
  }


  .banner_form{
    background: rgba(255, 255, 255, 0.26);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #FFFFFF33;
    color: #ffffff;
    form{
      display: grid;
      gap: 15px;
      .form-control,
      .form-select{
        height: 45px;
        border-radius: 10px;
      }
      .btn{
        border-radius: 30px;
        padding: 10px;
        min-height: 45px;
        background: var(--color-brand_blue);
        border: 0px;
      }
    }
  }
}
.btn.btn-primary{
  border-radius: 30px;
  min-height: 45px;
  background: var(--color-brand_blue);
  border: 0px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
}
.section_paddings{
  padding: 50px 0px;
}
.hdng_{
  display: grid;
  gap: 10px;
  small{
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-brand_blue);
    &.brand_sky{
      color: var(--color-brand_sky);
    }
  }
  
  h2{
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 45px;
    text-transform: capitalize;
    color: rgba(20, 20, 20, 1);
    span.badge{
      background: rgba(255, 255, 255, 1);
      color: rgba(20, 20, 20, 1);
      font-size: 45px;
    }
  }
}
span.badge.bg-primary{
  background: rgba(1, 69, 142, 1) !important;
  color: rgba(255, 255, 255, 1) !important;
}
.text-dark{
  color: var(--color-dark);
}
.hiring_options{
  background: rgba(246, 247, 248, 1);
  .team_card{
    text-align: center;
    img{
      max-width: 100%;
      height: 250px;
      /* max-height: 350px; */
      width: auto;
      margin: 0 auto;
    }
    h5{
      font-size: 25px;
      font-weight: 400;
      font-family: var(--font-primary);
      color: rgba(106, 99, 93, 1);
      margin-top: 10px;
    }
  }
}

.tech_stack_covered{
    color: #ffffff;
    background: url('../img/tech_stack_covered_bg.webp');
    background-repeat: no-repeat;
    text-align: center;
    background-size: cover;
    background-attachment: fixed;

    .tech-item {
      background-color: white;
      width: 100%;
      height: 7rem;
      color: #333;
      padding: 1rem 2rem;
      border-radius: 8px;
      display: flex;
      align-items: center;
      /* justify-content: center; */
      gap: 1rem;
      font-weight: bold;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s ease-in-out;
    }

    .tech-item img {
      width: 40px; /* Adjust as needed */
      height: auto;
    }

    .tech-item p {
      margin:0px
    }

    .tech-item:hover {
      transform: translateY(-5px);
    }

}

.why_dedicated_resource{
  background: rgba(0, 25, 71, 1);
  position: relative;
}
.why_dedicated_resource::after{
  content: '';
  position: absolute;
  max-width: 350px;
  width: 100%;
  height: 350px;
  background-image: url('../img/carry_laptop.webp');
  background-size: contain;
  background-repeat: no-repeat;
  right: 30px;
  bottom: -30px;
}
.why_dedicated_resource_card{
  position: relative;
  height: 100%;
  &::after{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(246, 97, 53, 1);
    border-radius: 20px;
    right: -5px;
    top: -5px;
    /* z-index: -1; */
  }
  &::before{
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: rgba(246, 97, 53, 1);
    border-radius: 20px;
    left: -5px;
    bottom: -5px;
    /* z-index: -1; */
  }
  .why_dedicated_resource_card_body{
    box-shadow: 0px 4px 55px 0px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 1);
    padding: 25px;
    border-radius: 20px;
    display: grid;
    gap: 15px;
    position: relative;
    z-index: +1;
    min-height: 300px;
    height: 100%;
    .wdrc_icon{
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: rgba(246, 97, 53, 1);
      border-radius: 50%;
    }
    h4{
      margin: 0px;
      font-size: 24px;
      font-weight: 700;
      font-family: var(--font-primary);
    }
    p{
      margin: 0px;
      font-size: 16px;
      font-weight: 400;
      font-family: var(--font-primary);
    }
  }
  &:hover{
    h4,p{
      color: var(--color-white);
    }
    &::after,
    &::before{
      background-color: #ffffff;
    }
    .why_dedicated_resource_card_body{
      background-color: rgba(246, 97, 53, 1);
    }
    .wdrc_icon{
      background-color: rgb(255, 255, 255);
      svg .wdrc_icon_hvr{
        fill: rgba(246, 97, 53, 1);;
      }
    }
  }
}
.what_you_will_get{
  background-color: rgba(246, 247, 248, 1);
  
  .what_you_will_get_card{
    display: flex;
    gap: 10px;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0px 4.07px 55.9px 0px rgba(0, 0, 0, 0.08);
    /* background: rgba(246, 246, 246, 1); */
    border: 1.37px solid rgba(0, 68, 138, 1);
    min-height: 180px;
    height: 100%;
    .what_you_will_get_icons{
      display: inline-flex;
      align-items: center;
      justify-content: center;
        width: 70px;
        height: 70px;
        background: rgba(0, 68, 138, 1);
        border-radius: 50%;
      img{
        &:first-child{
          display: block;
        }
        &:last-child{
          display: none;
        }
      }
    }
    h3{
      font-size: 22px;
      font-weight: 600;
      font-family: var(--font-primary);
    }
    p{
      font-size: 16px;
      font-weight: 400;
      font-family: var(--font-primary);
      margin: 0px;
    }
    &:hover{
      background-color: var(--color-brand_blue);
      .what_you_will_get_icons{
        background: rgb(251, 251, 251);
        img{
          &:first-child{
            display: none;
          }
          &:last-child{
            display: block;
          }
        }
      }
      h3,p{
        color: var(--color-white);
      }
    }
  }
}
#client_video_carousel {
  .client_video_ img{
    width: auto;
  }
}
.client_video_{
  background-image: url('../img/client_video_bg.webp');
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  padding: 20px;
  .client_video_content{
    p{
      font-size: 30px;
      font-weight: 500;
      font-family: var(--font-primary);
      color: var(--color-white);
    }
    h5{
      font-size: 22px;
      font-weight: 700;
      font-family: var(--font-primary);
      color: var(--color-white);
    }
    h6{
      font-size: 20px;
      font-weight: 400;
      font-family: var(--font-primary);
      color: var(--color-white);
    }
  }
}

.hire_top_talent_with_zero_risk{
  background-image: url('../img/hire_top_talent_with_zero_risk_bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* overflow: hidden; */
}

.hire_top_talent_with_zero_risk,
.what_you_will_get{
  .hdng_{
    h2{
      .badge{
        background-color: rgba(0, 68, 138, 1);
        color: #ffffff;
        font-weight: 700;
      }
    }
  }
}
.hire_top_talent_with_zero_risk h6{
  color: var(--color-brand_blue);
}

footer.footer{
  padding: 30px 0px 10px 0px;
  margin-top: -50px;
  background: rgba(0, 25, 71, 1);
  border-radius: 40px 40px 0px 0px;
  h2{
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 400;
    color: var(--color-white);
  }
  hr{
    border-color: #ffffff;
  }
}


.google_ratings_card{
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 15px;
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  /* margin: 3px; */
  height: 100%;
  width: 180px;
  .d-flex{
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
  }
  a{
    text-decoration: none !important;
    color: #000000 !important;
  }
  img{
    max-height: 50px;
    width: auto !important;
    margin: 0 auto;
    display: block;
  }
}
.copyrights{
  color: #ffffff;
  ul li a{
    color: #ffffff;
    font-size: 15px;
    font-weight: 400;
  }
}

.we_got_covered{
  .hdng_ p span.badge{
    background-color: var(--color-brand_blue);
    padding: 5px;
    font-size: 15px;
    font-weight: 300;
    text-transform: capitalize;
  }
}
.we_got_covered_google_ratings_bg{
  background: var(--color-brand_blue);
  padding: 50px 30px;
  border-radius: 20px;
}
.how_it_works_card{
  background: rgba(255, 255, 255, 1);
  padding:50px 20px 20px;
  box-shadow: 0px 2.71px 37.26px 0px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-radius: 15px;
  position: relative;
  span{
    position: absolute;
    top: -35px;
    right: 35px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(1, 69, 142, 1);
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
  }
  h3{
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-primary);
    color: rgba(20, 20, 20, 1);
  }
  p{
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-primary);
    color: rgba(20, 20, 20, 0.8);
    line-height: 2;
  }
}


.video_modal{
  .modal-content{
    padding: 0px;
    background-color: transparent;
    position: relative;
    border: 0px;
    .btn-close{
      position: absolute;
      right: -10px;
      top: -10px;
      border-radius: 50%;
      background-color: #ffffff;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: +9;
      opacity: 1;
    }
  }
  .modal-body{
    padding: 0px;
    background-color: transparent;
    video{
      border-radius: 30px;
      border: 2px solid #ffffff;
    }
  }
}

.verified_reviews_card{
  margin: 10px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 1);
  padding: 20px;
  border-radius: 20px;
  height: 100%;
   *{
    font-family: var(--font-primary);
   }
  .verified_reviews_header{
    background: rgba(245, 245, 245, 1);
    padding: 15px;
    border-radius: 15px;
    .stars .bi{
      color: rgba(246, 97, 53, 1);
    }
  }
  .verified_reviews_body{
    h3{
      font-family: var(--font-primary);
      font-size: 36px;
      font-weight: 400;
      color: rgba(0, 68, 138, 1);
      margin: 0;
    }
    .project_title{
      min-height: 90px;
    }
    .review{
      min-height: 110px;
    }
  }
}

.our_process_list{
  &:first-child .our_process_card .our_process_img::after{
    top: 0px;
  }
  &:last-child .our_process_card .our_process_img::after{
    display: none;
  }
  .our_process_card .our_process_img::after{
    content: '';
    position: absolute;
    background-image: url('./../img/op_arow.png');
    height: 80px;
    width: 80px;
    background-repeat: no-repeat;
    right: -60px;
    bottom: 0px;
    background-size: contain;
  }
}
.our_process_card{
  .our_process_img{
    position: relative;
  }
  
  h4{
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 23px;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
  }
  p{
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    vertical-align: middle;
  }
}

.owl-carousel{
  .owl-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    .owl-prev,
    .owl-next{
      background: rgba(255, 255, 255, 1) !important;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      i{
        color: rgba(0, 25, 71, 1) !important;
        font-size: 25px;
      }
      &:hover{
        background: rgba(0, 68, 137, 1) !important;
        i{
          color: #ffffff !important;
        }
      }
    }
  }
  .owl-dots{
    .owl-dot span{
      background: rgba(218, 218, 218, 1);
      width: 40px;
    }
    .owl-dot.active span{
      background: rgba(0, 68, 138, 1);
      width: 50px;
    }
  }
}



/*=================================
============landing_2nd============
===================================*/

.landing_2nd{
  .hero_home_banner{
    background-image: url('../img/banner_2.webp');
    background-position: center;
    background-size: cover;
    min-height: 750px;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .verified_reviews{
    background: rgba(0, 25, 71, 1);
    position: relative;
  }
}



body.modal-open{
  position: relative;
  &::after{
    content: '';
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    position: absolute;
    /* filter: blur(8px);
    -webkit-filter: blur(8px); */
    background-color: rgba(255, 255, 255, 0.75);
  }
}

.modal_form{
  /* background: rgba(255, 255, 255, 0.26); */
  /* padding: 25px; */
  border-radius: 20px;
  /* border: 1px solid #FFFFFF33; */
  color: rgba(20, 20, 20, 1);
  .modal-content{
    border-radius: 20px;
  }
  .modal-header{
    border: 0px;
    padding-bottom: 0px;
    h2{
      font-size: 25px;
      font-weight: 600;
    }
  }
  form{
    display: grid;
    gap: 15px;
    .form-control,
    .form-select{
      height: 45px;
      border-radius: 10px;
    }
    .btn{
      border-radius: 30px;
      padding: 10px;
      min-height: 45px;
      background: var(--color-brand_blue);
      border: 0px;
    }
  }
}
.section_padding{
  padding: 50px 0px;
}
.pp_page_banner{
  /* height: 150px; */
  /* min-height: 400px; */
  padding-top: 250px;
  padding-bottom: 150px;
  /* background-color: rgba(0, 25, 71, 1); */
  background-image: url('../img/pp_page_banner.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
}

label.error{
  color: red;
  /*text-transform: capitalize;*/
}
.thankyou_modal{
  .modal-content{
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), 
    url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    form{
      border-radius: 20px;
      background: rgba(0, 20, 49, 0.2);
      padding: 30px 20px;
    }
  }
}