﻿/*SIANSOFT*/
.software-dev {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1E1E1E; /*color: #f0f0f0;*/
  background: #121212;
  padding: 2rem;
}

h1, h2, h3 {
  color:rgb(243, 63, 56); /*color: #00c4ff;*/
}

.intro .hero-intro {
  max-width: 800px;
  margin: auto;
  text-align: center;
  margin-bottom: 2rem;
}

.platforms {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  color: #f0f0f0
}

.platforms li {
  background: #1e1e1e;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.examples-header {
  text-align: center;
  margin-bottom: 2rem;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  color: #f0f0f0
}

.example-card {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.example-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.example-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 196, 255, 0.3);
}
