.about-section {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 50px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-section:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.about-section h2 {
  font-size: 30px;
  font-weight: bold;
  color: #2E3192;
  margin-bottom: 20px;
}

.about-section p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #333;
}

.about-section .highlights {
  font-size: 15px;
  margin-bottom: 20px;
}

.about-section .highlights h3 {
  font-size: 24px;
  font-weight: bold;
  color: #ED1C24;
  margin-bottom: 10px;

}

.about-section ul {
  list-style: none;
  padding-left: 0;
}

.about-section li {
  margin-bottom: 10px;
}

.about-section strong {
  font-weight: bold;
  color: #2E3192;
}


.solidity-section {
  font-family: 'Arial', sans-serif;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 50px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.solidity-section:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}


.solidity-section h2 {
  font-size: 36px;
  color: #2E3192;
  margin-bottom: 20px;
  font-weight: bold;
}

.solidity-section .highlights {
  margin-top: 30px;
}

.solidity-section .highlights h3 {
  font-size: 24px;
  color: #ED1C24;
  margin-bottom: 10px;
  text-decoration: underline;
  font-weight: bold;

}

.solidity-section p {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-section {
  padding: 50px 0;
}


.service-card {
  background-color: rgba(1, 4, 136, 0.9);
  color: #fff;
  border-radius: 6px;
  padding: 20px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.col-md-3 {
  margin-bottom: 25px;
}

.service-card:hover {
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 16px;
  font-weight: bold;
}

.service-card p {
  font-size: 13px;
}

@media (max-width: 767px) {
  .col-md-3 {
    margin-bottom: 16px;
    flex: 0 0 auto;
    width: 50%;
  }

  .client-section .col-md-2 {
    flex: 0 0 auto;
    width: 16.66%;
  }
}

@media (max-width: 470px) {
  .col-md-3 {
    margin-bottom: 16px;
    flex: 0 0 auto;
    width: 100%;
  }
}

.client-section .client-image {
  max-width: 100%;
  height: auto;
  max-height: 100px;
}

.dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #000;
  border-radius: 50%;
  margin-right: 8px;
  color: #000;
  font-style: italic;
}

.activity-column ul li {
  font-style: italic;
  font-size: 14px;
}

span.title {
  font-style: italic;
  /* font-weight: bold; */
  color: #ED1C24;
}

span.heading {
  font-weight: bold;
  color: #ED1C24;
}

span.imgheading {
  font-weight: bold;
  color: #1A1D94;
}

.bprimary {
  background-color: rgba(1, 4, 136, 0.9);
}