/* Start custom CSS for html, class: .elementor-element-48a6d4e */* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.main-header {
  background: #0f172a;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #38bdf8;
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav-menu a {
    margin-left: 15px;
  }
}/* End custom CSS */