

#site-header {padding: 20px;}
/* === Custom Floating Logo Badge === */
.custom-logo-badge {
	position: absolute;
	top: -41px;
	left: 20px;
	width: 160px;
	height: 160px;
	z-index: 9999;
  }
  
  
  .logo-shape {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 120px;
	z-index: 1;
  }
  
  .bg-rectangle {
	width: 120px;
	height: 80px;
	background-color: #000;
  }
  
  .bg-half-circle {
	width: 120px;
	height: 60px;
	background-color: #000;
	border-bottom-left-radius: 60px;
	border-bottom-right-radius: 60px;
	margin-top: -1px;
  }
  
  .logo-img {
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 100px;
	z-index: 2;
	object-fit: contain;
  }
  
  @media (max-width: 768px) {
	.custom-logo-badge {
	  position: fixed; /* keep it on screen */
	  top: -22px;
	  left: 10px;
	  width: 140px;
	  height: 160px; /* enough to hold rectangle + half-circle */
	  z-index: 9999;
	  margin: 0;
	}
  
	.logo-shape {
	  position: absolute;
	  bottom: 0;
	  left: 50%;
	  transform: translateX(-50%);
	  width: 120px;
	  z-index: 1;
	}
  
	.bg-rectangle {
	  width: 120px;
	  height: 80px;
	  background-color: #000;
	}
  
	.bg-half-circle {
	  width: 120px;
	  height: 60px;
	  background-color: #000;
	  border-bottom-left-radius: 60px;
	  border-bottom-right-radius: 60px;
	  margin-top: -1px;
	}
  
	.logo-img {
	  position: absolute;
	  top: 43px;
	  left: 50%;
	  transform: translateX(-50%);
	  width: 100px;
	  height: 100px;
	  object-fit: contain;
	  z-index: 2;
	}
  }
  