/* ===============================
   REGULATORY MAP – MIDWAY UI
================================ */

.dtf-reg-map {
  background: #ffffff;
}

.dtf-reg-map .sub-title {
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: 1px;
}

.reg-map-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  position: relative;
}

/* CENTER CORE */
.reg-core {
  background: #f5f9ff;
  border: 2px solid #0d6efd;
  padding: 35px 30px;
  border-radius: 16px;
  text-align: center;
  min-width: 260px;
  position: relative;
  z-index: 2;
}

.reg-core h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.reg-core span {
  font-size: 13px;
  color: #000219;
}

/* COLUMNS */
.reg-column {
  width: 320px;
}

.reg-column.left {
  text-align: right;
  padding-right: 60px;
}

.reg-column.right {
  text-align: left;
  padding-left: 60px;
}

/* ITEMS */
.reg-item {
  background: #ffffff;
  border: 2px solid #0d6efd;
  padding: 18px 22px;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 30px 50px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.reg-column.right .reg-item {
  /* border-left: none; */
  border: 2px solid #0d6efd;
}

.reg-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(13,110,253,0.15);
}

.reg-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0d6efd;
}

.reg-item p {
  font-size: 13px;
  color: #000219;
}

/* CONNECTING LINES */
.reg-map-wrapper::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    #0d6efd,
    transparent
  );
}

/* FOOTNOTE */
.reg-footnote {
  margin-top: 60px;
  font-size: 14px;
  color: #000219;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .reg-map-wrapper {
    flex-direction: column;
  }

  .reg-column {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .reg-item {
    border-left: 4px solid #0d6efd !important;
    border-right: none !important;
  }

  .reg-map-wrapper::before {
    display: none;
  }
}


/* ===============================
   OUR MANDATE – STRATEGIC FLOW UI
================================ */

.dtf-mandate-section {
  background: #ffffff;
}

.dtf-mandate-section .sub-title {
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: 1px;
}

/* FLOW CONTAINER */
.mandate-flow {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 70px;
  position: relative;
}

/* CONNECTING LINE */
.mandate-flow::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #0d6efd,
    transparent
  );
}

/* STEPS */
.mandate-step {
  width: 18%;
  text-align: center;
  position: relative;
}

.step-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d6efd;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 15px;
  box-shadow: 0 12px 25px rgba(13,110,253,0.25);
}

.mandate-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.mandate-step p {
  font-size: 13px;
  color: #000219;
  line-height: 1.5;
}

/* ASSURANCE BLOCK */
.mandate-assurance {
  margin-top: 70px;
  padding: 35px;
  background: #f5f9ff;
  border-left: 5px solid #0d6efd;
  border-right: 5px solid #0d6efd;
  border-radius: 12px;
  text-align: center;
}

.mandate-assurance p {
  font-size: 14px;
  color: #000219;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .mandate-flow {
    flex-direction: column;
  }

  .mandate-flow::before {
    display: none;
  }

  .mandate-step {
    width: 100%;
    margin-bottom: 35px;
  }
}

/* SAFETY SECTION ICON REPLACEMENT */

.safety-area .safety-icon {
  font-size: 48px;
  color: #0d6efd;
  margin-bottom: 20px;
  display: inline-block;
  transition: all 0.3s ease;
}

.single-safety:hover .safety-icon {
  transform: translateY(-6px);
  color: #084298; /* slightly darker blue */
}

.single-safety h3 {
  margin-top: 10px;
}


