html,body{
width:100%;
overflow-x:hidden;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

:root{
--primary:#1e88e5;
--bg:#f5f7fb;
--card:#ffffff;
--text:#222;
--shadow:0 4px 15px rgba(0,0,0,.08);
--shadow-lg:0 15px 35px rgba(30,136,229,.15);
--radius:12px;
--radius-lg:16px;
--transition:0.3s ease;
--transition-smooth:0.4s ease;
}

body.dark{
--bg:#0f172a;
--card:#1e293b;
--text:#f1f5f9;
}

body{
background:var(--bg);
color:var(--text);
transition:var(--transition);
}

.container,.faq-container{
width:100%;
max-width:1200px;
margin:auto;
}

.container{
width:90%;
padding:0 20px;
}

.navbar{
background:var(--primary);
padding:15px 0;
position:sticky;
top:0;
z-index:999;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:#fff;
font-size:22px;
font-weight:700;
}

.logo img{
width:40px;
height:40px;
}

.nav-links{
display:flex;
gap:25px;
list-style:none;
}

.nav-links a{
color:#fff;
text-decoration:none;
font-size:14px;
}

.theme-btn,.menu-btn{
font-size:26px;
color:#fff;
cursor:pointer;
}

.theme-btn{
font-size:22px;
}

.menu-btn{
display:none;
}

.hero{
padding:20px 20px 5px;
display:flex;
justify-content:center;
}
.hero-card{
max-width:1000px;
width:100%;
padding:35px 30px;
border-radius:14px;
background:linear-gradient(135deg,#1e88e5,#42a5f5);
text-align:center;
color:#fff;
}

.hero-card h1{
font-size:42px;
margin-bottom:15px;
}

.hero-card p,.faq-answer p{
margin-bottom:25px;
}


.stat-card,.feature-card,.faq-item,.why-card,.paper-card{
background:var(--card);
border-radius:var(--radius);
box-shadow:var(--shadow);
}


.stat-card{
padding:25px;
text-align:center;
}

.stat-card h2{
color:var(--primary);
margin-bottom:8px;
}

.feature-card{
padding:30px;
text-align:center;
font-size:40px;
}

.faq{
max-width:900px;
margin:70px auto;
padding:0 20px;
}

.faq-item{
background:var(--card);
margin-bottom:15px;
border-radius:10px;
overflow:hidden;
box-shadow:var(--shadow);
}

.faq-question{
width:100%;
padding:18px;
border:none;
background:transparent;
display:flex;
justify-content:space-between;
cursor:pointer;
font-size:16px;
color:var(--text);
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:.3s;
}

.faq-answer p{
padding:0 18px 18px;
}

.faq-item.active .faq-answer{
max-height:150px;
}

footer{
background:var(--primary);
color:#fff;
padding:35px 20px;
margin-top:15px;
}

.footer-content{
text-align:center;
max-width:900px;
margin:auto;
}

.footer-content h3{
margin-bottom:10px;
}

.footer-content p{
line-height:1.8;
}

@media(max-width:992px){

.paper-grid{
grid-template-columns:repeat(2,1fr);
}

.feature-grid{
grid-template-columns:repeat(2,1fr);
}

.stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.menu-btn{
display:block;
}

.nav-links{
display:none;
position:absolute;
top:70px;
left:0;
width:100%;
background:var(--primary);
flex-direction:column;
padding:20px;
}

.nav-links.active{
display:flex;
}

.hero-card h1{
font-size:30px;
}

}


.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-header{
    text-align:center;
    margin-bottom:40px;
}

.faq-header h2{
    font-size:36px;
    color:#1e88e5;
    font-weight:700;
    margin-bottom:10px;
}

.faq-header p{
    color:#64748b;
}

.faq-item{
    background:#fff;
    border-radius:14px;
    margin-bottom:16px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    border:1px solid #eef2f7;
}

.faq-question{
    width:100%;
    background:#fff;
    border:none;
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:17px;
    font-weight:600;
    color:#222;
}

.faq-question:hover{
    background:#f8fbff;
}

.faq-question span{
    color:#1e88e5;
    font-size:24px;
    font-weight:bold;
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    padding:0 25px 22px;
    color:#555;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

@media(max-width:768px){

    .faq-header h2{
        font-size:28px;
    }

    .faq-question{
        font-size:15px;
        padding:18px;
    }

}

@media(max-width:768px){

    .epaper-faq{
        padding:30px 15px;
    }

    .section{
        margin:40px auto;
    }

    .hero{
        padding:30px 15px;
    }

    .stats{
        gap:10px;
    }

    footer{
        padding:25px 15px;
        margin-top:10px;
    }

}

.section-heading{
    text-align:center;
    margin-bottom:20px;
}

.section-heading h2{
    font-size:36px;
    color:#1e88e5;
    margin-bottom:10px;
}

.section-heading p{
    color:#64748b;
    max-width:600px;
    margin:auto;
}

.why-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    border-radius:16px;
    padding:30px 25px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(30,136,229,0.15);
}

.why-icon{
    font-size:48px;
    margin-bottom:15px;
}

.why-card h3{
    color:#1e88e5;
    margin-bottom:12px;
    font-size:20px;
}

.why-card p{
    color:#555;
    line-height:1.7;
    font-size:14px;
}

@media(max-width:992px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .section-heading h2{
        font-size:28px;
    }

}


.paper-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* Tablet */
@media (max-width:992px){
    .paper-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

/* Mobile */
@media (max-width:576px){
    .paper-grid{
        grid-template-columns:repeat(2,1fr);
        gap:12px;
    }

    .paper-card{
        padding:20px 10px;
    }

    .paper-icon{
        width:40px;
        height:40px;
    }

    .paper-card h3{
        font-size:13px;
    }
}
.section{
    max-width:1200px;
    margin:0 auto 15px;
    padding:0 20px;
}

.section-title{
    text-align:center;
    font-size:32px;
    color:#1e88e5;
    margin-bottom:30px;
}

.paper-card{
    background:#fff;
    border-radius:16px;
    padding:35px 20px;
    text-align:center;
    box-shadow:0 4px 15px rgba(0,0,0,0.08);
    transition:all 0.3s ease;
    cursor:pointer;
}

.paper-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 25px rgba(0,0,0,0.15);
}


.paper-card:hover .paper-icon{
    transform:scale(1.15);
}


.paper-card:hover h3{
    color:#1e88e5;
}
.why-us{
    padding:20px 20px 5px;
    background:#f8fafc;
}

.epaper-faq{
    padding:20px 20px 5px;
    background:#f8fafc;
}
.paper-icon{
    width:55px;
    height:55px;
}
.paper-card h3{
    font-size:15px;
    transition:0.3s ease;
}
.stats{
    max-width:900px;
    margin:20px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    padding:0 20px;
}

@media(max-width:992px){
    .stats{
        grid-template-columns:repeat(2,1fr);
    }
}


@media(max-width:576px){

    .paper-grid{
        grid-template-columns:repeat(2,1fr) !important;
    }

    .stats{
        grid-template-columns:repeat(2,1fr) !important;
    }

}
.hero-card{
    padding:35px 30px;
}
.browse-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#fff;
    color:#1e88e5;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:all 0.3s ease;
}

.browse-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 20px rgba(0,0,0,0.15);
}
html{
    scroll-behavior:smooth;
}
#hindi .section-title{
    margin-top:25px;
}
body.dark .paper-card{
    background:#1e293b;
}

body.dark .paper-card h3{
    color:#f8fafc !important;
}

body.dark .paper-card:hover h3{
    color:#60a5fa !important;
}
body.dark .why-card,
body.dark .faq-item,
body.dark .stat-card{
    background:#1e293b;
}

body.dark .why-card p,
body.dark .faq-answer p,
body.dark .stat-card p{
    color:#f8fafc;
}

body.dark .faq-item{
    background:#1e293b;
}

body.dark .faq-question{
    background:#1e293b;
    color:#f8fafc !important;
}

body.dark .faq-answer{
    background:#1e293b;
}

body.dark .faq-answer p{
    color:#f8fafc !important;
}

body.dark .faq-question span{
    color:#60a5fa;
}

body.dark .why-us,
body.dark .epaper-faq{
    background:#0f172a !important;
}
.footer-links{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:40px;
}

.footer-links a{
    background:rgba(255,255,255,0.15);
    color:#fff;
    text-decoration:none;
    padding:10px 16px;
    border-radius:30px;
    font-size:14px;
    transition:0.3s ease;
}

.footer-links a:hover{
    background:rgba(255,255,255,0.25);
    transform:translateY(-3px);
}

.card:hover{
 transform: translateY(-5px);
 transition:0.3s;
}
body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#222;
    margin:0;
}

.article{
    max-width:850px;
    margin:50px auto;
    background:#ffffff;
    padding:50px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
}

h2{
    font-size:38px;
    margin-top:50px;
    color:#2563eb;
}

h3{
    font-size:28px;
}

p{
    font-size:19px;
    line-height:1.9;
}

img{
    width:100%;
    border-radius:12px;
    margin:30px 0;
}

table{
    width:100%;
    border-collapse:collapse;
    margin:20px 0;
}

th{
    background:#2563eb;
    color:white;
}

th,td{
    border:1px solid #ddd;
    padding:12px;
}

a{
    color:#2563eb;
}

ul li,
ol li{
    margin:10px 0;
}

@media (max-width: 768px){

    .article{
        width: 95%;
        padding: 15px;
        margin: 10px auto;
    }

    h1{
        font-size: 28px;
    }

   h2{
    font-size:38px;
    margin-top:50px;
    margin-bottom:20px;
    color:#2563eb;
}

 h3{
    margin-top:30px;
    margin-bottom:15px;
}
   p{
    font-size:19px;
    line-height:1.9;
    margin-bottom:18px;
}

    table{
        display:block;
        overflow-x:auto;
    }

    img{
        width:100%;
        height:auto;
    }
}
@media (max-width:768px){

    h2{
        margin-top:35px;
        margin-bottom:15px;
    }

    h3{
        margin-top:25px;
        margin-bottom:10px;
    }

}

.hero-card p{
    color: #ffffff !important;
}