/*==================================================
 SOFTONIX BATCH 2
 DOWNLOAD BOX
 RELATED SOFTWARE
 AUTHOR BOX
==================================================*/


/*====================================
 PREMIUM DOWNLOAD BOX
====================================*/

.st-download-box{

    background:#ffffff;
    border-radius:22px;
    padding:30px;
    margin-bottom:30px;

    box-shadow:
    0 10px 35px rgba(15,23,42,.08);

}


.st-download-header{

    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;

}


.st-download-header img{

    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:18px;

}


.st-download-header h2{

    font-size:26px;
    font-weight:700;
    color:#111827;
    margin:0 0 8px;

}


.st-download-header p{

    margin:0;
    color:#64748b;
    font-size:15px;

}



/* Main Download Button */

.st-download-button{

    display:block;
    text-align:center;

    background:
    linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
    );

    color:#ffffff !important;

    padding:15px 25px;

    border-radius:12px;

    font-size:17px;
    font-weight:700;

    text-decoration:none;

    margin-bottom:15px;

    transition:.3s;

}


.st-download-button:hover{

    transform:translateY(-2px);

    box-shadow:
    0 10px 25px rgba(37,99,235,.35);

}



/* Official Website Button */

.st-official-button{

    display:block;

    text-align:center;

    background:#f1f5f9;

    color:#1e293b !important;

    padding:13px 20px;

    border-radius:12px;

    font-weight:600;

    text-decoration:none;

}


.st-official-button:hover{

    background:#e2e8f0;

}



/* Virus Badge */

.st-virus{

    margin-top:20px;

    background:#dcfce7;

    color:#15803d;

    padding:12px;

    border-radius:10px;

    text-align:center;

    font-weight:600;

}



/*====================================
 RELATED SOFTWARE
====================================*/


.st-related{

    background:#ffffff;

    border-radius:20px;

    padding:35px;

    margin-bottom:30px;

    box-shadow:
    0 10px 35px rgba(15,23,42,.08);

}



.st-related-grid{

    display:grid;

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

    gap:20px;

}



.st-related-card{

    background:#ffffff;

    border-radius:16px;

    overflow:hidden;

    border:1px solid #e5e7eb;

    transition:.3s;

}



.st-related-card:hover{

    transform:translateY(-5px);

    box-shadow:
    0 10px 25px rgba(15,23,42,.12);

}



.st-related-card img{

    width:100%;

    height:150px;

    object-fit:cover;

}



.st-related-card h3{

    font-size:16px;

    padding:15px;

    margin:0;

}



.st-related-card h3 a{

    color:#111827;

    text-decoration:none;

}



/*====================================
 AUTHOR BOX
====================================*/


.st-author{

    display:flex;

    align-items:center;

    gap:20px;

    background:#ffffff;

    border-radius:20px;

    padding:30px;

    margin-bottom:30px;

    box-shadow:
    0 10px 35px rgba(15,23,42,.08);

}



.st-author-image img{

    border-radius:50%;

}



.st-author h3{

    margin:0 0 8px;

    font-size:22px;

    color:#111827;

}



.st-author p{

    margin:0;

    color:#64748b;

}




/*====================================
 RESPONSIVE
====================================*/


@media(max-width:1024px){


.st-related-grid{

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

}


}



@media(max-width:768px){


.st-download-header{

    flex-direction:column;

    text-align:center;

}


.st-download-header img{

    width:90px;

    height:90px;

}



.st-related-grid{

    grid-template-columns:1fr;

}



.st-author{

    flex-direction:column;

    text-align:center;

}


}