/* ===========================
   TECHNOLOGY PAGE STYLING
   =========================== */

.technology-section {
  padding: 100px 0;
  background: #f8f9fa;
  text-align: center;
}

.technology-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0041c2;
  margin-bottom: 10px;
}

.technology-section h2 span {
  color: #0041c2;
}

.tech-intro {
  max-width: 750px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Grid */
.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  padding: 0 60px;
  justify-items: center;
}

/* Card */
.tech-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 40px 25px;
  text-align: center;
  transition: all 0.4s ease;
  max-width: 320px;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Icon 
.tech-icon {
  font-size: 2.5rem;
  color: #00a86b;
  margin-bottom: 20px;
}*/
/* ourv feature tech image */
.container {
  display: flex;
  justify-content: center; /* Centers horizontally */
  align-items: center;     /* Centers vertically (optional) */
}

.feature-img--newmiddle {
  width: 170px;
  height: 170px;
  border-radius: 10%;
  margin-bottom: 30px;
  /* Remove the margin-right you had before! */
}

.tech-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}

.tech-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hover Accent Line */
.tech-card::after {
  content: "";
  display: block;
  height: 3px;
  width: 0;
  background: #00a86b;
  margin: 15px auto 0;
  transition: width 0.3s ease;
}

.tech-card:hover::after {
  width: 60%;
}

/* Responsive */
@media (max-width: 992px) {
  .technology-section h2 {
    font-size: 2.2rem;
  }
  .tech-intro {
    padding: 0 20px;
  }
}

@media (max-width: 600px) {
  .technology-section {
    padding: 80px 0;
  }
  .technology-grid {
    padding: 0 30px;
  }
  .tech-card {
    max-width: 90%;
  }
}