.elementor .e-1643f90{padding:0px;flex-direction:row;}.elementor .e-badfbfc{height:400px;column-gap:4%;padding-block-start:0%;padding-block-end:0%;padding-inline-start:20%;padding-inline-end:20%;margin-block-start:2%;margin-block-end:0%;margin-inline-start:0%;margin-inline-end:0%;display:flex;flex-direction:column;row-gap:8%;justify-content:flex-start;align-items:center;/* --- חלק 1: הנפשת כניסה חלקה ויוקרתית לקונטיינר --- */
selector {
  opacity: 0; /* מונע קפיצה לפני האנימציה */
  animation: premiumFadeInUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.1s; /* השהייה קלה למראה זורם */
  
  /* הכנה לאפקט הריחוף */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

/* אפקט ריחוף (Hover) עדין ומרומז */
selector:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* הגדרת תנועת הכניסה של הקונטיינר */
@keyframes premiumFadeInUp {
  0% {
      opacity: 0;
      transform: translateY(25px); /* מרחק עלייה קצר */
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

/* --- חלק 2: הנפשת טקסט מודרנית ומעניינת לכותרת --- */

/* הגדרה של סגנון הכותרת (בתוך הקונטיינר) */
selector .elementor-heading-title {
  opacity: 0;
  transform: translateY(15px); /* מתחיל נמוך יותר */
  animation: modernTextFadeInUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  animation-delay: 0.5s; /* השהייה משמעותית כדי שייראה אחרי הקונטיינר */
}

/* הגדרת תנועת הכניסה של הטקסט (עם קפיצה קלה) */
@keyframes modernTextFadeInUp {
  0% {
      opacity: 0;
      transform: translateY(15px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}\n}