body {
  margin: 0;
  font-family: Arial, sans-serif;
}
.header {

  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2C2C2C; /* from black to dark gray */
  padding: 10px 20px;
  color: white;
}


.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}

/* Desktop menu styles */
.desktop-menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.desktop-menu ul li a {
  color: rgb(247, 250, 249);
  text-decoration: none;
  font-weight: bold;
}

/* Right side styles */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

/* Square white background, colored icon */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  background-color: white;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
}

/* Icon colors per brand */
.social-icon.instagram i { color: #E4405F; }
.social-icon.facebook i { color: #1877F2; }
.social-icon.whatsapp i { color: #25D366; }
.social-icon.linkedin i { color: #0A66C2; }
.social-icon.youtube i { color: #FF0000; }

/* Hover effect */
.social-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.social-icon i {
  font-size: 18px;
}

/* Phone number link */
.phone-number a {
  color: rgb(247, 250, 249);
  text-decoration: none;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Hamburger menu */
.hamburger {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: none; /* Hidden on desktop */
}

/* Mobile Menu */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: #0b1639;
  transition: max-height 0.3s ease;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu ul li a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
}

/* Social icons row in mobile menu */
.mobile-menu .mobile-social {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  gap: 10px;
}

/* Phone number below social icons in mobile menu */
.mobile-menu .mobile-phone {
  display: flex;
  justify-content: center;
  padding: 10px 0;
}

.mobile-menu .mobile-phone a {
  color: white;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 767px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .header-right {
    gap: 10px;
  }

  .phone-number {
    display: none;
  }
}
.mobile-menu ul {
  text-align: center;
}

.mobile-menu ul li {
  width: 100%;
}

.mobile-menu ul li a {
  display: block;
  text-align: center;
}
