*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}
img{
  max-width: 100%;
}

/* Header  */
.header{
  background-color: #f5f5f5;
}
.nav-item .btn{
  font-size: 16px;
  margin-left: 15px;
  font-weight: 500;
  background-color: #191c4a;
  color: #ffffff;
  transition: 0.4s;
  padding: 7px 16px;
  border-radius: 50px;
}
.nav-item .btn:hover{
  background-color: #f47728 !important;
  color: #fff !important;
}
.nav-link{
  font-weight: 500 !important;
  margin: 0 10px;
  border-radius: 5px;
  color: #000 !important;
  padding: 7px 12px !important;
}
.nav-link:hover{
  color: #f47728 !important;
}


/* banner section  */
.banner{
  background-image: url("../images/banner-bg.jpg");
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}
.banner-text {
  padding: 50px;
  border-radius: 15px;
  background-color: #ffffff63;
  box-shadow: 0 0 23px #153f6b;
  backdrop-filter: blur(10px);
}
.heading{
  color: #191c4a;
  font-weight: 700;
}
.banner h1{
  font-size: 60px;
}
.banner p{
  font-size: 18px;
  font-weight: 500;
}

@media only screen and (max-width: 1199px) {
  .banner h1{
    font-size: 50px;
  }
}
@media only screen and (max-width: 575px) {
  .banner h1{
    font-size: 38px;
  }
  .banner-text {
    padding: 20px;
  }
}

/* About Section  */
.about-us{
  padding: 50px 0;
}
.about-point {
  height: 100%;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 15px #cfcfcf;
}
.about-point-wrap{
  padding: 0 !important;
}
.mission{
  position: relative;
  background-image: url("../images/mission.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
  color: #fff;
}

.mission::before{
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: #f47728bd;
}

/* Service Section  */
.service{
  padding: 50px 0;
  background-color: #e5e6e9;
}
.service-wrapper{
  position: relative;
  background-color: #fff;
  transition: ease 0.5s;
  padding: 20px;
  height: 100%;
}


/* Features Section  */
.features{
  background-color: #ffffff;
  padding: 50px 0;
}
.feature-wrapper {
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 10px 9px #eff1ff;
  height: 100%;
}
.feature-no {
  position: relative;
  top: -20px;
  left: 0;
  box-shadow: 0 10px 5px #e2e6ff;
  border-radius: 100px 0 100px 0;
  background-color: #191c4a;
  padding: 8px;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

/* Business Steps Section  */
.business-steps{
  padding: 0px 0 50px;
}
.step-icon{
  width: 90px;
  height: 90px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 10px 5px #d9d9d9;
}
.step-wrapper {
  background-color: #e5e6e9;
  clip-path: polygon(0% 0px, 85% 0px, 100% 50%, 85% 100%, 0% 100%, 0px 50%);
  padding: 25px 50px 25px 24px;
}
.step-wrapper p{
  margin: 0;
}

/* platforms section  */
.platforms{
  padding: 0px 0 50px;
}
.platform-wrapper{
  border: 2px solid #000;
  border-image: linear-gradient(92.87deg, #005daa -4.01%, #f47728fc 22.11%, #0088ce 48.31%, #f47728fc 73.76%, #f47728fc 100%);
  border-image-slice: 1;
  position: relative;
  padding: 20px 25px;
  border-radius: 10px;
  height: 100%;
  box-shadow: 0 15px 10px #eeeeee;
  transition: ease-out 0.4s;
}
.platform-wrapper p{
  margin: 0;
}
.platform-wrapper:hover{
  transform: translateY(-10px);
}
.platform-wrapper img{
  border-radius: 10px;
}

/* footer section  */
.footer{
  padding: 40px 0;
  background-color: #191c4a;
}
.social-icons a{
  color: #191c4a;
  margin: 0 5px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  text-decoration: none;
  border-radius: 50%;
  background-color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: ease-out 0.3s;
}
.social-icons a:hover{
  background-color: #1e2c8b;
  transform: translateY(5px);
  color: #fff;
}
.page-links a {
  text-decoration: none;
  background-color: #1e2c8b;
  color: #fff;
  transition: 0.4s;
  margin: 15px 12px;
  display: inline-block;
}
.page-links a:hover{
  background-color: #fff;
  color: #191c4a;
}
.call {
  padding: 15px;
  text-align: center;
  background-color: #ffffff21;
  border-radius: 5px;
}
.call a{
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
}
.call a:hover{
  color: #fff;
}
.cpoyright p a{
  color: #1e2c8b;
  text-decoration: none;
}