.elementor-4526 .elementor-element.elementor-element-ecf83db{--display:flex;--min-height:262px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--border-radius:0px 0px 0px 0px;}.elementor-4526 .elementor-element.elementor-element-ecf83db.e-con{--flex-grow:0;--flex-shrink:1;}.elementor-4526 .elementor-element.elementor-element-60b5f82{width:100%;max-width:100%;padding:10px 10px 10px 10px;}.elementor-4526 .elementor-element.elementor-element-60b5f82.elementor-element{--align-self:stretch;--flex-grow:1;--flex-shrink:0;}#elementor-popup-modal-4526{background-color:rgba(0,0,0,.8);justify-content:center;align-items:center;pointer-events:all;}#elementor-popup-modal-4526 .dialog-message{width:640px;height:auto;}#elementor-popup-modal-4526 .dialog-close-button{display:flex;}#elementor-popup-modal-4526 .dialog-widget-content{box-shadow:2px 8px 23px 3px rgba(0,0,0,0.2);}/* Start custom CSS for html, class: .elementor-element-60b5f82 *//* ====== Container Styling ====== */
.sector-container {
  display: flex;                 /* make sectors align horizontally */
  gap: 40px;                     /* space between sectors */
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-family: 'Segoe UI', sans-serif;
  flex-wrap: wrap;               /* wrap to new line if screen is small */
}

/* ====== Each Column ====== */
.sector-box {
  display: flex;
  flex-direction: row;           /* make items horizontal */
  flex-wrap: wrap;               /* allow items to wrap if too long */
  gap: 20px;
  align-items: center;
}

.sector-title {
  width: 100%;                   /* sector title stays on top */
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
  border-left: 4px solid #0d6efd;
  padding-left: 10px;
  color: #222;
}

/* ====== Item List ====== */
.sector-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 14px;
  transition: 0.3s ease;
  white-space: nowrap;           /* prevent text wrapping */
}

.sector-item i {
  font-size: 16px;
  color: #0d6efd;
}

.sector-item:hover {
  color: #0d6efd;
  transform: translateY(-3px);   /* subtle hover lift */
}/* End custom CSS */