/* ===========================================
   eMitro Portal
   Author : Shibanj Arts & Tech Pvt Ltd
=========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f5f7fb;
    color:#333;
}

a{
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Header */

header{
    background:#ffffff;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#0d6efd;
}

.logo span{
    color:#ff9800;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:#333;
    font-weight:600;
}

nav ul li a:hover{
    color:#0d6efd;
}

/* Button */

.btn{
    background:#0d6efd;
    color:#fff;
    padding:12px 25px;
    border-radius:8px;
    display:inline-block;
    transition:.3s;
}

.btn:hover{
    background:#0849b9;
}

/* Hero */

.hero{
    padding:90px 0;
    text-align:center;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#666;
    margin-bottom:30px;
}

/* Section */

.section{
    padding:70px 0;
}

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

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

/* Cards */

.card{
    background:#fff;
    border-radius:12px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

/* Footer */

footer{
    background:#0d6efd;
    color:#fff;
    padding:30px;
    text-align:center;
    margin-top:60px;
}

footer a{
    color:#fff;
}
.hero{
    padding:100px 20px;
    text-align:center;
    background:#f8fbff;
}

.hero-content{
    max-width:900px;
    margin:auto;
}

.hero h1{
    font-size:56px;
    color:#1f2937;
    margin-bottom:20px;
    font-weight:700;
}

.hero h2{
    font-size:32px;
    color:#2563eb;
    margin-bottom:20px;
}

.hero p{
    font-size:20px;
    color:#555;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-secondary{
    background:#fff;
    color:#2563eb;
    border:2px solid #2563eb;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn-secondary:hover{
    background:#2563eb;
    color:#fff;
}
/* ==========================
   Features Section
========================== */

.features{
    padding:80px 20px;
    background:#ffffff;
}

.features h2{
    text-align:center;
    font-size:40px;
    color:#1f2937;
    margin-bottom:60px;
}

.feature-grid{
    max-width:1200px;
    margin:auto;

    display:grid;

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

    gap:30px;
}

.feature-card{

    background:#fff;

    padding:35px;

    border-radius:15px;

    text-align:center;

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

    transition:.3s;

}

.feature-card:hover{

    transform:translateY(-8px);

}

.feature-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#2563eb;

}

.feature-card p{

    font-size:17px;

    color:#666;

    line-height:1.7;

}

@media(max-width:992px){

.feature-grid{

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

}

}

@media(max-width:768px){

.feature-grid{

grid-template-columns:1fr;

}

}
/* ==========================================
   Pricing Section
========================================== */

.pricing{
    padding:90px 20px;
    background:#f5f7fb;
}

.pricing h2{
    text-align:center;
    font-size:42px;
    color:#1f2937;
    margin-bottom:15px;
}

.pricing-subtitle{
    text-align:center;
    color:#666;
    font-size:18px;
    margin-bottom:60px;
}

.pricing-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

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

    gap:30px;

}

.plan-card{

    background:#fff;

    border-radius:18px;

    padding:40px;

    text-align:center;

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

    position:relative;

    transition:.35s;

}

.plan-card:hover{

    transform:translateY(-10px);

}

.badge{

    position:absolute;

    top:20px;

    right:20px;

    background:#2563eb;

    color:#fff;

    padding:6px 12px;

    border-radius:20px;

    font-size:13px;

    font-weight:bold;

}

.plan-card h3{

    font-size:30px;

    margin-bottom:20px;

}

.price{

    font-size:50px;

    font-weight:bold;

    color:#2563eb;

    margin-bottom:30px;

}

.price span{

    font-size:18px;

    color:#666;

}

.plan-card ul{

    list-style:none;

    margin-bottom:35px;

}

.plan-card ul li{

    padding:10px 0;

    color:#555;

    font-size:17px;

}

.btn-plan{

    display:inline-block;

    background:#2563eb;

    color:#fff;

    padding:15px 35px;

    border-radius:8px;

    font-weight:bold;

    transition:.3s;

}

.btn-plan:hover{

    background:#1d4ed8;

}

.btn-disabled{

    display:inline-block;

    background:#ddd;

    color:#666;

    padding:15px 35px;

    border-radius:8px;

    cursor:not-allowed;

}

.popular{

    border:3px solid #2563eb;

}

@media(max-width:992px){

.pricing-grid{

grid-template-columns:1fr;

}

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

.about{

    padding:90px 20px;

    background:#ffffff;

}

.about-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.about-content h2{

    font-size:42px;

    margin-bottom:25px;

    color:#1f2937;

}

.about-content p{

    font-size:18px;

    color:#666;

    line-height:1.8;

    margin-bottom:20px;

}

.about-grid{

    max-width:1200px;

    margin:60px auto 0;

    display:grid;

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

    gap:25px;

}

.about-box{

    background:#f8fbff;

    padding:30px;

    border-radius:15px;

    text-align:center;

    box-shadow:0 8px 20px rgba(0,0,0,.06);

    transition:.3s;

}

.about-box:hover{

    transform:translateY(-8px);

}

.about-box h3{

    color:#2563eb;

    margin-bottom:15px;

    font-size:24px;

}

.about-box p{

    color:#555;

    line-height:1.7;

}

@media(max-width:992px){

.about-grid{

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

}

}

@media(max-width:768px){

.about-grid{

grid-template-columns:1fr;

}

}
/* ===========================
WHY SECTION
=========================== */

.why{

padding:90px 20px;

background:#f8fbff;

}

.why h2{

text-align:center;

font-size:42px;

margin-bottom:15px;

color:#1f2937;

}

.why-subtitle{

text-align:center;

font-size:18px;

color:#666;

margin-bottom:60px;

}

.why-grid{

max-width:1200px;

margin:auto;

display:grid;

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

gap:30px;

}

.why-card{

background:#fff;

padding:35px;

border-radius:16px;

text-align:center;

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

transition:.3s;

}

.why-card:hover{

transform:translateY(-8px);

}

.icon{

font-size:45px;

margin-bottom:20px;

}

.why-card h3{

font-size:24px;

margin-bottom:15px;

color:#2563eb;

}

.why-card p{

font-size:17px;

line-height:1.8;

color:#666;

}

@media(max-width:992px){

.why-grid{

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

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}
/* ===============================
Legal Pages
================================ */

.page-banner{

background:#2563eb;

color:#fff;

padding:70px 20px;

text-align:center;

}

.page-banner h1{

font-size:42px;

margin-bottom:10px;

}

.page-content{

padding:80px 20px;

}

.page-content .container{

max-width:1000px;

margin:auto;

background:#fff;

padding:40px;

border-radius:15px;

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

}

.page-content h2{

margin-bottom:20px;

}

.page-content h3{

margin-top:30px;

margin-bottom:10px;

color:#2563eb;

}

.page-content p{

line-height:1.8;

margin-bottom:15px;

}

.page-content ul{

padding-left:20px;

line-height:2;

}
/* ================= Footer ================= */

.footer{
    background:#0f172a;
    color:#fff;
    padding:60px 20px 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:40px;
}

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

.footer p{
    color:#ddd;
    line-height:1.8;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer ul li{
    margin-bottom:10px;
}

.footer ul li a{
    color:#ddd;
    text-decoration:none;
}

.footer ul li a:hover{
    color:#fff;
}

.footer hr{
    margin-top:40px;
    border:1px solid rgba(255,255,255,.2);
}

@media(max-width:768px){

.footer-grid{

grid-template-columns:1fr;

}

}
.pricing-section{
    padding:80px 20px;
    background:#f5f7fb;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.price-card{
    background:#fff;
    border-radius:18px;
    padding:40px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    position:relative;
}

.price-card.active{
    border:3px solid #2563eb;
}

.badge{
    position:absolute;
    top:15px;
    right:15px;
    background:#2563eb;
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
}

.price-card h2{
    margin-bottom:20px;
}

.price-card h1{
    color:#2563eb;
    font-size:48px;
    margin-bottom:25px;
}

.price-card ul{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.price-card ul li{
    padding:8px 0;
}

.price-card button{
    width:100%;
    padding:15px;
    border:none;
    border-radius:8px;
    background:#ccc;
}