.sec5{
    display:flex;
    flex-direction:column;
    align-items: center;
    justify-content: center;
    margin-top:80px;
    gap:60px;
    padding: 80px 5%;
    min-height:50vh;
    max-width: 1400px;
    margin: 80px auto 0;
}

.sec-5-1{
    display:flex;
    flex-direction:column;
    align-items:center;
}


.sec-5-1>:nth-child(1){
    font-weight:600;

}
.sec-5-2{
    display: flex;
    gap:40px;
    border:2px solid #e0e0e0;
    padding:30px 40px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sec-5-2:hover{
    border-color: darkorange;
    box-shadow: 0 10px 30px rgba(255,140,0,0.15);
    transform: translateY(-3px);
}

.a1{
    display:flex;
    align-items: center;
    gap:12px;
    transition: all 0.3s ease;
}

.a2{
    display:flex;
    align-items: center;
    gap:12px;
    transition: all 0.3s ease;
}

.a1:hover,
.a2:hover{
    color: darkorange;
    transform: scale(1.05);
}

.a1 i{
    font-size:28px;
}

.a2 i{
    font-size:28px;
}

.a1 span,.a2 span{
    font-weight:600;
    font-size: 17px;
}

@media(max-width:1024px){
    .sec5{
        padding: 60px 5%;
        min-height: 40vh;
    }
    .sec-5-2{
        gap:30px;
        padding:25px 30px;
    }
}

@media(max-width:767px){
    .sec5{
        padding: 60px 5% 40px;
        margin-top: 40px;
    }
    .sec-5-2{
        flex-direction: column;
        gap:20px;
        padding:25px 20px;
        width: 90%;
        max-width: 350px;
    }
    .a1 span,.a2 span{
        font-size: 15px;
    }
    .a1 i, .a2 i{
        font-size: 24px;
    }
}

