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