/* =====================================================
   AN SOFTTECHS
   POINT OF SALE (POS) PAGE CSS
===================================================== */



/* =========================
   HERO SECTION
========================= */


.pos-hero{

    padding:150px 8% 80px;

    background:#EEF6FF;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

}



.pos-content{

    max-width:650px;

}



.pos-content h1{

    font-size:55px;

    line-height:1.2;

    color:#020B2D;

    margin-bottom:25px;

}



.pos-content p{

    font-size:20px;

    color:#667085;

    line-height:1.7;

    margin-bottom:35px;

}



.pos-image img{

    width:500px;

    max-width:100%;

    transition:.4s ease;

}



.pos-image img:hover{

    transform:scale(1.05);

}







/* =========================
   WHAT WE OFFER
========================= */


.pos-offer{

    padding:80px 8%;

    background:white;

    text-align:center;

}



.pos-offer h2{

    font-size:42px;

    color:#020B2D;

    margin-bottom:50px;

}



.pos-card-container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.pos-card{

    background:white;

    padding:35px 25px;

    border-radius:20px;

    border:1px solid #eef3ff;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.4s ease;

}



.pos-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,107,255,.18);

}



.pos-card i{

    font-size:45px;

    color:#006BFF;

    margin-bottom:25px;

}



.pos-card h3{

    font-size:22px;

    color:#020B2D;

    margin-bottom:15px;

}



.pos-card p{

    color:#667085;

    line-height:1.7;

}







/* =========================
   POS FEATURES
========================= */


.pos-features{

    padding:80px 8%;

    background:#F8FBFF;

    text-align:center;

}



.pos-features h2{

    font-size:42px;

    color:#020B2D;

    margin-bottom:50px;

}



.pos-feature-grid{

    display:grid;

    grid-template-columns:repeat(5,1fr);

    gap:25px;

}



.pos-feature-grid div{

    background:white;

    padding:35px 20px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}



.pos-feature-grid div:hover{

    transform:translateY(-8px);

}



.pos-feature-grid span{

    width:60px;

    height:60px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:auto;

    margin-bottom:20px;

    background:#006BFF;

    color:white;

    border-radius:50%;

    font-size:22px;

    font-weight:bold;

}



.pos-feature-grid h3{

    color:#020B2D;

    margin-bottom:10px;

}



.pos-feature-grid p{

    color:#667085;

}







/* =========================
   BENEFITS SECTION
========================= */


.pos-benefits{

    padding:80px 8%;

    text-align:center;

}



.pos-benefits h2{

    font-size:42px;

    color:#020B2D;

    margin-bottom:50px;

}



.pos-benefits-list{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



.pos-benefits-list div{

    background:#EEF6FF;

    padding:35px 25px;

    border-radius:20px;

    transition:.3s;

}



.pos-benefits-list div:hover{

    transform:translateY(-8px);

}



.pos-benefits-list i{

    font-size:40px;

    color:#006BFF;

    margin-bottom:20px;

}



.pos-benefits-list h3{

    color:#020B2D;

    margin-bottom:15px;

}



.pos-benefits-list p{

    color:#667085;

    line-height:1.6;

}







/* =========================
   CLIENT GUIDANCE
========================= */


.pos-guide{

    padding:80px 15%;

    background:#EEF6FF;

    text-align:center;

}



.pos-guide h2{

    font-size:42px;

    color:#020B2D;

    margin-bottom:25px;

}



.pos-guide p{

    font-size:20px;

    color:#667085;

    line-height:1.8;

}







/* =========================
   FINAL CTA
========================= */


.pos-final-cta{

    margin:80px 8%;

    padding:60px;

    background:linear-gradient(135deg,#0057D9,#00C8FF);

    border-radius:30px;

    text-align:center;

    color:white;

}



.pos-final-cta h2{

    font-size:42px;

    margin-bottom:20px;

}



.pos-final-cta p{

    font-size:20px;

    margin-bottom:30px;

}



.pos-final-cta a{

    display:inline-block;

    padding:16px 35px;

    background:white;

    color:#006BFF;

    border-radius:30px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}



.pos-final-cta a:hover{

    transform:translateY(-5px);

}







/* =========================
   RESPONSIVE
========================= */


@media(max-width:1100px){


.pos-hero{

    flex-direction:column;

    text-align:center;

}



.pos-card-container{

    grid-template-columns:repeat(2,1fr);

}



.pos-feature-grid{

    grid-template-columns:repeat(2,1fr);

}



.pos-benefits-list{

    grid-template-columns:repeat(2,1fr);

}


}







@media(max-width:600px){


.pos-content h1{

    font-size:38px;

}



.pos-card-container{

    grid-template-columns:1fr;

}



.pos-feature-grid{

    grid-template-columns:1fr;

}



.pos-benefits-list{

    grid-template-columns:1fr;

}



.pos-guide{

    padding:60px 8%;

}



.pos-final-cta{

    margin:50px 5%;

    padding:40px 20px;

}


}