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