body {
  font-family: 'Montserrat-Bold', 'Lato-Bold', sans-serif;
  margin: 0;
  padding: 0;
}

.fab-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.3s ease-in-out;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.fab-container:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 1);
  animation: none;
}

.fab {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  cursor: pointer;
}

.popup-text {
  position: absolute;
  top: 110%;
  left: 150%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 10px;
 opacity: 1;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.fab-container:hover .popup-text {
  opacity: 0;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}
.sticky-bar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
}

.sticky-bar-content {
  background-color: #4CAF50;
  padding: 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.sticky-bar-content:last-child {
  background-color: #2196F3;
}

.apply-btn {
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.apply-btn:hover {
  background-color: #3e8e41;
}

.open-brief-btn {
  background-color: transparent;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.open-brief-btn:hover {
  background-color: #1A76D2;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #4CAF50;
  color: #fff;
  padding: 1px 2px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn:hover {
  background-color: #3e8e41;
}

.image-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

.image-container img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.hero-image {
  height: 500px; /* adjust the height as needed */
  object-fit: cover;
}

.social-links {
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
}

.social-links a {
    margin-right: 10px;
    font-size: 24px;
    color: #333;
}

.social-links a:hover {
    color: #666;
}

.facebook {
    color: #4267B2;
}

.instagram {
    color: #E1306C;
}

.whatsapp {
    color: #25D366;