body {
  /*background-color: #f8f9fa;*/
}

/* Specific styles for tabs */

/* Section Styling */

section {
  background: white;
  /*padding: 40px 0;*/
  /*border-radius: 12px;*/
  /*box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);*/
}

/* Carousel Styling */

/* Logo Image Styling */

/* Hover Effects */

/* Media Queries for Responsiveness */

/* Card Container Styling */

/* Product Card Styling */

/* Product Image Styling */

/* Product Text Styling */

/* Button Styling */

/* Arrow Icon Styling */

@media (max-width: 768px) {
  .feature-card {
    width: 100%;
  }
}

@media (max-width: 768px) {
  #software-overview {
    flex-direction: column;
    align-items: center;
  }
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Reduce logo size on smaller screens */

/* Hide part of the long company name on very small screens */

/* www.bytewebster.com */

.section-services {
  /*font-family: "Poppins", sans-serif;*/
  /*background-color: #e6edf7;*/
  /*color: #202020;*/
  /*padding-top: 115px;*/
  /*padding-bottom: 120px;*/
}

.section-services .header-section {
  margin-bottom: 34px;
}

.section-services .header-section .title {
  position: relative;
  padding-bottom: 14px;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 32px;
}

.section-services .header-section .title:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: #000000;
  border-radius: 3px;
}

.section-services .header-section .title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(30px);
  width: 10px;
  height: 3px;
  background-color: #038f00;
  border-radius: 3px;
}

.section-services .header-section .description {
  font-size: 14px;
  color: #060606;
}

.section-services .single-service {
  position: relative;
  margin-top: 30px;
  background-color: #fff;
  border-radius: 10px;
  padding: 40px 30px;
  overflow: hidden;
  box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}

.section-services .single-service .content {
  position: relative;
  z-index: 20;
}

.section-services .single-service .circle-before {
  position: absolute;
  top: 0;
  right: 0px;
  transform: translate(40%, -40%);
  width: 150px;
  height: 150px;
  background-color: #000000;
  border: 6px solid rgb(0,151,199);
  border-radius: 50%;
  /*opacity: 0.5;*/
  /*z-index: 10;*/
  transition: all .6s;
}

.section-services .single-service:hover .circle-before {
  width: 100%;
  height: 100%;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
}

.section-services .single-service .icon {
  display: inline-block;
  margin-bottom: 26px;
  width: 70px;
  height: 70px;
  background-color: #000000;
  border-radius: 5px;
  line-height: 70px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  transition: all .3s;
}

.section-services .single-service:hover .icon {
  background-color: #fff;
  color: #000000;
}

.section-services .single-service .title {
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 23px;
  transition: color .3s;
}

.section-services .single-service:hover .title {
  color: #fff;
}

.section-services .single-service .description {
  margin-bottom: 20px;
  font-size: 14px;
  transition: color .3s;
}

.section-services .single-service:hover .description {
  color: #fff;
}

.section-services .single-service a {
  position: relative;
  font-size: 18px;
  color: #202020;
  text-decoration: none;
  font-weight: 500;
  transition: color .3s;
}

.section-services .single-service:hover a {
  color: #fff;
}

.section-services .single-service a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #000000;
  transition: background-color .3s;
}

.section-services .single-service:hover a:after {
  background-color: #fff;
}

html {
  scroll-behavior: smooth;
}

.prdlogs {
}

@media (min-width: 300px) {
  .prdlogs {
    width: 90%;
  }
}

@media (min-width: 576px) {
  .prdlogs {
    width: 50%;
  }
}

