body{
    font-family: 'Poppins', sans-serif;
}

/* HERO */
.download-hero{
    background: linear-gradient(45deg, #0077b6, #023e8a);
    padding:90px 0;
}

/* GRID BACKGROUND */
.download-grid{
    background:#111827;
}

/* CARD */
.download-card{
    background: rgba(255,255,255,0.05);
    padding:40px 25px;
    border-radius:20px;
    color:#fff;
    transition:0.4s ease;
    border:1px solid rgba(255,255,255,0.1);
}

.download-card:hover{
    transform: translateY(-12px);
    box-shadow:0 25px 60px rgba(0,0,0,0.6);
}


/* ICON */
.icon-circle{
    width:70px;
    height:70px;
    margin:auto;
    background:linear-gradient(45deg,#00b4d8,#0077b6);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;
}

/* BUTTON */
.btn-download{
    background:linear-gradient(45deg,#00b4d8,#0077b6);
    color:#fff;
    border:none;
    padding:10px 28px;
    border-radius:40px;
    font-weight:600;
}

.btn-download:hover{
    background:linear-gradient(45deg,#0077b6,#023e8a);
    transform:scale(1.05);
}

/* WhatsApp */
.whatsapp-float{
    position:fixed;
    bottom:20px;
    left:20px;
    z-index:999;
}

.whatsapp-float img{
    width:60px;
    height:60px;
}

/* Footer */
.main-footer{
    background:#0f172a;
    color:#cbd5e1;
    padding:70px 20px 30px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    gap:40px;
    flex-wrap:wrap;
}

.footer-box{
    flex:1;
    min-width:250px;
}

.footer-box h3,
.footer-box h4{
    color:#ffffff;
    margin-bottom:15px;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
    font-size:13px;
    color:#94a3b8;
}