
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #444;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #1bb1dc;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

.col-pad-0 {
  padding:0;
}

.pl-0 {
  padding-left:0;
}
.pr-0 {
  padding-right:0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #e86138;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #1bb1dc;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  padding: 0 0 10px 0;
  font-size: 14px;
  transition: all 0.5s;
}

#topbar .social-links {
  text-align: right;
}

#topbar .social-links a {
  color: #fff;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
}

#topbar .social-links a:hover {
  color: #e86138;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 110px;
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 20px 0;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled,
#header.header-pages {
  color: black;
  height: 70px;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header.header-scrolled #topbar,
#header.header-pages #topbar {
  display: none;
}

#header .logo h1 {
  font-size: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #000;
  text-decoration: none;
}

#header .logo img {
  padding: 0;
  /* margin: 7px 0;
  max-height: 26px; */
  max-width: 220px;
  position:relative;
  top:-12px;
}

.main-pages {
  margin-top: 60px;
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Desktop Navigation */

.main-nav {
  /* Drop Down */
  /* Deep Drop Down */
}

.main-nav,
.main-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 12px;
  float: left;
}

.main-nav ul li a {
  display: block;
  position: relative;
  color: #fff;
  /* padding: 10px 15px; */
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
.header-scrolled .main-nav ul li a {
  color: #000;
}
.main-nav a:hover,
.main-nav .active > a,
.main-nav li:hover > a {
  color:#e86138 !important;
  text-decoration: none;
}

/* .main-nav li:hover>a,
.main-nav .active,
.main-nav a:hover,
.main-nav .active > a,
.main-nav .active:focus {
    color:#e86138;
  } */

.main-nav >ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #e86138;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}
.main-nav  a:hover:before, 
.main-nav li:hover>a:before, 
.main-nav .active:before {
visibility: visible;
width: 100%;
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 0px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: rgb(255, 255, 255, 0.2);
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
  border-radius: 5px;
}

.main-nav .drop-down ul {
  background: #fff; 
}

.main-nav .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .drop-down li {
  min-width: 180px;
  position: relative;
}

.main-nav .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #000;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active > a,
.main-nav .drop-down ul li:hover > a {
  color: #e86138;
}

.main-nav .drop-down > a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 10px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.main-nav .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.main-nav .drop-down .drop-down > a {
  padding-right: 35px;
}

.main-nav .drop-down .drop-down > a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
}

/* Mobile Navigation */

.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(40, 38, 70, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #e86138;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\f077";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  /* color: #fff; */
  color:#e86138;
  font-size:30px
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* ========== Media ======== */

@media (max-width: 991px) {
   #header .container {
       max-width: 100%;
   }
   #header .logo img {
    position: relative;
    top: -7px;
   }
}


/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f5f8fd url("../img/banner-bg1.jpg") center top no-repeat;
  background-size: cover;
}

#intro .intro-info h2 {
  color: #fff;
  margin-bottom: 40px;
  font-size: 48px;
  font-weight: 500;
}

#intro .intro-info h2 span {
  color: #1bb1dc;
}

#intro .intro-info .btn-get-started,
#intro .intro-info .btn-services {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 4px;
  transition: 0.5s;
  color: #fff;
  background: #1bb1dc;
  color: #fff;
}

#intro .intro-info .btn-get-started:hover,
#intro .intro-info .btn-services:hover {
  background: #0a98c0;
}


/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

.section-header h3 {
  font-size: 36px;
  color: #e86138;
  text-align: center;
  font-weight: 600;
  padding-bottom: 10px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.section .section-header h4 {
  font-size: 1.4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
    position: relative;
    color: #000;
    margin-bottom: 30px;
}

/* Sections Header
--------------------------------*/

.section-header h3::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: #0c96cc;
  left: 0;
  right: 0;
  bottom: -6px;
  margin: auto;
}
.section-header h3::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: #e86138;
  left: 0;
  right: 0;
  bottom: -7px;
  margin: auto;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f5f8fd;
}

/* Services Section
--------------------------------*/

#devmethodology {
  /* padding: 60px 0 40px 0;
  position: relative;
  background: #ecf5ff; */
  padding: 60px 0 40px 0;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(65, 199, 255, 0.22) 0, rgba(65, 199, 255, 0) 24%), radial-gradient(circle at 82% 18%, rgba(232, 97, 56, 0.18) 0, rgba(232, 97, 56, 0) 22%), linear-gradient(135deg, #f4fbff 0%, #edf6ff 42%, #fdfcff 100%);
}

#devmethodology::before, #devmethodology::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

#devmethodology::before {
    inset: -15% -10%;
    background: radial-gradient(circle at 20% 30%, rgba(27, 177, 220, 0.18) 0, rgba(27, 177, 220, 0) 18%), radial-gradient(circle at 70% 35%, rgba(97, 123, 255, 0.16) 0, rgba(97, 123, 255, 0) 20%), radial-gradient(circle at 48% 78%, rgba(232, 97, 56, 0.14) 0, rgba(232, 97, 56, 0) 20%);
    filter: blur(18px);
    animation: techAuroraMove 16s ease-in-out infinite;
}

#devmethodology::after {
    inset: 0;
    background-image: linear-gradient(rgba(27, 177, 220, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 177, 220, 0.08) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 90%);
    animation: techGridDrift 18s linear infinite;
    opacity: 0.9;
}

/* #devmethodology .container{
  position: relative;
  z-index:-1;
} */

#devmethodology h4.expText {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  position: relative;
  color:#000;
  margin-bottom: 30px;
}
#devmethodology h4.expText span {
  font-style: italic;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  letter-spacing: 1.2px;
  display: block;
  color: #e86138;
}

#devmethodology .box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* margin: 0 10px 40px 10px; */
  border-bottom: 5px solid #fff;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  text-align: center;
  /* padding: 50px 20px; */
  padding:20px 20px 15px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 18px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
}
#devmethodology .box:hover:before {
  transform: scale(22);
}

#devmethodology .icon {
  margin: 0 auto 25px auto;
  padding-top: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

#devmethodology .icon i {
  font-size: 55px;
  line-height: 1;
}

#devmethodology .title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
}

#devmethodology .title a {
  color: #111;
}

#devmethodology .box:hover .title a {
  color: #1bb1dc;
}

#devmethodology .description {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 15px;
  text-align: center;
}

.devmethodology .lbg-img {
  position: relative;
  height: 100%;
  z-index: 9;
}
.devmethodology .lbg-img img {
  display: none;
}
.devmethodology .lbg-img {
  background-image: url(../../assets/img/col-bgimage-3.jpg) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.devmethodology .our-Info {
  background-color: #e86138;
  padding: 50px 20px 50px 20px;
}
.devmethodology .our-Info h3, .devmethodology .our-Info p {
  color: #fff;
}

.devmethodology .half-circle {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
}
.devmethodology .half-circle-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.4;
  transform: rotate(180deg);
}

/* ========dev ========*/
.dev-card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  overflow:hidden;
  position:relative;
  height:220px;
  transition:.4s;
  cursor: default;
  z-index: 1;
}
.dev-card:hover {
  background-color: rgb(0, 0, 0, 0.8);
}
.dev-card:hover .icon img{
  opacity:0.2;
  transition:0.3s;
}
.dev-card:hover .title{
  opacity:0.2;
  transition:0.3s;
}
.dev-card .description{
  position:absolute;
  bottom:-160px;
  left:0;
  padding:20px;
  font-size:14px;
  transition:.6s;
  color:#fff;
  margin-bottom: 0 !important;
  pointer-events: none;
}

.dev-card:hover .description{
  bottom:0px;
}

.dev-card:hover{
  transform:translateY(-10px);
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

/* ===================== */
@media (max-width: 991px) {
  .devmethodology .lbg-img img {
      display: block;
      width: 100%;
  }
  .devmethodology .our-Info-cont .pl-0 {
    padding-left: 15px !important;
  }
  .devmethodology .our-Info-cont .pr-0 {
    padding-right: 15px !important;
  }
}



/* Services Section
--------------------------------*/

#technologies {
  padding: 60px 0 40px 0;
  position: relative;
}


#technologies h4.expText {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  position: relative;
  color:#000;
  margin-bottom: 30px;
}

#technologies .box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  /* margin: 0 10px 40px 10px; */
  border-bottom: 5px solid #fff;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 18px;
  -webkit-transition: all ease-in-out 0.4s;
  -moz-transition: all ease-in-out 0.4s;
  -ms-transition: all ease-in-out 0.4s;
  -o-transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  transition: all ease-in-out 0.4s;
  cursor: default;
}
#technologies .box:hover:before {
  transform: scale(22);
}
/* #services .box:before{
  content: "";
  position: absolute;
  z-index: -1;
  top: -16px;
  right: -16px;
  background: rgb(221 221 221 / 23%);
  height: 32px;
  width: 32px;
  border-radius: 32px;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform 0.25s ease-out;
} */

#technologies .box:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  border-color: #e86138;
  cursor: default;
}

#technologies .box:before {
  content: "";
  position: absolute;
  background: color-mix(in srgb, rgb(176 211 251), transparent 70%);
  right: -80px;
  top: -80px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}
#technologies .box:after { 
  content: "";
  position: absolute;
  background: color-mix(in srgb, rgb(176 211 251), transparent 70%);
  right: -140px;
  top: -140px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: -1;
}
#technologies .box:hover:before, 
#technologies .box:hover:after {
  background: #ecf5ff;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

#technologies .icon {
  margin: 0 auto 15px auto;
  padding: 12px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}

#technologies .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#technologies .title a {
  color: #111;
}

#technologies .box:hover .title a {
  color: #1bb1dc;
}

#technologies .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
}

.technologies .lbg-img {
  position: relative;
  height: 100%;
  z-index: 9;
}
.technologies .lbg-img img {
  display: none;
}
.technologies .lbg-img {
  background-image: url(../../assets/img/col-bgimage-3.jpg) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}
.technologies .our-Info {
  background-color: #e86138;
  padding: 50px 20px 50px 20px;
}
.technologies .our-Info h3, .technologies .our-Info p {
  color: #fff;
}

@media (max-width: 991px) {
  .technolgies .lbg-img img {
      display: block;
      width: 100%;
  }
  .technologies .our-Info-cont .pl-0 {
    padding-left: 15px !important;
  }
  .technologies .our-Info-cont .pr-0 {
    padding-right: 15px !important;
  }
}


/* ======================== */

#industrydomains {
  padding: 60px 0 40px 0;
  /* background: url(../img/corner.png) top right no-repeat; */
  position: relative;
}

#industrydomains .container {
  position: relative;
  z-index: 1;
}

#industrydomains .box {
  position: relative;
  overflow: hidden;
  border-radius: 0px;
  background: rgb(255, 255, 255, 0.6);
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.4s;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border:1px solid #ddd;
  cursor: default;
}

.industrydomains  h4.expText {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  position: relative;
  color:#000;
  margin-bottom: 30px;
}

.industrydomains .icon {
    margin: 0 auto 15px auto;
    padding: 12px;
    display: inline-block;
    text-align: center;
    border-radius: 25%;
    border: 2px solid #ddd;
    width: 80px;
    height: 80px;
    text-align: center;
}

.industrydomains .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
}
.industrydomains .title a {
    color: #111;
}

.industrydomains .box:hover .title a {
  color: #1bb1dc;
}

.industrydomains .box::before {
    right: 0;
    top: 0;
}

.industrydomains .box::after {
    left: 0;
    bottom: 0;
}

.industrydomains .box::before , 
.industrydomains .box::after {
    transition-delay: 0.2s;
}

.industrydomains .box:hover::before, 
.industrydomains .box:hover::after {
    transition-delay: 0s;
}

.industrydomains .box:hover::before, 
.industrydomains .box:hover::after {
    width: 100%;
}

.industrydomains .box::before, 
.industrydomains .box::after {
    content: "";
    width: 0;
    height: 2px;
    position: absolute;
    transition: all 0.2s linear;
    background: #0095cc;
}

/* box-inner */
.industrydomains .box .box-inner::before, 
.industrydomains .box .box-inner::after {
    content: "";
    width: 2px;
    height: 0;
    position: absolute;
    transition: all 0.2s linear;
    background: #0095cc;
}

.industrydomains .box .box-inner::before {
    left: 0;
    top: 0;
}

.industrydomains .box .box-inner::after {
    right: 0;
    bottom: 0;
}

.industrydomains .box .box-inner:hover::before, 
.industrydomains .box .box-inner:hover::after {
    transition-delay: 0s;
}

.industrydomains .box .box-inner:hover::before, 
.industrydomains .box .box-inner:hover::after {
    height: 100%;
}

.industrydomains .box .box-inner .description {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  text-align: center;
}

.industrydomains .element {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.industrydomains .element-2 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: rotate(180deg);
}

/* Floating Shapes */
.industrydomains .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.industrydomains .shape {
  position: absolute;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.industrydomains .shape:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.industrydomains .shape:nth-child(2) {
  top: 20%;
  right: 10%;
  animation-delay: 1s;
}

.industrydomains .shape:nth-child(3) {
  top: 40%;
  left: 20%;
  animation-delay: 2s;
}

.industrydomains .shape:nth-child(4) {
  top: 60%;
  right: 20%;
  animation-delay: 3s;
}

.industrydomains .shape:nth-child(5) {
  top: 80%;
  left: 30%;
  animation-delay: 4s;
}

.industrydomains .shape:nth-child(6) {
  top: 30%;
  right: 30%;
  animation-delay: 5s;
}

.industrydomains .shape:nth-child(7) {
  top: 50%;
  left: 50%;
  animation-delay: 1.5s;
}

.industrydomains .shape:nth-child(8) {
  top: 70%;
  right: 40%;
  animation-delay: 2.5s;
}

.industrydomains .shape.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #1bb1dc;
}

.industrydomains .shape.square {
  width: 15px;
  height: 15px;
  background: #e86138;
  transform: rotate(45deg);
}

.industrydomains .shape.triangle {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 17px solid #0095cc;
}

.industrydomains .shape.bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fceef3;
  border: 2px solid #1bb1dc;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
  }
}




/* Product and Solotions 
-------------------------- */

#solution {
  min-height: 610px;
    padding: 60px 0 40px 0;
}
.solution-bg {
  background: #f5f8fd url(../img/floral-bg.png) no-repeat center bottom;
  background-size: cover;
}

.solution-box {
    margin: 10px 0px;
    padding: 30px 20px;
    height: 300px;
    text-align: center;
    box-shadow: 3px 3px 17px rgb(210, 211, 211);
    border-radius: 10px !important;
    border-radius: 5px;
    transition: all 0.8s ease 0s;
    cursor: default;
    background: rgba(255, 255, 255, 0.8);
}

.solution-box:hover {
  min-height: 300px;
  background: rgb(49 47 47);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.solution-box .title{
    position: relative;
    /* top: 65px; */
    top: 35px;
    margin: 0;
    color: #000;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    transform: translateY(0%);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
}

.solution-box:hover .title {
    top: -65px;
    color: #fff;
}
.solution-box .title a {
    color: #000;
}
.solution-box:hover .title a {
    color: #fff;
}
.solution-box:hover .title a:hover {
    color: #0095cc;
}

.solution-box .title > span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    padding-top: 10px;
    line-height: 24px;
}
.solution-box:hover .title > span {
    display:none;
}

.solution-box .icon {
    width: 110px;
    height: 110px;
    margin: 0 auto;
    transform: translateY(15px);
    transition: all 0.50s ease 0s;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
}
.solution-box:hover .icon {
    transform: translateY(-70%);
    /* transform: translateY(-100%); */
}

.solution-box .description {
    position: relative;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 300;
    margin: 0;
    margin-top: -20px;
    opacity: 0;
    transition: all 0.30s linear 0s;
    transform: translateY(0%);
    transition: all 600ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0s;
    pointer-events: none;
}

.solution-box:hover .description {
    top: -38px;
    opacity: 1;
    color: #fff;
}
/* .solution-box .description:hover {
    pointer-events: none;
} */


/* Testimonials Section
--------------------------------*/
.testimonials-bg {
  padding: 80px 0;
  background: linear-gradient(rgba(5, 74, 133, 0.8), rgba(5, 74, 133, 0.9)), 
  url(../../assets/img/testimonials-bg.jpg) fixed no-repeat;
  background-position: center center;
  background-size: cover;
}
/* .testimonials::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(13, 20, 26, 0.7);
} */

#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  text-align: center;
  color:#fff;
}
#testimonials .section-header h4 {
  margin-bottom: 40px;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  float: left;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  margin-left: 140px;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #fff;
  margin: 0 0 15px 0;
  margin-left: 140px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 140px;
  color:#fff;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #e86138;
}

/* Team Section
--------------------------------*/

#team {
  padding: 60px 0;
  background: #fff;
  
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
  transition: all 0.6s ease;
}
#team .member:hover{
  /* transform: scale(1.1); */
  /* box-shadow: rgba(255, 172, 28, 0.199) -10px 10px, rgba(255, 172, 28, 0.19) -20px 20px ; */
  box-shadow: rgba(6, 147, 203, 0.199) -10px 10px, rgb(6, 147, 203, 0.19) -20px 20px;
}

#team .member .member-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
  padding: 15px 0;
  background: rgba(6, 6, 6, 0.8);
  /* background: rgba(29, 28, 41, 0.6); */
}

#team .member .member-info-content {
  transition: margin 0.2s;
  height: 40px;
  transition: height 0.4s;
}

#team .member:hover .member-info {
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  /* height: 120px; */
  height: 36px;
  cursor: pointer;
}

#team .member:hover .member-info-content p {
  font-size: 13px;
  padding: 4px 6px 0px;
  color: #fff;
}

#team .member h4 {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 18px;
  color: #ff5723;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #1bb1dc;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

.team-bg{
  background: #f5f8fd url(../img/background-motif.webp) no-repeat center bottom;
  background-size: cover;
}

.team .staff-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, #73777c, transparent 90%);
    transition: all 0.3s ease-in-out;
    height: 100%;
}
.team .staff-card:hover {
    box-shadow: 0 12px 40px 
 color-mix(in srgb, #73777c, transparent 88%);
    border-color: 
 color-mix(in srgb, #0c96cc, transparent 60%);
}
.team .staff-card .staff-photo {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 280px;
}
.team .staff-card .staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team .staff-card:hover .staff-photo img {
    transform: scale(1.08);
}
.team .staff-card .staff-photo .photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
    color-mix(in srgb, #0c96cc, transparent 10%) 0%,
    color-mix(in srgb, #0c96cc, transparent 80%) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.team .staff-card:hover .staff-photo .photo-overlay {
    opacity: 1;
}
.team .staff-card .staff-photo .photo-overlay .social-links {
    display: flex;
    gap: 10px;
}
.team .staff-card .staff-photo .photo-overlay .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #0754d9;
    font-size: 15px;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.team .staff-card .staff-details {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.team .staff-card .staff-details .role-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    color: #0c96cc;
    background-color: 
    color-mix(in srgb, #0c96cc, transparent 90%);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    width: fit-content;
}
.team .staff-card .staff-details h4 {
    font-size: 18px;
    font-weight: 700;
    color: #e86138;
    margin-bottom: 12px;
    line-height: 1.3;
}
.team .staff-card .staff-details p {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    line-height: 1.7;
    color: 
    /* color-mix(in srgb, #73777c, transparent 25%); */
    color-mix(in srgb, #000, transparent 25%);
    margin-bottom: 18px;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.team .staff-card .staff-details .profile-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: 
    color-mix(in srgb, #73777c, transparent 30%);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}
.team .staff-card:hover .staff-details .profile-link {
    color:#0c96cc;
}
.team .staff-card .staff-photo .photo-overlay .social-links a:hover {
    background-color: #0c96cc;;
    color: #fff;;
    transform: translateY(0);
}
.team .staff-card .staff-details .profile-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}
.team .staff-card:hover .staff-details .profile-link i {
    transform: translateX(4px);
}

/* Clients Section
--------------------------------*/
#clients {
  padding: 60px 0;
  position: relative;
  background: #ecf5ff;
  overflow: hidden;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.82) 0px, rgba(255, 255, 255, 0) 28%), radial-gradient(circle at 86% 16%, rgba(27, 177, 220, 0.2) 0px, rgba(27, 177, 220, 0) 30%), radial-gradient(circle at 50% 100%, rgba(232, 97, 56, 0.16) 0px, rgba(232, 97, 56, 0) 34%), linear-gradient(135deg, rgb(238, 248, 255) 0%, rgb(223, 240, 255) 48%, rgb(249, 252, 255) 100%);
}
#clients::before, #clients::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: 12s ease-in-out 0s infinite normal none running clientsFloat;
}

#clients::before {
    width: 320px;
    height: 320px;
    top: -110px;
    left: -90px;
    background: rgba(255, 255, 255, 0.38);
    filter: blur(10px);
}

#clients::after {
    width: 360px;
    height: 360px;
    right: -110px;
    bottom: -140px;
    background: rgba(27, 177, 220, 0.14);
    filter: blur(16px);
    animation-delay: -4s;
}

#clients .clients-wrap {
  border-top: 1px solid #d6eaff;
  border-left: 1px solid #d6eaff;
  /* margin-top: 60px; */
  margin-bottom: 30px;
}
#clients .clients-wrap .p0 {
  padding: 0;
}
#clients .client-logo {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #d6eaff;
  border-bottom: 1px solid #d6eaff;
  overflow: hidden;
  background: #fff;
  height: 100px;
}
#clients img {
  transition: all 0.4s ease-in-out;
}
#clients .client-logo:hover img {
  transform: scale(1.2);
}

/* #clients img {
  max-width: 80%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #1bb1dc;
} */

/*--------------------------------------------------------------
Contact-Us
--------------------------------------------------------------*/
.contact {
  padding: 60px 0;
  background: url(../img/contact-bg.png) left center no-repeat;
  position: relative;
}
.contact::before {
  content: "";
  background: rgba(255, 255, 255, 0.75);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
.contact .info-item {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 30px;
}
.contact .info-item .icon {
  color: #fff;
  background-color: #e86138;
  font-size: 20px;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  margin-right: 15px;
}
.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 2px 0;
}
.contact .info-item address {
  font-size: 14px;
}
.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
  color: #0a98c0;
}
.contact .info-item .social-links a:hover {
  color: #e86138;
}

.contact .php-email-form h3 {
  font-size: 20px;
  /* margin-bottom: 34px; */
  margin-bottom: 25px;
  font-weight: 600;
}
.contact .php-email-form {
  background: #fff;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  /* padding: 30px; */
  padding: 24px 30px;
}
.contact .php-email-form .inputfiled {
  position: relative;
}


.contact .php-email-form input[type=text], 
.contact .php-email-form input[type=email], 
.contact .php-email-form textarea {
  /* color: var(--default-color); */
  border-color: #ddd;
  font-size: 14px;
  /* padding: 10px 15px; */
  padding: 10px 10px;
  box-shadow: none;
  border-radius: 0;
  resize: none;
}
.contact .php-email-form input[type=text], 
.contact .php-email-form input[type=email] {
  /* height: 50px; */
  height:36px
}

.contact .php-email-form .field-error {
  display: none;
  color: #df1529;
  font-size: 12px;
  /* margin-top: 6px; */
  text-align: left;
  position: absolute;
}

.contact .php-email-form .is-invalid,
.contact .php-email-form .isInvalid,
.contact .php-email-form #name.is-invalid,
.contact .php-email-form #email.is-invalid,
.contact .php-email-form #subject.is-invalid,
.contact .php-email-form #message.is-invalid,
.contact .php-email-form #name.isInvalid,
.contact .php-email-form #email.isInvalid,
.contact .php-email-form #subject.isInvalid,
.contact .php-email-form #message.isInvalid {
  border-color: #df1529;
}
.contact .php-email-form .loading {
  display: none;
  /* background: #ecf5ff; */
  color: #28a745;
  text-align: center;
  padding: 6px;
  margin-bottom: 24px;
}
.contact .php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 6px;
  margin-bottom: 24px;
  font-weight: 400;
}
.contact .php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 6px;
  margin-bottom: 24px;
  font-weight: 400;
}
.contact .php-email-form .submitBtn {
  color: #fff;
  background: #e86138;
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}
.contact .php-email-form .submitBtn:hover {
  background: #c75532;
}

.contact .php-email-form .submitBtn:disabled {
  background: #9e9e9e;
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}

.contact .php-email-form .submitBtn:disabled:hover {
  background: #9e9e9e;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  /* padding: 0 0 30px 0; */
  font-size: 14px;
  background: #fff;
}

#footer .footer-top {
  padding: 0px 0 30px 0;
  background: #f5f8fd;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
  color: #000;
  font-size: 15px;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/
@media (max-width:1024px) {
  .cta,
  .testimonials-bg {
    background-attachment: scroll !important;
  }
}

@media (min-width: 992px) {
  #intro .intro-info {
    padding-top: 80px;
  }

  #testimonials .testimonial-item p {
    width: 80%;
    color: #fff;
  }
}

@media (max-width: 991px) {
  #topbar {
    display: none;
  }

  #header {
    height: 70px;
    padding: 15px 0;
  }

  #header .logo h1 {
    font-size: 28px;
    padding: 8px 0;
  }

  #intro {
    height: 600px;
    padding: 80px 0 60px 0;
  }

  #intro .intro-info h2 {
    font-size: 40px;
  }

  #devmethodology h4.expText {
    font-size: 1rem;
  }

  .section .section-header h4 {
    font-size: 1rem;
  }

  #devmethodology .title,
  #technologies .title,
  .industrydomains .title,
  .solution-box .title,
  .contact .php-email-form h3  {
    font-size: 16px;
  }

  /* .devmethodology .half-circle, 
  .devmethodology .half-circle-2 {
    display: none;
  } */

  .industrydomains h4.expText,
  #technologies h4.expText {
    font-size: 1rem;
  }

  #technologies .box:hover,
  .solution-box:hover {
    margin: 0px 10px auto;
  }

  .section-header h3 {
    font-size: 24px;
  }

    .contact .php-email-form h3 {
    font-weight: 600;
  }

  .contact .php-email-form .message {
    height: 133px;
  }

  .contact .php-email-form .loading,
  .contact .php-email-form .error-message,
  .contact .php-email-form .sent-message {
    font-size: 16px;
  }

  .pl-0 {
  padding-left:15px !important;
  }
  .pr-0 {
    padding-right:15px !important;
  }

}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #faq #faq-list a {
    font-size: 18px;
  }

  #faq #faq-list i {
    top: 13px;
  }
}


@media (max-width: 767px) {
  #intro {
    height: auto;
    padding: 80px 0 60px 0;
  }

  #intro .container {
    height: auto !important;
  }

  #intro .intro-img {
    width: 80%;
  }

  #intro .intro-info {
    text-align: center;
    padding-top: 40px;
  }

  #intro .intro-info h2 {
    font-size: 20px;
    /* margin-bottom: 30px; */
  }

  .section-header p {
    width: 100%;
  }

  #testimonials .testimonial-item {
    text-align: center;
  }

  #testimonials .testimonial-item .testimonial-img {
    float: none;
    margin: auto;
  }

  #testimonials .testimonial-item h3,
  #testimonials .testimonial-item h4,
  #testimonials .testimonial-item p {
    margin-left: 0;
  }

  /* ========= solution-box========= */

  .solution-box .icon {
    width: 90px;
    height: 90px;
  }

  .solution-box:hover .icon {
    transform: translateY(-48%);
  }

  .solution-box:hover .title {
    top: -28px;
  }
  .solution-box:hover .description {
    top: 0px;
  }

  .team .staff-card .staff-details {
        padding: 26px 22px;
  }

}

@media (max-width: 574px) {

  #team .member h4 {
    font-size: 14px;
  }
  #team .member span{
      font-size: 12px;
  }

  .team .staff-card .staff-photo {
      min-height: 260px;
  }

  #footer .footer-top .social-links a {
    margin-bottom: 25px;
  }
  .col-xs {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}


/* ============== */
.keyofferings{
    padding: 60px 0 40px 0;
    position: relative;
}

.keyofferings h4 {
  font-size: 1rem;
  font-weight: 400; 
  margin: 0 0 2px 0;
}
.keyofferings .section-header h3 {
   font-size: 30px;
}
.keyofferings .section-header h4 {
   font-size: 1.2rem;
   margin-top: 1.3rem;
}
.keyofferings p {
  font-size: 1rem;
  font-weight: 600; 
  margin: 0 0 10px 0;
}
.acrh{
  margin-top: 1.2rem;
}