/* CSS Document */
.logo-class {
  height: auto;
  width: 200px;
}
.wrapper {
  width: 100%;
  overflow: hidden
}
h1, h2, h3, h4 {
  font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}
strong {
  font-weight: bold;
}
.navbar-nav .nav-link {
  color: #000;
  font-weight: 600;
  margin-right: 15px;
  border-right: 1px solid #ddd;
  padding-right: 15px;
}
.navbar-nav .nav-link:last-child {
  border-right: none;
}
.navbar-nav .nav-link.active {
  color: #2b95df !important; /* Light blue active link */
  border-bottom: 4px solid #2b95df;
  padding-bottom: 20px;
}
.navbar-brand {
  margin-right: 70px;
}
.nav-item {
  margin-right: 25px;
}
.nav-link {
  letter-spacing: 1px;
}
.navbar-brand span {
  font-size: 14px;
  display: block;
  color: #a8c67a;
  margin-top: -5px;
}
.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.about-section {
  padding: 80px 0;
  background-color: #fff;
}
/* Text styling */
.about-text p {
  color: #626262;
  line-height: 1.7;
  text-align: justify;
}
.about-title {
  font-weight: 700;
  position: relative;
  display: block; /* changed from inline-block */
  width: -moz-fit-content; /* cross-browser fit-content fallback */
  width: fit-content;
  margin: 0 auto 1rem; /* center the entire heading block */
  padding: 0 15px;
  text-align: center;
}
.about-title::before, .about-title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 183px;
  height: 2px;
  background-color: #0FAFF2;
}
.about-title::before {
  left: -187px;
}
.about-title::after {
  right: -187px;
}
.scrubber-section {
  background: url("../images/bg1.jpg");
  background-size: cover; /* Scales the image to cover the entire section */
  background-position: center; /* Centers the image within the section */
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}
.scrubber-section h2 {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 40px;
  line-height: 50px;
  font-weight: bold;
  letter-spacing: 0px;
}
.scrubber-card {
  height: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.scrubber-card:hover img {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
.scrubber-card img {
  width: 100%;
  height: 398px;
  border-radius: 10px;
  margin-bottom: 15px;
}
.scrubber-card-title {
  line-height: 30px;
  font-weight: bolder;
  letter-spacing: 0px;
  font-size: 20px;
}
.features-section {
  background-color: #ffffff;
  padding: 60px 0;
}
.feature-box {
  text-align: left;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.feature-icon {
  background-color: #98C753; /* light green */
  color: #000000;
  font-size: 28px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-title {
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}
.feature-text {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}
.industries-section {
  background-color: #f5f5f5;
  padding: 70px 0;
  text-align: center;
}
.industries-section h2 {
  font-size: 42px;
  line-height: 42px;
  font-weight: bold;
  letter-spacing: 0px;
  margin-bottom: 30px;
}
.industry-card {
  background-color: #fff;
  border-radius: 4px;
  padding: 25px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  font-size: 52px;
  color: #25acdc;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.industry-icon {
  font-size: 40px;
  color: #3399cc;
  margin-bottom: 10px;
}
.industry-title {
  font-weight: 600;
  color: #000;
  font-size: 16px;
}
footer {
  background-color: #2b2b2b;
  color: #f8f9fa;
  padding: 60px 0 40px;
  font-family: 'Poppins', sans-serif;
}
footer h5 {
  font-weight: 600;
  margin-bottom: 25px;
  color: #ffffff;
}
footer p, footer a {
  color: #ccc;
  font-size: 15px;
  text-decoration: none;
}
footer a:hover {
  color: #3399cc;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}
.contact-item i {
  font-size: 20px;
  color: #30a7df;
  margin-right: 10px;
  margin-top: 4px;
}
.contact-item i:after {
  content: "";
  display: block;
  width: 70px;
  border-width: 0 0 1px;
  border-style: solid;
  border-color: var(--mfn-contactbox-line);
  position: absolute;
  left: -30px;
  bottom: 0;
}
.social-icons a {
  color: #30a7df;
  font-size: 20px;
  margin-right: 15px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #6ab04c;
}
hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}
/* SUB HEADER */
.hero-section {
  background: url('your-image.jpg') center center/cover no-repeat;
  position: relative;
  color: white;
  text-align: left;
  padding: 30px 0;
}
.hero-overlay {
  position: relative;
  top: 71px;
  left: 0;
  width: 100%;
  height: 155px;
  background: linear-gradient(350deg, rgb(155, 203, 19) 0%, rgb(155, 203, 19) 1%, rgb(44, 150, 226) 100%); /* overlay color */
}
.hero-content {
  position: relative;
  z-index: 2;
}
.breadcrumb a {
  color: #fff;
  text-decoration: none;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #fff;
}
.breadcrumb-item.active {
  color: #ddd;
}
.slider-section {
  background: url('../assets/slider-bg.jpg') center center/cover no-repeat;
  height: 600px; /* adjust as needed */
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.slider-content {
  background: linear-gradient(350deg, rgb(155, 203, 19) 0%, rgb(155, 203, 19) 1%, rgb(44, 150, 226) 100%);
  padding: 1.5rem 3rem;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.slider-content h2 {
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  margin: 0;
}
@media (max-width: 768px) {
  .slider-content {
    padding: 1rem 2rem;
  }
  .slider-content h2 {
    font-size: 1.5rem;
  }
}
.b_orange {
  background: linear-gradient(350deg, rgb(155, 203, 19) 0%, rgb(155, 203, 19) 1%, rgb(44, 150, 226) 100%);
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, .2);
}
.btn-small {
  padding: 10px 20px !important;
  font-size: 16px !important;
}
.btn {
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: table;
  margin: 20px auto 25px;
  z-index: 1;
  position: relative;
}
.btn:after {
  content: '';
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #000;
  opacity: .1;
  border-radius: 5px;
  transition: all .3s;
}
.contact-section {
  background: #cfd6db;
  margin-top: 50px;
  margin-bottom: 50px;
border: 1px solid #efffff;
    border-radius: 10px;
}
.info-box {
  border-radius: 12px;
  padding: 40px;
  color: #333;
}
.form-box {
  border-radius: 12px;
  padding: 40px;
}
.icon {
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 4px #d3d3d3;
  color: #30a7df;
  display: flex;
  font-size: 22px;
  font-weight: 600;
  padding: 22px 0;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  min-width: 60px;
  margin-bottom: 15px;
  margin-right: 21px;
}
.icon:hover {
  background: #30a7df;
  color: #fff;
  transition: all .5s;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 15px; /* spacing between icon and text */
  margin-bottom: 20px;

}

#pills-tab .nav-item .active{
	background: linear-gradient(350deg, rgb(155, 203, 19) 0%, rgb(155, 203, 19) 1%, rgb(44, 150, 226) 100%);
  box-shadow: inset 0 -4px 0 0 rgba(0, 0, 0, .2);
	color:#FFFFFF;
}

.nav-pills .nav-link {
    border-radius: var(--bs-nav-pills-border-radius);
   color: #2b95df;
    font-weight: 700;
	border: 1px solid #dedede;
	margin-bottom: 0px;
}

.tab-pane{
	border: 1px solid #dedede;
	padding: 30px;
}

#scrubber-prd .scrubber-card-title{
	line-height: 30px;
    font-weight: bolder;
    letter-spacing: 0px;
    font-size: 17px;
    text-align: center;
}


.cnt-des{
	width: 100%;
	border-bottom:1px dotted black;
	padding-bottom: 20px;
}