#technologies {
  background-color: #fff;
  padding: 60px 0;
}



.tech-title {
  font-family: 'Sora', sans-serif;
  font-size: 29px;
  font-weight: 700;
  color: #1d2939;
  letter-spacing: 0.2px;
  margin-bottom: 10px;
}

.tech-desc {
  font-family: 'Readex Pro', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #475467;
  line-height: 1.8;
   text-align: justify;
  margin-bottom: 30px;
}

.tech-desc span {
  color: #fd0ca4;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 20px;
  justify-items: center;
}

.icon-card {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 2px 6px rgba(0, 0, 0, 0); */
  padding: 16px;
  width: 78px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  border: 0.1px solid #e0e0e0;
}

.icon-card:hover {
  transform: scale(1.08);
  ;
}

.icon-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.icon-card small {
  display: none; /* Hide label below icons for a clean Calendly look */
}
