/* TECHNOLOGY PAGE CSS */
.py-section { padding: 90px 0; }

.tech-section {
  margin-bottom: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--border);
}
.tech-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.tech-section-header {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding: 1.8rem 2rem;
  background: var(--off-white);
  border-radius: 16px;
  border: 1px solid var(--border);
}
.tsh-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.tsh-blue { background: var(--blue); color: #fff; }
.tsh-dark { background: var(--navy); color: var(--blue); }

.tech-section-header h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .3rem;
  font-weight: 700;
}
.tech-section-header p { color: var(--muted); font-size: .9rem; margin: 0; }

/* Tech Items */
.tech-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.4rem;
  height: 100%;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.tech-item:hover {
  box-shadow: 0 6px 24px rgba(26,107,255,.09);
  border-color: rgba(26,107,255,.2);
  transform: translateY(-2px);
}
.ti-highlight {
  border-color: var(--blue);
  background: var(--blue-light);
}
.ti-highlight:hover { background: #dce8ff; }

.ti-icon {
  width: 42px; height: 42px;
  background: var(--blue-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
  flex-shrink: 0;
}
.ti-highlight .ti-icon { background: var(--blue); color: #fff; }

.tech-item h6 { font-size: .9rem; color: var(--navy); margin-bottom: .3rem; font-weight: 700; }
.tech-item p { color: var(--muted); font-size: .8rem; line-height: 1.6; margin: 0; }
.ti-badge {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  padding: .15rem .6rem;
  border-radius: 50px;
  margin-top: .4rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

@media (max-width: 768px) {
  .py-section { padding: 60px 0; }
  .tech-section-header { flex-direction: column; gap: .8rem; }
}