.traffic-sections {
  background: #0a2a55;
  padding: 60px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.traffic-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
}

.traffic-card {
  background: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #212529;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.traffic-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.icon-wrapper {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(45deg);
  background: #fff;
  border: 5px solid #ffc107;
  margin-left: 20px;
  overflow: hidden;
}

.icon-wrapper img {
  transform: rotate(-45deg);
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.text-wrapper {
  padding: 20px 30px;
  position: relative;
}

.text-wrapper h3 {
  font-family: "Noto Sans Armenian", sans-serif;
  font-weight: 600;
  font-size: 20px;
  margin: 0;
}

.text-wrapper .quote {
  position: absolute;
  right: 20px;
  bottom: 15px;
  font-size: 40px;
  color: #eaeaea;
}
