/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid #ccc;
}
.container.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Logo */
.logo-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  height: 40px;
  border-radius: 50%;
}
.brand-name {
  margin-left: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.call-btn-mobile {
  display: inline-flex;
  align-items: center;
  background: green;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  text-decoration: none;
}


/* Navigation */
.nav-links {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .brand-name {
    display: none;
  }
 {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background: white;
    width: 100%;
    padding: 20px;
    border-top: 1px solid #ccc;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}

