.modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-content {
  background: #f9fff9;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  max-width: 400px;
  width: 90%;
  font-family: sans-serif;
  text-align: center;
  border: 1px solid #cce5cc;
}
.modal-content h3 {
  color: #2e7d32;
  margin-bottom: 10px;
}
.modal-close {
  margin-top: 15px;
  padding: 6px 14px;
  border: none;
  background: #2e7d32;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}
.social-bar {
    position: fixed;
    bottom: 20px;
    left: 10rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    direction: ltr;
}

.social-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    overflow: hidden;
}

.social-bar a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.social-bar svg {
    width: 60%;
    height: 60%;
    fill: #000000;
}

.social-bar .call-button svg {
    fill: #33a867;
}

.social-bar img {
    width: 55%;
    height: 55%;
    object-fit: contain;
    border-radius: 50%;
}

@media (max-width: 768px) {
    .social-bar {
        float: left;!important;
        bottom: 6rem;
        left: 10px;
        gap: 8px;
        flex-direction: row;
        background: rgba(255,255,255,0.9);
        padding: 5px;
        border-radius: 30px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        width: max-content;
    }

    .social-bar a {
        width: 35px;
        height: 35px;
    }

    .social-bar svg {
        width: 90%;
        height: 90%;
    }
    .social-bar img {
        width: 70%;
        height: 70%;
    }
}

@media (min-width: 1250px) {
    .custom-wrap {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
.social-icon.social-bale img {
    width: 2rem;
    height: 2rem;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0.25rem;
    border-radius: 50%;
}
