:root {
    --off-white: #F8F9FA;
    --charcoal: #1a472a;
    --islamic-green: #0a5c36;
    --emerald: #10b981;
    --gold: #d4af37;
    --sapphire: #2563eb;
    --amethyst: #7c3aed;
    --amber: #f59e0b;
    --crimson: #dc2626;
    --light-gray: #E8E8E8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--charcoal);
    background: linear-gradient(135deg, #f0f9f0 0%, #e6f3e6 100%);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 92, 54, 0.9), rgba(26, 71, 42, 0.95)), 
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="%230a5c36"/><path d="M30,30 L70,30 L70,70 L30,70 Z" fill="none" stroke="%23d4af37" stroke-width="2"/><circle cx="50" cy="50" r="20" fill="none" stroke="%23d4af37" stroke-width="1.5"/><path d="M40,40 L60,60 M60,40 L40,60" fill="none" stroke="%23d4af37" stroke-width="1"/></svg>');
    background-size: cover;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 10px 30px rgba(10, 92, 54, 0.2);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    color: #e8f5e8;
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Main Content */
main {
    padding: 2rem 0 4rem;
}

.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(10, 92, 54, 0.1);
    border: 1px solid #e0f0e0;
}

.intro-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.intro-section li {
    margin: 0;
}

.intro-section a {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    background-color: #e6fff0;
    color: #0a5c36;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.intro-section a:hover {
    background-color: #0a5c36;
    color: #fff;
    transform: translateY(-2px);
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}
.concept-section {
    margin-bottom: 5rem;
    padding: 3rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(10, 92, 54, 0.1);
    transition: transform 0.4s, box-shadow 0.4s;
    background: linear-gradient(135deg, #ffffff 0%, #fafffa 100%);
    border: 1px solid #f0f8f0;
    opacity: 0;
    transform: translateY(30px);
}

.concept-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.concept-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 92, 54, 0.15);
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.concept-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-right: 2rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 3px solid white;
}

.concept-section:hover .concept-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.concept-content h3 {
    color: #497D15;
    margin-top: 1.5rem;
    font-size: 1.5rem;
    border-bottom: 3px solid;
    padding-bottom: 0.5rem;
    display: inline-block;
    background: linear-gradient(135deg, currentColor 90%, transparent 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.concept-content ul {
    margin: 1.5rem 0 2rem 1.5rem;
}

.concept-content li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
    font-size: 1.05rem;
}

.concept-content li:before {
    content: "•";
    color: inherit;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
}

blockquote {
    font-style: italic;
    padding: 2.5rem;
    border-left: 6px solid;
    margin: 3rem 0;
    background: linear-gradient(135deg, #f8fff8 0%, #f0f9f0 100%);
    border-radius: 0 15px 15px 0;
    font-size: 1.25rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(10, 92, 54, 0.08);
    border: 1px solid #e8f5e8;
}

blockquote:before {
    content: """;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    position: absolute;
    top: -15px;
    left: 20px;
    opacity: 0.15;
    line-height: 1;
    color: currentColor;
}

/* Individual Concept Styles */
#barakah {
    border-top: 8px solid var(--islamic-green);
}

#barakah .concept-icon {
    background: linear-gradient(135deg, var(--islamic-green) 0%, #0c7745 100%);
}

#barakah blockquote {
    border-color: var(--islamic-green);
    color: #0a5c36;
}

#barakah .concept-content h3 {
    border-color: var(--islamic-green);
}

#barakah .concept-content li:before {
    color: var(--islamic-green);
}

#qadr {
    border-top: 8px solid var(--sapphire);
}

#qadr .concept-icon {
    background: linear-gradient(135deg, var(--sapphire) 0%, #1d4ed8 100%);
}

#qadr blockquote {
    border-color: var(--sapphire);
    color: #1e40af;
}

#qadr .concept-content h3 {
    border-color: var(--sapphire);
}

#qadr .concept-content li:before {
    color: var(--sapphire);
}

#rahman {
    border-top: 8px solid var(--emerald);
}

#rahman .concept-icon {
    background: linear-gradient(135deg, var(--emerald) 0%, #059669 100%);
}

#rahman blockquote {
    border-color: var(--emerald);
    color: #047857;
}

#rahman .concept-content h3 {
    border-color: var(--emerald);
}

#rahman .concept-content li:before {
    color: var(--emerald);
}

#jannah {
    border-top: 8px solid var(--gold);
}

#jannah .concept-icon {
    background: linear-gradient(135deg, var(--gold) 0%, #b8860b 100%);
}

#jannah blockquote {
    border-color: var(--gold);
    color: #b8860b;
}

#jannah .concept-content h3 {
    border-color: var(--gold);
}

#jannah .concept-content li:before {
    color: var(--gold);
}

#jahannam {
    border-top: 8px solid var(--crimson);
}

#jahannam .concept-icon {
    background: linear-gradient(135deg, var(--crimson) 0%, #b91c1c 100%);
}

#jahannam blockquote {
    border-color: var(--crimson);
    color: #b91c1c;
}

#jahannam .concept-content h3 {
    border-color: var(--crimson);
}

#jahannam .concept-content li:before {
    color: var(--crimson);
}

/* Conclusion Section */
.conclusion {
    text-align: center;
    max-width: 900px;
    margin: 5rem auto;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--islamic-green) 0%, var(--charcoal) 100%);
    color: white;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(10, 92, 54, 0.25);
    position: relative;
    overflow: hidden;
}

.conclusion:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--islamic-green), var(--sapphire), var(--emerald), var(--gold), var(--crimson));
}

.conclusion h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.conclusion p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: #e8f5e8;
}

.conclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.conclusion-item {
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: transform 0.3s, background 0.3s;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.conclusion-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.conclusion-item i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, #fbbf24 100%);
    color: var(--charcoal);
    padding: 16px 40px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 2rem;
    transition: all 0.3s;
    border: 2px solid var(--gold);
    font-size: 1.15rem;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(212, 175, 55, 0.5);
}

/* Floating Navigation */
.floating-nav {
    position: fixed;
    top: 50%;
    right: 25px;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(10, 92, 54, 0.4);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.nav-dot.active {
    background-color: var(--islamic-green);
    transform: scale(1.4);
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(10, 92, 54, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .concept-section {
        padding: 2.5rem;
    }
    
    .conclusion-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .concept-section {
        padding: 2rem;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .concept-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    
    .conclusion {
        padding: 3rem 2rem;
    }
    
    .conclusion-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .concept-section {
        padding: 1.5rem;
    }
    
    .conclusion {
        padding: 2.5rem 1.5rem;
    }
    
    blockquote {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .concept-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}