.tech-stack {
  background-color: #ffffff;
  padding: 0px 75px;
  margin: auto;
  border-radius: 20px;
  transition: all 0.3s ease;
}
 @media (min-width: 1600px) {
  .tech-stack {
    padding: 0 120px;
  }
}

/* Tablet Landscape */
@media (max-width: 1199px) {
  .tech-stack {
    padding: 0 60px;
  }
}

/* Tablet Portrait */
@media (max-width: 991px) {
  .tech-stack {
    padding: 0 40px;
  }
}

/* Mobile Large */
@media (max-width: 767px) {
  .tech-stack {
    padding: 0 30px;
    gap: 60px;
  }
}

/* Mobile Small */
@media (max-width: 575px) {
  .tech-stack {
    padding: 0 20px;
    gap: 40px;
  }
}

.tech-stack h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111827;
}

.tech-stack p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 50px;
  max-width: 850px;
}

.tech-stack .section {
  margin-bottom: 50px;
}
.section:last-child{
  margin-bottom: 0px;
}

.tech-stack .section-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Tech Grid */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.tech-item {
  background-color: #f1f5f9;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.tech-item:hover {
  background-color: #e0e7ff;
  transform: translateY(-4px);
}

@media (max-width: 768px) {
  .tech-stack {
    padding: 0px 25px;
  }
  .tech-stack h1 {
    font-size: 2.25rem;
  }
  .tech-stack p {
    font-size: 1rem;
    margin-bottom: 35px;
  }
  .tech-item {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .tech-stack{
    padding: 20px 15px;
  }
  .tech-item img{
    width: 20px;
  }
  .tech-stack h1 {
    font-size: 1.75rem;
  }
  .tech-stack p {
    font-size: 0.95rem;
  }
  .tech-item {
    padding: 6px 16px;
    font-size: 0.7rem;
  }
}
