@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.4;
    font-weight: normal;
    color: #000000;
}
.heading,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700; /* Adjust as needed */
}
p:last-child {
    margin-bottom: 0;
}


.btn-primary {
    background: #008cdd;
    border-color: #008cdd;
}
.btn-primary:hover {
    background: #006fa1;
    border-color: #006fa1;
}


.form-control,
input.form-control {
    background-color: white;
    border-radius: 4px; /* Set to 4px globally */
    border: 1px solid #e6ebf1;
    color: #32325d;
    font-size: 16px;
    padding: 12px 16px;
    line-height: 24px;
    height: 44px;
    box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.15), 0 1px 0 0 rgba(0, 0, 0, 0.02);
    transition: box-shadow 150ms ease;
}

.form-control:focus,
input.form-control:focus {
    box-shadow: 0 1px 3px 0 rgba(50, 50, 93, 0.1), 0 1px 0 0 rgba(0, 0, 0, 0.06);
    border-color: #008cdd;
    outline: none;
}

.form-control::placeholder,
input.form-control::placeholder,
.form-control::-webkit-input-placeholder,
.form-control:-ms-input-placeholder {
    color: #aab7c4; 
}






/* Page Banner  */
.page-banner {
    background: #f7f7f7;
    color: #fff;
    padding-top: 50px;
    height: 90px;
    /* padding-bottom: 0px;  */
    /* border-bottom: 2px solid #DEDEDE;  */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  */
    border: 1px solid #DEDEDE;
}
.page-title {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #999999;
    padding-left: 20px;
    /* text-align: center; */
}

/* Payment Sec */
.payment-sec {
    padding: 60px 0;
}
.payment-sec .col-md-6 {
    display: flex;
    flex-direction: column;
}

.payment-sec .col-md-6 > div {
    flex: 1; /* Ensures the content takes up the available space */
}

/* Force spacing on mobile between cards */
@media screen and (max-width: 576px) {
    .payment-sec .col-12 {
        margin-bottom: 20px !important; /* Force space between cards */
        padding-left: 15px;
        padding-right: 15px;
    }

    .payment-sec .col-12:last-child {
        margin-bottom: 0 !important; /* No extra margin for the last card */
    }

    /* Ensure row has no unwanted margin */
    .row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media screen and (min-width: 576px) {
    .payment-sec .col-md-6 {
        margin-bottom: 20px;
    }
}

.hr-line {
    border: 0;
    border-top: 1px solid #333; /* Thicker and darker line */
    margin: 30px 0; /* Adds padding above and below the line */
    padding: 0;
    width: 100%;
}

.sub-title {
    font-size: 0.9em;
    color: #999999;
}



.list-container .list-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 35px;
}
.list-container .list-item .list-icon {
    position: absolute;
    left: 0;
}
.list-container .list-item .list-icon img {
    max-width: 23px;
}
.list-container .list-item .list-text {
    /* font-weight: 600; */
    /* font-size: 18px; */
    line-height: 29px;
}

/* Updated payment card */
.payment-card {
    background-color: white; /* White background */
    padding: 20px; /* Add padding for spacing inside the card */
    border-radius: 8px; /* Optional: adds rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: adds a slight shadow */
    border: 1px solid #DEDEDE; /* Keep the border */
}

.payment-card .payment-amount {
    color: #000B50;
    font-size: 35px;
    line-height: 43px;
    margin-bottom: 30px;
}
.card-details-title {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.card-details-title p {
    margin-left: 11px;
    font-weight: 600;
    font-size: 16px;
}

.embedded_url {
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: flex;
    justify-content: center;
    height: 300px;
}

#embedFrame {
    max-height: 1000px;
    /* width: 500px;  */
    width: 100%;
    margin: auto; /* Center the iframe */
}


.payment-card form {
    border-top: 1px solid #E1E1E1;
    padding-top: 30px;
    margin-top: 30px;
}
.payment-card .form-control {
    height: 52px;
    padding: 8px 25px;
}
.submitbtn {
    padding: 13px;
    font-weight: 600;
}

select.form-control {
    background-image: url(../images/down-arrow.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 97% center;
    color: #008cdd;
}
select.form-control:focus {
    color: #008cdd;
}

@media screen and (max-width: 767px) {
    .page-banner {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .page-title {
        font-size: 26px;
    }
    .list-container .list-item .list-text {
        /* font-size: 14px; */
        line-height: 20px;
        margin-bottom: 35px;
    }
    .list-container .list-item {
        margin-bottom: 20px;
    }
    .payment-card {
        padding: 20px;
    }
    .payment-card .payment-amount {
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 20px;
    }
    .payment-card form {
        padding-top: 20px;
        margin-top: 20px;
    }
    .payment-card .form-control {
        height: 52px;
        padding: 7px 15px;
    }
    .payment-sec {
        padding: 40px 0;
    }
}
