footer .end-part {
  text-align: right;
}
.image-container {
  height: 200px; /* Set your desired height */
  width: 100%;
}

/* index-card-start */
.section-index {
  display: flex;
  flex-direction: column;
  gap: 2cm;
}

.main-service2 {
  padding: 3 0px;
  width: 100%;
  min-height: 380px;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.service-card2 {
  border: 1px solid blue;
  width: 100%;
  padding: 30px;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.service-logo2 {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: -90px auto 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  box-shadow: 5px 5px 5px rgb(226, 140, 108);
}
.service-logo2 i {
  position: relative;
  bottom: 10px;
  font-size: 3em;
  color: orangered;
}

.main-service-row2 {
  position: relative;
  bottom: 10em;
}

@media (max-width: 768px) {
  .section-index {
    display: flex;
    flex-direction: column;
    gap: 2cm;
  }

  .section-index .col-md-6 {
    position: relative;
    right: 2em;
  }

  .section-index .col-md-6 .service-card2 {
    min-height: 300px;
    padding: 15px;
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }

  .section-index .col-md-6 .service-card2 p {
    font-size: 11.7px;
    line-height: 1.4;
  }

  .section-index .col-md-6 .main-service-row2 {
    position: relative;
    top: 0.1em;
  }
}

@media (max-width: 992px) {
  .section-index {
    display: flex;
    flex-direction: column;
    gap: 4cm;
  }

  .section-index .col-md-6 {
    position: relative;
  }

  .section-index .col-md-6 .service-card2 {
    min-height: 300px;
    padding: 15px;
    width: calc(100% - 40px);
    margin: 0 auto 20px;
  }

  .section-index .col-md-6 .service-card2 p {
    font-size: 14px;
    line-height: 1.4;
  }

  .section-index .col-md-6 .main-service-row2 {
    position: relative;
    top: 8em;
  }

  .embel-expertise p{
    font-size: 12px;
  }
}

/* index-card-end */

.about-main-text h1 {
  color: orangered;
}
.point-about {
  display: flex;
}
.point-about i {
  font-size: 15px;
  color: orangered;
  padding: 5px;
}

/* technologies-icon-start */

.technologies-icon {
  width: 900px;
  display: flex;
  overflow-x: scroll;
}
.technologies-icon div {
  width: 100%;
  display: grid;
  grid-template-columns: auto auto auto;
  grid-gap: 20px;
  padding: 10px;
  flex: none;
}
.technologies-icon div img {
  left: 0;
  width: 48%;
  /* filter: grayscale(50%); */
  transition: transform 0.5s;
}
.technologies-icon::-webkit-scrollbar {
  display: none;
}
.gallery-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3% auto;
}
.gallery-wrap #backbtn,
#nextbtn {
  margin: 0 auto;
  font-size: 35px;
  color: orange;
  width: 100px;
  cursor: pointer;
  margin: 40px;
}

.technologies-icon div img:hover {
  filter: grayscale(0);
  cursor: pointer;
  transform: scale(1.1);
}
/* technologies-icon-end */
/* hardware-eng-product start */

/* box model */
.box-model {
  display: flex;
  justify-content: center;
  padding: 6em 20px;
  gap: 20px;
  text-align: center;
}

.box-model .img-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 100px;
  width: 100%;
  max-width: 1200px;
}

.box-model .card-container {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 2px 4px 8px rgb(129, 129, 233);
  transition: transform 0.3s ease;
}

.box-model .card-container:nth-child(2n + 2) {
  transform: translateY(-4em);
}

.box-model .card-container:hover .content-sec {
  box-shadow: 4px 6px 8px #5d5b5b;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-model .card-container .imgBx {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.box-model .card-container .imgBx img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transform: translateX(40%);
}

.box-model .card-container .content-sec {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(#cacaff, 80%, #ebeef3);
  transform-origin: left;
  transform: perspective(2000px) rotateY(0deg);
  transition: all 0.3s ease-in-out;
}

.box-model .card-container .content-sec div {
  padding: 20px;
  text-align: center;
  width: 80%;
  transition: all 0.3s ease-in-out;
}

.box-model .card-container:hover .content-sec div {
  margin: auto;
}

.box-model .card-container .content-sec div h2 {
  margin: 0;
  padding: 0;
  color: #25215e;
  line-height: 20px;
  font-size: 22px;
  text-transform: uppercase;
}

.box-model .card-container .content-sec div p {
  margin: 10px 0;
  padding: 0;
  color: #262626;
  font-size: 15px;
}

@media (max-width: 768px) {
  .box-model .card-container {
    height: fit-content;
  }
  .box-model .content-sec div {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .box-model .card-container {
    height: fit-content;
  }
  .box-model .content-sec div {
    margin: auto;
  }
}
/* hexagon */
.hexagon:before {
  content: " ";
  width: 0;
  height: 0;
  border-bottom: 14px solid #f58634ab;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  position: absolute;
  top: -14px;
}
.hexagon {
  margin-top: 30px;
  width: 36px;
  height: 18px;
  background-color: #f58634ab;
  position: absolute;
  transform: scale(0) rotate(0deg) translate(-50%, -50%);
  animation: animate 12s ease-in forwards infinite;
}
.hexagon:after {
  content: "";
  width: 0;
  position: absolute;
  bottom: -14px;
  border-top: 14px solid #f58634ab;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}
.hexagon:nth-child(2) {
  left: 12%;
  top: 14%;
  animation-delay: 2s;
  background-color: #0000a2a1;
}
.hexagon:nth-child(4) {
  left: 73%;
  top: 10%;
  animation-delay: 6s;
  background-color: #0000a2a1;
}
.hexagon:nth-child(3):before,
.hexagon:nth-child(2):before,
.hexagon:nth-child(4):before {
  content: " ";
  width: 0;
  height: 0;
  border-bottom: 14px solid #0000a2a1;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  position: absolute;
  top: -14px;
}
.hexagon:nth-child(3) {
  left: 85%;
  top: 65%;
  animation-delay: 4s;
  background-color: #0000a2a1;
}
.hexagon:nth-child(3):after,
.hexagon:nth-child(2):after,
.hexagon:nth-child(4):after {
  content: "";
  width: 0;
  position: absolute;
  bottom: -14px;
  border-top: 14px solid #0000a2a1;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
}
.hexagon:nth-child(5) {
  left: 10%;
  top: 85%;
  animation-delay: 8s;
}
.hexagon:nth-child(6) {
  left: 50%;
  top: 10%;
  animation-delay: 10s;
}
@keyframes animate {
  from {
    transform: scale(0) rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: scale(3) rotate(960deg) translate(-50%, -50%);
    opacity: 0;
  }
}

/*box model end */

.header-ani {
  width: 100%;
  height: 90vh;
  margin: 0;
  padding: 0;
}
.heading {
  color: #272850;
  position: relative;
  display: inline;
  margin: 40px;
  font-size: 50px;
  margin-top: 10%;
}
.heading::after {
  content: "";
  width: 1px;
  height: 53px;
  display: block;
  padding: 5px;
  position: absolute;
  left: -15px;
  top: 10px;
  /* right: -10px; */
  /* margin-top: -20px;
    transform: translateY(-50%); */
  top: 10px;
}
.header-ani p {
  font-size: 20px;
  padding: 15px 0;
  margin: 30px;
  line-height: 2;
  font-weight: 500;
}
.animate-sec {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  /* background-color: black; */
}
/* hardware-eng-prduct end */
/* software product card start */

.blogging {
  padding: 10px;

  /* margin: 0px; */
  /* box-sizing: border-box; */
}
.card-info {
  background-color: ghostwhite;
  height: 50%;
  display: grid;
  place-items: center center;
}
.cards-blog {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  padding: 20px;
  grid-gap: 10px;
}
.cards-blog .card {
  border: 1px solid transparent;
}
.content-blog img {
  align-items: center;
  height: 200px;
  padding-left: 70px;
}
.card-info {
  padding-left: 20px;
}
.card-info h2 {
  margin: 8px;
}
.card-info p {
  font-size: 13px;
  /* margin: 10px; */
}
/* software product card end */
/* happy-client scroll */
.service {
  position: relative;
}

.service h1 {
  font-size: 45px;
  color: #e91e63;
  margin-left: 550px;
  margin-top: 50px;
}

.service p {
  font-size: 25px;
  margin-left: 450px;
}

@media screen and (max-width: 768px) {
  .service {
    padding: 10px; /* Reduce padding for smaller screens */
    /* margin-right: 100px; */
  }
}

.slider {
  height: 250px;
  margin: auto;
  position: relative;
  display: grid;
  place-items: center;
  width: 90%;
  overflow: hidden;
}

.heading h1 {
  margin-top: 50px;
  color: #0073ff;
  font-size: 52px;
  text-align: center;
}

.slide-track {
  display: flex;
  width: calc(250px * 18);
  -webkit-animation: scroll 15s linear infinite;
  animation: scroll 50s linear infinite;
  gap: 50px;
}

.slide-track :hover {
  animation-play-state: paused;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 9));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 9));
  }
}

.slide {
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  perspective: 100px;
}

.slide img {
  width: 100%;
  transition: transform 1%;
}

.slide img:hover {
  transform: translateZ(20px);
}

/* responsive */

@media screen and (max-width: 768px) {
  .slide {
    flex: 0 0 calc(100% - 10px); /* Full width minus margin */
    /* margin-right: 0; */
    margin-bottom: 10px; /* Add space below each slide */
  }

  .slide img {
    width: 100px;
    height: 100px;
  }
}
/* end happy-client */
/*** Spinner Start ***/

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/* card1-software */
.card-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 50vh;
  background: gray;
}

.container-3card {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.box-card {
  position: relative;
  width: 320px;
  height: 440px;
  margin: 10px;
  box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.5),
    inset -5px -5px 5px rgba(255, 255, 255, 0.5), 5px 5px 5px rgba(0, 0, 0, 0.5),
    -5px -5px 5px rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  margin: 30px;
}

.box-card {
  position: relative;
  width: 320px;
  height: 550px;
  margin: 10px;
  top: 20px;
  left: 20px;
  bottom: 20px;
  background: rgb(228, 218, 218);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}
.container-3card .card-section .box-card .content-text {
  padding: 20px;
  text-align: center;
}
.container-3card .card-section .box-card .content-text h3 {
  /* position: absolute; */

  font-size: 1.5em;
  color: rgb(22, 22, 116);
}
.container-3card .card-section .box-card .content-text p {
  font-size: 18px;
  margin: 10px;
}

/*card1-software end  */
/*** Spinner End ***/
/* service-card  card1*/


.main-service1 {
  padding: 20px;
  position: relative;
  right: 10px;
  margin-top: 30%;
  width: 100%;
  min-height: 380px;
  text-align: center;
  cursor: pointer;
}
/* end service-card */
/* tab-container */
/* @media (max-width: 768px) {
  .tab-menu {
      flex-direction: column;
      align-items: center;
  }
}

@media (max-width: 480px) {
  .tab-btn a {
      padding: 10px;
      font-size: 14px;
      margin: 10px;
      /* margin-top: 50px; */
/* }
}  */
section {
  position: relative;
  margin: 0 80px;
  transition: 0.5s ease;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.service-card1 {
  border: 1px solid blue;
  /* background: rgb(209, 206, 206); */
  padding-bottom: 30px;
  border-radius: 10px;
  z-index: 1;
}
.service-logo1 {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: -90px auto 0;
  background: white;
  border: 1px solid transparent;
  box-shadow: 5px 5px 5px rgb(226, 140, 108);
}
.service-logo1 i {
  width: 50px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.service-card1 h4 {
  height: 35px;
  width: 80%;
  margin: 50px auto;
  background: white;
  position: relative;
}
.service-card1 h4::after {
  content: "";
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, white, blue);

  position: absolute;
  right: -10px;
  top: -5px;
  z-index: -1;
}
.service-card1 p {
  float: left;
}
.service-card1 h4::before {
  content: "";
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, blue, white);
  position: absolute;
  left: -10px;
  bottom: -5px;
  z-index: -1;
}
@media (max-width:769px) and (max-width:1200px) {
 
  .container-card1 .row {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
  }
  
  .main-service1 {
    padding: 20px;
    position: relative;
    right: 10px;
    margin-top: 70%;
    width: 100%;
    min-height: 380px;
    text-align: center;
    cursor: pointer;
  }
  }
@media (max-width:1250px) {
 
.container-card1 .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
}

.main-service1 {
  padding: 20px;
  position: relative;
  right: 10px;
  margin-top: 70%;
  width: 100%;
  min-height: 380px;
  text-align: center;
  cursor: pointer;
}
}

/* end service-card-1 */
/* services-card-2 */
.main-service2 {
  padding: 90px;
  margin-top: 30%;
  width: 80%;
  min-height: 380px;
  text-align: center;
  position: relative;
  cursor: pointer;
}

section {
  position: relative;
  margin: 0 80px;
  transition: 0.5s ease;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.service-card2 {
  /* background: gainsboro; */
  /* padding: 30px; */
  padding: auto;
  margin: auto;
  border-radius: 10px;

  position: absolute;
  bottom: 0;
  /* z-index: 1; */
}
.service-logo2 {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin: -90px auto 0;
  background: white;
  border: 1px solid transparent;
}
.service-logo2 i {
  width: 50px;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
}
.service-card2 h4 {
  height: 35px;
  width: 80%;
  margin: 50px auto;
  background: white;
  position: relative;
}
.service-card2 h4::after {
  content: "";
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, white, blue);

  position: absolute;
  right: -10px;
  top: -5px;
  z-index: -1;
}
.service-card2 h4::before {
  content: "";
  width: 40px;
  height: 30px;
  background: linear-gradient(to right, blue, white);
  position: absolute;
  left: -10px;
  bottom: -5px;
  z-index: -1;
}

/* service card-2 end */
/* index card start */
/* index card end */
.tab-container {
  position: relative;
}
.tab-menu {
  color: #f58634;
  list-style: none;
  background: rgb(129, 129, 233);
  max-width: 800px;
  padding: 10px;
  border-bottom: 1px solid blue;
  border-radius: 50px;
  box-shadow: orangered;
  overflow-x: auto;
}
.tab-nav-bar {
  position: relative;
  margin: 65px 10px 40px 10px;
}
.tab-btn {
  color: white;
  display: inline-block;
  font-size: 1em;
  font-weight: 400;
  margin: 0 2px;
  padding: 10px 20px;
  border-radius: 30px;
  align-items: center;
  justify-content: center;
  background: orange;
  cursor: pointer;
  user-select: none;
  transition: 0.3s ease;
}
.tab-btn:hover {
  background: transparent;
}
.tab-navigation {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .tab-menu {
    justify-content: flex-start; /* Align items to the start for smaller screens */
    /* padding: 5px; */
    width: 300px;
    background-color: transparent;
    border: none;
    border-bottom: none;
  }

  .tab-btn {
    width: 100%;
    margin: 10px;
    font-size: 0.9em;
    text-align: center;
    padding: 8px 16px;
  }
}

@media (max-width: 480px) {
  .tab-menu {
    width: 100%;
    background-color: transparent;
    border: none;
    flex-direction: column; /* Stack tabs vertically for very small screens */
    align-items: center;
  }
  .tab-btn {
    font-size: 0.8em;
    margin: 5px 0;
    padding: 8px 16px;
  }
}
/* end tab-container */
/* scroll-button */
.scroll-button {
  height: 50px;
  width: 30px;
  border: 2px solid white;
  position: absolute;
  left: 50%;
  border-radius: 20px;
  cursor: pointer;
}
.scroll-button::before,
.scroll-button::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  border: 2px solid white;
  height: 10px;
  width: 10px;
  transform: translate(-50%, -100%) rotate(45deg);
  border-top: transparent;
  border-left: transparent;
  animation: scroll-down 1s ease-in-out infinite;
}
.scroll-button::after {
  top: 20%;
  animation-delay: 0.3s;
}
@keyframes scroll-down {
  0% {
    opacity: 0;
    top: 20%;
  }
  30% {
    opacity: 1;
    top: 40%;
  }
  60% {
    opacity: 1;
    top: 60%;
  }
  100% {
    opacity: 0;
    top: 90%;
  }
}
/* end scroll-button */
@media (max-width: 480px) {
  .hero-content h2 {
    font-size: 24px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero-content img {
    width: 50%;
    height: 60%;
  }
}
#vertical-line {
  margin-top: 5%;
  width: 1px;
  height: 350px;
  background-color: gray;
}
.brands-sec {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.brands-sec .hero {
  overflow: hidden;
}
.container-brand {
  display: flex;
  /* justify-content: center;
    align-items: center; */
  width: 100%;
  margin: 10px auto;
  margin-right: 60%;
}
.hero-content {
  flex: 1;
  margin: 0px 25px;
  animation: fadeInup 2s ease;
}
.hero-content h2 {
  font-size: 50px;

  margin-bottom: 20px;
  color: rgb(1, 1, 65);
}
.hero-content p {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 820px;
  color: gray;
}
.small-business-img {
  flex: 1;
  width: 600px;
  margin: 0;
}
.small-business-img img {
  width: 80%;
  height: 20%;
  height: auto;
  margin-top: 5%;
  margin-left: 7%;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .container-brand {
    flex-direction: row; /* Display items side by side on larger screens */
    justify-content: space-between; /* Distribute items evenly */
    align-items: flex-start; /* Align items to the top */
  }
  .hero-content {
    width: 50%; /* Adjust width for better spacing */
    margin: 0 20px; /* Adjust margin */
    text-align: left; /* Align text to the left */
  }
 .small-business-img {
    width: 40%; /* Adjust width of image container */
    margin-top: 0; /* Remove top margin */
    text-align: right; /* Align image to the right */
  }
}

.card-info {
  padding: 50px;
  align-items: center;
  justify-content: center;
  display: grid;
  gap: 10px;
  /* margin-bottom: 50%; */
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.card-sign {
  width: 350px;
  height: 350px;
  overflow: hidden;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center; /* Center align items horizontally */
  justify-content: center; /* Center align items vertically */
}
.card-image {
  width: 100%; /* Adjusted to fit within the card */
  height: 290px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
  overflow: hidden; /* This will hide the overflow content */
}
.profile-img img {
  z-index: 1;
  width: 100px;
  height: 100px;
  position: relative;
  top: -55px;
  /* margin-top: -55px; */
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 100px;
  transition-duration: 0.4s;
  border: 2px solid rgb(32, 32, 119);
  transition-property: transform;
  overflow: hidden;
}
.profile-img img:hover {
  transform: scale(1.1);
}
.card-content {
  position: relative;
  top: -55px; /* Move the text upwards */
  text-align: center;
  z-index: 0; /* Ensure it stays behind the profile image */
}
.card-content h3 {
  font-size: 20px;
  text-align: center;
  color: orangered;
  font-weight: 500;
}

.card-content p {
  font-size: 14px;
  text-align: justify;
  padding: 0 20px 5px 20px;
}
/*** Button Start ***/
.btn {
  font-weight: 600;
  transition: 0.5s;
}
.btn-square {
  width: 38px;
  height: 38px;
}
.btn-sm-square {
  width: 32px;
  height: 32px;
}
.btn-md-square {
  width: 46px;
  height: 46px;
}
.btn-lg-square {
  width: 58px;
  height: 58px;
}
.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
.back-to-top {
  position: fixed;
  width: 50px;
  height: 50px;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}
/*** Button End ***/
/*** Topbar Start ***/
.topbar .top-info {
  letter-spacing: 1px;
}
.topbar .top-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.topbar .top-link a {
  margin-right: 10px;
}
#note {
  width: 500px;
  overflow: hidden;
}
#note small {
  position: relative;
  display: inline-block;
  animation: mymove 5s infinite;
  animation-timing-function: all;
}
@keyframes mymove {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
/*** Topbar End ***/
/*** Navbar Start ***/
.navbar .navbar-nav {
  padding: 15px 0;
}
.navbar .navbar-nav .nav-link {
  padding: 10px;
  color: var(--bs-primary);
  font-size: 16px;
  font-weight: 700;
  outline: none;
}
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--bs-secondary) !important;
}
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "font awesome 5 free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}
@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 115%;
    right: -47vw;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
    height: 34vw;
    width: 95vw;
    background-color: #ececec;
    border-left: 6px solid var(--bs-primary);
    border-radius: 0%;
  }
}
.navbar .nav-item:hover .dropdown-menu {
  transform: rotateX(0deg);
  visibility: visible;
  transition: 0.5s;
  opacity: 1;
}
.services .dropdown-menu {
  width: 20vw;
  font-size: 20px;
}
.nav-dropdown-item{
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
}
.nav-dropdown-item:hover{
  text-decoration: underline;
  font-weight: 600;
}
.nav-dropdown-item a{
  color: #f27126;
  line-height: 5px;
} 
.dropdown-item ul{
width: 290px;
line-height: 37px;
padding-left: 15px;
}
/*** Navbar End ***/
h1,
h2,
h3,
h4 {
  color: #002551;
}
p,
li {
  color: #141414;
  font-size: 17px;
}
/*** Carousel Start ***/

.carousel-item {
  position: relative;
}

.carousel-item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
}

.carousel-caption {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.carousel-item p {
  max-width: 700px;
  margin: 0 auto 35px auto;
}

.carousel-control-prev {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--bs-primary);
  border-radius: 0 50px 50px 0;
  opacity: 1;
}

.carousel-control-prev:hover {
  background: var(--bs-secondary);
  transition: 0.8s;
}

.carousel-control-next {
  width: 90px;
  height: 60px;
  position: absolute;
  top: 50%;
  right: 0;
  background: var(--bs-primary);
  border-radius: 50px 0 0 50px;
  opacity: 1;
}

.carousel-control-next:hover {
  background: var(--bs-secondary);
  transition: 0.8s;
}
.carousel-caption .carousel-content a button.carousel-content-btn1 {
  background: var(--bs-secondary);
  color: var(--bs-dark);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}
.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
  background: var(--bs-primary);
  color: #ffffff;
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
  background: var(--bs-primary);
  color: var(--bs-white);
  opacity: 1;
  border: 0;
  border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
  background: var(--bs-secondary);
  color: var(--bs-dark);
  border: 0;
  opacity: 1;
  transition: 1s;
  border-radius: 20px;
}

#carouselId .carousel-indicators li {
  width: 30px;
  height: 10px;
  background: var(--bs-primary);
  margin: 10px;
  border-radius: 30px;
  opacity: 1;
}

#carouselId .carousel-indicators li:hover {
  background: var(--bs-secondary);
  opacity: 1;
}

@media (max-width: 992px) {
  .carousel-item {
    min-height: 500px;
  }

  .carousel-item img {
    min-height: 500px;
    object-fit: cover;
  }

  .carousel-item h1 {
    font-size: 40px !important;
  }

  .carousel-item p {
    font-size: 16px !important;
  }
}

@media (max-width: 768px) {
  .carousel-item {
    min-height: 400px;
  }

  .carousel-item img {
    min-height: 400px;
    object-fit: cover;
  }

  .carousel-item h1 {
    font-size: 28px !important;
  }

  .carousel-item p {
    font-size: 14px !important;
  }
}

.page-header {
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(../img/pageHeader.jpg);
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 85px;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  font-size: 18px;
  color: var(--bs-white);
}

/*** Carousel End ***/

/*** Services Start ***/

.services .services-item {
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  padding: 10px 0;
  position: relative;
  border-top: 4px solid rgba(3, 43, 243, 0.8);
}

.services-content::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  border-radius: 10px 10px 0 0;
  /*background: rgba(3, 43, 243, 0.8);*/
  background: rgb(113 134 239 / 80%);
  transition: 0.5s;
}

.services-content::after {
  top: 0;
  bottom: auto;
  border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
  height: 100%;
  opacity: 0.8;
  transition: 0.5s;
}

.services-item:hover .services-content-icon {
  position: relative;
  z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
  transition: 0.5s;
}

.services-item:hover .services-content-icon i {
  color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p,
.services-item:hover .services-content-icon ul li {
  color: var(--bs-white);
}

/*** Services End ***/

/*** Project Start ***/

.project-img {
  position: relative;
  padding: 15px;
}

.project-img::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  top: 0;
  left: 0;
  /* background: var(--bs-secondary); */
  border-radius: 10px;
  opacity: 1;
  z-index: -1;
  transition: 0.5s;
}

.project-img::after {
  content: "";
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--bs-primary);
  border-radius: 10px;
  opacity: 1;
  z-index: -1;
  transition: 0.5s;
}

.project-content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.project-content div {
  display: inline-block;
  padding: 20px 25px;
  background: var(--bs-primary);
  border-radius: 10px;
  width: 58%;
}
.project-content div:hover {
  color: #133592;
}

.project-item:hover .project-content {
  opacity: 1;
  transition: 0.5s;
}

.project-item:hover .project-img::before,
.project-item:hover .project-img::after {
  opacity: 0;
}

/*** Project End ***/

/*** Blog Start ***/
.blog-item .blog-btn {
  z-index: 2;
}

.blog-btn .blog-btn-icon {
  height: 50px;
  position: relative;
  overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
  display: flex;
  position: absolute;
  top: 6px;
  left: -140px;
}

.blog-btn-icon:hover .blog-icon-2 {
  transition: 1s;
  left: 5px;
  top: 6px;
  padding-bottom: 5px;
}

.blog-icon-1 {
  position: relative;
  top: -4px;
}

.blog-btn-icon:hover .blog-icon-1 {
  top: 0;
  right: -140px;
  transition: 1s;
}

/*** Blog End ***/

/*** Team Start ***/

/*.team-item {
  border-top: 30px solid #01b35c !important;
  background: rgba(239, 239, 241, 0.8);
}*/

/*.team-content::before {
  height: 200px;
  display: block;
  content: "";
  position: relative;
  top: -101px;
  background: #01b35c;
  clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
  padding: 60px;
  opacity: 1;
}*/

/*.team-img {*/
/*  border: 15px solid var(--bs-white);*/
/*}*/
/* .team-img {
  height: 100%;
  width: 50%;
width: 100%;
height: 70%;
  overflow: hidden;
  animation: 5s slide linear infinite;
  scroll-behavior: smooth ;
}
@keyframes slide
{
  from{
    transform:translateX(0);
  }
  to
  {
    transform: translateX(-100%);
  }
}
.team-img img {
  /* transition: 0.5s; */
/* height: 30vh; */
/* } */
/* .team-item:hover h4 {
  color: var(--bs-secondary); */
/* transition: 0.5s; */
/* } */

/* .team-item:hover .team-img img { */
/* transform: scale(1.05); */
/* } */

/* .team-carousel .owl-stage {
  position: relative;
  width: 100%;
  height: 100%;
} */
@media (max-width: 768px) {
  .team-content h4 {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .team-item {
    margin: 10px 5px;
  }

  .team-content h4 {
    font-size: 0.9em;
    margin: 10px 0;
  }
}
.scroll-container {
  overflow-x: auto;
  white-space: nowrap;
}

.scroll-wrapper {
  display: flex;
  align-items: center;
}

.team-item {
  display: inline-block;
  margin: 0 1em ; 
}

.team-img {
  text-align: center;
}

.team-img img {
  width: 150px;
  height: 150px; /* Fixed height for consistency */
  object-fit: cover;
}

.team-img h4 {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
}

/* .team-name.text-center h4 {
  font-size: 20px;
}  */

@media (max-width: 768px) {
  .team-carousel .owl-nav {
    margin-top: 85px;
  }
}

@media (max-width: 992px) {
  .team-carousel {
    margin-top: 3rem;

  }

  .team-carousel .owl-nav {
    top: -50px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    margin-left: -15px;
  }
}
.scroll-img {
  overflow: hidden;
  white-space: nowrap;
  width: 150%;
  box-sizing: border-box;
}

.scrolling {
  display: inline-block;
  animation: scroll 10s linear infinite;
  padding: 20px;
}

.scrolling img {
  height: 50px;
  display: inline-block;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.scrolling .aria-label {
  z-index: 0.5;
}

.cooltipz--top {
  position: relative; /* Ensure the element is positioned */
  z-index: 5000; /* Set the z-index to 5 */
}

/* .scroll-img {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  box-sizing: border-box;
  
} */

.scrolling {
  display: inline-block;
  animation: scroll 10s linear infinite;
  padding-top: 50px;
}
/*
.scrolling img {
  height: 50px;
  display: inline-block;
}

@keyframes scroll {
  0% {
      transform: translateX(0%);
  }
  100% {
      transform: translateX(-50%);
  }
} */
/* .scroll-img
{
  overflow: hidden;
  padding: 60px 0;
 
}

.scrolling {
  white-space: nowrap;
  display: inline-block;
}

.scrolling img
{
  height: 50px;
 
   */

/*** Team End ***/

/*** Testimonial Start ***/

/* .testimonial-item {
    background: #e3f0eb;

} */

.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: #c1dad0;
  border-radius: 15px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--bs-primary);
}

.owl-carousel .owl-item img {
  width: auto;
  height: 250px;
  /* margin : 10%; */
}

.owl-carousel .team-item {
  margin-right:0 40%;
}

.owl-carousel .owl-item img {
  width: auto;
  height: 250px;
  /* margin : 10%; */
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
  /* transition: 0.1s; */
  /*margin: 0 25px;*/
  margin: 0 0px;
  padding: 10px;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Testimonial End ***/

/*** Contact Start ***/
.contact-detail::before {
  position: absolute;
  content: "";
  height: 50%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(rgb(235 198 176), rgb(170 170 228 / 30%)),
    url(../img/background.jpg) center center no-repeat;
  background-size: cover;
  border-radius: 10px;
  z-index: -1;
}

.contact-map {
  background: #f58634;
}

.contact-form {
  background: #f58634;
}

/*** Contact End ***/

/*** Footer Start ***/

.footer-logo-bg {
  padding: 20px;
  margin-bottom: 50px;
}

.footer-logo {
  max-width: 145px;
  background: white;
  padding: 20px;
  border-radius: 12%;
  box-shadow: 0 4px 8px 0 rgba(255, 69, 0, 0.68),
    0 6px 21px 0 rgba(255, 69, 0, 0.68);
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
  transition: 0.5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
  letter-spacing: 1px;
}

.footer .hightech-link a:hover {
  background: var(--bs-secondary);
  border: 0;
}

/*** Footer End ***/

.header-logo {
  height: 50px;
}

.header-shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  padding: 12px 0;
}

@media screen and (max-width: 480px) {
  .rc-anchor-normal {
    width: 250px !important;
  }
}

h2.display-6 {
  font-size: 30px;
  color: #0000a2;
}

.head {
  font-size: 25px;
  color: #0000a2;
  font-weight: 600;
  text-transform: uppercase;
}

img.img-fluid.purchase.w-80 {
  height: 55vh;
}

.modal-title {
  color: #002787;
}

a.h5 {
  font-size: 16px;
}

img.image-fluid.careers-cta1 {
  width: 100%;
  height: 47vh;
}

h1.footerHead {
  font-size: 33px;
}

.whatsApp {
  color: #05d805;
}

.hardware-icon,
h4.haerdwareHead {
  color: #25215e !important;
}

.footer-link {
  color: #01b35c;
}

.container-fluid.bg-second.py-5 {
  background-image: linear-gradient(90deg, #ff6402, #000d7b);
}

h1.me-3.text-primary.counter-value {
  color: #7cff5b !important;
}
