/* ===============================
   MODERN PREMIUM UI
================================== */

body{
    background:#f5f7fb;
    color:#222;
    font-family:'Roboto',sans-serif;
}

/* HERO */

.wrapper{
    background:
    linear-gradient(135deg,#5B5FEF 0%,#7B61FF 45%,#8F5CFF 100%);
    position:relative;
    overflow:hidden;
}

.wrapper:before{
    content:"";
    position:absolute;
    width:700px;
    height:700px;
    background:rgba(255,255,255,.08);
    border-radius:50%;
    top:-250px;
    right:-150px;
    filter:blur(10px);
}

.wrapper:after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(255,255,255,.06);
    border-radius:50%;
    bottom:-220px;
    left:-120px;
}

.wrapper-content{
    position:relative;
    z-index:5;
}

.wrapper h2{
    font-size:52px;
    font-weight:800;
    color:#fff;
}

.wrapper p{
    color:rgba(255,255,255,.9);
    font-size:19px;
}

/* Upload Icon */

.file-upload-icon{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    border:2px solid rgba(255,255,255,.25);
    box-shadow:0 15px 40px rgba(0,0,0,.2);
}

.file-upload-icon i{
    font-size:56px;
    color:#fff;
}

/* NAVBAR */

.nav-bar{
    backdrop-filter:blur(18px);
    background:rgba(255,255,255,.85);
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.logo img{
    height:48px;
}

.nav-bar .link{
    font-weight:600;
    transition:.3s;
}

.nav-bar .link:hover{
    color:#6A5CFF!important;
}

/* BUTTONS */

.btn-primary{
    background:linear-gradient(135deg,#6A5CFF,#9D50FF);
    border:none;
    border-radius:14px;
    padding:13px 28px;
    font-weight:700;
    box-shadow:0 12px 30px rgba(106,92,255,.35);
    transition:.35s;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(106,92,255,.45);
}

.btn-light{
    border-radius:14px;
    font-weight:700;
    padding:14px 32px;
}

/* Sections */

.section{
    padding:100px 0;
}

.section-title h5{
    font-size:36px;
    font-weight:800;
    color:#222;
}

.section-text p{
    color:#777;
    font-size:18px;
}

/* Feature Cards */

.card-v{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    transition:.35s;
    border:1px solid #eee;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.card-v:hover{
    transform:translateY(-12px);
    box-shadow:0 30px 60px rgba(0,0,0,.12);
}

.card-v-icon img{
    width:80px;
    transition:.4s;
}

.card-v:hover .card-v-icon img{
    transform:scale(1.12) rotate(8deg);
}

.card-v-title p{
    font-size:22px;
    font-weight:700;
    margin-top:18px;
}

.card-v-text{
    color:#666;
}

/* Upload Box */

.uploadbox-content{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 35px 70px rgba(0,0,0,.18);
}

.uploadbox-header{
    background:linear-gradient(135deg,#6A5CFF,#9D50FF);
    color:#fff;
}

.uploadbox-body{
    background:#fff;
}

.uploadbox-drag{
    border:3px dashed #9d8dff;
    border-radius:20px;
    transition:.3s;
}

.uploadbox-drag:hover{
    background:#f6f4ff;
    border-color:#6A5CFF;
}

/* FAQ */

.accordion-item{
    border:none;
    border-radius:18px!important;
    overflow:hidden;
    margin-bottom:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.accordion-button{
    font-size:18px;
    font-weight:700;
    padding:22px;
    background:#fff;
}

.accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#6A5CFF,#9D50FF);
    color:#fff;
}

.accordion-body{
    padding:25px;
    color:#666;
}

/* Footer */

.footer{
    background:#121827;
    color:#fff;
    padding:60px 0;
}

.footer a{
    color:#ddd;
    transition:.3s;
}

.footer a:hover{
    color:#fff;
}

/* Cookies */

.cookies{
    border-radius:24px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
}

/* Smooth Animation */

.card-v,
.btn,
.accordion-item,
.uploadbox-content{
    transition:all .35s ease;
}

/* Mobile */

@media(max-width:768px){

.wrapper h2{
    font-size:34px;
}

.wrapper p{
    font-size:16px;
}

.section{
    padding:70px 0;
}

.card-v{
    padding:28px;
}

}