/********** Template CSS **********/
:root {
  --primary: #fe8529;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #050a35;
}

::selection {
  color: #ffff;
  background: #fe8529;
}

/* @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }

  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }

  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }

  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

* {
  font-family: Arial, Helvetica, sans-serif,
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 600 !important;
}

/*** Button ***/
.btn {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Nunito", sans-serif;
  position: relative;
  margin-left: 25px;
  padding: 35px 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: #ffff;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: #fff !important;
  border-color: #050a35 !important;
  background-color: #050a35;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-dark {
    position: relative;
    background-color: #050a35;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--light);
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  .navbar-dark {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #050a35;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link:hover::before,
  .navbar-dark .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (max-width: 991px) {
  .navbar-dark {
    background-color: #050a35;
    color: #fff;
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 30, 62, 0.7);
  z-index: 1;
}

@media (max-width: 576px) {
  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 30px;
    font-weight: 600 !important;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background-color: #fe8529;
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }

  50% {
    left: 145px;
  }

  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }

  50% {
    left: 50%;
    margin-left: 45px;
  }

  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }

  50% {
    left: 85px;
  }

  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 320px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  border-radius: 2px;
  /* transform: rotate(-45deg); */
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--dark);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}


/*** Team ***/
/* .team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

/* .team-item:hover {
  box-shadow: 0 0 30px #dddddd;
} */

/* .team-item:hover .team-social { */
/* background: rgba(9, 30, 62, 0.7); */
/* } */

/* Team Item */
.team-item {
  position: relative;
  overflow: hidden;
}

.team-item img {
  -webkit-filter: grayscale(100%);
  /* Apply grayscale filter */
  filter: grayscale(100%);
  /* Make the image grayscale by default */
  transition: all 0.5s ease-in-out;
  /* Smooth transition */
}

.team-item:hover img {
  -webkit-filter: grayscale(0%);
  /* Remove grayscale on hover */
  filter: grayscale(0%);
  /* Restore the image to color on hover */
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  /* Initially hidden */
  transition: opacity 0.5s ease-in-out;
}

.team-social a.btn {
  position: relative;
  margin: 0 10px;
  opacity: 0;
  /* Initially hidden */
  transform: translateY(20px);
  /* Start slightly below */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* On hover, show social buttons */
.team-item:hover .team-social {
  opacity: 1;
  /* Show social buttons on hover */
}

.team-item:hover .team-social a.btn {
  opacity: 1;
  /* Make buttons visible */
  transform: translateY(0);
  /* Move them into place */
}


.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  /* transform: scale(1.15); */
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/coursol-2.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

/* comany colors */

.darkColor {
  color: #050a35;
}

.lightColor {
  color: #fe8529;
}

.bgDarkColor {
  background-color: #050a35;
}

.bgLightColor {
  background-color: #fe8529;
}

.borderLight {
  border: #fe8529 1px solid;
}

.bgHeight {
  width: 100%;
  height: 387px;
}

.bgwebImg {
  min-height: 100%;
  background: url(/frontend/img/bgimg1.png);
  background-size: cover;
  background-blend-mode: multiply;
}

.bgwebImg1 {
  min-height: 100%;
  background: url(/frontend/img/bgimg2.png);
  background-size: cover;
  background-blend-mode: multiply;
}

.bgwebImg2 {
  min-height: 100%;
  background: url(/frontend/img/bgimg3.png);
  background-size: cover;
  background-blend-mode: multiply;
}

.bgappImg1 {
  min-height: 100%;
  width: 100%;
  height: 536px;
  background: url(/frontend/img/bgImg1.jpg);
  background-size: cover;
  background-blend-mode: multiply;
}

.bgappImg2 {
  min-height: 100%;
  width: 100%;
  height: 545px;
  background: url(/frontend/img/bgImg2.jpg);
  background-size: cover;
  background-blend-mode: multiply;
}

.projectBox {
  border: 2px solid #c5c5c5;
  border-radius: 10px;
  padding: 10px;
}

.projectImg {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img3.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg2 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img4.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg2:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg2 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg2:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg3 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img5.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg3:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg3 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg3:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg4 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img6.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 20s ease-out;
  /* Transition for the background position */
}

.projectImg4:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg4 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg4:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg5 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img7.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg5:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg5 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg5:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg6 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img8.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg6:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg6 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg6:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg7 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img2.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg7:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg7 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg7:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}

.projectImg8 {
  height: 500px;
  width: 100%;
  background: url('/frontend/img/web/img1.png') no-repeat center top;
  background-size: cover;
  border-radius: 7px;
  display: inline-flex;
  box-shadow: -1px 2px 5px 1px #ececec;
  position: relative;
  overflow: hidden;
  /* Ensure the paragraph stays within the image bounds */
  transition: background-position 10s ease-out;
  /* Transition for the background position */
}

.projectImg8:hover {
  background-position: center bottom;
  /* Move the background image to the bottom on hover */
}

.projectImg8 p {
  position: absolute;
  bottom: -100px;
  /* Initially position the paragraph below the view */
  background-color: white;
  padding: 16px;
  color: black;
  font-size: 13px;
  width: 100%;
  /* Ensure the paragraph takes the full width */
  transition: bottom 0.5s ease-out, opacity 0.5s ease-out;
  /* Add transition for smooth sliding */
  opacity: 0;
  /* Initially hide the paragraph */
  box-sizing: border-box;
}

.projectImg8:hover p {
  bottom: -30px;
  /* Slide up the paragraph */
  opacity: 1;
  /* Make the paragraph fully visible */
  padding: 20px;
}


.portfolioBox {
  background-color: #050a35;
  border-radius: 40px;
  padding: 15px 5px 5px;
}

.item {
  padding: 5px;
  margin: 5px;
}


.bullet-points {
  position: relative;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 35px;
  font-weight: 500;
}

.bullet-points:before {
  content: "";
  width: 2px;
  background: #F17700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 13px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.bullet-points li {
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 0 20px;
}

.bullet-points li:before {
  content: "";
  width: 10px;
  height: 10px;
  border: 2px solid #fff;
  border-radius: 100%;
  background: #F17700;
  position: absolute;
  left: -4px;
  top: 0;
}

.coreBox {
  width: 16%;
  text-align: center;
}

.coreBox .techIcon {
  background: #F8F8FA;
  padding: 10px 10px;
  margin: 15px;
  height: 120px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.coreBox .techIcon img {
  /* width: 20%; */
  width: 70px;
  height: 50px;
  object-fit: contain;
}

.coreBox h5 {
  font-size: 18px;
  color: #494949;
  font-weight: 700;
}

/* .coreBox img{
  width: 40px;
  height: 40px;
} */
.coreBox .techIcon:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.coreBox:hover {
  transform: scale(1.1);
}

.modelBox {
  height: 570px;
}

.contactBox {
  margin-top: 40px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}


.hireBtn {
  background-color: #050a35;
  padding: 20px 40px;
  color: white;
  border-radius: 15px;
}

.hireBtn:hover {
  background-color: transparent;
  border: #050a35 2px solid;
  color: #050a35;
}

.borderRadius {
  border-radius: 30px;
}

#reviewProfileImg {
  color: #050a35;
  font-weight: 600;
}

.testimonialHight {
  height: 300px;
}

#editeIcon {
  color: #ffff;
  margin-left: -10px;
  background-color: #F17700;
  padding: 10px;
  font-size: 10px;
  border-radius: 20px;
}

.dropdown-menu {
  width: 13rem;
}

.mega-submenu {
  left: 100%;
  top: 0;
  min-width: 25rem;
}

.ktm-mega-menu {
  position: static;
}

.mega-menu {
  left: 0;
  right: 0;
  width: 100%;
}

.dropdown-menu h6 {
  font-size: 15px;
}

.dropdown-menu p {
  font-size: 13px;
}

.dropdown-menu li {
  position: relative;
  font-size: 12px;
}

.dropdown-menu li a {
  color: #050a35;
}

.dropdown-menu li a:focus,
.dropdown-menu li a:active {
  background-color: transparent;
}

.dropdown-menu .submenu {
  display: none;
  left: 100%;
  top: 0;
}

.dropdown-menu>li:hover>.submenu,
.dropdown:hover>.dropdown-menu {
  display: block;
}


.footerLinks a {
  font-size: 14px;
  margin-top: 10px;
}

.expertServices {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.expertServices .nav-item {
  width: 32%;
}

.expertServices .nav-link.active {
  background-color: #050a35;
  width: 100%;
  height: 120px;

}

.expertServices .nav-link {
  background-color: #F8F8FA;
  width: 100%;
  height: 120px;
  border-radius: 20px;
  color: #050a35;
}

.expertServices .nav-link p {
  font-size: 14px;
}

.expertServices .nav-link:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.solutionBox {
  background-color: #ececec;
  padding: 27px 20px;
  text-align: center;
  width: 24%;
  margin-top: 15px;
}

.solutionBox a {
  text-decoration: none;
  color: #050a35;
  font-size: 15px;
}

/* .position-relative {
  position: relative;
}

.custom-prev {
  position: absolute;
  top: 0; 
  right: 0; 
}
.custom-next {
  position: absolute;
  top: 0px;
  right: 0px; 
}

.custom-prev {
  transform: translateY(-50%);
  
}

.custom-next {
  transform: translateY(-50%);
}
.carousel-control-prev-icon, .carousel-control-next-icon {
  width: 2rem;
  height: 2rem;
  background-color: #F17700;
  padding: 10px;
} */

.carouserIterm {
  margin-top: 150px;
}

.carouserIterm a {
  background-color: #F17700;
  color: #050a35;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.5s ease-in-out;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.carouserIterm a:hover {
  color: #ffff;
  transform: scale(1.1);
  box-shadow: inset 0 3.5em 0 0 #050a35;
}

.btnHover {
  /* transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1; */
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btnHover:hover {
  /* color: #ffff;
  transform: scale(1.1);
  box-shadow: inset 0 3.5em 0 0 #050a35; */
  color: #ffff;
  transform: scale(1.1);
  box-shadow: inset 0 3.5em 0 0 #F17700;
}

.btnHover2 {
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btnHover2:hover {
  color: #ffff;
  transform: scale(1.1);
  box-shadow: inset 0 3.5em 0 0 #F17700;
}

.btnHover3 {
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: 1px solid #ffffff;
  color: #ffffff;
}

/* .btnHover3:hover {
  color: #ffff;
  transform: scale(1.1);
  box-shadow: inset 0 3.5em 0 0 #050a35;
} */

.footerAbout {
  border: 1px solid #F17700;
  border-radius: 10px;
}

.footerHeading {
  font-size: 18px;
}

.aboutBtnRadius {
  border-radius: 10px;
}

.serviceBtn a {
  background-color: #050a35;
  border-radius: 10px;
  color: #ffff;
  padding: 15px 20px;
}

.priceingSection {
  /* background-image: linear-gradient(#fff, #F17700); */
  background-color: #050a35;
  border-radius: 20px;
  padding: 50px 50px;
}

.priceingSection p {
  color: #ffff;
}

.priceingSection h2 {
  color: #ffff;
}

.priceBox {
  width: 32%;
}

.priceBox h3 {
  color: #ffff;
}

.mTop {
  margin-top: 68px;
}

.priceingSectionRightSide {
  background-color: #ffff;
  border: 1px solid #050a35;
  border-radius: 20px;
}

.priceingSectionRightSide p {
  color: gray;
}

.priceingSectionRightSide h4 {
  font-size: 30px;
}

.priceingSectionRightSide i {
  color: #F17700;
  font-size: 25px;
}

/* .priceingSectionRightSide h5{

} */

.mvpImg {
  width: 80% !important;
  height: 25px !important;
}

.profileFlipCard {
  background-color: transparent;
  width: 98%;
  height: 400px;
  perspective: 1000px;
  border-radius: 20px;
  margin-top: 20px;
}

.profileFlipCardInner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

.profileFlipCard:hover .profileFlipCardInner {
  transform: rotateY(180deg);
}

.profileFlipCardFront,
.profileFlipCardBack {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
}

.profileFlipCardFront {
  /* background-image: linear-gradient(#fff, #F17700); */
  background-color: #050a35;
  text-align: center;
  color: #fff;
}

.profileFlipCardFront h2 {
  color: #ffffff;
  font-family: "Comic Neue", cursive;
  font-weight: 300;
  font-style: italic;
}

.profileLine {
  color: #F17700;
}

.profileFlipCardBack {
  background-color: #FFFF;
  transform: rotateY(180deg);
}

.profileFlipCardBack label {
  background-color: #F17700;
  color: #050a35;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

.profileFlipCardBack a {
  background-color: #050a35;
  color: #ffff;
  border-radius: 20px;
  padding: 10px 20px;
}

.profileFlipCardBack img {
  width: 100% !important;
}

.carousel-image {
  cursor: pointer;
  border-radius: 20px;
  height: 465px;
}

/* image hover show text */

.img-container {
  position: relative;
  display: inline-block;
  margin-top: 15px;
  width: 10%;
}

.img-container img {
  display: block;
  transition: transform 0.3s ease;
  /* Smooth transition for hover effect */
  width: 30px;
  height: 30px;
}

.img-container .img-name {
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  border-radius: 3px;
  font-size: 0.8rem;
  opacity: 0;
  /* Initially hidden */
  transition: opacity 0.3s ease;
  pointer-events: none;
  /* Prevent interaction with text */
}

.img-container:hover img {
  transform: scale(1.1);
  /* Slight zoom on hover */
}

.img-container:hover .img-name {
  opacity: 1;
  /* Show text on hover */
}

.ourMission {
  /* background-color: #F17700; */
  background-image: linear-gradient(#fff, #F17700);
  border-radius: 20px;
  height: 450px;
  /* border: 2px solid #F17700; */
}

.ourMission .visionBtn {
  position: absolute;
  bottom: 65px;
  right: 45px;
}

.ourMission .visionBtn a {
  background-color: #050a35;
  border-radius: 10px;
  padding: 15px 20px;
  color: #fff;

}

/* .ourMission label{
  border: 1px solid #F17700;
  border-radius: 10px;
  padding: 10px 20px;
  color: #F17700;
  font-weight: 600;
  background-color: #fff3;
} */
.ourMission p {
  color: #000000;
  /* font-size: 21px; */
}

/* .ourMission a{
  background-color: #F17700;
  color: #fff;
  border-radius: 40px;
  padding: 20px 40px;
}
.ourMission a:hover{
  background-color: #fff;
  color: #F17700;
} */
.ceoSectiom {
  background-color: #050a35;
  border-radius: 20px;
}

.ceoSectiom h2 {
  color: #fff;
}

.ceoSectiom p {
  color: #F17700;
}

.ceoSectiom a {
  padding: 10px 12px;
}

/* team member section */

.teamMember {
  width: 30%;
}

.teamMember:hover p {
  color: #F17700;
}

/* Default state with border */
.teamMember .teamImg {
  border: 3px solid #F17700;
  /* Set the initial solid border */
  transition: border 0.3s ease, transform 0.3s ease;
  /* Add transition for border and rotation */
}

.teamMember:hover .teamImg {
  border: 3px dashed #FF5733;
  /* Change border to dashed and change color on hover */
  /* transform: rotate(5deg); Rotate the image slightly on hover */
}

.teamMember label {
  font-size: 16px;
  font-weight: 800;
  color: #050a35;
}

.teamMember p {
  color: gray;
  font-size: 20px;
}

.soicalIcon i {
  color: #050a35;
  background-color: #fff;
  padding: 9px 10px;
  border-radius: 20px;
  /* margin-top: 40px; */
}

.reviewsShow h2 {
  margin-top: 100px;
  color: #F17700;
}

.reviewsShow p {
  color: #ffff;
}

.reviewBox {
  background-color: #ffff;
  margin: 0 auto;
  width: 80%;
  border-radius: 20px;
}

/* 
.reviewBoxRightSide {
  background-color: #E9E9E9;
  border-radius: 0px 20px 0px 0px;
} */

/* .reviewBoxLefttSide p {
  color: #050a35;
} */

#serviceReviewsBox {
  height: 350px;
}

.reviewsFooter {
  background-color: #F17700;
  padding: 20px 10px;
  color: #fff;
  border-radius: 0px 0px 20px 20px;
}

.reviewsFooter a {
  text-decoration: none;
  color: #fff;
  font-style: italic;
}


.paraAlign {
  text-align: justify;
}



.portfolioFooterSection {
  background-color: #050a35;
  border-radius: 20px;
}

.portfolioFooterSection h2 {
  color: #fff;
}

.newTag {
  background-color: #F17700;
  padding: 5px 10px;
  width: 6%;
  height: 12%;
}

.newTag span {
  display: block;
  color: #fff;
  height: 16px;
}

.newTag::after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  border-left: 16px solid #F17700;
  border-right: 18px solid #F17700;
  border-bottom: 15px solid transparent;
  bottom: -14px;
  left: 0;
}

.newAppTag {
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-left: 55px solid #f17800;
  border-bottom: 55px solid transparent;
  border-radius: 12px 0px 0px 0px;
}

.newAppTag span {
  display: block;
  color: #fff;
  height: 16px;
  font-size: 13px;
  position: absolute;
  top: 8px;
  right: 25px;
}

.daonePosition {
  top: 8px;
  left: 100px;
}

.carousel-indicators {
  margin-bottom: -60px;
}


.carousel-indicators button {
  background-color: #F17700 !important;
  /* More visible base color */
  margin: 0px 5px;
}

/* Active indicator style */
.carousel-indicators .active {
  background-color: #f17800;
}

.contactRight {
  background-color: #EEF9FF;
  border-radius: 10px;
}

.webServiceBox {
  width: 30%;
  border: 1px solid #050a35;
  border-radius: 10px;
  height: 350px;
}

.processBox {
  width: 95%;
  border: 1px solid #fff;
  height: 350px;
  border-radius: 10px;
}

.webReview label {
  font-size: 18px;
}

.webReview p {
  font-size: 14px;
}

/* .newAppTag::after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  border-left: 15px solid #F17700;
  border-right: 15px solid #F17700;
  border-bottom: 15px solid transparent;
  bottom: -14px;
  left: 0;
} */
/* .portfolioFooterSection a{
  background-color: #F17700;
  padding: 20px 20px;
  border-radius: 10px;
  color: #fff;
} */
/* loader  */
/* HTML: <div class="loader"></div> */
.loader {
  width: 60px;
  aspect-ratio: 1;
  border: 15px solid #050a35;
  border-radius: 50%;
  position: relative;
  transform: rotate(45deg);
}

.loader::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 15px solid #fe8529;
  animation: l18 2s infinite linear;
}

.serviceWebSection .leftSide {
  position: sticky;
  top: 50px;
  /* Adjust to set where the left side sticks */
}

.serviceWebSection .leftSide img {
  border-radius: 20px;
  width: 100%;
}

.serviceWebSection .rightSide {
  background-color: #F4F4F4;
  border-radius: 20px;
}

.stickyCard {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 44px;
  width: 100%;
  position: sticky;
  top: 100px;
  left: 0;
}

.stickyCard h5 {
  color: #fff;
  font-size: 16px;
}

.stickyCard i {
  color: #ffff;
  font-size: 20px;
}

.stickyCard p {
  font-size: 16px;
}

.mBottom {
  margin-bottom: 550px;
}

.serviceTwoBoxs h2 {
  background-color: #050a35;
  color: #ffff;
  padding: 10px 20px;
  border-radius: 20px;
  width: 50%;
  margin: 0 auto;
}

.serviceTwoBoxs .leftSide {
  height: 400px;
  /* background-color: #050a35; */
  background-image: linear-gradient(to right, #F17700, #050a35);
  border-radius: 20px;
}

.serviceTwoBoxs .leftSide span {
  background-color: #050a35;
  color: #ffff;
  padding: 5px 10px;
  border-radius: 20px;
}

.serviceTwoBoxs .leftSide h3 {
  color: #fff;
  position: absolute;
  bottom: 40px;
}

.serviceTwoBoxs .rightSide {
  height: 400px;
  background-color: #F4F4F4;
}

.serviceTwoBoxs .rightSide p {
  position: relative;
  bottom: 0px;
  top: 125px;
}

.stickyCardTow {
  background-color: #fff;
  border-radius: 20px;
  margin-top: 44px;
  width: 100%;
  position: sticky;
  top: 100px;
  left: 0;
  transition: transform 0.3s ease;
  /* Smooth transition for scaling */
  transform: scale(1);
  /* Default scale */
}

.includeSection .nav-link.active,
.nav-pills .show>.nav-link {
  color: #F17700;
  background-color: #050a35;
  border-radius: 0px;
}

.includeSection .nav-link {
  color: #fff;
  position: relative;
  padding-left: 20px;
}

.includeSection .nav-link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #ffff;
  /* Adjust to your theme color */
  border-radius: 50%;
}

.nav-link.active::before {
  background-color: #F17700;
  /* Active state color */
}

.includeSectionBox {
  background-color: #E9E9E9;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  height: 170px;
}

.mvpdevserviceBox {
  background-color: #050a35;
  width: 32%;
  border-radius: 10px;
  height: 200px;
}

.mvpdevserviceBox h5 {
  color: #ffff;
}

.mvpdevserviceBox i {
  color: #ffff;
  font-size: 20px;
  margin-right: 10px;
}

.mvpdevserviceBox p {
  margin: 0 10px;
  color: white;
}

#sliderHeight {
  height: 650px;
}

.marginWebTop {
  margin-top: 100px;
}

@keyframes l18 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
  }

  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
  }

  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
  }

  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
  }

  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
  }
}

.serviceBoxs {
  background-color: #F8F8FA;
  height: 300px;
  overflow: hidden;
}

.serviceBoxs:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

}


.accordion-button::after {
  display: none;
}

.accordion-button:not(.collapsed) {
  background-color: #ffff !important;
}

.accordion-button:focus {
  box-shadow: none !important;
  border-color: none !important;
}

.borderAccordion {
  border-left: 4px solid #050a35 !important;
}

.developerBox {
  position: relative;
  margin-bottom: 20px;
}

.developerBoxLeft {
  width: 15%;
  position: relative;
}

.developerBoxLeft:before {
  content: "";
  position: absolute;
  height: 277%;
  border: 2px dashed #ffff;
  left: 23px;
  top: 40px;
}

.developerBoxRight {
  width: 85%;
  color: #F17700;
}

.text-white-50 {
  font-size: 0.9rem;
}

.developerBoxBtn {
  position: relative;
}

.developerBoxBtn::before {
  content: "";
  position: absolute;
  height: 2px;
  /* Horizontal dashed line instead of vertical */
  width: 32%;
  /* Adjust the length of the line */
  border-top: 3px dashed #ffffff;
  /* Dashed horizontal line */
  right: 338px;
  /* Adjust this to align correctly with the button */
  top: 50%;
  /* Vertically centers the line relative to the button */
  transform: translateY(-50%);
  /* Correct alignment */
}

.testimonialBoxes {
  background-color: #F4F4F4;
  padding: 2rem 0;
}

.testimonialBox {
  margin: 0 5px;
  height: 100%;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonialBox:before {
  content: '\f10d';
  display: block;
  font-family: fontawesome;
}

.testimonialBox .carousel-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
}

.testimonialBox .carousel-item {
  display: flex;
  justify-content: center;
  width: 100%;
}

.testimonialIndicators [data-bs-target] {
  width: 15px !important;
  height: 15px !important;
}


/* Below Arif Changes Service page height less   */

.services_new_style {
  margin-top: 37px !important;
}

/* @media (max-width: 320px) {
  .paraAlign {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
} */


/* Why choose us Start AI page start */

.main-container {
  max-width: 81%;
  margin: 10px auto;
  background-color: rgb(241, 239, 239);
  border-radius: 20px;
}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 50px;
  gap: 0;
}

.content h2 {
  margin-top: 20px;
}

.content p {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

.container .why-choose {
  max-width: 80%px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px;

}

.imgItem {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0;
  padding: 0;
  width: 100%;

}

.imgItem img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
}

.imgItem:hover img {
  filter: brightness(50%) sepia(1) hue-rotate(190deg) saturate(300%);
}

.imgItem h2 {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  transition: opacity 0.3s ease;
  font-size: 16px;
  z-index: 2;
}

.imgItem p {
  position: absolute;
  width: 80%;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  /* text-align: center; */
  opacity: 0;
  transition: opacity 0.3s ease;
  font-size: 12px;
  z-index: 2;
}

.imgItem:hover h2,
.imgItem:hover p {
  opacity: 1;
}

.imgItem:hover .overlay {
  opacity: 1;
}

/* Why choose us AI page end */



/* Enterprize Software Development Services start------  */

.main-container-enterprise {
  background-color: #050a35;
  width: 67%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 20px;
  margin-top: 60px;

}

.main-container-enterprise h2 {
  font-size: 26px;
  width: 60%;
  margin: 0 auto;
  text-transform: uppercase !important;
  text-align: center;
  color: #fff;
}

.enterpriseCard {
  background: #ffff;
  border-radius: 8px;
  padding: 20px 10px;
  box-shadow: 4px 4px 15px #FE8529;
  width: 30%;
  margin: 10px 10px;
  height: 270px;

}

.enterpriseCard .enterpriseCardLogo {
  width: 15%;
}

.enterpriseCard .enterpriseCardLogo img {
  width: 70%;
}

.enterpriseCard .enterpriseCardContent {
  width: 85%;
  text-align: left;
  text-align: justify;
  margin-right: 20px;
}

.navLogo {
  width: 50%;
}


.serviceHeaderSection {
  text-align: end;
}

.stickyCardHeading {
  width: 100%;
  padding: 10px 20px;
}

/* Responsive Design */
@media (max-width: 1460px) {
  .enterpriseCard {
    height: 340px;
  }

  .main-container-enterprise {
    background-color: #050a35;
    width: 89%;
    margin: 0 auto;
    margin-top: 60px;
  }
}

@media (max-width: 1024px) {
  .enterpriseCard {
    height: auto;
  }
}

@media (max-width: 768px) {
  .enterpriseCard {
    width: 50%;
  }

}

@media (max-width: 426px) {
  .enterpriseCard {
    width: 100%;
  }
}

@media (max-width: 320px) {
  .enterpriseCard {
    width: 100%;
  }
}

/* Enterprize Software Development Services End Latest push  ----- */