﻿@font-face {
    font-family: 'JameelNooriNastaleeq';
    src: url('/fonts/JameelNooriNastaleeq.ttf') format('truetype');
}

/* Urdu font & RTL */
.urdu-page {
    font-family: 'JameelNooriNastaleeq', serif;
    direction: rtl;
    text-align: right;
    font-size: 20px;
    line-height: 2;
    color: #333;
}

/* Heading */
.urdu-heading {
    font-size: 30px;
    font-weight: bold;
    color: #2c3e50;
}

/* Daily Message Banner - Soft Yellow with Marquee */
.daily-msg {
    background: #fff3cd; /* soft yellow */
    color: #856404;
    font-weight: bold;
    font-size: 18px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.daily-icon {
    margin-right: 10px;
    font-size: 22px;
}

.daily-text {
    white-space: nowrap;
    font-size: 17px;
}

/* Custom Bullets */
.custom-bullets {
    list-style: none;
    padding-left: 0;
}

    .custom-bullets li {
        background: #f9f9f9;
        border-radius: 10px;
        padding: 12px 15px 12px 15px;
        margin-bottom: 10px;
        font-size: 18px;
        color: #2c3e50;
        display: flex;
        align-items: center;
        box-shadow: 0 2px 6px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

        .custom-bullets li:hover {
            background-color: #e0f7fa;
            color: #00796b;
        }

.bullet-icon {
    font-size: 22px;
    margin-left: 10px; /* RTL spacing */
}

/* Instruction Note */
.instruction-note {
    font-size: 18px;
    color: #2c3e50;
    font-weight: bold;
    margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-bullets li {
        font-size: 16px;
    }

    .bullet-icon {
        font-size: 18px;
    }
}


.instruction-item {
    font-size: 18px;
    line-height: 1.8;
    color: #2c3e50;
    transition: all 0.3s ease;
}

    .instruction-item:hover {
        background-color: #e0f7fa; /* soft hover */
    }

