a {
  text-decoration: none;
}

.productList {
  text-align: left;
  box-shadow: -10px -5px 40px 0 rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 5px;
}

.productList ul li {
  margin-bottom: 5px;
}

.textLeft {
  text-align: justify;
}

.mainGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-left: 20px;
}

.mainGrid div {
  border: 1px solid #ddd;
  padding-block: 10px;
  text-align: center;
}

.counter-value {
  margin: 10px 6px;
  font-size: 30px;
  font-weight: bold;
  color: #00b1f7;
}

.innerPro {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

.innerPro h3 {
  color: #0095c9;
}

.contentDiv {
  grid-column-start: 1;
  grid-column-end: 3;

}


.quickLinks a {
  border: 1px solid #0095c9;
  padding: 5px 15px;
  margin-right: 10px;
  color: #0095c9;
  border-radius: 5px;
  transition: 0.4s ease;
}

.quickLinks a:hover {
  background-color: #0095c9;
  color: #fff;
}


.listArea {
  text-align: left;
}

.listArea h4 {
  margin-left: 20px;
  margin-bottom: 15px;
}

.listArea ul li {
  text-align: left;
  margin-bottom: 15px;
}

.sectionTitle {
  text-align: center;
  padding-bottom: 30px;
}

.sectionTitle h2 {
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.sectionTitle h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: #0095c9;
  bottom: 0;
  left: calc(50% - 25px);
}

.customClass h4 {
  font-size: 16px;
  margin-bottom: 0;
  padding-block: 0;

}

.customClass .nav-tabs .nav-link {
  display: flex;
  align-items: center;
  color: #707070;
  border: none;
  cursor: pointer;

}

.customClass .nav-tabs .nav-link:hover {
  border: none;
  color: #0095c9;
}

.customClass .nav-tabs .nav-link i {
  font-size: 18px;
}

.customClass .nav-tabs .nav-link.active {
  border: none;
  color: #0095c9;
}

.head {
  background-color: #0095c9;
  color: #fff;
  width: 100%;
  padding: 10px 20px;
  font-size: 18px;
}


.customTabss ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.customTabss ul li button {
  width: 100%;
}

.customTabss .nav-tabs .nav-link.active {
  background-color: #003663;
  color: #fff;
  border-radius: 0;
  border: none;
}

.nav-tabs {
  border: none;
}

.customTabss .nav-tabs .nav-link {
  background-color: #00aeef;
  border-radius: 0;
  color: #fff;
  border: none;

}

.customTabContent {
  padding-top: 20px;
}

.tabList ul {
  list-style-type: none;
  padding: 0;
}

.tabList ul li {
  margin-bottom: 15px;
}

.tabList ul li span {
  font-weight: bold;
}

.tabList ul li i {
  font-size: 20px;
  color: #003663;
}


.footer-links a {
  text-decoration: none;
}


#hero .carousel-inner .carousel-item {
  background-size: contain;
}

.navbar-mobile .dropdown.open ul {
  display: block;
}

.navbar-mobile .dropdown>a {
  cursor: pointer;
  /* Indicates it's clickable */
}

/* Optional: Rotate the dropdown icon when the menu is open */
.navbar-mobile .dropdown.open>a .bi-chevron-down {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.border-blue {
  margin-top:15px;
  margin-bottom: 15px;
  padding: 20px 30px;
  border: 1px solid #0095c9;
  border-radius: 10px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.inner-box img {
  border-radius: 50%;
}

.lead-content-main {
  border: 1px solid #0095c9;
  border-radius: 10px;
  align-items: center;
}

.icon-text-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: space-around;
  width: -webkit-fill-available;
  align-items: center;
}

.icon-text img {
  max-width: 80px;
}

.icon-text:nth-of-type(1),
.icon-text:nth-of-type(2),
.icon-text:nth-of-type(3) {
  margin-bottom: 15px;
}

.contact > .smallIcon i {
  width: 35px;
  height: 35px;
  border: none;

  
}

@media screen and (max-width: 990px) {


  .icon-text-main {

    grid-template-columns: repeat(2, 1fr);

  }

  .lead-content-main {
    align-items: center;

  }

}

@media screen and (max-width: 767px) {

  .innerPro {
    grid-template-columns: repeat(1, 1fr);
  }

  .quickLinks {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .mobile-class {
    grid-template-columns: repeat(1, 1fr);
    display: grid !important;

  }

  .lead-content-main {
    grid-template-columns: repeat(1, 1fr);
    display: grid !important;

  }

  .icon-text-main {
    margin-top: 20px;
  }



}

@media screen and (max-width: 400px) {

  .icon-text-main {
    grid-template-columns: repeat(1, 1fr);
  }


}