.sectors-nav-wrapper {
  background-color: white;
  width: 100%;
  padding: 2rem 0;
}

.sectors-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}


.sector-box {
  flex: 1 1 45%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.sector-box a {
  display: block;
  position: relative;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.sector-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sector-box:hover img {
  transform: scale(1.05);
}

.sector-box:hover {
  transform: scale(1.03);
}

.sector-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  transition: background 0.3s ease;
}

.sector-overlay h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
}

.find-out-btn {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #6fffe9;
  color: black;
  font-weight: bold;
  border-radius: 4px;
  text-transform: uppercase;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.find-out-btn:hover,
.find-out-btn:focus {
  background-color: #5cc0c0;
  outline: none;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .sector-box {
    flex: 1 1 100%;
  }
}
