/* ===========================
        Global
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;
    background:#0F172A;
    color:#F8FAFC;
    padding-top:90px;

}

body::before{

    content:"";

    position:fixed;

    width:450px;

    height:450px;

    background:#2563EB;

    filter:blur(180px);

    opacity:.15;

    top:-120px;

    left:-120px;

    z-index:-1;

}

body::after{

    content:"";

    position:fixed;

    width:350px;

    height:350px;

    background:#3B82F6;

    filter:blur(180px);

    opacity:.12;

    bottom:-100px;

    right:-100px;

    z-index:-1;

}


.navbar{

    width:90%;
    max-width:1400px;

    margin:auto;

    padding:16px 0;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

/* Logo */

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}

.logo-icon{

    width:48px;

    height:48px;

    border-radius:14px;

    background:linear-gradient(135deg,#2563EB,#3B82F6);

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:22px;

}

.logo h2{

    color:#fff;

    font-size:30px;

    font-weight:700;

}

.logo span{

    color:#3B82F6;

}

/* Navigation */

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

}

.nav-links a{

    text-decoration:none;

    color:#F8FAFC;

    font-size:16px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:#3B82F6;

}

/* Button */

.nav-btn{

    display:flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    background:#2563EB;

    color:white;

    padding:14px 24px;

    border-radius:12px;

    font-weight:600;

    transition:.3s;

}

.nav-btn:hover{

    background:#1D4ED8;

    transform:translateY(-2px);

}

/* Hamburger */

.menu-toggle{

    display:none;

    color:white;

    font-size:28px;

    cursor:pointer;

}

header{
    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:1000;

    transition:transform .35s ease;
    background: rgba(15,23,42,.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

header.hide{

    transform:translateY(-100%);

}

.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-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);
}



/* ===========================
         Footer
=========================== */

.footer{

    background:#0B1120;

    border-top:1px solid rgba(255,255,255,.08);

    padding:70px 0 25px;

    margin-top:80px;

}

.footer-top{

    display:flex;

    justify-content:space-between;

    gap:70px;

    flex-wrap:wrap;

}

.footer-logo{

    max-width:320px;

}

.footer-logo p{

    margin-top:20px;

    color:#94A3B8;

    line-height:1.8;

}

.footer-links{

    flex:1;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:40px;

}

.footer-column h4{

    color:#fff;

    margin-bottom:20px;

    font-size:18px;

}

.footer-column a{

    display:block;

    color:#94A3B8;

    text-decoration:none;

    margin-bottom:14px;

    transition:.3s;

}

.footer-column a:hover{

    color:#60A5FA;

    transform:translateX(6px);

}

.footer-column i{

    width:20px;

}

.footer-bottom{

    margin-top:50px;

    padding-top:25px;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.footer-bottom p{

    color:#94A3B8;

}

.footer-bottom-links{

    display:flex;

    gap:25px;

}

.footer-bottom-links a{

    text-decoration:none;

    color:#94A3B8;

    transition:.3s;

}

.footer-bottom-links a:hover{

    color:#60A5FA;

}
/* 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;
}

}



/* ===========================
      Tools Dropdown
=========================== */

.tools-dropdown{

    position:relative;

}

.tools-btn{

    background:none;

    border:none;

    color:#F8FAFC;

    font-size:16px;

    font-weight:500;

    font-family:'Poppins',sans-serif;

    display:flex;

    align-items:center;

    gap:8px;

    cursor:pointer;

    transition:.3s;

}

.tools-btn:hover{

    color:#3B82F6;

}

.tools-btn i{

    font-size:12px;

    transition:.3s;

}

.tools-dropdown.active .tools-btn i{

    transform:rotate(180deg);

}

.tools-menu{

    position:absolute;

    top:60px;

    left:0;

    width:320px;

    background:#182338;

    border:1px solid rgba(59,130,246,.15);

    border-radius:18px;

    padding:10px;

    opacity:0;

    visibility:hidden;

    transform:translateY(15px);

    transition:.3s;

    box-shadow:0 20px 50px rgba(0,0,0,.35);

    z-index:999;
}

.tools-dropdown.active .tools-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.tools-menu a{

    display:flex;

    align-items:center;

    gap:15px;

    text-decoration:none;

    color:#fff;

    padding:14px;

    border-radius:12px;

    transition:.3s;

}

.tools-menu a:hover{

    background:#111C33;

}

.tools-menu i{

    width:45px;

    height:45px;

    border-radius:12px;

    background:#2563EB;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

}

.tools-menu strong{

    display:block;

    font-size:16px;

}

.tools-menu span{

    font-size:13px;

    color:#94A3B8;

}





/* =====================================
        Footer Responsive
===================================== */

@media (max-width:992px){

    .footer-top{

        flex-direction:column;

        gap:50px;

    }

    .footer-logo{

        max-width:100%;

    }

    .footer-links{

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

}

@media (max-width:768px){

    .footer{

        padding:50px 0 20px;

    }

    .footer-links{

        grid-template-columns:1fr;

        gap:30px;

    }

    .footer-column h4{

        font-size:18px;

    }

    .footer-column a{

        font-size:15px;

    }

    .footer-bottom{

        flex-direction:column;

        text-align:center;

    }

    .footer-bottom-links{

        justify-content:center;

        flex-wrap:wrap;

        gap:15px;

    }

}
