.serviceBannerBox{
    height: fit-content;
    width: 100%;
    display: flex;
    padding: 60px;
    align-items: center;
    background: linear-gradient(135deg, #2ea8ff, #4d7fff);
}
.serviceBannerBox h1{
    font-weight: bold;
    font-size: 50px;
    color: white;
    line-height: 60px;
}
.serviceBannerBox h2{
    font-size: 30px;
    color: white;
    font-size: 22px;
    font-weight: normal;
}
.serviceBannerBox p{
    font-size: 18px;
    color: white;
}
.serviceBannerBox-left{
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.serviceBannerBox-right{
    width: 50%;
    display: flex;
    justify-content: right;
}




.cardBox{
    padding: 60px;
    display: flex;
    flex-direction: column;
    background-color: #fafafa;
    gap: 10px;
}
.cardBox h2{
    font-size: 30px;
}
.cardBox p{
    font-size: 18px;
    line-height: 33px;
}
.gridBox{
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 30px;
    margin: 30px 0 0 0;
}
.gridCard{
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    background-color: white;
    text-decoration: none;
    color: black;
}
.gridCard:hover{
    color: black;
    text-shadow: none;
}
.gridCard img{
    height: 40px;
    width: 40px;
    filter: brightness(0) saturate(100%) invert(16%) sepia(95%) saturate(749%) hue-rotate(205deg) brightness(91%) contrast(90%);
}



.cardListBox{
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 60px;
}
.cardListBox h2{
    font-size: 30px;
}
.cardListBox p{
    font-size: 18px;
    line-height: 33px;
}
.listCard{
    display: flex;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.listCard-left{
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #2ea8ff, #4d7fff);
    gap: 10px;
    width: 25%;
    align-items: center;
    justify-content: center;
}
.listCard-left h3{
    text-align: center;
}
.listCard-right{
    width: 75%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.listCard-left img{
    height: 50px;
    width: 50px;
}




.formBox{
    display: flex;
    flex-direction: column;
    padding: 60px;
    gap: 30px;
}
.formBox h2{
    font-size: 30px;
}
.formBox p{
    font-size: 18px;
    line-height: 33px;
}
.colBox{
    display: flex;
}
.formBox-column{
    width: 100%;
    display: grid;
    gap: 30px;
    grid-template-columns: auto auto;
}
.listerDiv{
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}


@media screen and (max-width:1200px) {
    .serviceBannerBox{
        justify-content: center;
        flex-direction: column-reverse;
    }
    .serviceBannerBox-left h1,
    .serviceBannerBox-left h2,
    .serviceBannerBox-left p,
    .cardBox h2,
    .cardBox p,
    .gridCard h3,
    .cardListBox p,
    .cardListBox h2,
    ul, ol,
    .formBox h2,
    .listerDiv h3,
    .listerDiv p
    {
        text-align: center;
    }
    .serviceBannerBox-left h1{
        font-size: 40px;
    }
    .gridBox, .formBox-column{
        grid-template-columns: auto;
    }
    .gridCard{
        align-items: center;
    }
    .gridCard img{
        
    }
    .btnBox{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }
    .listCard{
        flex-direction: column;
    }
    .serviceBannerBox-right{
        width: 100%;
        justify-content: center;
    }
    .listCard-left{
        width: 100%;
        padding: 30px;
    }
    .listCard-right{
        width: 100%;
    }
    .serviceBannerBox-left{
        width: 100%;
    }
    
}
@media screen and (max-width:400px) {
    .serviceBannerBox,
    .cardBox,
    .formBox{
        padding: 20px;
    }
}