/* ==========================================
   Google Font
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ==========================================
   Global
========================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f5f7fa;
    color:#333;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

/* ==========================================
   Hero
========================================== */

.hero{
    background:linear-gradient(135deg,#1976d2,#0d47a1);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.logo{
    width:120px;
    height:120px;
    border-radius:28px;
    background:#fff;
    padding:10px;
    margin:auto;
    margin-bottom:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.2);
}

.hero h1{
    font-size:48px;
    font-weight:700;
    margin-bottom:15px;
}

.hero p{
    max-width:780px;
    margin:auto;
    margin-bottom:18px;
    opacity:.95;
    font-size:18px;
}

/* ==========================================
   Container
========================================== */

.container{
    max-width:1200px;
    margin:auto;
    padding:70px 20px;
}

/* ==========================================
   Button
========================================== */

.btn{

    display:inline-block;
    margin-top:20px;

    padding:16px 34px;

    background:#34a853;

    color:#fff;

    text-decoration:none;

    border-radius:10px;

    font-weight:600;

    transition:.3s;

    box-shadow:0 8px 25px rgba(52,168,83,.3);

}

.btn:hover{

    transform:translateY(-3px);

    background:#2d9149;

    box-shadow:0 15px 30px rgba(52,168,83,.4);

}

/* ==========================================
   Stats
========================================== */

.stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin:60px 0;

}

.stat{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    transition:.3s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.stat:hover{

    transform:translateY(-8px);

}

.stat h2{

    font-size:38px;

    color:#1976d2;

    margin-bottom:8px;

}

.stat p{

    color:#777;

}

/* ==========================================
   Feature Cards
========================================== */

.grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

    margin-top:40px;

}

.card{

    background:#fff;

    border-radius:18px;

    padding:30px;

    transition:.3s;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.card:hover{

    transform:translateY(-10px);

}

.card h3{

    color:#1976d2;

    margin-bottom:15px;

    font-size:22px;

}

.card p{

    color:#666;

}

/* ==========================================
   Screenshot Gallery
========================================== */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
    gap:30px;
    justify-items:center;
    margin-top:40px;
}

.phone{
    width:170px;
    transition:.3s ease;
}

.phone:hover{
    transform:translateY(-8px) scale(1.03);
}

.screen{
    overflow:hidden;
}

.screen img{
    width:100%;
    height:auto;
    display:block;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
}


/* ==========================================
   Headings
========================================== */

h2{

    font-size:36px;

    text-align:center;

    color:#1976d2;

    margin-bottom:30px;

}

.mt{

    margin-top:80px;

}

/* ==========================================
   Footer
========================================== */

footer{

    margin-top:100px;

    background:#1f2937;

    color:#fff;

    text-align:center;

    padding:60px 20px;

}

footer p{

    margin-bottom:10px;

}

footer a{

    color:#90caf9;

    text-decoration:none;

}

footer a:hover{

    text-decoration:underline;

}

/* Support Text Left */
.support-title{
    text-align:center;
}

/* Quick Links */

.quick-links{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
    margin-top:25px;
}

.quick-links a{

    text-decoration:none;
    color:#1976d2;

    background:#fff;

    padding:14px 24px;

    border-radius:10px;

    box-shadow:0 8px 20px rgba(0,0,0,.08);

    transition:.3s;
}

.quick-links a:hover{

    transform:translateY(-5px);

}

/* ==========================================
   Responsive
========================================== */

@media (max-width:992px){

    .gallery{
        grid-template-columns:repeat(3,1fr);
    }

    .phone{
        width:160px;
    }

}

@media (max-width:768px){

    .hero{
        padding:70px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:16px;
    }

    .logo{
        width:100px;
        height:100px;
    }

    h2{
        font-size:30px;
    }

    .container{
        padding:50px 15px;
    }

    .gallery{
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .phone{
        width:145px;
    }

}

@media (max-width:480px){

    .gallery{
        grid-template-columns:repeat(2,1fr);
    }

    .phone{
        width:130px;
    }

}
