    .floating-cta {
  position: fixed;
  bottom: 160px;
  right: 34px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

/* Buttons */
.floating-cta a {
  transition: all 0.3s ease;
  
}
.floating-cta img{
    object-fit: cover;
    width: 50px;
    height: auto;

}


/* Responsive layout for smaller screens */
@media (max-width: 600px) {
  .floating-cta {
    bottom: 160px;
    right: 20px;
    
    width: 30%;
    gap: 0px;
  }

  .floating-cta a {
    flex: 1;
    justify-content: center;
    font-size: 0.85rem;
    padding: 9px 12px;
  }
}
    .toggle-box {
      position: fixed;
      bottom: 100px;
      right: 30px;
      z-index: 999;
    }

    /* Toggle button (arrow) */
    .toggle-arrow {
      background-color: #007bff;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 10cqmax;
      cursor: pointer;
      font-size: 36px;
      transition: transform 0.3s ease;
    }

    /* Image links container */
    .image-group {
      display: none;
      flex-direction: column;
      align-items: flex-end;
      margin-top: 10px;
    }

    .image-group.show {
      display: flex;
    }

    .image-group a {
      margin: 5px 0;
      display: block;
    }

    .image-group img {
      width: 50px;
      height: 50px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
      transition: transform 0.2s ease;
    }

    .image-group img:hover {
      transform: scale(1.1);
      
    }

    /* Rotate arrow */
    .rotate {
      transform: rotate(180deg);
    }