.tech-section {
  background: #f4f9fc;
  padding: 60px 20px;
}

.tech-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.tech-text {
  flex: 1 1 200px;
}

.tech-text h2 {
  font-size: 2rem;
  color: #0b2545;
  margin-bottom: 15px;
}

.tech-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.tech-table {
  flex: 1 1 600px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tech-cell {
  background: #fff;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #444;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.tech-cell:hover {
  filter: grayscale(0%);
  color: #0b6adf;
  transform: scale(1.03);
}

.tech-cell i {
  font-size: 2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .tech-container {
    flex-direction: column;
    text-align: center;
  }

  .tech-table {
    grid-template-columns: repeat(2, 1fr);
  }
}
.tech-cell {
  background: #fff;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  color: #444;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.tech-cell:hover {
  filter: grayscale(0%);
  color: #0b2545;
  transform: scale(1.05);
}

.tech-cell i {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.tech-cell span {
  font-size: 14px;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .tech-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .tech-cell {
    height: 90px;
  }
}


/* happy client */.stats-oval-section {
  background-color: #0c4a7d; /* Adjust this to match your blue tone */
  padding: 60px 20px;
  color: white;
}

.stats-oval-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  text-align: center;
}

.stats-oval-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stats-number {
  font-size: 2.5rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 20px 40px;
  border-radius: 50px;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.stats-oval-box:hover .stats-number {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.stats-label {
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-number {
    font-size: 2rem;
    padding: 15px 30px;
  }
}


.about-section {
  padding: 60px 20px;
}

.about-text ul.feature-list {
  padding-left: 0;
  list-style: none;
}

.about-text ul.feature-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-text ul.feature-list li i {
  color: #007bff;
  margin-right: 10px;
}

.about-img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
}

@media (min-width: 992px) {
  .about-img {
    max-height: 650px;
  }
}


