﻿/* Preloader کے لیے یونک اسٹائلز */
.wfq-preloader {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease;
}

.wfq-preloader-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 90%;
}

/* بڑا اسپنر */
.wfq-spinner {
    width: 150px;
    height: 150px;
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wfq-spinner-inner {
    width: 100%;
    height: 100%;
    border: 5px solid #e6e6e6;
    border-top: 5px solid #4a77c4;
    border-radius: 50%;
    animation: wfq-spin 1.5s linear infinite;
    position: absolute;
}

/* بڑا لوگو مرکز میں */
.wfq-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    position: relative;
}

.wfq-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

/* صاف ستھری ہیڈنگ */
.wfq-heading-container {
    margin: 15px 0;
    padding: 10px 0;
}

.wfq-main-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    padding: 10px;
    text-align: center;
    /* Gradient effect */
    background: linear-gradient(90deg, #4a77c4, #2c3e50, #4a77c4);
    background-size: 200% auto;
    /* Clip background to text */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Animation */
    animation: wfq-gradient-shift 3s linear infinite, wfq-text-pulse 2s ease-in-out infinite alternate;
    /* Text shadow for better readability */
    text-shadow: 0 0 10px rgba(74, 119, 196, 0.3);
}



.wfq-loading-text {
    color: #4a77c4;
    font-size: 1.3rem;
    margin-top: 15px;
    font-weight: 600;
    direction: rtl;
}

.wfq-loading-dots {
    display: inline-block;
    margin-right: 5px;
    color: #2c3e50;
}

    .wfq-loading-dots::after {
        content: '';
        animation: wfq-dots 1.5s infinite;
    }

/* Gradient shifting animation */
@keyframes wfq-gradient-shift {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Text pulsing animation */
@keyframes wfq-text-pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Spinner animation */
@keyframes wfq-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes wfq-dots {
    0%, 20% {
        content: '.';
    }

    40% {
        content: '..';
    }

    60% {
        content: '...';
    }

    80%, 100% {
        content: '....';
    }
}

/* رےسپانسیو ڈیزائن */
@media (max-width: 768px) {
    .wfq-spinner {
        width: 130px;
        height: 130px;
    }

    .wfq-logo-img {
        width: 70px;
        height: 70px;
    }

    .wfq-main-heading {
        font-size: 2rem;
    }

    .wfq-loading-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .wfq-spinner {
        width: 110px;
        height: 110px;
    }

    .wfq-logo-img {
        width: 60px;
        height: 60px;
    }

    .wfq-main-heading {
        font-size: 1.6rem;
    }

    .wfq-loading-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 360px) {
    .wfq-spinner {
        width: 100px;
        height: 100px;
    }

    .wfq-logo-img {
        width: 50px;
        height: 50px;
    }

    .wfq-main-heading {
        font-size: 1.4rem;
    }

    .wfq-loading-text {
        font-size: 1rem;
    }
}
