.fixed-layout {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
        justify-content: space-between;
    }
    
    .service-box-item {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        width: calc(33.333% - 30px); /* Three items per row with spacing */
        box-sizing: border-box;
        text-align: center;
    }
    
    .service-box-item .icon img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .service-box-item .content h4 a {
        color: #333;
        text-decoration: none;
    }
    
    .service-box-item .content p {
        color: #666;
        margin: 15px 0;
    }
    
    .service-box-item .theme-btn-2 {
        display: inline-block;
        padding: 10px 20px;
        background: #ff6600;
        color: #fff;
        border-radius: 5px;
        text-decoration: none;
    }
    
    .service-box-item .theme-btn-2 i {
        margin-left: 5px;
    }

    .row-separation {
        margin-top: 20px; /* Adjust the value as needed */
        /* Alternatively, you can use padding-top if you want internal spacing */
        /* padding-top: 20px; */
    }

    .whatsapp-button-container{
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
        display:flex;
        align-items:center;
        transition: transform 0.3s ease-in-out;
    }
    .whatsapp-button-container:hover {
        transform: scale(1.1);
    }

    /* button component style */
    .whatsapp-icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 65px;
        height: 65px;
        background-color: #25D366;
        color: #ffffff;
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        text-decoration: none;
    }
    .whatsapp-icon svg {
        width: 40px;
        height: 40px;
    }
    .whatsapp-icon svg * {
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }

    /* tooltip style */
    .whatsapp-tooltip {
        display: flex;
        position: absolute;
        background-color: #bbf3d0;
        color:#000;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 16px;
        font-family: Arial, Helvetica, sans-serif;
        white-space: nowrap;
        left: -160px;
        font-weight: bold;
        padding: 10px 8px;
    }
    .uk-link, .a1 {
        color: #ffffff;
     }