
    .popular-searches-footer a {
        color: #fff;
    }
    .popular-searches-footer a:hover {
        color: #89e011;
    }
    
    .floating-buttons {
  
      position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999;
    /*width: 100%;*/
    right:  20px;
}

.floating-buttons .call-btn {
        position: absolute;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 24px;
    pointer-events: all;
    animation: pulse 2s infinite ease-in-out !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-buttons .whatsapp-btn {
position: absolute;
    width: 55px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 24px;
    pointer-events: all;
    animation: pulse 2s infinite ease-in-out !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}


@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.12);
    }
    100% {
        transform: scale(1);
    }
}
.call-btn {
   position: fixed;
  bottom: 5px;
  margin-left: 0px;
  left: 20px;
    /*background-color: #0d6efd;*/
    animation-delay: 0.3s;
}


.whatsapp-btn {
  position: fixed;
  bottom: 5px;
  right: 20px; 
  z-index: 999;
  background-color: #74d31d;
  margin-right: 35px;
  
}
.btn.btn-primary {
   background-color: #0000ff;
}


        .secure-split-card {
            display: flex;
            border-radius: 8px;
            overflow: hidden;
            background: #ffffff;
            margin-top: 0px;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
        .sf-icon-box {
            background: #74d31d; /* Your Green */
            width: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .sf-icon-box i {
            font-size: 32px;
            color: #000000;
        }
        .sf-content-box {
            padding: 15px 20px;
            flex-grow: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border: 1px solid #eee;
            border-left: none;
            border-top-right-radius: 8px;
            border-bottom-right-radius: 8px;
        }
        .sf-details h6 {
            margin: 0;
            color: #000000;
            font-weight: 700;
            font-size: 14px;
        }
        .sf-details small {
            color: #666;
            font-size: 11px;
        }
        @media (max-width: 500px) {
            .sf-content-box {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }

