.elementor-11007 .elementor-element.elementor-element-9a436e4{--display:flex;--min-height:650px;--flex-direction:row;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}/* Start custom CSS for html, class: .elementor-element-2121130 */.cards-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: nowrap;
  direction: rtl;
}

.engineering-card {
  width: 500px;
  height: 500px;

  background: linear-gradient(145deg, #1b1b2f, #111122);
  border-radius: 20px;
  padding: 2rem;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  color: #fff;

  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.card-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: white;
}

.card-line {
  display: block;
  align-self: center;
  border: none;
  height: 3px;
  width: 65%;
  margin: 0 0 1.5rem 0;
  background: linear-gradient(to left, #7f5af0, #c77dff);
  border-radius: 999px;
}

.card-links {
  list-style: none;
  padding: 0;
  margin: auto 0;
  text-align: center;

  max-height: none;
  overflow: visible;
}

.card-links li {
  margin-bottom: 0.6rem;
}

.card-links a {
  display: block;
  padding: 1rem 1.2rem;
  border-radius: 14px;

  text-decoration: none;
  color: #fff;
  font-size: 1.05rem;

  background: rgba(255, 255, 255, 0.07);
  transition: background 0.3s ease, transform 0.2s ease;
}

.card-links a:hover {
  background: linear-gradient(135deg, #7f5af0, #c77dff);
  transform: scale(1.04);
}

.card-links::-webkit-scrollbar {
  display: none;
}

.engineering-card--two-columns .card-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.3rem 1rem;
  text-align: center;
}

.engineering-card--two-columns .card-links li:last-child {
  grid-column: 1 / -1;
  margin-top: 0.3rem;
}

@media (max-width: 1100px) {
  .cards-wrapper {
    flex-wrap: wrap;
  }

  .engineering-card {
    width: auto;
  }
}/* End custom CSS */