:root {
    --islamic-primary: #00695c; /* Deep Teal */
    --islamic-secondary: #f39c12; /* Golden Accent */
    --islamic-light-bg: #fdfdfd;
    --islamic-dark-text: #333333;
    --islamic-light-text: #555555;
    --islamic-card-bg: #ffffff;
    --islamic-border-color: #eeeeee;
}

.islamic-page-header {
    background: linear-gradient(rgba(0, 105, 92, 0.8), rgba(0, 105, 92, 0.8)), url('https://images.unsplash.com/photo-1585232236819-42b47281dda7?q=80&w=1932') center center/cover no-repeat;
    padding: 5rem 0;
    text-align: center;
    color: white;
    border-bottom-left-radius: 50% 20%;
    border-bottom-right-radius: 50% 20%;
    margin-bottom: 3rem;
}

.islamic-page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white; /* Ensure heading color is white */
}

.islamic-page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.content-section {
    padding: 1rem 0 3rem 0;
}

.content-card {
    background-color: var(--islamic-card-bg);
    border: 1px solid var(--islamic-border-color);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.content-card h2 {
    font-family: 'Playfair Display', serif;
    color: var(--islamic-primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.content-card h2 i {
    margin-right: 15px;
    font-size: 1.2em;
}

.content-card blockquote {
    border-right: 4px solid var(--islamic-secondary);
    padding-right: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: var(--islamic-dark-text);
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    position: relative;
    padding-right: 35px;
    margin-bottom: 1rem;
}

.feature-list li::before {
    content: '\f00c'; /* Checkmark icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 4px;
    color: var(--islamic-secondary);
    background-color: rgba(243, 156, 18, 0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.dua-box {
    background-color: #f3f9f8;
    border: 1px solid #d1e7e4;
    border-right: 5px solid var(--islamic-primary);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}
.dua-box h4 {
    font-weight: 600;
    color: var(--islamic-dark-text);
}
.arabic-dua {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.5rem;
    direction: rtl;
    text-align: right;
    line-height: 2.5;
    color: var(--islamic-dark-text);
}

.final-words-card {
    text-align: center;
    background: linear-gradient(45deg, var(--islamic-primary), #00796b);
    color: white;
}
.final-words-card h2, .final-words-card p {
    color: white;
}
.final-words-card a.btn {
    color: var(--islamic-primary);
    background-color: white;
    font-weight: 600;
}

/* 3D Button Styles */
.btn-3d {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--islamic-primary);
    background-color: white;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 1;
}
.btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    background-color: #f0f0f0; /* Light gray hover effect */
}
.btn-3d:active {
    transform: translateY(1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}