:root {
  --themeBlue: #0b143e;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.4;
  color: #636978;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
}
ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
a {
  color: var(--themeBlue);
  text-decoration: none;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@keyframes glow {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1);
  }
}

/**===========new-css==============**/
.text-green {
  color: #acff8c;
}
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false
}

@keyframes rotation2 {
    0% {
        --gradient-angle: 0deg
    }

    100% {
        --gradient-angle: 360deg
    }
}

.Book_Meeting_btn:after, .Book_Meeting_btn:before {
  position: absolute;
    z-index: 1;
    top: -2px;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    height: 51px;
    animation: 2s linear infinite rotation2;
    border-radius: 100px;
    background: conic-gradient(from var(--gradient-angle), transparent, #eb3df7, #8a30c7, #f89329, #f89329, transparent);
}

.top_bar_content {
    background: #8FE66D;
    border-radius: 0 0 100px 100px;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: #fff;
    position:relative;
}

.top_bar_content:after{
       content: "";
      background-image: url(../images/left_shape_topbar.svg);
      width: 52px;
      height: 42px;
      position: absolute;
      left: -20px;
      top: 0;
      background-size: 100%;
      background-repeat: no-repeat;
}
.top_bar_content:before{
       content: "";
      background-image: url(../images/right_shape_topbar.svg);
      width: 52px;
      height: 42px;
      position: absolute;
      right: -20px;
      top: 0;
      background-size: 100%;
      background-repeat: no-repeat;
}

.top_bar_shape {
    position: fixed;
    z-index: 9999;
    left: 0;
    right: 0;
}

.top_bar_content p {
    padding: 5px 15px;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.top_bar_content .Book_Meeting_btn {
      position: relative;
    background: transparent;
    border: none;
}


.top_bar_content .Book_Meeting_btn span{
background: #081621;
    color: #fff;
    font-size: 18px;
    padding: 10px 24px;
    border-radius: 100px;
    border: none;
    display: inline-block;
    z-index: 9;
    position: relative;
}

/* mobile-app */
.turning-mobileapp {
  text-align: center;
  background: radial-gradient(
    circle,
    rgba(200, 255, 200, 0.4) 0%,
    #f8fafc 100%
  );
  padding-top: 63px;
}
.app-main-heading h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}
.app-main-heading h2 span {
  color: #acff8c;
}
.app-main-heading p {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 40px;
}

/* Stats Grid */
.turning-mobileapp_stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-bottom: 50px;
}

.turning-mobileapp_stat-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  /* min-width: 160px; */
  flex: 1;
  /* max-width: 200px; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.turning-mobileapp_stat-box h3 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #111;
}

.turning-mobileapp_stat-box p {
  font-size: 18px;
  color: #636978;
  margin-bottom: 0;
}

/* Phones & Image */
.turning-mobileapp_img {
  animation: glow 5s infinite;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0 68px;
}

.turning-mobileapp img {
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(270deg, #1e9432 0%, #0e561a 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0px;
  position: relative;
  z-index: 99;
  margin-top: -234px;
}

.cta-section h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff;
}

.cta-section p {
  font-size: 22px;
  margin-bottom: 36px;
  color: #fff;
}

/* Button */
.cta-btn {
  background: #8fe66d;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 18px 133px 18px 50px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
  position: relative;
  display: inline-block;
  box-shadow: 0px 6px 14px 0px #00000040;
  overflow: hidden;
}

.cta-btn:hover {
  background: #76c24a;
  color: #fff;
}
.arrow-box {
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border-radius: 0px 8px 8px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.3s ease;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
}

.cta-btn:hover .arrow-box {
  transform: translateX(5px);
}

/* brand-section */
.brands-section {
  padding: 64px 0;
  background: radial-gradient(
    circle,
    rgba(200, 255, 200, 0.3) 0%,
    #ffffff 100%
  );
}
.tick-mark {
  display: inline-block;
  width: 32px;
  height: 32px;
}
.brand-content {
  text-align: left;
}
.brand-box {
  display: flex;
  align-items: center;
  gap: 30px;
}
/* Left Content */
.brands-content {
  flex: 1;
}

.brands-content h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
}

.brands-list {
  list-style: none;
  padding: 0;
}

.brands-list li {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 21px;
  color: #000;
  position: relative;
  gap: 20px;
}
.brands-logos_left,
.brands-logos_center,
.brands-logos_right {
  display: flex;
  row-gap: 24px;
  flex-direction: column;
}
.brands-logos_left,
.brands-logos_right {
  margin-top: 61px;
}
/* .brands-list li::before {
      content: "";
      background-image: url(../images/check-arrow.svg);
      width: 32px;
      height: 32px;
      margin-right: 12px;
      position: absolute;
      left: 0;
      top: 0;
    } */

/* Right Logos */
.brands-logos {
  flex: 1;
  transition: transform 0.3s ease;
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px; */
}
.brands-logos:hover {
  transform: translateY(-5px);
}
/* .logo-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 36px;
  min-height: 105px;
  transition: transform 0.3s ease;
  box-shadow: 0px 9px 25px 0px #00000026;
  min-width: 206px;
} */

/* .logo-card:hover {
  transform: translateY(-5px);
} */

.logo-card img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
}

/* app-development */
.Requirement_Analysis {
  padding: 64px 0;
  background: #070b0f;
  width: 100%;
  height: 100%;
}
.Requirement_Analysis_Tabs {
  display: flex;
  border: 1px solid #ffffff1a;
  background: #ffffff0d;
  border-radius: 20px;
  padding: 32px;
}
.Requirement_tabs_vertical {
  flex: 0 0 50%;
  max-width: 50%;
  flex-direction: column;
  border: none;
  padding: 15px;
  background: linear-gradient(180deg, #f5f5ff 0%, #ffffff 100%);
  border-radius: 14px;
  position: relative;
}
.Requirement_tabs_content {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 48px;
}
.Requirement_tabs_vertical .nav-link {
  background: transparent !important;
  padding: 15px;
  color: #636978;
  font-weight: bold;
  font-size: 20px;
  border: none;
  width: 100%;
  text-align: left;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
}
.progress_Tabs {
  padding: 5px;
  height: 55px;
  border: 1px solid #636978;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  flex-shrink: 0;
  margin-right: 20px;
  font-size: 24px;
  font-weight: bold;
  background: #fff;
  position: relative;
  z-index: 2;
}
.Requirement_content {
  color: #fff;
}
.waterMarkNumber {
  font-size: 120px;
  color: #ffffff0d;
  font-weight: bold;
}
.Requirement_content article {
  margin-top: -54px;
}
.Requirement_content h3 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 500;
}
.Requirement_content p {
  font-size: 18px;
  margin-bottom: 20px;
}
.Requirement_content_As_Sots_list {
  margin-bottom: 39px;
}
.Requirement_content_As_Sots_list li {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 20px;
}
span.as_Dots {
  border: 3px solid #83778d;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 100px;
  background: #d9d9d9;
  flex-shrink: 0;
  margin-right: 8px;
}
.Requirement_tabs_vertical .nav-link.active .progress_Tabs {
  background: #5ec238;
  border: none;
  color: #fff;
}
.Requirement_tabs_vertical li{
  position: relative;
}
.Requirement_tabs_vertical li:after {
    position: absolute;
    content: "";
    width: 3px;
    height: 100%;
    background: #636978;
    left: 41px;
    top: 20px;
    z-index: 1;
}

.Requirement_tabs_vertical li:last-child:after{display: none;}

/* feature-section */
.feature-section {
  padding: 72px 0 84px;
  background: radial-gradient(
    circle,
    rgba(200, 255, 200, 0.3) 0%,
    #ffffff 100%
  );
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 24px;
  border-bottom: 4px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* Accent colors */
.feature-card.green {
  border-bottom-color: #85cc48;
}
.feature-card.blue {
  border-bottom-color: #368bbe;
}
.feature-card.orange {
  border-bottom-color: #f58921;
}

/* Icon styles */
.icon {
  /* font-size: 34px; */
  margin-bottom: 16px;
}
/* .green .icon { color: var(--green); }
    .blue .icon { color: var(--blue); }
    .orange .icon { color: var(--orange); } */

.feature-card h3 {
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 600;
  color: #111;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  color: #555;
}

/* partner-section */
.partner-section .brand-box {
  gap: 116px;
}

/* app-expert */
.app_expert {
  padding: 44px 0 78px;
  background: linear-gradient(270deg, #1e9432 0%, #0e561a 100%);
  position: relative;
}
.app_expert:after {
  position: absolute;
  content: "";
  background: #8fe66d;
  width: 20%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
}
.Sales_Expert {
  background: linear-gradient(180deg, #ffffff 0%, #b5ff98 100%);
  padding: 60px;
  border-radius: 24px;
  display: flex;
  position: relative;
  z-index: 99;
}
.Sales_Expert .figure_fream {
  margin: 0;
  width: 130px;
  flex-shrink: 0;
  border-radius: 100px;
  height: 130px;
  overflow: hidden;
}
.expert_Detail_wrap {
  padding-left: 24px;
  margin-left: 24px;
  display: flex;
  align-items: center;
  color: #0b143e;
  position: relative;
  flex: 1;
  padding-right: 270px;
}
.expert_Detail_wrap:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 129px;
  background: #0f5a1c;
  left: 0;
  top: 0;
}
.Sales_Expert_contant h3 {
  font-size: 24px;
  font-weight: 500;
}

.Sales_Expert_contant h3 span {
  padding-left: 15px;
  vertical-align: middle;
}
.Sales_Expert_contant h3 span a {
  margin: 0 5px;
}
.sales_post {
  font-size: 20px;
  font-weight: 500;
  padding: 8px 0;
}
.Sales_Expert_contant p {
  font-size: 16px;
  margin-bottom: 40px;
}
.Sales_Expert_contant {
}
.Sales_Expert .cta-btn {
  background: #0f5a1c;
  color: #fff;
}
.app_expert_img {
  position: absolute;
  right: -132px;
  top: auto;
  z-index: 99;
  bottom: -78px;
  overflow: hidden;
  line-height: 0;
}
.banner_img_part {
  line-height: 0;
}

.banner_img_part:after {
  content: "";
  position: absolute;
  background: #070b0fe5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero_banner_main {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 124px 0 54px 0;
  bottom: 0;
  
}

.PPC_main_hero_section {
  position: relative;
}
.hero_banner_row {
  display: flex;
}

.hero_banner_left,
.hero_banner_right {
  flex: 1;
}

.hero_banner_left {
  color: #fff;
  padding-right:15px;
}

.hero_banner_left h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 32px;
  line-height: 1.3;
}

.hero_banner_left em {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 15px;
  display: block;
}

.hero_banner_left p {
  font-size: 20px;
  margin-bottom: 20px;
}

.partner_cols_row {
  display: flex;
  margin-top: 54px;
}

.partner_cols {
  background: linear-gradient(
    103.64deg,
    rgba(217, 217, 217, 0.05) 0%,
    rgba(115, 115, 115, 0.05) 125.31%
  );
  width: 254px;
  margin-right: 15px;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  border: 1px solid #52575d30;
}

.partner_cols p {
  font-size: 16px;
  margin: 0;
  line-height: 1.54;
}

.partner_cols strong {
  font-size: 18px;
  font-weight: bold;
  margin-left: 5px;
}

.hero_banner_left .logo {
  display: inline-block;
  margin-bottom: 15px;
}

.consultation_form_style {
  background: #ffffff0d;
  border-radius: 30px;
  padding: 32px;
  border: 1px solid #acff8c4d;
  /* overflow:hidden; */
  position: relative;
}
.call_back_modal_style-col .country_row_section .wpcf7-not-valid-tip {
  position: absolute;
  top: 56px;
}

.country_row_section {
  margin-bottom: 24px;
}

.consultation_form_style h2 {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
.consultation_form_field {
  background: #ffffff0d;
  border: 1px solid #4c4e51;
  padding: 10px;
  height: 55px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
}
.consultation_form_field:focus {
  outline: none;
}

textarea.consultation_form_field {
  height: 180px;
}

.phone_number_with_country {
  background: #ffffff0d;
  border: 1px solid #4c4e51;
  padding: 10px;
  height: 55px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
}

.phone_number_with_country .phoneNumber {
  background: transparent;
  border: none;
  padding: 10px;
  color: #fff;
}

.phone_number_with_country .phoneNumber:focus {
  outline: none;
}

.capture_static {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  padding: 15px 0;
}

.capture_static strong {
  font-weight: bold;
  color: #fff;
  font-size: 24px;
  margin-right: 20px;
}

.capture_static .capture_static_input {
  width: 100px;
  padding: 15px;
  font-size: 20px;
  border-radius: 6px;
  height: 54px;
  border: none;
}

.capture_static .capture_static_input:focus {
  outline: none;
}
.App_ppc_btn {
  background: #8fe66d;
  border: none;
  padding: 15px 72px 15px 20px;
  text-align: center;
  height: 72px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  min-width: 432px;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}

.App_ppc_btn span {
  position: absolute;
  background: #fff;
  padding: 10px;
  right: 0;
  top: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
}
.Business_Model_section {
  background: #070b0f;
  padding: 72px 0;
}

.Business_Model_left_content h2 {
  font-size: 42px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.Business_Model_left_content p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 32px;
}

.Discuss_figure {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  max-width: 584px;
  line-height: 0;
}

.Discuss_figure .App_ppc_btn {
  position: absolute;
  bottom: 32px;
  left: 20px;
  right: 20px;
  max-width: 360px;
  margin: auto;
}

.Business_Model_left_content {
  padding-right: 100px;
  position: sticky;
  top: 0;
  padding-top:72px;
}

.Business_Model_list li {
  background: #ffffff0d;
  border: 1px solid #395f46;
  padding:15px;
  margin-bottom: 24px;
  border-radius: 12px;
  display: flex;
  cursor: pointer;
  position: relative;

}

.Business_Model_list li:after{
  content: "";
  background-image: url(../images/downArrowWhite.svg)!important;
  background-repeat:no-repeat;
  width:20px;
  height:20px;
  background-repeat:no-repeat;  
   position: absolute;
   top: 15px;
   right: 15px;
}

.Business_Model_Point li:after{display: none;}

.Business_Model_list li figure {
  width: 110px;
  flex-shrink: 0;
  line-height: 0;
}

.Business_Model_list li figcaption {
  flex: 1;
  padding-right:0px; 
}

.Business_Model_list li figcaption h3 {
  font-weight: 500;
  color: #8fe66d;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
  padding-right:24px;
}

.Business_Model_list li figcaption p {
  color: #fff;
  line-height: 1.7;
}

.Seamless_Development_section {
  background: radial-gradient(50% 50% at 50% 50%, #e4ffda 0%, #f6fcff 100%);
  padding: 64px 0;
}

.section_title h2 {
  font-weight: bold;
  color: #000;
  font-size: 44px;
  margin-bottom: 20px;
}

.section_title p {
  font-size: 20px;
  color: #000000;
  font-weight: 500;
}

.Seamless_tab-box {
  width: 132px;
  margin-right: 24px;
  min-height: 120px;
  padding:15px 10px;
  flex-shrink: 0;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.Seamless_tab-box h3 {
  font-size: 15px;
  font-weight: 500;
  color: #000;
}
.Seamless_tab_outer {
  display: flex;
  flex-wrap: wrap;
}

.Seamless_tab-box span {
  width: 54px;
  display: inline-flex;
  height: 45px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.Seamless_tab_Link .nav-link {
  border: 1px solid #c6ffb1;
  background: #f5fff2;
  border-radius: 8px;
  padding: 6px 15px;
  display: inline-flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 24px;
  color: #636978;
  font-weight: 500;
}

.Seamless_tab_Link .nav-link span {
  margin-right: 10px;
  display: inline-block;
  width: 32px;
}

.Seamless_tab_Link .nav-link.active {
  font-weight: bold;
  color: #000;
  background: #8fe66d;
}
.tabs_Seamless_Development {
  box-shadow: 0px 9px 25px 0px #00000026;
  background: #fff;
  padding: 32px;
  border-radius: 24px;
  margin-top: 32px;
}

.Seamless_tab_Link .nav-link.active img {
  filter: brightness(0);
}
.v-tabs_row.v-tabs {
  display: flex;
}

.v-tabs_col-left {
  width: 380px;
  padding-right: 30px;
}

.v-tabs_col_right {
  flex: 1;
  padding-left: 20px;
}
.Hiring_Models_section {
  background: linear-gradient(270deg, #1e9432 0%, #0e561a 100%);
  padding: 64px 0;
}
.hiring_post {
  display: flex;
}

.hiring_post_list {
  margin: 0 15px;
  width: 174px;
  border-radius: 24px;
  padding: 0;
  height: 460px;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  position: relative;
  cursor: pointer;
}
.hiring_post_list * {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.hiring_post_list.active {
  flex: 1;
  width: 100%;
}

.fixed_price_modal {
  background: #fff;
}

.hiring_post_detail .tag_point {
  opacity: 0;
  display: inline-flex;
  align-items: center;
  background: #8fe66d;
  padding: 8px 24px;
  border-radius: 8px;
  color: #1f2127;
  font-weight: 500;
  margin-left: 30px;
  position: absolute;
  bottom: 132px;
  z-index: 9;
  transform: scale(0.3);
}

.hiring_post_detail h3 {
  opacity: 0;
  padding: 20px 32px;
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  z-index: 9;
  left: 0;
  transform: scale(0.2);
}
.hiring_post_list figure img {
  max-width: initial;
  margin: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: top;
}

.dedicated_team {
  background: #f2cd7c;
}

.hybrid_team {
  background: #73c3da;
}

.hiring_post_list figure {
  margin: auto;
  overflow: hidden;
  border-radius: 24px;
  line-height: 0;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.default_tag_view {
  background: #070b0f;
  padding: 18px;
  display: inline-block;
  color: #fff;
  left: -63px;
  position: absolute;
  bottom: 100px;
  transform: rotate(-90deg);
  font-size: 18px;
  z-index: 9;
  width: 182px;
  text-align: center;
  height: 56px;
}
.hiring_post_list.active .default_tag_view {
  opacity: 0;
}

.hiring_post_list.active .tag_point {
  opacity: 1;
  margin-left: -20px;
}

.hiring_post_list.active h3 {
  opacity: 1;
  transform: scale(1);
}

.hiring_post_detail .tag_point img {
  margin-right: 8px;
}

.hiring_post_list:after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  right: 0;
  background: linear-gradient(2deg, #000000, #00000000, #ffffff00);
  height: 100%;
  border-radius: 24px;
  opacity: 0;
}

.hiring_post_list.active:after {
  opacity: 1;
}
.hiring_post_list.active .tag_point {
  transform: scale(1);
}

.fixed_price_modal figure {
  max-width: 540px;
}

.dedicated_team figure {
  max-width: 450px;
}

.hybrid_team figure {
  max-width: 503px;
}
.videoListOuter {
  border-radius: 20px;
  border: 1px solid #ffd9d9;
  margin: 15px;
  overflow: hidden;
  background-color: #fff;
  position: relative;
  line-height: 0;
  z-index: 9;
  height: 632px;
}
.video_poster {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.video_poster img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.videoListOuter .clientCaption {
  padding: 20px;
  color: #fff;
  z-index: 2;
  line-height: 1.5;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(1deg, #000000, transparent);
}

.videoListOuter:hover .video_poster {
  display: none;
}

.testimonial_list_grid {
  display: flex;
}

.videoListOuter .clientCaption strong {
  display: block;
  font-weight: 500;
  margin-bottom: 2px;
}

.videoListOuter .clientCaption p {
  font-size: 14px;
  font-style: italic;
  color: #ddd;
}

.testimonial_section {
  padding: 54px 0;
  background: radial-gradient(50% 50% at 50% 50%, #e4ffda 0%, #f6fcff 100%);
}

.contact_detail_section {
  background: #070b0f;
  padding: 64px 0;
}
.contact-detail {
  margin-bottom: 24px;
}

.profileHead {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.profileHead span {
  width: 32px;
  margin-right: 10px;
  flex-shrink: 0;
}

.contact-detail p {
  color: #fff;
  font-size: 18px;
}

.contact-detail h3 {
  color: #8fe66d;
  font-size: 18px;
}
.contact_detail {
  border-bottom: 1px solid #8fe66d;
}

.country_detail_block {
  padding-top: 20px;
}

.country_detail_block h2 {
  font-size: 20px;
  color: #fff;
}

.country_add {
  display: flex;
  margin-bottom: 24px;
}

.country_add figure {
  flex: 0 0 72px;
  margin-right: 15px;
  flex-shrink: 0;
  max-width: 72px;
  height: 72px;
}

.country_add h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.country_add p {
  color: #fff;
}

.country_add figcaption {
  flex: 1;
}
.expert_Detail_wrap .App_ppc_btn {
  background: #0f5a1c;
  color: #fff;
}
.App_ppc_btn:hover {
  background: #0e561a;
  color: #fff;
}
.App_ppc_btn span img {
  transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
  position: relative;
  left: 0;
}
.App_ppc_btn:hover span img {
  left: 5px;
}
.app_expert .container {
  position: relative;
}

.app-main-heading {
  position: relative;
  z-index: 999;
}

.banner_img_part img {
  min-height: 932px;
}

#testimonial_slider .owl-prev,
#testimonial_slider .owl-next {
  width: 40px;
  height: 40px;
  background: #070b0f;
  font-size: 30px;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin-top: -10px;
}

#testimonial_slider .owl-prev span,
#testimonial_slider .owl-next span {
  position: relative;
  top: -4px;
}

.consultation_form_style form label {
  color: #fff;
  margin-bottom: 7px;
  font-size: 16px;
}

.consultation_form_style form .form-control {
  background: #ffffff0d;
  border: 1px solid #4c4e51;
  padding: 10px;
  height: 55px;
  width: 100%;
  border-radius: 8px;
  color: #fff;
}

.consultation_form_style form textarea.form-control {
  height: 180px!important;
}

.country_row_section {
  display: flex;
  border: 1px solid #4c4e51;
  border-radius: 6px;
}

.country_code_box .select2-container--default .select2-selection--single {
  background: 0 0;
  border: none;
  height: 100%;
}

.country_row_section .contact_number .form-control {
  border: none;
  border-left: 1px solid #4c4e51;
  border-radius: 0 !important;
  background: 0 0;
}

.contact_number {
  flex: 1;
  width: 100%;
}

.consultation_form_style .pattern-match input {
  width: 100px;
  padding: 15px;
  font-size: 20px;
  border-radius: 6px;
  height: 54px;
  border: none;
}


.consultation_form_style .pattern-match span.wpcf7-quiz-label {
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}
.ppp-ewallet .wpcf7-response-output {
    color: #dc3232;
    border:none!important; 
    padding:0!important;
    font-size: 14px;
}

.consultation_form_style .pattern-match input {
  width: 100px;
  padding: 15px;
  font-size: 20px;
  border-radius: 6px;
  height: 54px;
  border: none;
}

.consultation_form_style .pattern-match span.wpcf7-quiz-label {
  font-weight: bold;
  font-size: 20px;
  margin-right: 10px;
}

.consultation_form_style .enquiry_action .btn_primary,
.consultation_form_style .service_form_action .btn_primary {
  background: #8fe66d;
  border: none;
  padding: 15px;
  text-align: center;
  height: 72px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  width: 100%;
}

.consultation_form_style .d-md-flex.align-items-center {
  display: block !important;
}
.consultation_form_style .enquiry_action span.wpcf7-spinner,
.consultation_form_style .service_form_action span.wpcf7-spinner {
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  margin: auto;
}
.consultation_form_style .service_form_action {
  margin-top: 20px;
}
.consultation_form_style .enquiry_action,
.consultation_form_style .service_form_action {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

/* .consultation_form_style .enquiry_action:after,
.consultation_form_style .service_form_action:after {
  content: "";
  background-image: url("../images/rightArrow.svg");
  width: 60px;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
} */

.consultation_form_style .banner_form h4 {
  display: none !important;
}

.consultation_form_style form .form-control option {
  color: #333;
}

.consultation_form_style .enquiry_action .btn_primary:hover,.consultation_form_style .service_form_action .btn_primary:hover {
  background: #0e561a;
  color: #fff;
}

.consultation_form_style .enquiry_action:hover:after {
  background-position: right 10px center;
}

.call_back_bg_article {
    background: #242424;
    height: 100%;
    padding: 24px 24px;
    color: #fff;
    border-radius: 18px;
}

.call_back_bg_article * {
  position: relative;
  z-index: 2;
}

/* .call_back_bg_article:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #00000099, transparent);
} */

.call_back_modal_style-col .service_form_action {
  padding-right: 0;
  width: 100%;
  position: relative;
  margin-top: 30px;
}

.call_back_modal_style .modal-header {
  border: none;
  padding: 0;
}

.call_back_modal_style {
  max-width: 854px;
}

.call_back_modal_style .modal-header .btn-close {
  position: absolute;
  right: 20px;
  top: 15px;
  z-index: 1;
  background-size: 12px;
  background-color: #ffbf80;
  opacity: 1;
  border-radius: 100px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

.call_back_modal_style-row {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.call_back_modal_style-col {
  flex: 1;
  height: 100%;
  background-color: #fff;
  padding: 36px 30px 20px !important;
}

.call_back_modal_style-main .row {
  margin: 0;
}

.call_back_modal_style-main .row .col-lg-6 {
  padding: 0;
}

.call_back_bg_article .as_booking_title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.call_back_bg_article p {
  font-size: 16px;
}

.call_back_bg_article .as_booking_title span {
  color: #ACFF8C;
}

.call_back_bg_article .as_booking_title:after {
  height: 2px;
  width: 100%;
  content: "";
  background: linear-gradient(45deg, #fff, transparent);
  left: 0;
  position: absolute;
  bottom: -15px;
  border-radius: 10px;
}

.call_back_modal_style .Request-A-Call-wrapper {
    display: block;
    border-radius: 24px;
    overflow: hidden;
    padding: 15px !important;
}

.Request-A-Call-wrapper .btn_primary {
  width: 100%;
  border-radius: 6px;
}

.call_back_modal_style-col .wpcf7-response-output {
  position: relative;
  left: 0;
  font-size: 14px;
  margin-bottom: 0 !important;
  display: none;
}

.call_back_modal_style-col .pattern-match input {
  max-width: 100px;
  padding: 10px;
  border: 2px solid #ededed;
  border-radius: 5px;
  background: #f9f9f9;
}

.call_back_modal_style-col .country_row_section {
  display: flex;
  border: 1px solid #ced4da;
  border-radius: 6px;
  margin-bottom: 36px;
}

.call_back_modal_style-col .contact_number {
  flex: 1;
  width: 100%;
}

.call_back_modal_style-col .country_row_section .contact_number .form-control {
  border: none;
  border-left: 1px solid #ddd;
  border-radius: 0 !important;
  background: 0 0;
}

.call_back_modal_style-col .btn_primary {
  width: 100%;
  border-radius: 6px;
  padding: 12px;
  height: 50px;
  background-color: #356001;
  border: 2px solid #fff0;
  color: #fff;
}

.call_back_modal_style-col span.form-mandatory-astric {
  color: red;
}

.call_back_modal_style-col label {
  font-size: 14px;
  color: #000;
  margin-bottom:5px;
}

.date-time-slote-INform {
    display: flex;
    margin: 0 -6px;
}

.date-time-slote-INform .mb-3 {flex: 1;padding: 0 6px;}

.date-time-slote-INform label {
    margin-bottom: 5px;
}

.booking_form_ppc .form-control {
    font-size: 14px;
}

.booking_form_ppc .form-control:focus {
    box-shadow: none;
}

.booking_form_ppc  span.wpcf7-not-valid-tip {
    font-size: 13px;
}
.booking_form_ppc span.wpcf7-spinner,.service_form_action .wpcf7-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-8px, -11px);
    margin: 0;
}

.modal-content.Request-A-Call-wrapper .wpcf7 form .wpcf7-response-output{
    border: none;
    padding: 0;
    text-align: center;
     margin-top: 10px;
}

.booking_form_ppc .country_code_box .select2-container--default .select2-selection--single {
    font-size: 14px;
}

.modal-content.Request-A-Call-wrapper .wpcf7 .invalid .wpcf7-response-output {
  border: none;
    padding: 0;
    text-align: center;
    color: #ffb900;
    margin-top: 10px;
}
.modal-content.Request-A-Call-wrapper .wpcf7 .failed .wpcf7-response-output {
  border: none;
    padding: 0;
    text-align: center;
    color: #dc3232;
    margin-top: 10px;
}

.modal {
    z-index: 99992;
}

.modal-backdrop {
    z-index: 99991;
}

.select2-results__option {
  font-size: 14px;
}

.select2-selection--single .country-code-flag-name-cls {
  display: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px;
  color: #333;
}

.select2-dropdown {
  min-width: 200px;
}
.consultation_form_style
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #fff;
}

.select2-container {
  width: auto !important;
}

.country_code_box {
  position: relative;
}

.consultation_form_style .country_row_section .wpcf7-not-valid-tip {
  position: absolute;
  top: 58px;
}


.guest_user_listing_point_stype li {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 34px;
    color: #fff; 
}

.guest_user_listing_point_stype li::before {
    content: "";
    width: 24px;
    height: 24px;
    position: absolute;
    top: -1px;
    left: 0;
    background-repeat: no-repeat;
    background-image: url(../images/tick_point_checkDark.svg);
}

select.form-control{
-webkit-appearance: none !important;
    -moz-appearance: none!important;
    appearance: none !important;
   background-image: url(../images/downArrowSelect.svg)!important;
    background-position: right 15px center !important;
    background-repeat: no-repeat !important;
  }

  .Business_Model_Point{display:none;}
  .Business_Model_list li.active  .Business_Model_Point{display:block;}

  .Business_Model_Point li {
    background: transparent;
    border: none;
    padding: 0 15px 10px 24px;
    margin-bottom: 10px;
    color:#fff;
    position: relative;
    font-size:14px;
    flex:0 0 50%;
    width:50%; 
}

  .Business_Model_Point li:before{
    content:"";
    width:20px;
    height:20px;
    background-image: url(../images/tickIconSmall.svg)!important;
    background-repeat:no-repeat;
      position: absolute;
    left: 0;
    top: -1px;
  }

.Business_Model_Point ul {
    padding-top: 20px;
    display: flex!important;
    flex-wrap: wrap;
}

 

.world-class-mobile-wrapper {/* Rectangle 45007 */
    box-sizing: border-box;
    background: linear-gradient(180deg, #EDF0F6 0%, #FAFAFA 100%);
    border: 1px solid #E4E7ED;
    box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
    border-radius: 40px;
    padding: 32px 32px 64px 32px;
}

.world-class-mobile-caption {flex: 0 0 64%;max-width: 64%; padding-right:15px;}

.world-class-mobile-row {
    display: flex;
    flex-wrap: wrap;
    width:100%;
}

.world-class-mobile-figure {
    flex: 0 0 36%;
    max-width: 36%;
}

.world-class-mobile-caption h3 {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.world-class-mobile-caption p {
    color: #000;
    font-size: 18px;
}

.world-class-mobile-caption ul {
    padding: 24px 0;
}

.world-class-mobile-caption ul li {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 20px;
    margin-bottom: 20px;
}

.world-class-mobile-caption ul li span {flex-shrink: 0;margin-right: 10px;}

.world-class-mobile-caption ul li strong {
    font-weight: bold;
}

.referenced_bussiness_star {
    display: flex;
    align-items: start;
    padding-top: 24px;
    color: #8b8b8b;
    font-size: 16px;
}

.referenced_bussiness_star img {
    width: 20px;
    margin-right: 10px;
}

.world-class-mobile-apps_section {
    padding: 64px 0 72px 0;
}

.world-class-mobile-row img {
    width: auto!important;
}


.world-class-slider .owl-nav {
    position: absolute;
    bottom: -54px;
    left: 0;
    right: 0;
}
.referenced_bussiness_star span {
    color: red;
}
.world-class-slider .owl-nav button {
    width: 44px;
    height: 44px;
    background: #1D9131!important;
}

.world-class-slider .owl-nav button span {
    color: #fff;
    font-size: 32px;
    line-height: 0.8;
    display: inline-block;
}





/* ppc-mobile-app-development-company-lp */

main.ppc-mobile-app-development-company-lp .hero_banner_left h1 span {display: block;background: linear-gradient(90deg, #F78F1E, #EE7ED7, #263CFF);-webkit-background-clip: text;-webkit-text-fill-color: transparent;background-clip: text;color: transparent;position: relative;}
main.ppc-mobile-app-development-company-lp .Business_Model_Point li:before{background-image:url(../images/17022026/check_indu_icon.svg)!important;}
main.ppc-mobile-app-development-company-lp .hero_banner_left p {
    background: linear-gradient(90deg, #F78F1E, #EE7ED7, #263CFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    position: relative;
}
main.ppc-mobile-app-development-company-lp .contact_detail{border-bottom: 1px solid #61d4fe;}

main.ppc-mobile-app-development-company-lp .hero_banner_main {
    padding: 84px 0 54px 0;
}

main.ppc-mobile-app-development-company-lp .Business_Model_list > ul > li,main.ppc-mobile-app-development-company-lp .consultation_form_style{border:1px solid #61d4fe33;}

.ppc-mobile-app-development-company-lp .App_ppc_btn{background: linear-gradient(90deg, #1955B2 0%, #2EA0BB 100%); color:#fff;}
.ppc-mobile-app-development-company-lp .app_expert:after{background: #1C62B3; color:#fff;}
.ppc-mobile-app-development-company-lp .world-class-slider .owl-nav button{background: #1C62B3!important; color:#fff;}

.ppc-mobile-app-development-company-lp .Sales_Expert{background: linear-gradient(180deg, #FFFFFF 0%, #D8EFFF 100%);}

.ppc-mobile-app-development-company-lp .banner_img_part:after{background: linear-gradient(180deg, rgba(32, 10, 62, 0.53) 0%, rgba(23, 6, 46, 0.9) 100%);}


.ppc-mobile-app-development-company-lp .Seamless_tab_Link .nav-link{background:#F3F8FF; border:1px solid #87BFFF; border:1px solid #87BFFF; color: #636978;}
 

.ppc-mobile-app-development-company-lp .Seamless_tab_Link .nav-link.active,
.ppc-mobile-app-development-company-lp .hiring_post_detail .tag_point,
.ppc-mobile-app-development-company-lp .Requirement_tabs_vertical .nav-link.active .progress_Tabs,
.ppc-mobile-app-development-company-lp .consultation_form_style .enquiry_action .btn_primary,
.ppc-mobile-app-development-company-lp .consultation_form_style .service_form_action .btn_primary

{background:#1C62B3; color: #fff;}

.ppc-mobile-app-development-company-lp .Seamless_tab_Link .nav-link.active img{filter: brightness(100);}

.ppc-mobile-app-development-company-lp .app-main-heading h2 span,
.ppc-mobile-app-development-company-lp .Business_Model_left_content h2 span,
.ppc-mobile-app-development-company-lp .Business_Model_list li figcaption h3,
.ppc-mobile-app-development-company-lp .contact-detail h3,
.ppc-mobile-app-development-company-lp .country_add h3,
.ppc-mobile-app-development-company-lp .consultation_form_style h2 span

{color:#63D6FF;}

.ppc-mobile-app-development-company-lp .brands-section,
.ppc-mobile-app-development-company-lp .Seamless_Development_section,
.ppc-mobile-app-development-company-lp .testimonial_section,
.ppc-mobile-app-development-company-lp .feature-section,
.ppc-mobile-app-development-company-lp .turning-mobileapp
{background: radial-gradient(50% 50% at 50% 50%, #EAF0FF 0%, #F6FCFF 100%);}

.ppc-mobile-app-development-company-lp .cta-section,
.ppc-mobile-app-development-company-lp .Business_Model_section,
.ppc-mobile-app-development-company-lp .app_expert,
.ppc-mobile-app-development-company-lp .Requirement_Analysis,
.ppc-mobile-app-development-company-lp .Hiring_Models_section,
.ppc-mobile-app-development-company-lp .contact_detail_section
 {
    background: linear-gradient(281.06deg, #0C0317 19.38%, #2A0E51 68.37%, #09193D 86.87%);
}

.contact_number .wpcf7-form-control-wrap {
  display: block;
}
.consultation_form_style .countrycodebannerenquiry .wpcf7-not-valid-tip {
	top: 44px;
	font-size: 15px;
	padding-right: 2px;
}

.soundIcon {
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 9;
}

 

.partner_logos_left ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.partner_logos_left ul li {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 10px;
}

.partner_logos_left li span {
    box-shadow: 0 9px 12px 0 rgba(0,0,0,.12);
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 10px;
    border-radius: 12px;
    transition: .3s;
    -webkit-transition: .3s;
    height: 74px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.onLoad-spinner .contactformloader {
    position: absolute;
    right: 0;
    top: 13px;
    left: 0;
    text-align: center;
}

.dot-loader.contactformloader{display:none!important;}
 
.Key_Capabilities_outer ul {
    padding: 10px 0;
}

.Key_Capabilities_outer {
    padding: 15px 0;
}

.Key_Capabilities_outer h4 {
    font-weight: 600;
    color: #000;
    font-size: 20px;
    margin-bottom:15px;
}

.Connect_Sales_Expert  .app-main-heading {
    padding-right: 124px;
}

.world-class-mobile-row .tick-mark img {
    max-height: 20px;
}

.world-class-mobile-row .tick-mark {
    width: 20px;
    height: 20px;
}
 

.contact_detail_section .pattern-match {
    padding-top: 20px;
}