/* ==================================================
   GO FOR AL-QUR'AN PREMIUM V5.0
   Grow With Qur'an
================================================== */


/* ==================================================
   ROOT VARIABLES
================================================== */

:root{

    --primary:#0F4C5C;
    --secondary:#D4A55A;

    --dark:#1E293B;
    --gray:#64748B;

    --light:#F8FAFC;
    --white:#FFFFFF;

}


/* ==================================================
   RESET
================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}


html{
    scroll-behavior:smooth;
}


body{

    font-family:'Inter',sans-serif;

    color:var(--dark);

    background:var(--white);

    line-height:1.8;
}


/* ==================================================
   GLOBAL
================================================== */

.container{

    width:90%;
    max-width:1200px;

    margin:auto;

}


img{

    max-width:100%;

    display:block;
}


a{
    text-decoration:none;
}


ul{
    list-style:none;
}


/* ==================================================
   NAVBAR
================================================== */

.navbar{

    position:sticky;

    top:0;

    background:white;

    z-index:999;

    border-bottom:1px solid rgba(0,0,0,.06);

    backdrop-filter:blur(15px);

}


.navbar .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;
}


/* Logo */

.logo img{

    height:85px;

    width:auto;
}


/* Menu */

nav{

    display:flex;

    gap:35px;
}


nav a{

    color:var(--dark);

    font-weight:500;

    transition:.3s;
}


nav a:hover{

    color:var(--primary);
}


/* ==================================================
   BUTTONS
================================================== */

.btn-primary{

    display:inline-block;

    background:var(--primary);

    color:white;

    padding:16px 28px;

    border-radius:16px;

    font-weight:600;

    transition:.3s;
}


.btn-primary:hover{

    transform:translateY(-3px);

    box-shadow:

    0 15px 35px rgba(15,76,92,.25);
}



.btn-secondary{

    display:inline-block;

    background:white;

    color:var(--dark);

    border:1px solid rgba(0,0,0,.08);

    padding:16px 28px;

    border-radius:16px;

    font-weight:600;

    transition:.3s;
}


.btn-secondary:hover{

    transform:translateY(-3px);
}


.btn-light{

    display:inline-block;

    background:white;

    color:var(--primary);

    padding:16px 28px;

    border-radius:16px;

    font-weight:700;
}

/* ==================================================
   HERO PREMIUM V5.0
================================================== */

.hero{

    min-height:850px;

    background:
    url("hero-bg.png") no-repeat center center;

    background-size:cover;

    display:flex;

    align-items:center;
}


.hero-content{

    max-width:650px;
}


.hero-badge{

    display:inline-block;

    background:#eef7f8;

    color:var(--primary);

    padding:12px 20px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    margin-bottom:25px;
}


.hero h1{

    font-size:72px;

    line-height:1.1;

    color:var(--dark);

    margin-bottom:25px;
}


.hero p{

    font-size:20px;

    line-height:1.9;

    color:var(--gray);

    margin-bottom:40px;
}


.hero-buttons{

    display:flex;

    gap:18px;

    margin-bottom:55px;
}


.hero-stats{

    display:flex;

    gap:60px;
}


.hero-stats strong{

    display:block;

    font-size:34px;

    color:var(--primary);
}


.hero-stats span{

    color:var(--gray);

    font-size:15px;
}

/* ==================================================
   FEATURES PREMIUM V5.0
================================================== */

.features{

    padding:120px 0;

    background:var(--light);
}


/* Section Title */

.section-title{

    text-align:center;

    max-width:700px;

    margin:0 auto 80px;
}


.section-title span{

    color:var(--primary);

    font-weight:600;
}


.section-title h2{

    font-size:52px;

    color:var(--dark);

    margin:18px 0;
}


.section-title p{

    color:var(--gray);

    line-height:1.9;
}


/* Grid */

.feature-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;
}


/* Card */

.feature-card{

    background:white;

    padding:40px 35px;

    border-radius:30px;

    border:1px solid rgba(15,76,92,.05);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.4s;
}


.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.1);
}


/* Icon */

.feature-icon{

    width:80px;

    height:80px;

    border-radius:25px;

    background:
    linear-gradient(
    135deg,
    #0F4C5C,
    #1A667A);

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    margin-bottom:25px;
}


/* Content */

.feature-card h3{

    font-size:24px;

    margin-bottom:18px;

    color:var(--dark);
}


.feature-card p{

    color:var(--gray);

    line-height:1.9;

    margin-bottom:25px;
}


.feature-card a{

    color:var(--primary);

    font-weight:600;
}

/* ==================================================
   ARTICLES PREMIUM V5.0
================================================== */

.articles{

    padding:120px 0;

    background:white;
}


/* Grid */

.article-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:35px;
}


/* Card */

.article-card{

    background:white;

    border-radius:30px;

    overflow:hidden;

    border:1px solid rgba(15,76,92,.05);

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);

    transition:.4s;
}


.article-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}


/* Image */

.article-card img{

    width:100%;

    height:260px;

    object-fit:cover;
}


/* Content */

.article-content{

    padding:30px;
}


/* Category */

.article-category{

    display:inline-block;

    background:#eef7f8;

    color:var(--primary);

    padding:8px 14px;

    border-radius:999px;

    font-size:13px;

    font-weight:600;

    margin-bottom:18px;
}


/* Title */

.article-content h3{

    font-size:24px;

    line-height:1.4;

    color:var(--dark);

    margin-bottom:18px;
}


/* Description */

.article-content p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:25px;
}


/* Meta */

.article-meta{

    color:var(--gray);

    font-size:14px;

    margin-bottom:20px;
}


/* Link */

.article-content a{

    color:var(--primary);

    font-weight:600;
}

/* ==================================================
   CTA PREMIUM V5.0
================================================== */

.cta{

    padding:140px 0;

    background:
    linear-gradient(
    135deg,
    #0F4C5C,
    #145E70);

    color:white;
}


.cta-content{

    max-width:800px;

    margin:auto;

    text-align:center;
}


.cta-content h2{

    font-size:56px;

    line-height:1.2;

    margin-bottom:25px;
}


.cta-content p{

    font-size:20px;

    line-height:1.9;

    color:rgba(255,255,255,.85);

    margin-bottom:45px;
}


.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;
}



/* ==================================================
   FOOTER PREMIUM V5.0
================================================== */

footer{

    background:#0B3340;

    color:white;

    padding:100px 0 40px;
}


.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;
}


.footer-logo img{

    height:90px;

    margin-bottom:25px;
}


.footer-desc{

    color:rgba(255,255,255,.75);

    line-height:1.9;
}


.footer-column h3{

    margin-bottom:25px;
}


.footer-column a{

    display:block;

    color:rgba(255,255,255,.75);

    margin-bottom:15px;

    transition:.3s;
}


.footer-column a:hover{

    color:white;
}


.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:60px;

    padding-top:30px;

    text-align:center;

    color:rgba(255,255,255,.65);
}

/* ==================================================
   ARTICLE PAGE PREMIUM V5.0
================================================== */

.article-container{

    max-width:900px;

    margin:auto;

    padding:80px 25px;
}


/* Breadcrumb */

.breadcrumb{

    color:var(--gray);

    margin-bottom:35px;

    font-size:15px;
}


/* Cover */

.article-cover{

    width:100%;

    height:500px;

    object-fit:cover;

    border-radius:30px;

    margin-bottom:45px;
}


/* Category */

.article-category{

    display:inline-block;

    background:#eef7f8;

    color:var(--primary);

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;
}


/* Title */

.article-title{

    font-size:58px;

    line-height:1.15;

    color:var(--dark);

    margin-bottom:20px;
}


/* Meta */

.article-meta{

    display:flex;

    gap:20px;

    color:var(--gray);

    margin-bottom:60px;
}


/* Content */

.article-content{

    font-size:19px;

    color:#475569;
}


.article-content h2{

    margin-top:70px;

    margin-bottom:20px;

    color:var(--dark);

    font-size:34px;
}


.article-content p{

    line-height:2;

    margin-bottom:25px;
}


/* Arabic */

.arabic{

    font-size:34px;

    line-height:2.4;

    direction:rtl;

    text-align:right;

    color:var(--primary);

    margin:40px 0;
}


/* Blockquote */

blockquote{

    background:var(--light);

    border-left:5px solid var(--secondary);

    padding:30px;

    border-radius:25px;

    margin:40px 0;
}


/* List */

.article-content ul{

    margin-left:25px;
}


.article-content li{

    margin-bottom:15px;
}

/* ==================================================
   SHARE BUTTONS
================================================== */

.share-buttons{

    display:flex;

    gap:15px;

    margin:60px 0;
}


.share-btn{

    background:var(--light);

    padding:14px 20px;

    border-radius:16px;

    color:var(--dark);

    font-weight:600;

    transition:.3s;
}


.share-btn:hover{

    transform:translateY(-3px);
}

/* =========================
QUOTE BOX
========================= */

.quote-box{

    background:
    linear-gradient(
    135deg,
    #0F4C5C,
    #145E70);

    padding:60px;

    border-radius:30px;

    text-align:center;

    margin:100px 0;

    color:white;
}

.quote-box p{

    color:white !important;

    font-size:28px;

    line-height:1.9;

    font-style:italic;

    margin-bottom:20px;
}

.quote-box span{

    color:rgba(255,255,255,.8);

    font-size:16px;

    font-weight:500;
}

/* ==================================================
   AUTHOR BOX
================================================== */

.author-box{

    display:flex;

    gap:25px;

    align-items:center;

    background:var(--light);

    padding:35px;

    border-radius:30px;

    margin-top:100px;
}


.author-avatar{

    width:90px;

    height:90px;

    border-radius:50%;

    background:
    linear-gradient(
    135deg,
    var(--primary),
    var(--secondary));
}


.author-info h3{

    margin-bottom:10px;
}

/* ==================================================
   RELATED ARTICLES
================================================== */

.related-section{

    margin-top:120px;
}


.related-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}


.related-card{

    background:white;

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s;
}


.related-card:hover{

    transform:translateY(-8px);
}


.related-card img{

    width:100%;

    height:180px;

    object-fit:cover;
}


.related-content{

    padding:25px;
}


.related-content h3{

    margin-bottom:15px;

    line-height:1.5;
}


.related-content a{

    color:var(--primary);

    font-weight:600;
}

/* ==================================================
   RESPONSIVE PREMIUM V5.0
================================================== */


/* ======================
   Laptop
====================== */

@media (max-width:1200px){

    .hero h1{
        font-size:58px;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .article-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }

}


/* ======================
   Tablet
====================== */

@media (max-width:992px){

    nav{
        display:none;
    }

    .hero{
        min-height:auto;
        padding:120px 0;
    }

    .hero-content{
        max-width:100%;
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
        gap:40px;
    }

    .feature-grid{
        grid-template-columns:1fr 1fr;
    }

    .article-grid{
        grid-template-columns:1fr;
    }

    .related-grid{
        grid-template-columns:1fr;
    }

    .footer-grid{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-logo img{
        margin:auto;
        margin-bottom:25px;
    }

}


/* ======================
   Mobile
====================== */

@media (max-width:768px){

    .hero{

        background-position:center;

        padding:100px 0;
    }

    .hero h1{

        font-size:42px;
    }

    .hero p{

        font-size:17px;
    }

    .hero-buttons{

        flex-direction:column;

        gap:15px;
    }

    .hero-stats{

        flex-direction:column;

        gap:25px;
    }

    .section-title h2{

        font-size:38px;
    }

    .cta-content h2{

        font-size:40px;
    }

    .article-title{

        font-size:42px;
    }

    .article-cover{

        height:300px;
    }

    .arabic{

        font-size:24px;

        line-height:2.2;
    }

    .author-box{

        flex-direction:column;

        text-align:center;
    }

}


/* ======================
   Small Mobile
====================== */

@media (max-width:576px){

    .hero h1{

        font-size:34px;
    }

    .section-title h2{

        font-size:32px;
    }

    .cta-content h2{

        font-size:32px;
    }

    .article-title{

        font-size:34px;
    }

    .quote-box{

        padding:40px 25px;
    }

    .quote-box p{

        font-size:20px;
    }

    .share-buttons{

        flex-wrap:wrap;
    }

   /* =========================
PAGE HERO
========================= */

.page-hero{
padding:120px 0 80px;
background:#f8fafc;
text-align:center;
}

.page-hero h1{
font-size:60px;
margin:20px 0;
}

.page-hero p{
max-width:800px;
margin:auto;
color:#64748b;
}


/* =========================
FEATURED ARTICLE
========================= */

.featured-article{
padding:100px 0;
}

.featured-box{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

.featured-image img{
width:100%;
border-radius:30px;
}

.featured-content h2{
font-size:42px;
margin:25px 0;
}


/* =========================
CATEGORIES
========================= */

.categories{
padding-bottom:60px;
}

.category-list{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.category-list a{
background:#f8fafc;
padding:15px 25px;
border-radius:50px;
text-decoration:none;
color:#0F4C5C;
font-weight:600;
}


/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

.featured-box{
grid-template-columns:1fr;
}

.page-hero h1{
font-size:40px;
}

.featured-content h2{
font-size:32px;
}

}

/* =========================
   STEPS
========================= */

.steps-section{
    padding:120px 0;
    background:#f8fafc;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    max-width:900px;
    margin:auto;
}

.step-card{
    background:white;
    padding:40px;
    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.4s;
}

.step-card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.1);
}

.step-number{

    width:70px;
    height:70px;

    background:
    linear-gradient(
    135deg,
    #0F4C5C,
    #1b7282);

    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:24px;
    font-weight:700;

    margin-bottom:25px;
}

.step-card h3{
    margin-bottom:15px;
    color:#1E293B;
}

.step-card p{
    color:#64748B;
}

   /* =========================
FAQ
========================= */

.faq-section{
    padding:120px 0;
    background:#f8fafc;
}

.faq-item{

    background:white;

    padding:35px;

    border-radius:25px;

    margin-bottom:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    transition:.4s;
}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08);
}

.faq-item h3{

    color:#0F4C5C;

    margin-bottom:15px;
}

.faq-item p{

    color:#64748B;

    line-height:1.9;
}
}
