

.ethos-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
}

.circle-wrapper {
  position: relative;
  width: 60vmin;
  height: 60vmin;
}

.circle-image {
  position: absolute;
  width: 90% !important;
  height: 90% !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  clip-path: circle(45%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
}

.center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 65%;
  z-index: 2;
}

.center-text h1 {
  font-family: "Averia Serif Libre", serif;
  font-size: 6vmin;
  margin-bottom: 1vmin;
  line-height: 1.2;
  color:#f7f3e7 !important;
}

.center-text p {
  font-size: 2vmin;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Overpass Mono';
   color:#f7f3e7 !important;
	width:93%;
    margin:0 auto;
	
}

.circle-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

svg {
  width: 100%;
  height: 100%;
}

.dot {
  fill: #2C251D;
  r: 2.5;
  cursor: pointer;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.dot:hover {
  fill: #635A33;
}

/* Label Base Styling */
.label {
  position: absolute;
  font-size: 2.2vmin;
  font-weight: 600;
  color: #2C251D;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.3s ease;
  font-family: "Averia Serif Libre", serif;
  z-index:3;
  
}

.label:hover {
  color: #635A33;
}

/* Tooltip Styling */
.label::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #635A33;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 1.7vmin;
  white-space: normal;
  max-width: 360px;
  width: 100% !important;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  z-index: 999;
font-family: 'Overpass Mono';
}

/* Tooltip Arrow */
.label::before {
  content: "";
  position: absolute;
  bottom: 110%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

/* Show Tooltip on Hover */
.label:hover::after,
.label:hover::before,
.label.visible-tooltip::after,
.label.visible-tooltip::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Label Positions */
.label-1 { top: -2%; left: 50%; transform: translateX(-50%); }
.label-2 { top: 24%; left: 97%; transform: translateX(-10%); }
.label-3 { top: 74%; left: 97%; transform: translateX(-10%); }
.label-4 { top: 100%; left: 50%; transform: translateX(-50%); }
.label-5 { top: 74%; left: 5%; transform: translateX(-90%); }
.label-6 { top: 24%; left: 5%; transform: translateX(-90%); }

/* Responsive Design */
@media only screen and (max-width: 880px) {
  .ethos-circle {
    height: auto;
  }
}

@media (max-width: 600px) {
  .center-text h1 { font-size: 4.5vmin; }
  .center-text p { font-size: 2vmin; }
  .label { font-size: 1.8vmin; }
}