/********** Template CSS **********/

body {
  font-family: "DM Sans", sans-serif;
}

:root {
  --primary: #f7a516;
  --secondary: #354f8e;
  --light: #eff5f9;
  --dark: #1d2a4d;
}

.btn {
  font-weight: 700;
  transition: 0.5s;
}
.parent {
  position: relative;
  top: 0;
  left: 0;
}
.image1 {
  position: relative;
  top: 150px;
  left: 0;
  border: 5px white solid;
}
.image2 {
  position: absolute;
  top: 0px;
  left: 137px;
  border: 5px white solid;
}
.btn:hover {
  -webkit-box-shadow: 0 8px 6px -6px #555555;
  -moz-box-shadow: 0 8px 6px -6px #555555;
  box-shadow: 0 8px 6px -6px #555555;
}

.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 28px;
  height: 28px;
}

.btn-lg-square {
  width: 46px;
  height: 46px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}

.back-to-top {
  position: fixed;
  display: none;
  /* right: 30px; */
  bottom: 0;
  border-radius: 50% 50% 0 0;
  z-index: 99;
}

.navbar-light .navbar-nav .nav-link {
  font-family: "Roboto", sans-serif;
  position: relative;
  margin-left: 30px;
  padding: 30px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary);
}

@media (min-width: 992px) {
  .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 5px;
    bottom: 0;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-light .navbar-nav .nav-link:hover::before,
  .navbar-light .navbar-nav .nav-link.active::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 991.98px) {
  .navbar-light .navbar-nav .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}

.hero-header {
  background: url(../img/Banner2.png) top right no-repeat;
  background-size: cover;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* Set height to 100% to ensure images fill the column height */
}

.service-icon img {
  max-width: 100%; /* Ensure images fit within their parent container */
  max-height: 100%; /* Ensure images fit within their parent container */
}

.price-carousel::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  bottom: 0;
  left: 0;
  background: var(--primary);
  border-radius: 8px 8px 50% 50%;
  z-index: -1;
}

.price-carousel .owl-nav {
  margin-top: 35px;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.price-carousel .owl-nav .owl-prev,
.price-carousel .owl-nav .owl-next {
  position: relative;
  margin: 0 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  background: #ffffff;
  font-size: 22px;
  border-radius: 45px;
  transition: 0.5s;
}

.price-carousel .owl-nav .owl-prev:hover,
.price-carousel .owl-nav .owl-next:hover {
  color: var(--dark);
}

@media (min-width: 576px) {
  .team-item .row {
    height: 350px;
  }
}

.team-carousel .owl-nav {
  position: absolute;
  padding: 0 45px;
  width: 100%;
  height: 45px;
  top: calc(50% - 22.5px);
  left: 0;
  display: flex;
  justify-content: space-between;
}

.team-carousel .owl-nav .owl-prev,
.team-carousel .owl-nav .owl-next {
  position: relative;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: var(--primary);
  border-radius: 45px;
  font-size: 22px;
  transition: 0.5s;
}

.team-carousel .owl-nav .owl-prev:hover,
.team-carousel .owl-nav .owl-next:hover {
  background: var(--dark);
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 20px;
  height: 20px;
  background: var(--light);
  border: 2px solid var(--primary);
  border-radius: 20px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 40px;
  height: 40px;
  background: var(--primary);
}

.testimonial-carousel .owl-item img {
  width: 150px;
  height: 150px;
}

.grey-banner {
  /* background-color: #DCDCDC; */
  padding: 20px 0;
  text-align: center;
}

.grey-banner h2,
.grey-banner h3 {
  margin: 10px 0;
}
.grey-banner-container {
  position: relative;
  background-color: #f5f5f5;
  padding-bottom: 15px;
}
.productcontainer {
  position: relative;
  background-color: #f8f8f8;
}
.grey-banner {
  background-color: #f5f5f5; /* Light grey background color */
  padding-top: 50px; /* Adjust top padding as needed */
  padding-bottom: 50px; /* Adjust bottom padding as needed */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1; /* Ensure the banner is on top */
  color: #000;
}
.banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  object-fit: cover;
  z-index: 0;
}
.technology-icons {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap to the next line */
  justify-content: center;
  align-items: center;
}

.technology-icons img {
  width: 50px; /* Adjust as needed */
  height: auto;
  margin: 10px;
}
.box {
  padding: 20px 20px 20px 30px; /* Adjusted padding */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #fff;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
  /* border:0.5px solid gray ; */
}
.icon {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 20px; /* Adjusted left position */
  top: 20px; /* Adjusted top position */
}

.icon i {
  font-size: 40px; /* Increase the size of the icon */
  position: absolute; /* Position the icon absolutely */
  left: -5px; /* Adjust the left position to show only half */
  top: 32px; /* Align the icon to the top */
  transform: translateX(-69%);
}
.left-icon {
  left: 5px;
}

.right-icon {
  right: 5px;
}
.title {
  margin-top: 1%;
  margin-left: 50px; /* Adjust as needed */
  font-size: 20px;
  line-height: 20px;
  color: #000;
}
.text {
  margin-left: 50px; /* Adjust as needed */
  font-size: 14px;
  line-height: 20px;
  color: #000;
}
.gray-grid {
  background-color: #f0f0f0;
  padding: 20px;
  margin-bottom: 20px;
  text-align: center; /* Center align content */
  border: 2px solid gray;
  height: 100%;
}
.gray-grid img {

  height: 30%; /* Maintain aspect ratio */
}
.gray-grid h3 {
  font-size: medium;
  margin-top: 20px; /* Add some space between image and title */
  font-family: Arial, sans-serif; /* Use a smooth font */
}
.gray-grid p {
  color: black;
  font-size: small;
  font-family: Arial, sans-serif; /* Use a smooth font */
}
.custom-grid {
  background-color: #f0f0f0;
  padding: 30px;
  margin-bottom: 20px;
  text-align: center; /* Center align content */
  position: relative; /* Position relative for pseudo-elements */
  border: 1px solid #ccc; /* Grey border */
  height: 100%;
  margin-right: 10%;
}

/* Left side grey lines */
.custom-grid::before,
.custom-grid::after,
.custom-grid::nth-child(3)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 2px;
  background-color: #ccc; /* Grey color */
}

.custom-grid::before {
  top: 0;
  height: 100%; /* Full height */
}

.custom-grid::after {
  top: 20%; /* Adjust this value to control the position of the second line */
  height: 80%; /* Adjust this value to control the height of the second line */
}

.custom-grid::nth-child(3)::before {
  top: 40%; /* Adjust this value to control the position of the third line */
  height: 60%; /* Adjust this value to control the height of the third line */
}

.custom-grid img {
  max-width: 100%; /* Ensure images fill their containers */
  height: 30%;
}

.custom-grid h3 {
  font-size: medium;
  margin-top: 20px; /* Add some space between image and title */
  font-family: Arial, sans-serif; /* Use a smooth font */
}

.custom-grid p {
  color: black;
  font-size: small;
  font-family: Arial, sans-serif; /* Use a smooth font */
}

.card-body {
  color: white;
  text-align: center; /* Align text center */
  border-radius: 15px; /* Curved edges */
  padding: 20px;
  margin-bottom: 20px;
  width: 80%;
}

 .col-md-3:nth-child(1) .card-body {
  background-color: #c39407;
}
.col-md-3:nth-child(2) .card-body {
  background-color: #3e47c7;
}
.col-md-3:nth-child(3) .card-body {
  background-color: #ed9bfa;
}
.col-md-3:nth-child(4) .card-body {
  background-color: lightcoral;
}
.row2 .col-md-3:nth-child(1) .card-body {
  background-color: lightpink;
}
.row2 .col-md-3:nth-child(2) .card-body {
  background-color: lightseagreen;
}
.row2 .col-md-3:nth-child(3) .card-body {
  background-color: lightslategray;
}
.row2 .col-md-3:nth-child(4) .card-body {
  background-color: lightsteelblue;
}
.vertical-lines {
  border-left: 1px solid grey;
  height: 95%;
  position: absolute;
  left: -6px;
  margin-top: -21px;
  /* right: 1px; */
}
.vertical-lines1 {
  margin-top: -12px;
  border-left: 1px solid grey;
  height: 86%;
  position: absolute;
  left: -12px;
}

.textData {
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.wedotext {
  font-size: 16px;
  line-height: 20px;
  color: #000;
}

.rounded-circle-grey {
  width: 70px; /* Adjust size as needed */
  height: 70px; /* Adjust size as needed */
  border-radius: 50%; /* Make it a circle */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5 !important; /* Grey background color */
  position: relative;
  color: #000;
  font-size: 33px;
}

.roundText {
  color: black;
  text-align: left; /* Center the text */
  font-size: 12px;
  margin-top: 10px;
  width:80%;
  margin-left:-11px
}

@media screen and (min-width: 400px) and (max-width:700px) {
  .roundText {
    margin-left:17px
  }
} 
/* Positioning the text within two lines */


.row.gx-custom {
  margin-right: -5px;
  margin-left: -5px;
}

.col-custom {
  padding-right: 5px;
  padding-left: 5px;
}

.rukvaak_icon
{
  display: flex; flex-direction: column; align-items: center;
}


@media (min-width: 576px) {
  .custom-gutter .col,
  .custom-gutter [class*="col-"] {
    padding-right: 5px;
    padding-left: 5px;
  }
}

@media only screen and (min-width: 200px) and (max-width: 767px)  {
  /* .image2{
    left: 10px !important;
  } */
  .rukvaak_icon
  {
    display: flex; flex-direction: column; align-items: center;
    margin-right: 32%;
  }

 
  }

  @media only screen and (min-width: 220px) and (max-width: 780px)  {
    .image2{
      left: 100px !important;
      width: 250px !important;
      height:250px !important ;
    }

    .image1{
      left: 5px !important;
      width: 250px !important;
      height:250px !important ;
    }

    .row.gx-custom {
      margin-right: 49px !important;
      margin-left: -13px !important;
    }
    .text-primary{
      font-size: 32px;
    }

    .roundText{
      font-size: 16px !important;
      margin-left: 18px !important;
      text-align: center;
      
    }

    .rounded-circle-grey{
      margin-left: 35px !important;
    }
    .card-body{
      width: 170px !important;
      font-size: 11.21px;
    }
  
    
  
  
   
    }

