* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'JCBEuro';
    src: url(/fonts/JCBEL___.ttf) format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: 'JCBEuro-Bold';
    src: url(/fonts/JCBEB___.ttf) format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    /* usually bold weight */
}

@font-face {
    font-family: 'JCBEuro-Roman';
    src: url(./fonts/JCBER___.ttf) format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    font-stretch: condensed;
}

@font-face {
    font-family: 'JCBEuro-Bold-Condensed';
    src: url(/fonts/JCBEBC__.ttf) format("truetype");
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    font-stretch: condensed;
}

body {
    background: #f2f2f2;
    margin: 0;
    padding: 0;
    font-family: 'JCBEuro', sans-serif;
    font-weight: 400;
}

ul, li {
    list-style: none;
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

p {
    margin: 0;
}

.container {
    max-width: 1150px;
    margin: auto;
    padding: 0 15px;
}

header {
    background-color: #F9AE26;
    padding: 10px 0;
}

header .container {
    max-width: 1600px;
    padding: 0 32px;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    width: 130px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'JCBEuro-Bold';
    margin: 0;
    padding: 0;
}

header h1 {
    font-size: 24px;
    line-height: 34px;
    color: #000;
    margin: 0;
    font-family: 'JCBEuro-Bold';
}

.sub-heading {
    font-size: 40px;
    line-height: 50px;
    color: #000;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 50px;
    text-align: center;
}

.sub-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-bottom: 2px solid #000;
}

.sub-text {
    font-weight: 600;
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 20px;
}

.jcb-form {
    padding: 6px 0;
}

.row-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.full-col {
    flex: 1 1 100%;
    max-width: 100%;
}

.half-col {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
}

.form-group {
    width: 100%;
}

input[type="text"],
input[type="email"],
select, textarea {
    padding: 0 18px;
    border: 1px solid #ccc;
    border-radius: 8px;
    height: 60px;
    font-size: 18px;
    line-height: 28px;
    width: 100%;
    font-family: 'JCBEuro', sans-serif;
    font-weight: 600;
    color: #000;
}

::placeholder {
    font-family: 'JCBEuro', sans-serif;
    font-weight: 600;
}

textarea {
    resize: none;
    padding: 5px 12px;
}

:focus {
    outline: none;
}

select {
    color: #BCBCBC;
    /* background: #fff url(./img/down-arrow.svg) no-repeat right center; */
    -webkit-appearance: none;
    appearance: none;
    /* position: relative; */
}

select option {
    color: #000;
    font-family: 'JCBEuro', sans-serif;
    font-weight: 600;
}

.select-before {
    position: relative;
}

.select-before::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    background: url(./img/down-arrow.svg) no-repeat;
    width: 21px;
    height: 10px;

}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.turnover-box {
    background: #F9F9F9;
    border-radius: 8px;
    border: 1px solid #ECECEC;
}

.top-box {
    background: #F9AE26;
    padding: 15px 30px;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.address-input input:first-child {
    margin-bottom: 10px;
}

.turnover-box h2 {
    font-size: 24px;
    line-height: 34px;
    font-family: 'JCBEuro-Bold';
    text-align: center;
    margin: 0;
    color: #fff;
}

.bottom-box {
    padding: 24px 36px;
}

.submit-btn {
    margin-top: 40px;
    background: #fcb900;
    border: none;
    padding: 12px 20px;
    font-size: 18px;
    height: 60px;
    max-width: 450px;
    width: 100%;
    cursor: pointer;
    border-radius: 8px;
    font-family: 'JCBEuro-Bold';
    width: 100%;
}

input[type="radio"] {
    accent-color: #008442;
}

label {
    font-family: 'JCBEuro-Bold';
    font-size: 18px;
    line-height: 28px;
    color: #181818;
    display: block;
    margin-bottom: 8px;
}

::placeholder {
    color: #BCBCBC;
    font-size: 18px;
    line-height: 28px;
}

.black-box .top-box {
    background: #F9AE26;
}

.black-box .top-box h2 {
    color: #fff;
    text-align: left;
}

.toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    background-color: #007c3e;
    border-radius: 34px;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: 0.4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 2.4px;
    top: 2.4px;
    background-color: white;
    border-radius: 50%;
    transition: 0.4s;
}

/* Checked state */
.switch input:checked+.slider:before {
    transform: translateX(23px);
}

/* Optional: change background when checked */
.switch input:checked+.slider {
    background-color: #007c3e;
}

.document-box .bottom-box {
    padding: 0;
}

.document-table-box .top-header {
    background: #F8F8F8;
}

.table-flex {
    display: flex;
    background: #fff;
    padding: 20px 30px;
    border-bottom: 1px solid #BCBCBC80;
}

.table-list .table-flex:nth-child(even) {
    background: #F8F8F8;
}

.table-list .table-flex:last-child {
    border-bottom: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.text, .title {
    font-size: 18px;
    line-height: 28px;
}

.table-col .title {
    font-family: 'JCBEuro-Bold';
}

.table-col:nth-child(1) {
    flex: 0 0 30%;
}

.table-col:nth-child(2) {
    flex: 0 0 40%;
}

.table-col:nth-child(3) {
    flex: 0 0 30%;
}

.upload-btn {
    display: inline-block;
    padding: 8px 32px;
    background-color: transparent;
    /* JCB green */
    color: #BCBCBC;
    font-family: 'JCBEuro', sans-serif;
    font-size: 16px;
    line-height: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border: 1px solid #BCBCBC;
    border-radius: 8px;
    margin: 0;
}

.upload-btn:hover {
    background-color: #005e2f;
    color: #fff;
}

.upload-btn input[type="file"] {
    display: none;
}

.file-name {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    font-family: 'JCBEuro', sans-serif;
    word-break: break-word;
    display: none;
    position: absolute;
    bottom: -20px;
}


.inner-upload-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.inner-upload-flex .left-side {
    position: relative;
    width: 50%;
}

.inner-upload-flex .right-side ul {
    display: inline-flex;
    align-items: center;
    border-bottom: 1px solid #04C0E9;
}

.inner-upload-flex .right-side ul li button {
    background: transparent;
    color: #04C0E9;
    border: none;
    cursor: pointer;
    font-family: 'JCBEuro-Bold';

}

.inner-upload-flex .right-side ul li {
    position: relative;
}

.inner-upload-flex .right-side ul li:first-child:before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 0;
    height: 100%;
    border: 1px solid #04C0E9;
}

.flex-terms {
    display: flex;
    align-items: center;
    gap: 10px;
}

.flex-terms input {
    width: 16px;
    height: 16px;
    accent-color: #5DB075;
    border: 1px solid #4B9460;
    border-radius: 4px;
    margin: 0;
    color: #fff;
}

.flex-terms label {
    margin: 0;
    color: #666666;
    font-size: 14px;
    line-height: 24px;

}

.flex-terms label a {
    text-decoration: none;
    color: #04C0E9;
}

.product-check-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.checkbox-input {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hide the default checkbox */
.checkbox-input input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
}

/* Add the checkmark when checked */
.checkbox-input input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 3px;
    height: 8px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}


.checkbox-input label {
    margin-bottom: 0;
    font-family: 'JCBEuro', sans-serif;

}



.popup-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    overflow-y: auto;
    display: none;
}

.pop-content {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 850px;
    margin: 0 auto;
    max-height: 95vh;
    overflow-y: auto;
    position: relative;
}

.pop-content .inner-thank-box img {
    margin: auto;
}

.pop-content .inner-thank-box {
    text-align: center;
}

.pop-content .inner-thank-box .content .heading-text {
    font-family: 'JCBEuro-Bold';
    font-size: 34px;
    line-height: 44px;
    color: #292526;
}

.pop-content .inner-thank-box .content .desc {
    font-size: 18px;
    line-height: 28px;
    color: #4E4E4E;
}

.close-btn {
    background: transparent;
    border: none;
    position: absolute;
    right: 45px;
    top: 23px;
    cursor: pointer;
}

form .error {
    font-size: 14px;
    color: red;
}

footer {
    padding: 1rem 0;
    background-color: #000;
    color: #fff;
}

.footer-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.c-footer__extra-list {
    display: flex;
    align-items: center;
}

.c-footer__extra-list-item {
    margin-right: .875em;
}

.c-footer__extra a {
    color: #fff;
    text-decoration: none;
}

.term-condtion-sec {
    padding: 40px 0 100px;
}

.term-condtion-sec h2 {
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 24px;
}

.term-condtion-sec .desc {
    font-family: 'JCBEuro-Roman';
    font-size: 24px;
    line-height: 34px;
}

.term-content-box {
    margin-top: 40px;
}

.term-content-box .inner-content-box {
    margin-bottom: 40px;
}

.term-content-box .inner-content-box h3 {
    font-family: 'JCBEuro-Bold-Condensed';
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
    text-transform: capitalize;

}

.term-content-box .inner-content-box ul {
    margin-left: 28px;
    margin-bottom: 16px;

}

.term-content-box .inner-content-box ul li {
    list-style: disc;
    font-size: 24px;
    line-height: 34px;
}

.term-content-box .inner-content-box p {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
}

.term-content-box .inner-content-box ul ul {
    margin-top: 24px;

}

.term-content-box .inner-content-box ul li:not(:last-child) {
    padding-bottom: 16px;
}