/* --- General Body and Layout Styling --- */
/*body {
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    Optional: Example background to see the icons floating
}*/

/* --- Floating Icons Container --- */
.floating-icons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- Individual Icon Styling --- */
.floating-icons .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 12px; /* Changed from 50% to 12px for square with rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

/* --- Specific Color for each Icon --- */
.floating-icons .whatsapp {
    background-color: #25D366;
}

.floating-icons .instagram {
    background-color: #E1306C;
}

.floating-icons .facebook {
    background-color: #1877F2;
}

.floating-icons .phone {
    background-color: #FFA500;
}

/* --- Hover Effect --- */
.floating-icons .icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* --- Icon Sizing for Font Awesome --- */
.floating-icons .icon i {
    font-size: 25px;
    color: #fff;
}

/* -------------------------------------------------------------------------- */
/* MEDIA QUERY FOR MOBILE DEVICES                      */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    .floating-icons {
        bottom:0%;
        top:80%;
        /*right: 10px;*/
        gap: 10px;
    }

    .floating-icons .icon {
        width: 50px;
        height: 50px;
        border-radius: 10px; /* Adjusted for mobile */
    }

    .floating-icons .icon i {
        font-size: 20px;
    }

    .rs-contact-page__info-box .info-box-item .rs-info-contact .title,
    .rs-contact-page__info-box .info-box-item .rs-info-contact h5 a,
    .rs-contact-3__content .rs-contact-info h4 a {
        font-size: 18px !important;
    }
}
