 body{
    margin:0;
    font-family:'Poppins',sans-serif;
    background:#f5f7fb;
    color:#222;
    overflow-x:hidden;
}

/* Hero */

.hero{
    position:relative;
    min-height:90vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:80px 8%;
    background:
    radial-gradient(circle at top left,#dfe9ff 0%,transparent 35%),
    radial-gradient(circle at bottom right,#d8f3ff 0%,transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f7f9fc 100%);
    overflow:hidden;
}

/* Floating Blur */

.hero::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:#4f7cff;
    opacity:.12;
    filter:blur(120px);
    border-radius:50%;
    top:-120px;
    left:-100px;
}

.hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#6ed4ff;
    opacity:.10;
    filter:blur(120px);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

/* =========================
   Google Font
========================= */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#333;
    line-height:1.6;
}

/* =========================
Navbar
========================= */

header{
    width:100%;
    border-bottom:1px solid #ececec;
    background:#fff;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{

    max-width:1300px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 30px;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:24px;

    font-weight:700;

    color:#E5322D;

}

.logo i{

    font-size:28px;

}

.nav-links{

    display:flex;

    gap:35px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#444;

    font-size:15px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#E5322D;

}

.nav-btns{

    display:flex;

    gap:15px;

    align-items:center;

}

#themeBtn{

    width:42px;

    height:42px;

    border:none;

    border-radius:50%;

    cursor:pointer;

    background:#f4f4f4;

}

.login{

    color:#444;

    text-decoration:none;

    font-weight:600;

}

.signup{

    background:#E5322D;

    color:#fff;

    text-decoration:none;

    padding:11px 22px;

    border-radius:8px;

    font-weight:600;

}

/* =========================
Hero
========================= */

.hero{

    max-width:1300px;

    margin:auto;

    padding:80px 30px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero h1{

    font-size:58px;

    line-height:1.1;

    margin-bottom:20px;

    color:#222;

}

.hero span{

    color:#E5322D;

}

.hero p{

    font-size:18px;

    color:#666;

    max-width:550px;

}

.hero-buttons{

    margin-top:35px;

    display:flex;

    gap:20px;

}

.primary{

    background:#E5322D;

    color:#fff;

    border:none;

    padding:17px 30px;

    border-radius:10px;

    font-size:17px;

    cursor:pointer;

}

 .secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color: #0e0e0e;
}

.primary:hover{

    background:#cf201b;

}

.secondary:hover{

    background:#f8f8f8;

}

/* Stats */

.hero-stats{

    display:flex;

    gap:45px;

    margin-top:45px;

}

.hero-stats h2{

    color:#E5322D;

    font-size:34px;

}

.hero-stats p{

    font-size:15px;

}

/* =========================
Upload Box
========================= */

.upload-box{

    border:2px dashed #ddd;

    border-radius:15px;

    padding:60px 30px;

    text-align:center;

    background:#fafafa;

    transition:.3s;

}

.upload-box:hover{

    border-color:#E5322D;

}

.upload-box i{

    font-size:60px;

    color:#E5322D;

    margin-bottom:20px;

}

.upload-box h2{

    margin-bottom:10px;

}

.upload-box p{

    color:#777;

}

.upload-box button{

    margin-top:25px;

    background:#E5322D;

    color:#fff;

    border:none;

    padding:14px 26px;

    border-radius:8px;

    cursor:pointer;

}

/* =========================
Search
========================= */

.search{

    padding:20px;

}

.search-box{

    max-width:700px;

    margin:auto;

    display:flex;

    border:1px solid #ddd;

    border-radius:10px;

    overflow:hidden;

}

.search-box input{

    flex:1;

    border:none;

    padding:16px;

    outline:none;

}

.search-box button{

    width:70px;

    border:none;

    background:#E5322D;

    color:white;

    cursor:pointer;

}

 /*==========================
    POPULAR PDF TOOLS
==========================*/

.popular-tools{

    max-width:1300px;

    margin:80px auto;

    padding:0 20px;

}

.popular-tools .section-title{

    text-align:center;

    font-size:42px;

    font-weight:700;

    color:#222;

    margin-bottom:15px;

}

.popular-tools .section-subtitle{

    text-align:center;

    color:#666;

    font-size:18px;

    margin-bottom:50px;

}

.section-heading{

    text-align:center;

    margin-bottom:50px;

}

.section-heading h2{

    font-size:42px;

    margin-bottom:15px;

}

.section-heading p{

    max-width:700px;

    margin:0 auto;

    color:#666;

    line-height:1.7;

}

.tool-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:25px;

}

.tool-card{

    display:block;

    text-decoration:none;

    color:#222;

    background:#fff;

    border-radius:18px;

    padding:30px;

    text-align:center;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

    border:1px solid #eee;

}

.tool-card:hover{

    transform:translateY(-8px);

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

}

.tool-card i{

    font-size:48px;

    color:#E5322D;

    margin-bottom:20px;

}

.tool-card h3{

    font-size:24px;

    margin-bottom:12px;

    color:#222;

}

.tool-card p{

    color:#666;

    line-height:1.7;

    font-size:15px;

}

/* Mobile */

@media(max-width:768px){

.popular-tools .section-title{

font-size:30px;

}

.popular-tools .section-subtitle{

font-size:15px;

}

.tool-grid{

grid-template-columns:1fr;

}

.tool-card{

padding:25px;

}

}

/* =========================
Responsive
========================= */

@media(max-width:1000px){

.hero{

grid-template-columns:1fr;

text-align:center;

}

.hero p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-stats{

justify-content:center;

}

.tool-grid{

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

}

.nav-links{

display:none;

}

}

@media(max-width:600px){

.hero{

padding:60px 20px;

}

.hero h1{

font-size:38px;

}

.tool-grid{

grid-template-columns:1fr;

}

.navbar{

padding:15px;

}

.hero-buttons{

flex-direction:column;

}

.primary,
.secondary{

width:100%;

}

.hero-stats{

flex-direction:column;

gap:20px;

}

}

/* =========================
SECTION TITLE
========================= */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#222;
    margin-bottom:12px;
    font-weight:700;
}

.section-title p{
    color:#777;
    font-size:17px;
}

/* =========================
WHY CHOOSE US
========================= */

.why{
    padding:90px 30px;
    background:#fafafa;
}

.why-grid{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:14px;
    padding:40px 30px;
    text-align:center;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-card i{
    font-size:45px;
    color:#E5322D;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:12px;
}

.why-card p{
    color:#777;
}

/* =========================
HOW IT WORKS
========================= */

.steps{
    padding:90px 30px;
}

.steps-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.step{
    background:#fff;
    border:1px solid #ececec;
    border-radius:15px;
    padding:45px 30px;
    text-align:center;
    position:relative;
    transition:.3s;
}

.step:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.number{
    position:absolute;
    top:20px;
    right:20px;
    width:35px;
    height:35px;
    border-radius:50%;
    background:#E5322D;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:600;
}

.step i{
    font-size:55px;
    color:#E5322D;
    margin-bottom:20px;
}

.step h3{
    margin-bottom:10px;
}

.step p{
    color:#777;
}

/* =========================
STATS
========================= */

.stats{
    background:#E5322D;
    color:#fff;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    text-align:center;
    padding:70px 20px;
}

.stat-box h2{
    font-size:48px;
    margin-bottom:10px;
}

.stat-box p{
    opacity:.9;
}

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

.faq{
    max-width:1000px;
    margin:90px auto;
    padding:0 25px;
}

.faq-item{
    border:1px solid #e8e8e8;
    border-radius:12px;
    margin-bottom:18px;
    padding:25px;
    transition:.3s;
}

.faq-item:hover{
    border-color:#E5322D;
}

.faq-item h3{
    margin-bottom:12px;
    font-size:20px;
}

.faq-item p{
    color:#666;
}

/* =========================
CTA
========================= */

.cta{
    background:#fafafa;
    text-align:center;
    padding:90px 20px;
}

.cta h2{
    font-size:42px;
    margin-bottom:15px;
}

.cta p{
    color:#777;
    margin-bottom:35px;
}

.cta button{
    background:#E5322D;
    color:#fff;
    border:none;
    padding:18px 40px;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    transition:.3s;
}

.cta button:hover{
    background:#c82722;
}

 /*==========================
        FOOTER
==========================*/

.footer{

    background:#1d1d1f;

    color:#fff;

    padding:70px 20px 30px;

}

.footer-container{

    max-width:1300px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:40px;

}

.footer-column h3{

    margin-bottom:18px;

    font-size:20px;

}

.footer-column ul{

    list-style:none;

}

.footer-column ul li{

    margin:12px 0;

}

.footer-column ul li a{

    color:#bbb;

    text-decoration:none;

    transition:.3s;

}

.footer-column ul li a:hover{

    color:#E5322D;

    padding-left:6px;

}

.footer-bottom{

    max-width:1300px;

    margin:50px auto 0;

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

    padding-top:25px;

    text-align:center;

}

.social-icons{

    margin-bottom:20px;

}

.social-icons a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:42px;

    height:42px;

    margin:0 6px;

    border-radius:50%;

    background:#2b2b2d;

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.social-icons a:hover{

    background:#E5322D;

}

.language{

    margin-bottom:15px;

    color:#ccc;

}

.footer-bottom p{

    color:#999;

    font-size:15px;

}

@media(max-width:768px){

.footer{

text-align:center;

}

}

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

@media(max-width:992px){

.why-grid,
.steps-grid,
.stats,
.footer-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.section-title h2{
font-size:32px;
}

.stats{
grid-template-columns:1fr;
gap:35px;
}

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

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

}

.dark{
    background:#121212;
    color:#fff;
}

.dark header,
.dark .tool-card,
.dark .why-card,
.dark .step,
.dark .faq-item,
.dark .upload-box{
    background:#1f1f1f;
    color:#fff;
    border-color:#333;
}

.dark .search-box{
    background:#1f1f1f;
    border-color:#333;
}

.dark input{
    background:transparent;
    color:#fff;
}

.dark p{
    color:#cfcfcf;
}

.dark footer{
    background:#0e0e0e;
}

 .tool-card{

    display:block;

    text-decoration:none;

    color:#222;

    background:#fff;

    padding:25px;

    border-radius:16px;

    transition:.3s;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

}

.tool-card:hover{

    transform:translateY(-5px);

    box-shadow:0 12px 25px rgba(0,0,0,.12);

}

.tool-card i{

    font-size:40px;

    color:#E5322D;

    margin-bottom:15px;

}

.tool-card h3{

    margin-bottom:10px;

    font-size:22px;

}

/*=========================
        BLOG SECTION
=========================*/

.blog-section{

    max-width:1300px;
    margin:90px auto;
    padding:0 20px;

}

.blog-grid{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:30px;

}

.blog-card{

    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;

}

.blog-card:hover{

    transform:translateY(-8px);

}

.blog-card i{

    font-size:45px;
    color:#E5322D;
    margin-bottom:20px;

}

.blog-card h3{

    font-size:24px;
    margin-bottom:15px;

}

.blog-card p{

    color:#666;
    line-height:1.7;
    margin-bottom:20px;

}

.blog-card a{

    text-decoration:none;
    color:#E5322D;
    font-weight:600;

}

.blog-card a:hover{

    text-decoration:underline;

}

/*==========================
        ABOUT SECTION
==========================*/

.about-section{

    padding:100px 20px;

    background:#f8fafc;

}

.about-container{

    max-width:1200px;

    margin:auto;

    text-align:center;

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    background:#ffe8e7;

    color:#E5322D;

    font-size:15px;

    font-weight:600;

    border-radius:30px;

    margin-bottom:20px;

}

.about-container h2{

    font-size:46px;

    color:#222;

    margin-bottom:20px;

    font-weight:700;

}

.about-container p{

    max-width:850px;

    margin:0 auto 20px;

    font-size:18px;

    line-height:1.8;

    color:#666;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:60px;

}

.feature{

    background:#fff;

    padding:35px 25px;

    border-radius:18px;

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

    transition:.3s;

}

.feature:hover{

    transform:translateY(-10px);

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

}

.feature i{

    width:70px;

    height:70px;

    line-height:70px;

    font-size:30px;

    color:#fff;

    background:#E5322D;

    border-radius:50%;

    margin-bottom:20px;

}

.feature h3{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

}

.feature p{

    font-size:16px;

    color:#666;

    line-height:1.7;

}

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

@media(max-width:992px){

.about-container h2{

font-size:38px;

}

.about-container p{

font-size:17px;

}

}

@media(max-width:768px){

.about-section{

padding:70px 20px;

}

.about-container h2{

font-size:32px;

}

.about-container p{

font-size:16px;

}

.about-features{

grid-template-columns:1fr;

gap:20px;

}

.feature{

padding:30px 20px;

}

.feature h3{

font-size:22px;

}

}

@media(max-width:480px){

.section-tag{

font-size:13px;

padding:6px 16px;

}

.about-container h2{

font-size:28px;

}

.about-container p{

font-size:15px;

}

.feature i{

width:60px;

height:60px;

line-height:60px;

font-size:26px;

}

}

/*=====================================
          CONTACT SECTION
=====================================*/

.contact-section{

    padding:100px 20px;

    background:linear-gradient(180deg,#f8fbff,#ffffff);

}

.contact-container{

    max-width:1250px;

    margin:auto;

}

.contact-content{

    display:grid;

    grid-template-columns:420px 1fr;

    gap:50px;

    align-items:center;

}

/*=========================
        LEFT SIDE
=========================*/

.contact-info{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.contact-info .section-tag{

    display:inline-block;

    padding:8px 18px;

    background:#ffe7e7;

    color:#E5322D;

    border-radius:50px;

    font-weight:600;

    margin-bottom:18px;

}

.contact-info h2{

    font-size:42px;

    color:#222;

    margin-bottom:18px;

}

.contact-info p{

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}

.info-box{

    display:flex;

    align-items:center;

    gap:18px;

    margin-bottom:25px;

}

.info-box i{

    width:65px;

    height:65px;

    background:#E5322D;

    color:#fff;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    transition:.3s;

}

.info-box:hover i{

    transform:rotate(-8deg) scale(1.08);

}

.info-box h3{

    font-size:19px;

    margin-bottom:5px;

    color:#222;

}

.info-box p{

    margin:0;

    color:#666;

}

/*=========================
        FORM
=========================*/

.contact-form{

    background:#fff;

    padding:45px;

    border-radius:25px;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

}

.form-group{

    margin-bottom:22px;

}

.contact-form label{

    display:block;

    margin-bottom:8px;

    font-weight:600;

    color:#333;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    padding:16px 18px;

    border:2px solid #ececec;

    border-radius:14px;

    font-size:16px;

    transition:.3s;

    outline:none;

    background:#fafafa;

}

.contact-form textarea{

    resize:none;

}

.contact-form input:focus,

.contact-form textarea:focus{

    border-color:#E5322D;

    background:#fff;

    box-shadow:0 0 0 4px rgba(229,50,45,.10);

}

.contact-form button{

    width:100%;

    padding:18px;

    border:none;

    border-radius:14px;

    background:#E5322D;

    color:#fff;

    font-size:18px;

    font-weight:600;

    cursor:pointer;

    transition:.35s;

}

.contact-form button:hover{

    background:#c62828;

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(229,50,45,.30);

}

/*=========================
      SOCIAL ICONS
=========================*/

.social-links{

    display:flex;

    gap:15px;

    margin-top:30px;

}

.social-links a{

    width:50px;

    height:50px;

    border-radius:50%;

    background:#f3f5f9;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#222;

    font-size:20px;

    transition:.3s;

}

.social-links a:hover{

    background:#E5322D;

    color:#fff;

    transform:translateY(-5px);

}

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

@media(max-width:992px){

.contact-content{

grid-template-columns:1fr;

}

.contact-info{

text-align:center;

}

.info-box{

justify-content:center;

}

.social-links{

justify-content:center;

}

}

@media(max-width:768px){

.contact-section{

padding:70px 18px;

}

.contact-info,

.contact-form{

padding:30px;

}

.contact-info h2{

font-size:34px;

}

}

@media(max-width:480px){

.contact-info h2{

font-size:28px;

}

.contact-form input,

.contact-form textarea{

padding:14px;

}

.contact-form button{

padding:16px;

}

}

/* =========================
      SITEMAP PAGE
========================= */


.sitemap-hero{

padding:90px 20px;

text-align:center;

background:linear-gradient(135deg,#2563eb,#7c3aed);

color:white;

}


.sitemap-hero h1{

font-size:45px;

margin:20px 0;

}


.sitemap-hero p{

font-size:18px;

opacity:.9;

}



.sitemap-section{

padding:80px 20px;

}



.sitemap-section h2{

font-size:32px;

margin:40px 0 25px;

text-align:center;

}



.sitemap-grid{

display:grid;

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

gap:20px;

}



.sitemap-grid a{

background:white;

padding:25px;

border-radius:18px;

text-decoration:none;

color:#1e293b;

font-weight:600;

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

display:flex;

align-items:center;

gap:15px;

transition:.3s;

}



.sitemap-grid a i{

font-size:25px;

color:#2563eb;

}



.sitemap-grid a:hover{

transform:translateY(-6px);

color:#2563eb;

}



@media(max-width:900px){

.sitemap-grid{

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

}

}



@media(max-width:600px){

.sitemap-grid{

grid-template-columns:1fr;

}


.sitemap-hero h1{

font-size:32px;

}

}

/* =================================
        PDFMASTER BLOG PAGE
================================= */


/* HERO */

.blog-hero{

    padding:100px 20px;

    text-align:center;

    background:
    linear-gradient(135deg,#2563eb,#7c3aed);

    color:white;

}


.blog-hero h1{

    font-size:50px;

    margin:20px 0;

    line-height:1.2;

}


.blog-hero p{

    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.7;

    opacity:.9;

}





/* BLOG SECTION */


.blog-section{

    padding:90px 20px;

    background:#f8fafc;

    text-align:center;

}



.blog-section h2{

    font-size:38px;

    margin-bottom:15px;

}





/* BLOG GRID */


.blog-grid{

    display:grid;

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

    gap:30px;

}





/* BLOG CARD */


.blog-card{

    background:white;

    padding:35px 30px;

    border-radius:22px;

    text-align:left;

    box-shadow:

    0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

    border:1px solid #f1f5f9;

}



.blog-card:hover{

    transform:translateY(-10px);

    box-shadow:

    0 20px 40px rgba(0,0,0,.12);

}





.blog-icon{

    width:65px;

    height:65px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:18px;

    background:#eff6ff;

    margin-bottom:25px;

}



.blog-icon i{

    font-size:30px;

    color:#2563eb;

}




.blog-card h3{

    font-size:23px;

    margin-bottom:15px;

    color:#1e293b;

}



.blog-card p{

    color:#64748b;

    line-height:1.7;

    margin-bottom:20px;

}



.blog-card a{

    color:#2563eb;

    font-weight:600;

    text-decoration:none;

}



.blog-card a:hover{

    text-decoration:underline;

}





/* CTA SECTION */


.blog-cta{

    padding:90px 20px;

    text-align:center;

    color:white;

    background:

    linear-gradient(135deg,#111827,#2563eb);

}



.blog-cta h2{

    font-size:40px;

    margin-bottom:15px;

}



.blog-cta p{

    font-size:18px;

    margin-bottom:30px;

    opacity:.9;

}



.blog-cta a{

    display:inline-block;

    background:white;

    color:#2563eb;

    padding:14px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}



.blog-cta a:hover{

    transform:translateY(-5px);

}





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


@media(max-width:900px){


.blog-grid{

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

}


.blog-hero h1{

    font-size:40px;

}


}



@media(max-width:600px){


.blog-hero{

    padding:70px 15px;

}


.blog-hero h1{

    font-size:32px;

}


.blog-hero p{

    font-size:16px;

}



.blog-grid{

    grid-template-columns:1fr;

}



.blog-section h2{

    font-size:30px;

}



.blog-card{

    padding:25px;

}



.blog-cta h2{

    font-size:30px;

}


}

/* =================================
        PDFMASTER FAQ PAGE
================================= */


/* HERO */

.faq-hero{

    padding:100px 20px;

    text-align:center;

    color:white;

    background:
    linear-gradient(135deg,#2563eb,#7c3aed);

}


.faq-hero h1{

    font-size:50px;

    margin:20px 0;

    line-height:1.2;

}


.faq-hero p{

    max-width:750px;

    margin:auto;

    font-size:18px;

    line-height:1.7;

    opacity:.9;

}





/* FAQ SECTION */


.faq-section{

    padding:90px 20px;

    background:#f8fafc;

}


.faq-section h2{

    text-align:center;

    font-size:38px;

    margin-bottom:50px;

}





.faq-container{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:20px;

}





/* FAQ CARD */


.faq-item{

    background:white;

    padding:30px;

    border-radius:20px;

    box-shadow:

    0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

    border:1px solid #f1f5f9;

}



.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:

    0 15px 35px rgba(0,0,0,.1);

}



.faq-item h3{

    display:flex;

    align-items:center;

    gap:15px;

    font-size:21px;

    color:#1e293b;

    margin-bottom:15px;

}



.faq-item h3 i{

    color:#2563eb;

    font-size:22px;

}



.faq-item p{

    color:#64748b;

    line-height:1.7;

    padding-left:37px;

}





/* CTA */


.faq-cta{

    padding:90px 20px;

    text-align:center;

    color:white;

    background:

    linear-gradient(135deg,#111827,#2563eb);

}



.faq-cta h2{

    font-size:40px;

    margin-bottom:15px;

}



.faq-cta p{

    font-size:18px;

    margin-bottom:30px;

}



.faq-cta a{

    display:inline-block;

    background:white;

    color:#2563eb;

    padding:14px 35px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}



.faq-cta a:hover{

    transform:translateY(-5px);

}





/* RESPONSIVE */


@media(max-width:900px){


.faq-hero h1{

    font-size:40px;

}


}



@media(max-width:600px){


.faq-hero{

    padding:70px 15px;

}


.faq-hero h1{

    font-size:32px;

}


.faq-hero p{

    font-size:16px;

}



.faq-section h2{

    font-size:30px;

}



.faq-item{

    padding:22px;

}



.faq-item h3{

    font-size:18px;

}



.faq-item p{

    padding-left:0;

}



.faq-cta h2{

    font-size:30px;

}


}

/* ================================
        404 ERROR PAGE
================================ */


.error-page{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding:40px 20px;

    background:

    linear-gradient(135deg,#2563eb,#7c3aed);

    color:white;

}



.error-icon{

    width:100px;

    height:100px;

    margin:auto;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

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

}



.error-icon i{

    font-size:50px;

}



.error-page h1{

    font-size:100px;

    margin:20px 0 0;

    font-weight:800;

}



.error-page h2{

    font-size:35px;

    margin-bottom:20px;

}



.error-page p{

    max-width:600px;

    margin:auto;

    font-size:18px;

    line-height:1.7;

    opacity:.9;

}



.error-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:35px;

    padding:15px 35px;

    background:white;

    color:#2563eb;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}



.error-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 30px rgba(0,0,0,.2);

}




@media(max-width:600px){


.error-page h1{

    font-size:70px;

}


.error-page h2{

    font-size:28px;

}


.error-page p{

    font-size:16px;

}


}