.elementor-227 .elementor-element.elementor-element-7c914cd6{--display:flex;}.elementor-227:not(.elementor-motion-effects-element-type-background), .elementor-227 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}/* Start custom CSS for html, class: .elementor-element-33918cab */.pro-header {
  font-family: 'Roboto', sans-serif;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* TOP BAR */
.top-bar {
  background: #0a0a0a;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  padding: 8px 5%;
  font-size: 13px;
  border-bottom: 1px solid #111;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon {
  color: #ff0000;
}

.divider {
  color: #444;
}

/* SOCIAL ICONS */
.top-right {
  display: flex;
  gap: 10px;
}

.social {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.social:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

/* NAVBAR */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 15px 5%;
}

/* LOGO */
.logo img {
  height: 100px;
}

.logo img {
  transition: 0.3s;
}

.logo a:hover img {
  transform: scale(1.05);
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* UNDERLINE EFFECT */
.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #ff0000;
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #ff0000;
}

/* CTA BUTTON */
.cta-btn {
  background: #ff0000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #cc0000;
  box-shadow: 0 0 15px rgba(255,0,0,0.5);
}

/* MOBILE MENU ICON */
.menu-toggle {
  display: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .menu.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .cta-btn {
    display: none;
  }

  .nav-bar {
    position: relative;
  }

}/* End custom CSS */