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