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