.tech-hero {
  background: linear-gradient(rgba(82, 84, 158, 0.9), rgba(82, 84, 158, 0.9)),
    url("https://img.freepik.com/free-photo/global-connections-background-social-media-banner_53876-108500.jpg?uid=R99814670&ga=GA1.1.1309595660.1701305611&semt=ais_hybrid");
  background-size: cover;
  background-position: center;
  padding: 8rem 2rem;
  text-align: center;
  color: white;
}
.tech-main-title {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.tech-subtitle {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}
.tech-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.tech-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tech-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tech-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.tech-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.tech-card:hover .tech-image {
  transform: scale(1.05);
}

.tech-content {
  padding: 1.5rem;
}

.tech-title {
  color: var(--text-dark);
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}

.tech-description {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.tech-keyword {
  color: var(--primary-tech);
  font-weight: 700;
  display: inline-block;
  margin-right: 0.5rem;
}
@media (max-width: 350px) {
  .tech-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tech-container {
    padding: 1rem 0.5rem;
  }

  .tech-hero {
    padding: 3rem 0.5rem;
  }

  .tech-main-title {
    font-size: 2rem;
    letter-spacing: 1px;
  }

  .tech-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .tech-card {
    margin: 0 0.5rem;
  }

  .tech-image-container {
    height: 180px;
  }

  .tech-title {
    font-size: 1.2rem;
  }

  .tech-description {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .tech-hero {
    padding: 4rem 1rem;
  }

  .tech-main-title {
    font-size: 2.5rem;
  }

  .tech-subtitle {
    font-size: 1rem;
  }
  .tech-container {
    padding: 1rem;
  }

  .tech-main-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
