/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Feb 16 2026 | 14:01:25 */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 56px auto 0;
}

.sector-link {
  text-decoration: none;
  display: block;
  height: 100%;
}

.sector-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.sector-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #125500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sector-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  color: #0f3d1f;
  font-weight: 600;
}

.sector-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.sector-link:nth-child(1) .sector-card { animation-delay: 0.05s; }
.sector-link:nth-child(2) .sector-card { animation-delay: 0.1s; }
.sector-link:nth-child(3) .sector-card { animation-delay: 0.15s; }
.sector-link:nth-child(4) .sector-card { animation-delay: 0.2s; }
.sector-link:nth-child(5) .sector-card { animation-delay: 0.25s; }
.sector-link:nth-child(6) .sector-card { animation-delay: 0.3s; }
.sector-link:nth-child(7) .sector-card { animation-delay: 0.35s; }
.sector-link:nth-child(8) .sector-card { animation-delay: 0.4s; }

@keyframes fadeUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .sectors-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .sector-card {
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .sectors-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}