    /* Custom styling for the steps and form */
    .step {
        display: flex;
        align-items: center;
        font-size: 1.2em;
        margin-bottom: 15px;
        justify-content: center;
    }

    .step-circle {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #ddd;
        color: #000;
        font-weight: bold;

    }

    .step-circle.active {
        background-color: #a989dc;
        color: #fff;
    }

    .step-arrow {
        width: 20px;
        height: 20px;
        margin: -11px 10px 0 10px;
        color: #7faee1;
        font-size: 30px;
    }

    .card-box {
        display: none;
    }

    .card-box.active {
        display: block;
    }

    .total-cost-box {
        background-color: #f8f9fa;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        min-height: 400px;
    }

    .total-cost-box h5 {
        color: #333;
        font-size: 1.5em;
        margin-bottom: 15px;
    }

    .total-cost-box p {
        font-size: 1.2em;
    }

    .bg-purpal {
        background-color: #ad94d6;
    }

    .bg-purpal:hover {
        background-color: #600EE4;
    }

    .card {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Style when the radio button is checked */
    .radio:checked~.card,
    .radio:focus~.card {
        box-shadow: 0 0 10px 3px rgba(128, 0, 128, 0.6);
        /* Purplish color */
        border-radius: 8px;
    }

    .radio:checked~.plan-details {
        border: none !important;
    }

    .radio:focus~.plan-details {
        box-shadow: none !important;
    }

    .img-container {
       
        /* Set the fixed height */
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        /* Ensures image doesn't overflow the container */
    }

    .img-container img {
        max-height: 100%;
        /* Adjusts to the height of the container */
        max-width: 100%;
        /* Keeps the aspect ratio */
        object-fit: contain;
        /* Ensures the image scales proportionally */
    }

    .plan-type {
        font-size: 16px !important;
    }

    .plan-details {
        margin-top: 5px;
        border: none !important;
    }

    .radio {
        top: -17px !important;
        right: 0;
    }

    /* Style for the select container */
    /* Container for the custom select dropdown */
    .custom-select-container {
        margin: 0 auto;
    }

    .custom-select {
        position: relative;
        background-color: white;
        border: 1px solid #ccc;
        border-radius: 5px;
        cursor: pointer;
    }

    .selected-options {
        padding: 10px;
        font-size: 16px;
        color: #333;
    }

    .options-container {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        border: 1px solid #ccc;
        border-top: none;
        max-height: 200px;
        overflow-y: auto;
        z-index: 100;
    }

    .custom-option {
        display: block;
        padding: 8px 10px;
        font-size: 14px;
        cursor: pointer;
    }

    .custom-option:hover {
        background-color: #f0f0f0;
    }

    input[type="checkbox"] {
        margin-right: 10px;
    }

    /* Show the options when the select is clicked */
    .custom-select.open .options-container {
        display: block;
    }

    /* Style for the selected options (checkboxes) */
    .selected-options.selected {
        color: green;
        font-weight: bold;
    }

    .right-side-div {
        position: relative;
        /* To apply the box shadow properly */
        background-color: #fff;
        /* Or any color you wish for the background */
        padding: 20px;
        /* Add padding for spacing */
        border-radius: 8px;
        /* Rounded corners for a smoother look */
            margin-bottom: 92px;
        /* Beautiful purplish box shadow with a gloss effect */
        box-shadow:
            5px 5px 15px rgba(128, 0, 128, 0.3),
            /* Purple shadow */
            inset 0 1px 3px rgba(255, 255, 255, 0.6);
        /* Glossy effect */
    }

    @supports (-webkit-appearance: none) or (-moz-appearance: none) {
        .radio:checked {
            background: #e75480;
            border-color: #e75480;
        }
    }

    .glass-effect-container {
        width: 100%;
        max-width: 500px;
        margin: 50px auto;
        padding: 20px;
        text-align: center;
    }

    .glass-textarea {
        width: 100%;
        padding: 15px;
        font-size: 16px;
        line-height: 1.5;
        background: rgba(255, 255, 255, 0.2);
        /* Semi-transparent white background */
        border: 2px solid rgba(169, 169, 169, 0.5);
        /* Subtle gray border with transparency */
        border-radius: 10px;
        backdrop-filter: blur(10px);
        /* Frosted glass effect */
        color: inherit;
        /* Text color */
        font-family: Arial, sans-serif;
        box-sizing: border-box;
        outline: none;
        transition: border-color 0.3s ease;
    }

    .illustration-radio {
        display: none;
    }


    /* Custom radio button */
    .custom-radio {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 2px solid #6e54e7;
        border-radius: 50%;
        position: relative;
        cursor: pointer;
    }

    /* Inner circle when the radio button is checked */
    .illustration-radio:checked+.custom-radio::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 10px;
        height: 10px;
        background-color: #e75480;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    /* Label styling */
    label.illustration-option {
        display: inline-block;
        cursor: pointer;
        border: 2px solid transparent;
        border-radius: 8px;
        padding: 10px;
        transition: border-color 0.3s ease;
        text-align: center;
    }

    /* Styling for the content within each option */
    .illustration-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        transition: all 0.3s ease;
    }

    /* Apply blue glossy box-shadow when the radio button is checked */
    .illustration-radio:checked+.custom-radio+.illustration-content {
        border: 2px solid #1e90ff;
        /* Blue border */
        box-shadow: 0 0 15px rgba(30, 144, 255, 0.8), 0 0 25px rgba(30, 144, 255, 0.5);
        /* Glossy blue box shadow */
        padding: 10px;
    }

    /* Optional image container styling */
    .illustration-image-container {
        width: 100%;
        height: auto;
        max-width: 200px;
    }

    .illustration-image-container img {
        height: 200px;
    }

    .illustration-label {
        text-align: center;
        padding-top: 10px;
    }

    .pagenumbers {
        /* width: 25%; */
        margin-top: 7%;
    }



    .nice-select {
        border: 2px solid #7654e7;
        border-radius: 8px;
        background-color: #fff;
        transition: border-color 0.3s ease;
        padding: 5px;
    }

    .nice-select::after {
        display: none !important;
    }

    .nice-select .list {
        right: 0 !important;
    }

    input:focus {
        color: #000;
    }

    .grid {
        display: grid;
        grid-gap: var(--card-padding);
        margin: 0 auto;
        margin-top: 40px;
        max-width: 60em;
        padding: 0;
    }

    .nav-tabs .nav-link {
     color: #5186c3;
    }

    .form-select2 {
        display: block;
        width: 100%;
        padding: 5px;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: var(--bs-body-color);
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        background-color: var(--bs-body-bg);
        background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
        background-repeat: no-repeat;
        background-position: right .75rem center;
        background-size: 16px 12px;
        border: 2px solid #e75480;
        border-radius: var(--bs-border-radius);
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

.slider-section-book-quote {
    margin-top: 150px;
}

    @media screen and (max-width: 768px) {
        .illustration-image-container img {height: 130px !important; width: 130px !important;}
        .illustration-option{margin-left: unset !important;margin-right: unset !important;}
        .pagenumbers {
            width: 100%;
        }

        .step-circle {
            width: 30px;
            height: 30px;
        }

        .step-arrow {
            font-size: 18px;
        }

        .nav {
            overflow: auto !important;
            flex-wrap: nowrap !important;
        }

        .illustration-types-container {
            --bs-gutter-x: 0.0rem;
        }

        .total-cost-box {
            min-height: 180px;
        }
    }

    @media (min-width: 42em) {
        .grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    /* Default grid layout for screens wider than 662px (3 cards per row) */
    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* 3 cards per row */
        grid-gap: var(--card-padding);
        margin: 0 auto;
        margin-top: 40px;
        max-width: 60em;
        padding: 0;
    }

    /* For screens between 425px and 662px, 2 cards per row */
    @media (max-width: 662px) and (min-width: 320px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
            /* 2 cards per row */
        }

        .fs-5 {
            font-size: 16px !important;
        }
        .grid-3-1{
            display: grid;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* For screens smaller than 425px, you can keep 1 card per row */
    @media (max-width: 319px) {
        .grid {
            grid-template-columns: 1fr;
            /* 1 card per row */
        }

        .fs-5 {
            font-size: 16px !important;
        }
    }

    /* Card styling remains the same */
    .card {
        display: inline-block;
        width: 100%;
        text-align: center;
        padding: 5px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.services-wrapper-3 .service-box-items-3 .service-thumb .service-content h4,
.services-wrapper-3 .service-box-items-3 .service-thumb .service-content p {
    margin-bottom: 0px; 
}



 .services-wrapper-3 .service-box-items-3 .service-thumb .service-content p {
    font-weight: bold;
    width: 150px;
}   

.service-prices {
 margin-top: 5px;
}

.service-prices a{
font-size:17px;
}

.total-cost-box h5{
margin-top: 10px;

}

.services-wrapper-3 .service-box-items-3::before {
    top: 0;
    left: 0;
    position: absolute;
    width: 50%;
    height: 100%;
    content: "";
    background-color: var(--white);
    bottom: 0;
    right: 0;
    z-index: 1;
    transition: all 0.4s ease-in-out;
}


.subscribe_now {
margin-bottom: 20px;
}