*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
     background:#0F172A;
     color:#F8FAFC;
     font-family:'Poppins',sans-serif;
}

.navbar{
    width: 90%;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 20px 0;
}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}


.logo-icon{

    width:45px;

    height:45px;

    background:#2563EB;

    border-radius:12px;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:20px;

}

.logo h2{

    color:white;

    font-size:32px;

}

.logo span{

    color:#3B82F6;

}

.nav-links{
    display: flex;
    gap: 35px;

    list-style: none;
}

.nav-links a{
    text-decoration: none;
    color:#F8FAFC;

    transition: .3s;
}


.nav-links a:hover{
    color:#3B82F6;
}


.nav-btn{
    display:flex;
    align-items:center;
    gap:8px;

    background:#3B82F6;
    color:white;
    padding:14px 24px;
    border-radius:10px;
    text-decoration:none;
    transition:.3s;
}

.nav-btn:hover{

     background:#2563EB;

}

.hero{

    width:90%;

    margin: 50px auto 70px;

    display:flex;

    justify-content:space-between;


    gap:70px;
    align-items:flex-start;

}

.hero-left{

    flex: 1;

}


.hero-right{

    flex: 1;
    display: flex;
    justify-content: flex-end;

}

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    border:1px solid #3B82F6;

    border-radius:50px;

    color:#3B82F6;

    margin-bottom:30px;

}

.hero-left h1{
     font-size: 68px;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 25px;

}

.hero-left span{

    color:#3B82F6;

}

.hero-left p{
    max-width:520px;

    color:#94A3B8;

    font-size:20px;

    line-height:34px;

}

.hero h1{
    font-size: 71px;
    line-height: 1.1;
     font-weight:700;
}

.hero p{
        color:#94A3B8;
        margin-top: 20px;
        font-size: 20px;
}

.upload-box{
     max-width:520px;
    width:100%;
    margin: 0;

    background:#1E293B;

    border:2px dashed #3B82F6;
    text-align:center;

    border-radius: 20px;
    padding: 55px 35px;
    transition:0.3s ease;
}


.upload-box:hover{
    border-color:#60A5FA;
    transform:translateY(-5px);
}

.upload-box h2{
    margin-bottom: 15px;
}

.upload-box button{
    margin-top:30px;

    padding:15px 35px;

    border:none;

    background:#3B82F6;

    color:white;

    border-radius:10px;

    cursor:pointer;

    font-size:17px;

    transition:.3s;
}

.upload-box button:hover{

    transform:translateY(-3px);

    background:#2563EB;

}

.upload-icon{
    font-size:70px;
    color:#3B82F6;
    margin-bottom:20px;
}



.trust-section{
    width:90%;
    margin: 0 auto;
    padding:20px 0 70px;
    background:#0F172A;
}

.section-title{
    text-align: center;
    margin-bottom: 55px;
}

.section-title h2{
    font-size: 46px;
     color:#F8FAFC;
    margin-bottom: 18px;
}

.section-title p{
    max-width: 700px;
    margin: auto;
    color: #94A3B8;
    font-size: 18px;
    line-height: 30px;
}

.Trust-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.Trust-card{
    background: #182338;
    border: 1px solid rgba(59,130,246,0.15);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    min-height: 320px;
    transition: .35s ease;
    cursor: pointer;
}

.Trust-card:hover{
    transform: translateY(-8px);
    border-color:#3B82F6;
    box-shadow:0 15px 35px rgba(59,130,246,.18);
}

.icon{
    width:80px;
    height:80px;
    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#243552;

    color:#3B82F6;

    font-size:34px;
}

.Trust-card h3{
    color:#F8FAFC;
    font-size:28px;
    margin-bottom:18px;
}

.Trust-card p{
    color:#94A3B8;
    font-size:18px;
    line-height:30px;
}



.how-it-works{
    width:90%;
    margin:40px auto 80px;
}

.steps-container{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin-top:60px;
    flex-wrap:wrap;
}

.step-card{
    flex:1;
    min-width:280px;
    max-width:340px;

    background:#182338;
    border:1px solid rgba(59,130,246,.15);
    border-radius:20px;

    padding:40px 30px;

    text-align:center;

    transition:.35s ease;
    position:relative;
}

.step-card:hover{
    transform:translateY(-10px);
    border-color:#3B82F6;
    box-shadow:0 20px 45px rgba(59,130,246,.18);
}

.step-icon{
    width:90px;
    height:90px;

    margin:0 auto 25px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:#243552;
    color:#3B82F6;

    font-size:38px;
}

.step-card h3{
    font-size:28px;
    margin-bottom:15px;
    color:#F8FAFC;
}

.step-card p{
    color:#94A3B8;
    font-size:17px;
    line-height:30px;
}

/* Step Number */

.step-card::before{

    content:"";

    position:absolute;

    top:18px;
    right:20px;

    width:38px;
    height:38px;

    border-radius:50%;

    background:#3B82F6;

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:15px;
    font-weight:600;
}

.step-card:nth-child(1)::before{
    content:"01";
}

.step-card:nth-child(3)::before{
    content:"02";
}

.step-card:nth-child(5)::before{
    content:"03";
}

/* Arrow */

.step-arrow{

    font-size:38px;

    color:#3B82F6;

    animation:moveArrow 1.5s infinite;
}

@keyframes moveArrow{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(10px);
    }

    100%{
        transform:translateX(0);
    }

}





/* ===========================
          FAQ SECTION
=========================== */

.faq{
    width:90%;
    margin:100px auto;
}

.faq-container{
    max-width:900px;
    margin:60px auto 0;
}

.faq-item{
    background:#182338;
    border:1px solid rgba(59,130,246,.15);
    border-radius:16px;
    margin-bottom:20px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#F8FAFC;
    padding:24px 30px;
    font-size:20px;
    font-weight:600;
    cursor:pointer;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-question span{
    color:#3B82F6;
    font-size:28px;
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-answer p{
    color:#94A3B8;
    padding:0 30px 25px;
    line-height:30px;
    font-size:17px;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}




/* ===========================
   Premium Footer
=========================== */

.footer{
    background:#111827;
    color:#ffffff;
    padding:70px 8% 25px;
    margin-top:100px;
}

.footer-container{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-logo{
    font-size:32px;
    font-weight:700;
    margin-bottom:20px;
    color:#ffffff;
}

.footer-about p{
    color:#cbd5e1;
    line-height:1.8;
    font-size:16px;
    max-width:320px;
}

.footer-links h3{
    font-size:20px;
    margin-bottom:20px;
    color:#ffffff;
}

.footer-links ul{
    list-style:none;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    text-decoration:none;
    color:#cbd5e1;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#3b82f6;
    padding-left:8px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.12);
    margin-top:50px;
    padding-top:25px;
    text-align:center;
}

.footer-bottom p{
    color:#94a3b8;
    font-size:15px;
}

/* Responsive */

@media(max-width:992px){

.footer-container{
    grid-template-columns:1fr 1fr;
}

}

@media(max-width:600px){

.footer{
    padding:60px 25px 20px;
}

.footer-container{
    grid-template-columns:1fr;
    gap:40px;
}

.footer-about p{
    max-width:100%;
}

.footer-links h3{
    margin-bottom:15px;
}

}


.footer-logo span{
    color:#3b82f6;
}






.preview-container{
    margin-top:20px;
    text-align:center;
}

#previewImage{
    width:160px;
    height:160px;
    object-fit:cover;
    border-radius:12px;
    margin-top:20px;
    border:2px solid #3b82f6;
    display:none;
}

#fileName{
    margin-top:15px;
    color:#fff;
    font-size:18px;
    font-weight:600;
    word-break:break-word;
}


#fileSize{
    margin-top:8px;
    color:#9ca3af;
    font-size:16px;
}


.upload-box.drag{
    border-color:#3b82f6;
    background:#1f2937;
    transform:scale(1.02);
    transition:.3s;
}



.quality-box{

    display:none;

    margin-top:25px;

}

.quality-box label{

    display:flex;
    justify-content:space-between;
    margin-bottom:10px;
    color:#fff;
    font-weight:500;

}

.quality-box input{

    width:100%;

}



.result-box{

    display:none;

    margin-top:30px;

    padding:25px;

    border-radius:18px;

    background:#1c2740;

    border:1px solid #2b4d85;

}

.result-header{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:20px;

}

.result-header i{

    color:#35d07f;

    font-size:28px;

}

.result-header h3{

    color:#fff;

}

.result-info{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.info-row{

    display:flex;

    justify-content:space-between;

    color:#d8d8d8;

}

.info-row strong{

    color:#fff;

}

#downloadBtn{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:10px;

    margin-top:25px;

    height:52px;

    border-radius:12px;

    background:#3b82f6;

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

#downloadBtn:hover{

    background:#2563eb;

}





.hero-features{

margin-top:35px;

display:flex;

flex-direction:column;

gap:18px;

}

.feature{

display:flex;

align-items:center;

gap:12px;

font-size:18px;

color:#e8e8e8;

}

.feature i{

color:#36d17f;

font-size:20px;

}

.hero-trust{

margin-top:40px;

display:flex;

align-items:center;

gap:18px;

padding:20px;

background:#1b2742;

border:1px solid rgba(255,255,255,.08);

border-radius:16px;

width:fit-content;

}

.stars{

font-size:24px;

}

.hero-trust h4{

color:white;

margin-bottom:5px;

}

.hero-trust p{

font-size:14px;

color:#9aa6c4;

}









.format-box{

    display:none;

    margin-top:30px;

}

.format-box h3{

    margin-bottom:18px;

    color:#fff;

}

.format-options{

    display:flex;

    gap:15px;

}

.format-card{

    flex:1;

    padding:18px;

    background:#1b2742;

    border:2px solid transparent;

    border-radius:14px;

    cursor:pointer;

    transition:.3s;

    text-align:center;

}

.format-card:hover{

    border-color:#3b82f6;

}

.format-card input{

    display:none;

}

.format-card h4{

    color:white;

    margin-bottom:8px;

}

.format-card p{

    color:#94a3b8;

    font-size:14px;

}





.format-card.active{

border-color:#3b82f6;

background:#23365d;

}











/* ===========================
      Hamburger Menu
=========================== */

.menu-toggle{

    display:none;

    font-size:28px;

    color:#fff;

    cursor:pointer;

}







/* ===========================
      Mobile Responsive
=========================== */
@media (max-width:992px){

.navbar{

    position:relative;

    flex-direction:row;

}

.menu-toggle{

    display:block;

}

.nav-btn{

    display:none;

}

.nav-links{

    position:absolute;

    top:90px;

    left:0;

    width:100%;

    background:#111827;

    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:30px 0;

    border-radius:15px;

    display:none;

}

.nav-links.active{

    display:flex;

}

.hero{

    flex-direction:column;

    text-align:center;

}

.hero-right{

    justify-content:center;

}

.hero-features{

    align-items:center;

}

.hero-trust{

    margin:35px auto 0;

}

.Trust-container{

    grid-template-columns:repeat(2,1fr);

}

}





@media (max-width:768px){

.hero h1{
    font-size:48px;
}

.section-title h2{
    font-size:34px;
}

.upload-box{
    padding:35px 20px;
}

.format-options{
    flex-direction:column;
}

.step-arrow{
    transform:rotate(90deg);
}

.hero-trust{
    width:100%;
    justify-content:center;
}

}





@media (max-width:576px){

.logo h2{
    font-size:26px;
}

.nav-links{
    flex-direction:column;
    gap:15px;
}

.nav-btn{
    width:100%;
    justify-content:center;
}

.hero{
    width:95%;
}

.hero h1{
    font-size:38px;
}

.hero p{
    font-size:17px;
}

.feature{
    font-size:16px;
}

.Trust-container{
    grid-template-columns:1fr;
}

.faq-question{
    font-size:17px;
    padding:18px;
}

.section-title h2{
    font-size:28px;
}

.section-title p{
    font-size:16px;
}

.upload-icon{
    font-size:55px;
}

#previewImage{
    width:130px;
    height:130px;
}

.result-box{
    padding:18px;
}

.info-row{
    font-size:15px;
}

}
