
    .card-pricing-container {
        text-align: center;
        padding: 50px 20px;
    }
    .card-pricing-header {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 30px;
        color: #0F112A;
    }
    .card-pricing-grid {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }
    .card-plan{
        font-size: 20px;
        font-weight: 400;
    }
    .card-pricing-card {
        background-color: #0F112A;
        color: white;
        padding: 25px 15px 25px 10px ;
        border-radius: 30px;
        width: 380px;
        min-height: 500px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .card-pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
    }
    .card-price {
        font-size: 30px;
        font-weight: bold;
        margin: 10px 0;
    }
    .card-features {
        text-align: left;
        margin-top: 20px;
        flex-grow: 1;
    }
    .card-features li {
        font-size: 15px;
        margin: 5px 0;
        list-style-type: none;
        padding-left: 20px;
        position: relative;
    }
    .card-features li::before {
        content: "✔";
        color: #8BD005;
        position: absolute;
        left: 0;
    }
    .submitBtn {
        margin-top: 10px;
        background-color: #8BD005;
        color: #fff;
        text-decoration: none;
        border-radius: 20px;
        font-weight: bold;
        text-align: center;
        border: none;
        padding: 10px 20px;
    }

    .submitBtn:hover {
        background-color: #0F112A;
        color: white;
        border: 1px solid ;
    }



    .contact-bg{
        width: 100%;
        background-color: #0F112A;
        margin: 0;
        padding: 20px;
        border-bottom: 1px solid;
        border-top: 2px solid #0F112A;
        background-image: url('../images/banner2.jpg');
    }
    .contact-container {
        background: white;
        border-radius: 30px;
        padding: 20px;
        max-width: 600px;
        margin: 40px auto;
        text-align: center;
        box-shadow: 0px 0px 50px rgba(0, 0, 0, 0.1);
    }
    .contact-heading {
        color: #0F112A;
        font-size: 24px;
        margin-bottom: 10px;
    }
    .contact-subheading {
        color: #8BD005;
        font-size: 16px;
        margin-bottom: 20px;
    }
    .contact-form label {
        display: block;
        text-align: left;
        font-weight: bold;
        margin-top: 10px;
        color: #0F112A;
    }
    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border-radius: 5px;
        border: 1px solid #8BD005;
        outline: none;
    }
    .contact-form input[type="submit"] {
        background: #8BD005;
        color: white;
        font-weight: bold;
        cursor: pointer;
        border: none;
        margin-top: 20px;
        transition: 0.3s;
    }
    .contact-form input[type="submit"]:hover {
        background: #0F112A;
    }