/*==================================================
                    RESET
==================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#ffffff;

    color:#222;

    line-height:1.7;

    overflow-x:hidden;

}


/*==================================================
                    VARIABLES
==================================================*/

:root{

    --primary:#4B3FA3;

    --primary-dark:#352A80;

    --gold:#C8A44D;

    --white:#ffffff;

    --light:#F8F9FC;

    --text:#2E2E2E;

    --text-light:#666;

    --border:#ECECEC;

    --shadow-sm:0 8px 20px rgba(0,0,0,.06);

    --shadow-lg:0 25px 60px rgba(0,0,0,.12);

    --radius:18px;

    --transition:.35s ease;

}


/*==================================================
                    GLOBAL
==================================================*/

.container{

    width:min(1200px,92%);

    margin:auto;

}

section{

    padding:100px 0;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

}

button{

    font-family:inherit;

}


/*==================================================
                SECTION ELEMENTS
==================================================*/

.section-tag{

    display:inline-block;

    background:rgba(75,63,163,.08);

    color:var(--primary);

    padding:10px 18px;

    border-radius:50px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:20px;

}

.section-title{

    font-size:clamp(2rem,4vw,3.3rem);

    color:var(--primary);

    margin-bottom:20px;

    font-weight:800;

}

.section-description{

    max-width:700px;

    color:var(--text-light);

    font-size:1.1rem;

    text-align:left;

}


/*==================================================
                    BUTTONS
==================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    transition:var(--transition);

    font-weight:700;

}

.btn-primary{

    background:var(--primary);

    color:#fff;

}

.btn-primary:hover{

    transform:translateY(-3px);

    background:var(--primary-dark);

}

.btn-secondary{

    border:2px solid var(--primary);

    color:var(--primary);

}

.btn-secondary:hover{

    background:var(--primary);

    color:#fff;

}


/*==================================================
                        HERO
==================================================*/

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    overflow:hidden;

}

.hero-bg{

    position:absolute;

    inset:0;

    background:url("../images/hero/hero.webp")
        center center/cover no-repeat;

    animation:heroZoom 24s ease-in-out infinite alternate;

    transform:scale(1);

    will-change:transform;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

        linear-gradient(
            rgba(0,0,0,.65),
            rgba(0,0,0,.65)
        ),

        radial-gradient(
            circle at top right,
            rgba(75,63,163,.45),
            transparent 55%
        );

}

.hero-content{

    position:relative;

    z-index:2;

    width:min(1200px,92%);

    margin:0 auto;

    color:#fff;

    text-align:left;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(8px);

    margin-bottom:30px;

    font-weight:600;

}

.hero h1{

    font-size:clamp(3rem,7vw,5.5rem);

    line-height:1.1;

    margin-bottom:30px;

    font-weight:800;

}

.hero-description{

    font-size:1.25rem;

    color:rgba(255,255,255,.9);

    max-width:700px;

    margin:0 0 45px;

}

.hero-buttons{

    display:flex;

    justify-content:flex-start;

    gap:20px;

    flex-wrap:wrap;

}

.hero-buttons .btn-secondary{

    border-color:#fff;

    color:#fff;

}

.hero-buttons .btn-secondary:hover{

    background:#fff;

    color:var(--primary);

}

.hero-hadith{

    margin:60px 0 0;

    max-width:700px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:var(--radius);

    padding:28px;

}

.hero-hadith p{

    margin-bottom:12px;

}

.hero-hadith span{

    color:#ddd;

    font-size:.95rem;

}

.scroll-indicator{

    position:absolute;

    bottom:30px;

    left:50%;

    transform:translateX(-50%);

    color:#fff;

    font-size:2rem;

    animation:bounce 2s infinite;

}


/*==================================================
                    HERO ANIMATIONS
==================================================*/

@keyframes heroZoom{

    from{

        transform:scale(1);

    }

    to{

        transform:scale(1.08);

    }

}

@keyframes bounce{

    0%,
    20%,
    50%,
    80%,
    100%{

        transform:translateX(-50%) translateY(0);

    }

    40%{

        transform:translateX(-50%) translateY(-10px);

    }

    60%{

        transform:translateX(-50%) translateY(-5px);

    }

}


/*==================================================
                    PROGRESS STRIP
==================================================*/

.progress-strip{

    background:#fff;

    padding:70px 0;

}

.progress-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    margin-bottom:35px;

}

.progress-card{

    text-align:left;

}

.progress-card .label{

    color:#777;

    font-size:.9rem;

    text-transform:uppercase;

    letter-spacing:1px;

}

.progress-card h3{

    color:var(--primary);

    margin-top:10px;

    font-size:2rem;

}

.progress-bar{

    width:100%;

    height:14px;

    background:#ececec;

    border-radius:100px;

    overflow:hidden;

}

.progress-fill{

    width:0;

    height:100%;

    background:linear-gradient(

        90deg,

        var(--primary),

        #6d5ce7

    );

    border-radius:100px;

    transition:width .8s ease;

}

.progress-note{

    text-align:left;

    margin-top:18px;

    color:#666;

}


/*==================================================
                        STORY
==================================================*/

.story{

    background:#F8F9FC;

}

.story-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.story-content{

    text-align:left;

}

.story-content p{

    margin-bottom:22px;

    color:var(--text-light);

    font-size:1.05rem;

}

.story-content .btn{

    margin-top:20px;

}

.story-image{

    border-radius:22px;

    overflow:hidden;

    box-shadow:var(--shadow-lg);

}

.story-image img{

    width:100%;

    display:block;

}


/*==================================================
                        VISION
==================================================*/

.vision{

    background:#F8F9FC;

    padding:110px 0;

}

.vision .section-tag{

    margin-bottom:18px;

}

.vision .section-title{

    margin-bottom:25px;

}

.vision-description{

    max-width:760px;

    margin:0 0 60px;

    line-height:1.8;

    color:var(--text-light);

    font-size:1.1rem;

}

.vision-video{

    width:100%;

    border-radius:24px;

    overflow:hidden;

    box-shadow:0 30px 80px rgba(0,0,0,.15);

    background:#000;

}

.vision-video video{

    display:block;

    width:100%;

    height:auto;

}

.vision-label{

    display:inline-block;

    background:rgba(201,164,74,.12);

    color:var(--gold);

    font-weight:600;

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:24px;

}


/*==================================================
                FINAL DONATE CTA
==================================================*/

.donate-cta{

    background:#ffffff;

    padding:110px 0;

    text-align:left;

}

.donate-cta-content{

    max-width:750px;

    margin:0;

}

.donate-cta .section-tag{

    margin-bottom:20px;

}

.donate-cta .section-title{

    margin-bottom:20px;

}

.donate-cta p{

    max-width:650px;

    margin:0 0 35px;

    color:var(--text-light);

    font-size:1.1rem;

    line-height:1.8;

}

.donate-cta .btn{

    padding:18px 46px;

    font-size:1.1rem;

}


/*==================================================
                    RESPONSIVE
==================================================*/

@media(max-width:900px){

    .story-grid{

        grid-template-columns:1fr;

    }

}


@media(max-width:768px){

    section{

        padding:80px 0;

    }

    .hero{

        min-height:100svh;

    }

    .hero h1{

        font-size:clamp(
            2.7rem,
            11vw,
            4rem
        );

    }

    .hero-description{

        font-size:1.05rem;

    }

    .hero-hadith{

        margin-top:40px;

        padding:22px;

    }

    .progress-grid{

        grid-template-columns:1fr;

        gap:30px;

    }

    .progress-strip{

        padding:60px 0;

    }

    .vision{

        padding:80px 0;

    }

    .vision-description{

        margin-bottom:40px;

    }

    .vision-video{

        border-radius:18px;

    }

    .donate-cta{

        padding:80px 0;

    }

    .donate-cta p{

        font-size:1rem;

    }

}