<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Font Import and Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&amp;display=swap');

:root {
    --caption-spacing: 1.5rem;
    --mobile-caption-spacing: 1rem;
}

.vazir {
    font-family: "Vazirmatn", sans-serif !important;
}

/* Utility Classes */
.translate-y-2 {
    transform: translateY(2px) !important;
}

.flex {
    display: flex !important;
}

.justify-end {
    justify-content: flex-end !important;
}

.rtl {
    direction: rtl !important;
}

.ltr {
    direction: ltr !important;
}

.rotate-180 {
    transform: rotate(-180deg) !important;
}

/* Carousel Caption Container */
.carousel-caption-custom {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    padding: var(--caption-spacing);
    direction: rtl;
}

/* Text Styles */
.carousel-caption-custom h1,
.carousel-caption-custom h2,
.carousel-caption-custom h3,
.carousel-caption-custom h4,
.carousel-caption-custom h5,
.carousel-caption-custom h6,
.carousel-caption-custom p {
    color: #ffffff !important;
    margin-bottom: 0.75rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    line-height: 1.4;
}

/* Caption Position Classes */
.caption-top-right,
.caption-top-left,
.caption-center,
.caption-bottom-right,
.caption-bottom-left,
.caption-anywhere {
    position: absolute;
    opacity: 0;
    transition: opacity 0.3s ease;
    max-width: 90%;
}

.caption-top-right {
    top: var(--caption-spacing);
    right: var(--caption-spacing);
    text-align: right;
}

.caption-top-left {
    top: var(--caption-spacing);
    left: var(--caption-spacing);
    text-align: left;
}

.caption-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 80%;
    max-width: 600px;
}

.caption-bottom-right {
    bottom: var(--caption-spacing);
    right: var(--caption-spacing);
    text-align: right;
}

.caption-bottom-left {
    bottom: var(--caption-spacing);
    left: var(--caption-spacing);
    text-align: left;
}

/* Animation Styles */
.animate__delay-1s {
    animation-delay: 1s !important;
}

.animate__delay-2s {
    animation-delay: 2s !important;
}

.animate__delay-3s {
    animation-delay: 3s !important;
}

.pulse-animate {
    animation: pulse 2s infinite;
    display: inline-block;
    width: 100% !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-caption-custom {
        padding: var(--mobile-caption-spacing);
    }

    .caption-center {
        width: 90%;
    }
}

@media (max-width: 768px) {

    .caption-top-right,
    .caption-top-left,
    .caption-bottom-right,
    .caption-bottom-left {
        position: static;
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
        transform: none !important;
    }

    .caption-top-right,
    .caption-top-left {
        top: var(--mobile-caption-spacing);
        margin-bottom: 1rem;
    }

    .caption-bottom-right,
    .caption-bottom-left {
        bottom: var(--mobile-caption-spacing);
        margin-top: 1rem;
    }

    .carousel-caption-custom h1 {
        font-size: 1.75rem;
    }

    .carousel-caption-custom h5 {
        font-size: 1.25rem;
    }

    .pulse-animate {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .carousel-caption-custom h1 {
        font-size: 1.5rem;
    }

    .carousel-caption-custom h5,
    .carousel-caption-custom h6 {
        font-size: 1.1rem;
    }

    .carousel-caption-custom p {
        font-size: 0.9rem;
    }

    .caption-top-left,
    .caption-top-right {
        display: none;
        /* Hide secondary top captions on smallest screens */
    }

    /* Persian Stats Section */
    .vazir {
        font-family: "Vazirmatn", sans-serif;
    }

    .container-xxl.py-5 {
        background: #f8f9fa;
    }

    .btn-lg-square {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .btn-lg-square {
            width: 50px;
            height: 50px;
        }

        h1 {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
        .container-xxl.py-5 {
            padding-top: 3rem !important;
            padding-bottom: 3rem !important;
        }

        .btn-lg-square {
            width: 40px;
            height: 40px;
            font-size: 0.9rem;
        }

        h1 {
            font-size: 1.75rem;
        }

        h5 {
            font-size: 1.1rem;
        }
    }

    @media (max-width: 576px) {
        .col-6 {
            padding: 0.5rem;
        }

        h1 {
            font-size: 1.5rem;
        }

        h5 {
            font-size: 1rem;
        }

        p.small {
            font-size: 0.8rem;
        }
    }

    /* RTL Adjustments */
    [dir="rtl"] .ms-3 {
        margin-right: 1rem !important;
        margin-left: 0 !important;
    }

    [dir="rtl"] .row {
        direction: rtl;
    }
}</pre></body></html>