.nav-pills{
    gap: 10px;
}
.circle-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.green-circle {
    position: absolute;
    width: 65px;
    height: 65px;
    background-color: rgb(68 140 116);
    border-radius: 50%;
    top: -12.5px;
    left: -12.5px;
}

.yellow-circle {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: rgb(237 203 80 / 97%); /* Yellow */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}
.custom_icon{
    display: flex;
    justify-content: center;
}
.yellow-star {
  color: gold;
  font-size: 24px;
}
.yellow-star {
  color: #FFD700; /* gold */
}

.custom_bg{
    border: 1px solid;
    border-radius: 20px;
    /* background: #f5f5f5; */
}
.bg-hard-color{
  background-color: #ceebe1!important;
}
/* WhatsApp Floating Button Style */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 10px;
    width: 55px;
    height: 55px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s ease;
}

.whatsapp-float img {
    width: 32px;
    height: 32px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        right: 15px;
    }

    .whatsapp-float img {
        width: 28px;
        height: 28px;
    }
}
