/* Quran Verse Section */
.quran-section {
    background: #f8fffe;
    padding: 50px 0;
}
.quran-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.quran-card {
    background: linear-gradient(135deg, #ffffff 0%, #fdfffe 100%);
    border: 1px solid #e0f2f1;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 150, 136, 0.08);
}

.quran-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00796b, #00acc1, #00796b);
    border-radius: 20px 20px 0 0;
}

.quran-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 121, 107, 0.3), 0 0 20px rgba(0, 172, 193, 0.2);
    border-color: #00796b;
    background: linear-gradient(135deg, #ffffff 0%, #f0fffe 100%);
}

.quran-verse-arabic {
    font-size: 1.5rem;
    line-height: 1.8;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: right;
    direction: rtl;
    font-family: 'Amiri', 'Traditional Arabic', serif;
}

.quran-verse-english {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 15px;
    font-style: italic;
}

.quran-reference {
    color: #00796b;
    font-size: 1rem;
    font-weight: 600;
    border-top: 1px solid #e0f2f1;
    padding-top: 15px;
    margin-top: 15px;
}

.quran-link {
    display: inline-block;
    color: #00796b;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #00796b;
    border-radius: 8px;
    margin-top: 15px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.quran-link:hover {
    background: #00796b;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.4), 0 0 15px rgba(0, 172, 193, 0.3);
}

/* Responsive Logic */
@media (max-width: 768px) {
    .quran-card { padding: 25px 20px; }
    .quran-verse-arabic { font-size: 1.3rem; }
    .quran-verse-english { font-size: 1rem; }
}

@media (max-width: 480px) {
    .quran-verse-arabic { font-size: 1.2rem; }
    .quran-verse-english { font-size: 0.95rem; }
}

/* Light Mode */
@media (prefers-color-scheme: light) {
    .quran-section { background: #f0f0f0; }
    .quran-card { border: 1px solid #ddd; }
    .quran-verse-english { color: #666; }
    .quran-reference, .quran-link { border-top-color: #ddd; }
}