.pricing-plans{
    background-color: #f6f6f8;
}

.pricing-plans-header h2{
    color: #30368F;
    font-weight: 600;
    font-size: 32px
}

.pricing-plans-header p{
    color: #2b3f61;
    width:47%;
    margin: auto;
    font-size: 18px;
}

.boxes{
    margin-top: 50px;
}

.boxes h3 {
    color: #30368F;
    font-weight: 600;
    font-size: 24px;
}

.box {
    background-color: #fff;
    border-radius: 24px;
    padding: 20px;
    min-height: 450px;
    max-width: 350px;
}

.box ul li {
    margin-bottom: 30px;
}

.box ul li i {
    color: #30368F ;
}
.box ul li span {
    color: #2b3f61;
    font-size: 14px;
    font-weight: 400;
}

.box .price{
    color: #2b3f61
}

.box button {
    background-color: #ecf3ff;
    color: #30368F;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #30368F;
    font-size: 16px;
    font-weight: 600;
}

.box:hover {
    background-color: #181059; /* Dark blue background on hover */
    transition: all 0.3s ease-in-out;
    transform: scale(1.05);
}

.box:hover h3,
.box:hover ul li span,
.box:hover .price,
.box:hover .btn {
    color: #ffffff; /* Change text color to white */
}

.box:hover ul li i {
    color: #ffffff; /* Change icon color to white */
}

.box .btn {
    background-color: #ecf3ff;
    color: #30368F;
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid #30368F;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.box:hover .btn {
    background-color: #30368F; /* Button background to white */
    color: #ffffff; /* Button text color to match hover background */
}
