/* ==========================================
   MYFILEORA BLOG
   Premium Glassmorphism Theme
   Part 1
========================================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Plus Jakarta Sans',sans-serif;
    background:#070713;
    color:#f5f5f5;
    line-height:1.8;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#10101f;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(180deg,#7c3aed,#a855f7);
    border-radius:50px;
}

/* Progress Bar */

.progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0%;

    height:4px;

    background:linear-gradient(90deg,#7c3aed,#c084fc);

    z-index:9999;

}

/* Container */

.container{

    width:min(1180px,92%);

    margin:auto;

}

/* Header */

.header{

    position:sticky;

    top:0;

    backdrop-filter:blur(18px);

    background:rgba(15,15,30,.70);

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

    z-index:999;

}

.header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

    color:#fff;

    font-size:24px;

    font-weight:800;

}

.logo i{

    color:#9f67ff;

    font-size:28px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:28px;

}

nav a{

    color:#d9d9d9;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

nav a:hover{

    color:#b983ff;

}

/* Hero */

.blog-hero{

    padding:100px 0 70px;

    text-align:center;

    background:
    radial-gradient(circle at top,#7c3aed33,transparent 60%),
    #070713;

}

.badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 22px;

    border-radius:50px;

    background:rgba(124,58,237,.18);

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

    color:#caa7ff;

    font-size:14px;

    margin-bottom:25px;

}

.blog-hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    max-width:900px;

    margin:auto;

}

.blog-hero p{

    max-width:760px;

    margin:25px auto;

    color:#b9b9c7;

    font-size:19px;

}

.blog-meta{

    display:flex;

    justify-content:center;

    gap:35px;

    margin-top:35px;

    flex-wrap:wrap;

}

.blog-meta span{

    color:#c7c7d5;

    font-size:15px;

}

.blog-meta i{

    color:#b983ff;

    margin-right:8px;

}

/* Featured Image */

.featured-image{

    margin-top:-20px;

    margin-bottom:70px;

}

.featured-image img{

    width:100%;

    border-radius:24px;

    box-shadow:0 20px 60px rgba(0,0,0,.40);

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

}

/* TOC */

.toc-box{

    background:rgba(255,255,255,.05);

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

    padding:35px;

    border-radius:24px;

    margin-bottom:70px;

    backdrop-filter:blur(20px);

}

.toc-box h2{

    margin-bottom:20px;

    color:#fff;

}

.toc-box ol{

    padding-left:22px;

}

.toc-box li{

    margin:12px 0;

}

.toc-box a{

    color:#d8c8ff;

    text-decoration:none;

}

.toc-box a:hover{

    color:#fff;

}

/* Blog */

.blog-content{

    padding-bottom:80px;

}

.blog-content article{

    background:rgba(255,255,255,.04);

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

    backdrop-filter:blur(20px);

    border-radius:28px;

    padding:60px;

}

.blog-content section{

    margin-bottom:60px;

}

.blog-content h2{

    font-size:36px;

    margin-bottom:20px;

    color:#fff;

}

.blog-content h3{

    font-size:24px;

    margin:28px 0 14px;

    color:#caa7ff;

}

.blog-content p{

    color:#d0d0de;

    margin-bottom:18px;

    font-size:18px;

}

.blog-content ul{

    padding-left:25px;

}

.blog-content li{

    margin:10px 0;

    color:#d0d0de;

}
/* ======================================================
   MYFILEORA BLOG CSS
   PART 2
====================================================== */

/* Feature Grid */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin-top:35px;
}

.feature-card{
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:30px;
    transition:.35s;
    backdrop-filter:blur(18px);
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#8b5cf6;
    box-shadow:0 20px 45px rgba(124,58,237,.25);
}

.feature-card i{
    font-size:38px;
    color:#b983ff;
    margin-bottom:18px;
}

.feature-card h3{
    color:#fff;
    margin-bottom:12px;
}

.feature-card p{
    color:#c9c9d5;
    font-size:16px;
}

/* Info Box */

.info-box{
    margin-top:35px;
    padding:28px;
    border-radius:20px;
    background:linear-gradient(135deg,#18142e,#111122);
    border-left:5px solid #8b5cf6;
}

.info-box h3{
    margin-bottom:15px;
    color:#fff;
}

.info-box ul{
    padding-left:22px;
}

.info-box li{
    margin:10px 0;
}

/* Quote */

.quote-box{
    margin:45px 0;
    padding:35px;
    border-radius:24px;
    text-align:center;
    background:linear-gradient(135deg,#7c3aed,#9333ea);
    color:#fff;
}

.quote-box p{
    font-size:22px;
    font-style:italic;
    color:#fff;
}

.quote-box span{
    display:block;
    margin-top:15px;
    opacity:.9;
}

/* CTA */

.cta-box{
    margin-top:80px;
    text-align:center;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(135deg,#6d28d9,#9333ea);
}

.cta-box h2{
    color:#fff;
    font-size:40px;
}

.cta-box p{
    color:#efeefe;
    max-width:700px;
    margin:20px auto;
}

.cta-btn{
    display:inline-block;
    margin-top:25px;
    padding:18px 40px;
    border-radius:60px;
    text-decoration:none;
    background:#fff;
    color:#6d28d9;
    font-weight:700;
    transition:.35s;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(0,0,0,.35);
}

/* FAQ */

.faq-section{
    margin-top:80px;
}

.faq-item{
    margin:18px 0;
    overflow:hidden;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
}

.faq-question{
    width:100%;
    padding:22px 25px;
    background:none;
    border:none;
    color:#fff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    cursor:pointer;
}

.faq-answer{
    display:none;
    padding:0 25px 25px;
}

.faq-answer p{
    color:#c9c9d5;
}

/* Related */

.related-posts{
    margin-top:90px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
    margin-top:30px;
}

.related-card{
    background:rgba(255,255,255,.05);
    border-radius:22px;
    padding:30px;
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(124,58,237,.22);
}

.related-card i{
    font-size:42px;
    color:#a855f7;
    margin-bottom:18px;
}

.related-card h3{
    color:#fff;
    margin-bottom:12px;
}

.related-card p{
    color:#cfcfdb;
}

.related-card a{
    display:inline-block;
    margin-top:18px;
    color:#b983ff;
    font-weight:700;
    text-decoration:none;
}

/* Author */

.author-box{
    margin-top:90px;
}

.author-card{
    display:flex;
    gap:25px;
    align-items:center;
    padding:35px;
    border-radius:22px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
}

.author-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#7c3aed;
    color:#fff;
    font-size:34px;
    flex-shrink:0;
}

.author-card h3{
    color:#fff;
}

.author-card p{
    color:#d0d0de;
}

/* Footer */

.blog-footer{
    margin-top:100px;
    background:#090912;
    border-top:1px solid rgba(255,255,255,.08);
    padding:70px 0 25px;
}

.footer-container{
    width:min(1180px,92%);
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:40px;
}

.footer-brand h2{
    color:#fff;
    margin-bottom:15px;
}

.footer-brand p{
    color:#bdbdd0;
}

.footer-links h3,
.footer-contact h3{
    color:#fff;
    margin-bottom:15px;
}

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin:12px 0;
}

.footer-links a,
.footer-contact a{
    color:#cfcfe0;
    text-decoration:none;
    display:block;
    margin:10px 0;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#b983ff;
}

.copyright{
    text-align:center;
    margin-top:50px;
    color:#9b9bb3;
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:20px;
}

/* Back To Top */

.top-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#8b5cf6;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    display:none;
    z-index:999;
    transition:.3s;
}

.top-btn:hover{
    transform:translateY(-5px);
}

/* Responsive */

@media(max-width:900px){

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

.blog-content article{
    padding:35px;
}

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

.author-card{
    flex-direction:column;
    text-align:center;
}

}

@media(max-width:600px){

nav{
    display:none;
}

.blog-meta{
    gap:15px;
}

.blog-content h2{
    font-size:28px;
}

.blog-content p{
    font-size:16px;
}

.cta-box{
    padding:35px 20px;
}

.cta-box h2{
    font-size:30px;
}

}
.hidden-section{
    opacity:0;
    transform:translateY(40px);
    transition:.7s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}