body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f4f4f4;
}

.indicator-container {
    display: flex;
    gap: 10px;
}

.indicator {
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 10px 20px;
    border: 2px solid;
    max-width: 200px;
    justify-content: center;
    transition: opacity 0.3s ease-in-out;
}

.online {
    background-color: #d4f8e8;
    border-color: #34a853;
    color: #34a853;
}

.offline {
    background-color: #f8d4d4;
    border-color: #ea4335;
    color: #ea4335;
}

.icon1 {
    margin-right: 10px;
}

.text-bold {
    font-weight: 800;
}

text-color {
    color: #0093c4;
}

.progress-bar-container {
    margin: 20px 0;
    width: 100%;
}

.progressbar {
    display: flex;
    justify-content: space-between;
    counter-reset: step;
    padding: 0;
    list-style-type: none;
}

.progressbar li {
    position: relative;
    text-align: center;
    font-weight: bold;
    color: #444;
    flex: 1;
}

.progressbar li::before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    border: 2px solid #ccc;
    display: block;
    text-align: center;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    background-color: white;
    color: #333;
    line-height: 27px;
}

.progressbar li.active::before,
.progressbar li.active~li::before {
    border-color: #ccc;
    color: #6A1B9A;
}

.progressbar li.active~li::after {
    background-color: #ccc;
}

.progressbar li::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    width: 100%;
    height: 4px;
    background-color: #6A1B9A;
    z-index: -1;
    transform: translateX(-50%);
}

.progressbar li:first-child::after {
    display: none;
}

.tab-content {
    display: none;
    padding: 20px;
    background-color: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.tab-content.active {
    display: block;
}

button {
    padding: 10px 20px;
    background-color: #6A1B9A;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #65a9fd;
}

/* Payment Summary and Coupon Code Styling */
.payment-summary-container {
    display: flex;
    justify-content: space-between;
    margin-top: -181px;
}

#review-checkout {
    flex: 2;
    padding-right: 20px;
}

.puja-item,
.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
    width: 551px;
}

.puja-details,
.addon-details {
    flex: 1;
    margin-left: 20px;
}

.package-subtotal,
.addon-price {
    text-align: right;
    font-weight: bold;
    color: #444;
}

.remove-btn {
    background-color: #f4f4f4;
    color: #6A1B9A;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
}

.remove-btn:hover {
    background-color: #e0e0e0;
}

.submit-btn {
    background-color: #6A1B9A;
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 3px;
    margin-top: 5px;
}

#payment-summary {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#payment-summary ul {
    list-style-type: none;
    padding: 0;
}

#payment-summary li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

#payment-summary .total {
    font-size: 18px;
    font-weight: bold;
}

.make-payment-btn {
    width: 100%;
    padding: 10px;
    background-color: #ff4081;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 20px;
}

.make-payment-btn:hover {
    background-color: #f50057;
}

.coupon-code {
    display: flex;
    margin-top: 20px;
}

.coupon-code input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    font-size: 14px;
}

.coupon-code .apply-btn {
    padding: 10px 20px;
    background-color: #6A1B9A;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

.pricing-container {
    display: flex;
    justify-content: center;
    overflow-x: auto;
}

.card {
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    width: 90%;
    max-width: 300px;
    margin: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    align-items: center;
}

.card img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin: 0 auto;
}

.card h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.card p {
    font-size: 1.2em;
    color: #666;
    margin-bottom: 20px;
}

.price-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.price-container input[type="text"] {
    font-size: 1.5em;
    color: #333;
    border-radius: 5px;
    padding: 5px 10px;
    width: 150px;
    text-align: center;
    margin-left: 5px;
    font-weight: bold;
    transition: border-color 0.3s ease;
}

.price-container input[type="text"]:focus {
    border-color: #218838;
    outline: none;
}

.checkbox-container {
    position: absolute;
    top: 10px;
    left: 10px;
}

.card:hover {
    transform: scale(1.05);
}

@media (min-width: 600px) {
    .card {
        width: 45%;
    }
}

@media (min-width: 900px) {
    .card {
        width: 30%;
    }
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

.currency-symbol {
    margin-right: 4px;
}

.form-control {
    width: 100px;
    text-align: right;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 4px;
}

/* Common styling for donation cards */
.donation-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    position: relative;
    /* For positioning the checkbox */
}

/* Checkbox container styling */
.checkbox-container {
    position: absolute;
    top: 10px;
    right: 10px;
}

.checkbox-container input[type="checkbox"] {
    display: none;
    /* Hide the default checkbox */
}

.checkbox-container .checkbox-label {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
}

.checkbox-container input[type="checkbox"]:checked+.checkbox-label {
    background: #007bff;
    /* Change to your preferred color when checked */
}

.checkbox-container .checkbox-label::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #ffffff;
    transform: translate(-50%, -50%);
    display: none;
}

.checkbox-container input[type="checkbox"]:checked+.checkbox-label::before {
    display: block;
}

.donation-card img {
    border-radius: 8px;
    margin-bottom: 15px;
}

.currency-symbol {
    font-size: 1.2em;
    color: #333;
}

.donation-card h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.description {
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}

.description:hover {
    color: #000;
    cursor: pointer;
}

.donation-footer {
    font-size: 1.2em;
    color: #333;
}

.donation-footer .currency-symbol {
    font-size: 1.5em;
}

@media (max-width: 768px) {
    .service-column {
        flex: 1 1 100%;
    }
}

.astrologer-details-container {
    padding: 5px;
    /* Reduced padding */
    background-color: #f5f5f5;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    max-width: 600px;
    /* Adjusted width */
    height: 130px;
    /* Fixed height */
    margin: 0 auto;
    /* Center the container */
    display: -webkit-inline-box;
    flex-direction: column;
    /* Ensure content is in a column layout */
    justify-content: center;
    /* Center content vertically */
}

.astrologer-info {
    display: flex;
    align-items: center;
    /* Align items vertically center */
    gap: 10px;
    /* Space between image and details */
    flex-wrap: wrap;
    /* Allow wrapping to fit within height */
}

.astrologer-image {
    border-radius: 50%;
    max-width: 110px;
    /* Adjusted image size */
    height: 106px;
    /* Fixed height to fit */
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.astrologer-details {
    text-align: left;
    /* Align text to the left */
    max-width: calc(100% - 70px);
    /* Ensure text fits within available width */
    display: flex;
    flex-direction: column;
    /* Stack text items vertically */
    justify-content: space-between;
    /* Distribute space evenly */
}

.astrologer-name {
    font-size: 16px;
    /* Reduced font size */
    margin: 2px 0;
    /* Reduced margin */
    color: #222;
}

.astrologer-experience {
    font-size: 14px;
    /* Reduced font size */
    color: #555;
    margin: 1px 0;
    /* Reduced margin */
}

.astrologer-bio {
    font-size: 8px;
    /* Reduced font size */
    color: #666;
    line-height: 1.2;
    /* Adjusted line height */
    margin-top: 2px;
    /* Reduced margin */
}

/* Responsive design */
@media (max-width: 768px) {
    .astrologer-details-container {
        padding: 4px;
        /* Further reduced padding */
        max-width: 100%;
        /* Full width on smaller screens */
    }

    .astrologer-image {
        max-width: 50px;
        /* Smaller image size */
        height: 50px;
        /* Fixed height */
    }

    .astrologer-name {
        font-size: 10px;
        /* Smaller font size */
    }

    .astrologer-experience {
        font-size: 8px;
        /* Smaller font size */
    }

    .astrologer-bio {
        font-size: 7px;
        /* Smaller font size */
    }
}

@media (max-width: 480px) {
    .astrologer-details-container {
        padding: 3px;
        /* Minimal padding */
    }

    .astrologer-image {
        max-width: 40px;
        /* Smaller image size */
        height: 40px;
        /* Fixed height */
    }

    .astrologer-name {
        font-size: 8px;
        /* Smaller font size */
    }

    .astrologer-experience {
        font-size: 7px;
        /* Smaller font size */
    }

    .astrologer-bio {
        font-size: 6px;
        /* Smaller font size */
    }
}

.description {
    position: relative;
}

.description .read-more,
.description .read-less {
    color: blue;
    text-decoration: underline;
    cursor: pointer;
}

.description .read-less {
    display: none;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.progress-bar-container .progressbar li.active {
    font-weight: bold;
}

.center1 {
    justify-content: center;
    align-items: center;
}

body {
    font-family: sans-serif;
}

.check-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image {
    width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 10px;
}

.title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.details {
    font-size: 14px;
    margin-bottom: 5px;
}

.price {
    font-size: 20px;
    font-weight: bold;
}

.addons {
    margin-top: 20px;
}

.addon-item {
    padding: 10px;
    border: 1px solid #ccc;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container-1 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* Adds space between the columns */
}

.puja-list {
    margin-bottom: 20px;
}

.puja-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.puja-item:hover {
    background-color: #f1f1f1;
}

.puja-details {
    flex-grow: 1;
    margin-left: 20px;
}

.puja-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.puja-description {
    margin-top: 5px;
    color: #666;
}

.puja-price {
    font-size: 18px;
    font-weight: bold;
    color: #528abb;
    margin-right: 20px;
}

.select-button {
    background-color: #528abb;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-button:hover {
    background-color: #1b28d8;
}

/* Add-ons Section */
.addons-section {
    margin-bottom: 20px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.addon-item:hover {
    background-color: #f1f1f1;
}

.addon-details {
    flex-grow: 1;
    margin-left: 20px;
}

.addon-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.addon-description {
    margin-top: 5px;
    color: #666;
}

.addon-price {
    font-size: 18px;
    font-weight: bold;
    color: #528abb;
    margin-right: 20px;
}

.add-addon-button {
    background-color: #528abb;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.add-addon-button:hover {
    background-color: #1b28d8;
}

/* Payment Summary */
.payment-summary {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-label {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.summary-value {
    font-size: 16px;
    font-weight: bold;
    color: #528abb;
}

.total-summary {
    border-top: 2px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
}

.make-payment-button {
    width: 100%;
    padding: 15px;
    background-color: #528abb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.make-payment-button:hover {
    background-color: #1b28d8;
}

/* Coupon Section */
.coupon-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.coupon-section input {
    width: 75%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 16px;
}

.coupon-section button {
    width: 20%;
    padding: 10px 20px;
    background-color: #528abb;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.coupon-section button:hover {
    background-color: #1b28d8;
}

.coupon-applied {
    margin-top: 10px;
    font-size: 14px;
    color: #388e3c;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 20px;
    }

    .puja-item,
    .addon-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-item,
    .coupon-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-section input {
        width: 100%;
        margin-bottom: 10px;
    }

    .coupon-section button {
        width: 100%;
    }
}


.progress-bar1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #adc5f1;
    padding: 10px;
    border-radius: 5px;
    position: relative;
}

.step1 {
    text-align: center;
    flex: 1;
    position: relative;
}

.step1:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    height: 2px;
    background-color: #92c1db;
    width: 100%;
    z-index: -1;
}

.circle1 {
    width: 30px;
    height: 30px;
    background-color: #92c1db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-weight: bold;
    margin: 0 auto;
}

.step1.active .circle1 {
    background-color: #2a3fb8;
}

.step1.completed .circle1 {
    background-color: #cedef0;
    color: #2a3fb8;
}

.step1.completed::after {
    background-color: #cedef0;
}

.newss1 {
    margin: 20px;
    display: flex;
    justify-content: space-between;
}

news {
    padding: 10px 20px;
    background-color: #0427ec;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

news:disabled {
    background-color: #c5b2c9;
    cursor: not-allowed;
}

.container1 {
    display: none;
    background-color: #fff;
}

.container1.active {
    display: block;
}

.combined-container1 {
    margin-bottom: 80px;
    /* Space for fixed payment summary */
}

.payment-summary1 {
    padding: 10px;
    background-color: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 5px;
    position: fixed;
    bottom: 20px;
    width: calc(100% - 40px);
    left: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container1 input,
.container1 select,
.container1 textarea {
    margin-top: 10px;
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
}


.urgent-message {
    color: #ff0000;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    animation: text-blink 2s infinite;
    height: 42px;
    width: 250px;
    margin-top: 7px;
}

@keyframes text-blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

#countdown {
    font-size: 14px;
    margin-top: 20px;
}

#action-button:disabled {
    background-color: grey;
    cursor: not-allowed;
}

.row1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Space between columns */
}

.addons-section {
    flex: 1;
    min-width: 300px;

}

.payment-summary {
    flex: 1;
    min-width: 300px;
    margin: 62px;
    margin-top: 76px
}

.addon-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    width: 672px;
}

.addon-details {
    display: flex;
    align-items: center;
    gap: 10px;
}

.addon-title {
    font-weight: bold;
}

.add-addon-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.make-payment-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.total-summary {
    font-weight: bold;
}

.summary-label {
    font-size: 16px;
}

.summary-value {
    font-size: 16px;
}

.payment-summary {
    font-family: Arial, sans-serif;
}

.summary-item {
    margin-bottom: 10px;
}

.summary-label {
    font-weight: bold;
}

.summary-value {
    font-size: 1.2em;
}

.payment-method-section {
    margin-top: 20px;
}

.payment-method-section label {
    display: block;
    margin-bottom: 10px;
}

.wallet-balance {
    display: none;
    margin-top: 20px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    text-align: center;
}

.wallet-balance img {
    width: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.make-payment-button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1.2em;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.make-payment-button:hover {
    background-color: #0056b3;
}

.container-box {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* General Styles */
h2 {
    color: orange;
    font-size: 17px;
    margin-bottom: 20px;
}

.puja-list1,
.addons-section1,
.payment-summary11 {
    margin-inline: 21px;
}

.puja-item1,
.addon-item1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    background-color: #f7f9fc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.puja-item1:hover,
.addon-item1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.puja-title1,
.addon-title1 {
    font-size: 15px;
    font-weight: bold;
    color: #1b28d8;
}

.puja-description1,
.addon-description1 {
    margin-top: 5px;
    color: #888;
}

.puja-price1,
.addon-price1 {
    font-size: 16px;
    font-weight: bold;
    color: green;
    margin-right: 20px;
}

.select-button1,
.add-addon-button1 {
    background: linear-gradient(120deg, #528abb, #1b28d8);
    border: none;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.select-button1:hover,
.add-addon-button1:hover {
    background: linear-gradient(120deg, #1b28d8, #528abb);
    transform: translateY(-2px);
}

.remove-addon-button1 {
    background: #ff5f5f;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 14px;
}

.remove-addon-button1:hover {
    background: #ff3d3d;
}

.summary-item1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-label1 {
    font-size: 13px;
    font-weight: bold;
    color: #555;
}

.summary-value1 {
    font-size: 18px;
    font-weight: bold;
    color: green;
}

.total-summary1 {
    border-top: 2px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}

.make-payment-button1 {
    width: 100%;
    padding: 15px;
    background: linear-gradient(120deg, #ff5f5f, #ff9f9f);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.make-payment-button1:hover {
    background: linear-gradient(120deg, #ff9f9f, #ff5f5f);
    transform: translateY(-2px);
}

.coupon-section1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-inline: 21px;
}

.coupon-section1 input {
    width: 75%;
    padding: 12px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 16px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.coupon-section1 button {
    width: 20%;
    padding: 12px;
    background: linear-gradient(120deg, #528abb, #1b28d8);
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.coupon-section1 button:hover {
    background: linear-gradient(120deg, #1b28d8, #528abb);
    transform: translateY(-2px);
}

.coupon-applied1 {
    margin-top: 10px;
    font-size: 14px;
    color: #388e3c;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container12 {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .puja-item1,
    .addon-item1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-item1,
    .coupon-section1 {
        flex-direction: column;
        align-items: flex-start;
    }

    .coupon-section1 input {
        width: 100%;
        margin-bottom: 10px;
    }

    .coupon-section1 button {
        width: 100%;
    }
}

.modal1 {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal1-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.close-modal1 {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-modal1:hover,
.close-modal1:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal1-summary-item1 {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.confirm-payment-button1 {
    background: #1b28d8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s ease;
}

.confirm-payment-button1:hover {
    background: #528abb;
}

.payment-method1s1 {
    margin-top: 20px;
}

.payment-method1 {
    margin-bottom: 10px;
}

.wallet-info1 {
    margin-top: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f9f9f9;
}

.row {
    display: flex;
    justify-content: center;
}

.column {
    flex: 3;
    min-width: 0;
}

.round3 {
    border: 1px solid gray;
    border-radius: 12px;
    padding: 5px;
    margin-left: 150px;
}

.round4 {
    border: 1px solid gray;
    border-radius: 12px;
    padding: 5px;
    margin-right: 150px;
    margin-left: 90px;
}

.column1 {
    flex: 1.5;
    min-width: 0;
}