.elementor-455 .elementor-element.elementor-element-519fc94{--display:flex;}/* Start custom CSS for html, class: .elementor-element-d90994f *//* ===== GLOBAL FIX ===== */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}

/* ===== HERO ===== */
.edali-hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f")
    center / cover no-repeat;
  overflow: hidden;
}

/* overlay */
.edali-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255, 0, 102, 0.9),
    rgba(255, 153, 0, 0.9)
  );
  z-index: 1;
}

/* ===== CENTER TEXT ===== */
.edali-center {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.edali-center h1 {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 30px;
}

.edali-btn {
  padding: 14px 40px;
  background: #ff005c;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
}

/* ===== FLOATING CARDS ===== */
.edali-card {
  position: absolute;
  z-index: 3;
  background: #fff;
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 25px 45px rgba(0,0,0,.18);
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

/* icon */
.icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* colors */
.red { background:#ff4d6d; }
.violet { background:#7b7fe8; }
.green { background:#2ecc71; }
.orange { background:#f39c12; }
.blue { background:#3498db; }
.pink { background:#ff6fae; }

/* ===== POSITIONS (Edali-like) ===== */
.tech { top: 18%; left: 10%; }
.health { top: 18%; right: 10%; }

.marketing { top: 45%; left: 6%; }
.science { top: 45%; right: 6%; }

.business { bottom: 14%; left: 32%; }
.design { bottom: 14%; right: 10%; }

/* ===== ANIMATION ===== */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ===== MOBILE SLIDER ===== */
@media (max-width: 768px) {
  .edali-center h1 {
    font-size: 2rem;
  }

  .edali-card {
    position: relative;
    animation: none;
    flex: 0 0 auto;
  }

  .edali-hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .edali-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: transparent;
  }

  .edali-hero {
    padding-bottom: 120px;
  }

  .edali-hero > .edali-card {
    display: none;
  }

  .edali-hero {
    overflow-x: auto;
  }
}/* End custom CSS */