.elementor-19870 .elementor-element.elementor-element-d0ed94d{--display:flex;--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;}.elementor-19870 .elementor-element.elementor-element-d0ed94d:not(.elementor-motion-effects-element-type-background), .elementor-19870 .elementor-element.elementor-element-d0ed94d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#07041B;}/* Start custom CSS for html, class: .elementor-element-350b0c5 *//* ============================================
   LAYOUT CONTAINER
============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.single-section {
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

/* ============================================
   BOXED SECTION COMPONENT
============================================ */
.box {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.4);
  padding: 24px;
  border-radius: 16px;
  width: 100%;
  max-width: 980px;
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* header reused inside each column */
.box-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.column-header {
  margin-bottom: 16px;
}

.header-icon {
  width: 40px;
  height: 40px;
}

.title {
  margin: 0;
  font-size: 20px;
  color: #00d4ff;
  font-weight: 600;
}

.subtitle {
  margin: 0;
  font-size: 13px;
  color: #88eaff;
}

/* COLUMNS INSIDE SINGLE BOX */
.box-columns {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.link-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Vertical animated divider */
.box-divider {
  position: relative;
  width: 1px;
  align-self: stretch;
  background: rgba(0, 212, 255, 0.18);
  overflow: hidden;
}

.box-divider::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 40%;
  top: -40%;
  background: linear-gradient(
    to bottom,
    transparent,
    #00f2fe,
    #00d4ff,
    transparent
  );
  animation: line-glow 3s linear infinite;
  opacity: 0.9;
}

@keyframes line-glow {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(260%);
  }
}

/* Links inside each column - 3 LEFT, 3 RIGHT (2-column grid) */
.link-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 columns */
  gap: 10px 16px;                                    /* row gap, column gap */
}

/* Link item */
.link-item {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #e6fcff;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-sizing: border-box;
  font-size: 13px;
}

.link-item span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.link-item:hover {
  background: rgba(0, 212, 255, 0.22);
  transform: translateX(4px);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.35);
}

.arrow {
  font-size: 14px;
  color: #00d4ff;
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 900px) {
  .box-columns {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .single-section {
    padding: 16px 0;
  }

  .box {
    padding: 20px;
  }

  .box-columns {
    flex-direction: column;
  }

  .box-divider {
    display: none;
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 18px;
  }

  .subtitle {
    font-size: 12px;
  }

  .link-wrapper {
    grid-template-columns: 1fr; /* stack on tiny screens */
  }

  .link-item {
    font-size: 12px;
  }
}
.link-wrapper-single {
  grid-template-columns: 1fr !important;
}/* End custom CSS */