/* Bangla Font Import */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
    /* ২. সাদা ফ্ল্যাশ বন্ধ করতে ব্যাকগ্রাউন্ড কালার আগে থেকে দিয়ে রাখুন */
    background-color: #f8fafc; 
}

body {
    font-family: 'Hind Siliguri', 'Noto Sans Bengali', sans-serif;
    line-height: 1.6; 
    -webkit-font-smoothing: antialiased;
    /* ৩. অ্যানিমেশনটি একটু দ্রুত (0.3s) করলে বেশি ন্যাচারাল লাগে */
    animation: pageLoad 0.3s ease-in-out;
    opacity: 1;
}

@keyframes pageLoad {
    0% { opacity: 0; transform: translateY(5px); } /* হালকা নিচ থেকে ওপরে আসবে */
    100% { opacity: 1; transform: translateY(0); }
}

/* ৪. ব্রাউজার যেন ফন্ট লোড হওয়ার সময় টেক্সট লুকিয়ে না ফেলে */
@font-face {
    font-family: 'Hind Siliguri';
    font-display: swap;
}

/* হেডলাইনের জন্য বোল্ড ওয়েট */
h1, h2, h3, .hero-title {
    font-weight: 800;
    letter-spacing: -0.01em;
    /* ৫. হেডলাইন লোড হওয়ার সময় যেন লাইন হাইট না লাফায় */
    line-height: 1.2;
}

/* Category Cards */
.category-card {
    background: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: #0d9488;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 20px 35px -10px rgba(13, 148, 136, 0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 15px;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    margin-top: 8px;
    font-size: 0.95rem;
}

/* Tags */
.tag-emergency { background: #fef2f2; color: #ef4444; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.tag-education { background: #eff6ff; color: #3b82f6; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }
.tag-business { background: #f0fdf4; color: #22c55e; padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: bold; }

.card-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.card-footer a {
    color: #0d9488;
    font-weight: 600;
    text-decoration: none;
}

/* Button */
.btn-more {
    border: 2px solid #0d9488;
    color: #0d9488;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-more:hover {
    background: #0d9488;
    color: white;
}

/* Responsive Font for Mobile */
@media (max-width: 640px) {
    h1 { font-size: 2rem !important; }
    .info-card { padding: 20px; }
}

.prayer-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 5px;
    border-radius: 20px;
    transition: 0.3s;
}
.prayer-box p {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 5px;
    letter-spacing: 1px;
}
.prayer-box b {
    font-size: 16px;
    display: block;
}
@media (max-width: 640px) {
    .prayer-box b { font-size: 14px; }
}

   

.beely-bg {
    background: linear-gradient(rgba(19, 78, 74, 0.85), rgba(13, 148, 136, 0.9)), 
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1000&q=80');
    background-size: cover; background-position: center;
}
.login-card { min-height: 600px; animation: pageLoad 0.4s ease-out; }
@keyframes pageLoad { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
    .prayer-box b {
        font-size: 0.85rem;
    }
}