/* ===================================================
   MetaSarg Verify - Premium SaaS Theme
   =================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#1e293b;
    overflow-x:hidden;
}

/* Navbar */

.navbar{
    background:#ffffff !important;
    padding:16px 0;
    transition:.3s;
    border-bottom:1px solid #eef2f7;
}

.navbar-brand{
    font-size:30px;
    font-weight:700;
    color:#2563eb !important;
}

.nav-link{
    color:#334155 !important;
    font-weight:500;
    margin:0 10px;
    transition:.3s;
}

.nav-link:hover{
    color:#2563eb !important;
}

.btn-primary{
    background:#2563eb;
    border:none;
    border-radius:10px;
    padding:12px 26px;
    font-weight:600;
}

.btn-primary:hover{
    background:#1d4ed8;
}

.btn-outline-primary{
    border-radius:10px;
    padding:12px 26px;
    font-weight:600;
}

/* Hero */

.hero{

    background:linear-gradient(135deg,#0f172a,#1d4ed8);

    min-height:90vh;

    display:flex;

    align-items:center;

    color:#fff;

    padding-top:90px;

    position:relative;

    overflow:hidden;

}

.hero::before{

content:"";

position:absolute;

width:500px;

height:500px;

background:rgba(255,255,255,.06);

border-radius:50%;

top:-180px;

right:-180px;

}

.hero::after{

content:"";

position:absolute;

width:300px;

height:300px;

background:rgba(255,255,255,.05);

border-radius:50%;

bottom:-120px;

left:-120px;

}

.hero h1{

font-size:58px;

font-weight:800;

line-height:1.2;

margin-bottom:20px;

}

.hero p{

font-size:20px;

line-height:34px;

opacity:.92;

margin-bottom:35px;

}

.hero img{

max-width:100%;

animation:float 5s ease-in-out infinite;

}

@keyframes float{

0%{transform:translateY(0);}
50%{transform:translateY(-18px);}
100%{transform:translateY(0);}

}

/* Badge */

.badge{

font-size:14px;

padding:10px 18px;

border-radius:50px;

}

/* Section */

.section{

padding:90px 0;

}

.section-title{

font-size:40px;

font-weight:700;

text-align:center;

margin-bottom:15px;

}

.section-sub{

text-align:center;

color:#64748b;

margin-bottom:60px;

}

/* Service Cards */

.service-card{

background:#fff;

border-radius:18px;

padding:35px;

text-align:center;

transition:.35s;

box-shadow:0 12px 35px rgba(0,0,0,.06);

height:100%;

border:1px solid #edf2f7;

}

.service-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 45px rgba(37,99,235,.18);

}

.service-card i{

font-size:52px;

color:#2563eb;

margin-bottom:20px;

}

.service-card h4{

font-size:22px;

font-weight:700;

margin-bottom:10px;

}

.service-card p{

font-size:15px;

color:#64748b;

}

/* Stats */

.stats{

background:#fff;

border-radius:20px;

padding:30px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

text-align:center;

}

.stats h2{

font-size:42px;

color:#2563eb;

font-weight:700;

}

.stats span{

color:#64748b;

}

/* Feature */

.feature-box{

padding:35px;

background:#fff;

border-radius:20px;

box-shadow:0 12px 30px rgba(0,0,0,.06);

height:100%;

}

.feature-box i{

font-size:42px;

color:#2563eb;

margin-bottom:15px;

}

/* Pricing */

.price-card{

background:#fff;

border-radius:22px;

padding:40px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.3s;

}

.price-card:hover{

transform:scale(1.03);

}

.price{

font-size:52px;

font-weight:700;

color:#2563eb;

}

/* FAQ */

.accordion-button{

font-weight:600;

}

.accordion-button:not(.collapsed){

background:#2563eb;

color:#fff;

}

/* Footer */

footer{

background:#0f172a;

color:#fff;

padding:70px 0 25px;

}

footer h3{

font-weight:700;

margin-bottom:20px;

}

footer a{

color:#cbd5e1;

text-decoration:none;

}

footer a:hover{

color:#fff;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);

margin-top:40px;

padding-top:20px;

text-align:center;

font-size:14px;

}

/* Login */

.auth-box{

background:#fff;

padding:45px;

border-radius:22px;

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

/* Dashboard */

.dashboard-card{

background:#fff;

border-radius:20px;

padding:25px;

box-shadow:0 12px 30px rgba(0,0,0,.08);

}

/* Responsive */

@media(max-width:991px){

.hero{

text-align:center;

padding:120px 0 70px;

}

.hero h1{

font-size:42px;

}

.hero p{

font-size:18px;

line-height:30px;

}

.navbar-nav{

margin-top:20px;

}

}

@media(max-width:576px){

.hero h1{

font-size:32px;

}

.hero p{

font-size:16px;

}

.section-title{

font-size:30px;

}

.btn-primary,
.btn-outline-primary{

width:100%;
margin-bottom:12px;

}

}