﻿.textjustify{
    text-align:justify !important;
}
#typewriter-text {
    border-right: 2px solid #f1c40f;
    padding-right: 5px;
    white-space: nowrap;
    overflow: hidden;
    animation: blinkCursor 0.7s infinite;
}

@keyframes blinkCursor {
    0% {
        border-color: transparent;
    }

    50% {
        border-color: #f1c40f;
    }

    100% {
        border-color: transparent;
    }
}
.bg-orange {
    background: #EA5501 !important;
    color:#fff !important;
}
.rs-services-details-wrapper p {
    text-align:justify;
    margin-bottom:10px !important;
}
.rs-services-details-wrapper ul {
    margin-left: 20px;
    margin-bottom: 20px;
}
.rs-services-details-wrapper ul li{
    font-size:16px;
}
.product-checkbox-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #000;
    font-size: 14px;
}

    /* Force native checkbox visibility */
    .checkbox-item input[type="checkbox"] {
        appearance: auto !important;
        -webkit-appearance: checkbox !important;
        -moz-appearance: checkbox !important;
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 16px;
        height: 16px;
        margin: 0;
        cursor: pointer;
    }
.rs-contact-input {
    text-align: left;
}

    .rs-contact-input .form-label {
        align-self: flex-start;
    }

.whatsappfloat {
    position: fixed;
    bottom: 90px;
    right: 0px;
    width: 48px;
    height: 48px;
    background: #25D366;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    z-index: 2147483647;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    .whatsappfloat a {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .whatsappfloat i {
        color: #fff;
        font-size: 25px;
    }
.scroll-wrapper {
    overflow: hidden;
    width: 100%;
}

.scroll-row {
    overflow: hidden;
    white-space: nowrap;
}

.scroll-track {
    display: inline-flex;
    width: max-content;
    gap: 10px;
    animation: ticker linear infinite;
}

/* pause on hover */
.scroll-row:hover .scroll-track {
    animation-play-state: paused;   
}

.scroll-track span {
    background: #ececec;
    padding: 6px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.3rem;
    text-transform:uppercase;    
}

/* KEY FIX */
@keyframes ticker {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Slower, realistic speeds */
.speed-40 .scroll-track {
    animation-duration: 40s;
}

.speed-60 .scroll-track {
    animation-duration: 60s;
}
.speed-70 .scroll-track {
    animation-duration: 70s;
}

.speed-80 .scroll-track {
    animation-duration: 80s;
}

.speed-90 .scroll-track {
    animation-duration: 90s;
}
@media (max-width: 768px) {
    .scroll-track span {
        font-size: 0.9rem;
    }
}

.products-list .form-check {
    text-align: left;
}

.products-list .form-check-input {
    cursor: pointer;
}

.products-list .form-check-label {
    cursor: pointer;
}

.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.loading-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}
