/* Add custom CSS styles below */ 
.angel-features .container .grid-cols-3{
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
}
/* CSS Styling for Floating Icons */
#wa-icon, #tel-icon {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
     /* WhatsApp green color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index:8;

}

#wa-icon {
background-color: #25D366;
}
#tel-icon{
  background:black;
  margin-bottom: 60px;

}

#wa-icon:hover, #tel-icon:hover {
    transform: scale(1.1);
}

#wa-icon img{
    width: 25px;
    height: 25px;
}
#tel-icon img {
    width: 20px;
    height: 20px;
}

#wa-icon a, #tel-icon a {
    text-decoration: none;
}