.elementor-9871 .elementor-element.elementor-element-347d812{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-46e3dd3 *//* MAIN GRID */
.mega-menu-pro {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 15px;
  padding: 20px;
  position: relative;
  overflow: visible;
}

/* CARD DESIGN */
.mega-menu-pro .mega-card {
  position: relative;
  display: block;
  text-align: center;
  padding: 15px;
  border-radius: 12px;
  overflow: visible;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

/* IMAGE */
.mega-menu-pro .mega-card img {
  width: 100%;
  height: 130px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* TEXT */
.mega-menu-pro .mega-card span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

/* HOVER EFFECT */
.mega-menu-pro .mega-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.mega-menu-pro .mega-card:hover img {
  transform: scale(1.05);
}

/* SUBMENU */
.mega-menu-pro .has-sub .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  z-index: 9999;
}

/* SHOW SUBMENU */
.mega-menu-pro .has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* SUBMENU LINKS */
.mega-menu-pro .sub-menu a {
  display: block;
  padding: 8px 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mega-menu-pro .sub-menu a:hover {
  background: #f5f5f5;
  padding-left: 15px;
  color: #e67e22;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .mega-menu-pro {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .mega-menu-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}/* End custom CSS */