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