.elementor-404 .elementor-element.elementor-element-b1e6e33{--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-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-404 .elementor-element.elementor-element-bdf92b5{margin:40px 40px calc(var(--kit-widget-spacing, 0px) + 40px) 40px;}.elementor-404 .elementor-element.elementor-element-bdf92b5.elementor-element{--align-self:center;}.elementor-404 .elementor-element.elementor-element-bdf92b5 .elementor-heading-title{color:var( --e-global-color-text );}/* Start custom CSS for html, class: .elementor-element-a786314 *//* === 3-Column Grid === */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  font-family: 'Inter', sans-serif;
}

/* === Card Base (Light UI) === */
.interactive-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px 30px;
  padding-top: 80px; 
  min-height: 260px;
  border-radius: 20px;
  
  /* Light Glassmorphism */
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(0, 0, 0, 0.08);

  cursor: pointer;
  text-decoration: none;
  color: #141414;
  transition: all .3s ease;
  position: relative;
}

/* Hidden number until hover */
.interactive-card .card-number {
  font-size: 60px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(20px);
  transition: .45s cubic-bezier(.25,.8,.25,1);
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
  color: #1A4FB7;
}

/* Reveal number on hover */
.interactive-card:hover .card-number {
  opacity: .90;
  transform: translateY(0);
}

/* Bottom Detail Text */
.interactive-card h2 {
  font-size: 20px;
  margin: 0;
  line-height: 1.35;
  font-weight: 500;
  transition: .35s ease;
  color: #222;
}

/* === Hover Effects (Light) === */
.interactive-card:hover {
  transform: translateY(-6px);
  border-color: #35c187;
  animation: neonPulse 1.4s infinite alternate;
  box-shadow: 0px 0px 16px rgba(53, 193, 135, 0.3);
}

/* === Active (clicked) === */
.interactive-card:active {
  transform: translateY(0) scale(.97);
  box-shadow: 0 0 8px rgba(53, 193, 135, 0.2);
}

/* === Neon Pulse Light === */
@keyframes neonPulse {
  0% {
    border-color: #249e65;
    box-shadow: 0 0 6px rgba(36, 158, 101, .3), inset 0 0 6px rgba(36, 158, 101, .3);
  }
  100% {
    border-color: #C89D37;
    box-shadow: 0 0 18px rgba(53, 193, 135, .6), inset 0 0 10px rgba(53, 193, 135, .6);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */