@font-face {
    font-family: 'bold';
    src: url(../fonts/JCBEB___.woff2);
}

@font-face {
    font-family: 'boldCondensed';
    src: url(../fonts/JCBEBC__.woff2);
}

@font-face {
    font-family: 'bolditalic';
    src: url(../fonts/JCBEBI__.woff2);
}

@font-face {
    font-family: 'extraBold';
    src: url(../fonts/JCBEEB__.woff2);
}

@font-face {
    font-family: 'extraBoldCondensed';
    src: url(../fonts/JCBEXBC_.woff2);
}

@font-face {
    font-family: 'ultraBold';
    src: url(../fonts/JCBEUB__.woff2);
}

@font-face {
    font-family: 'italic';
    src: url(../fonts/JCBEI___.woff2);
}

@font-face {
    font-family: 'light';
    src: url(../fonts/JCBEL___.woff2);
}

@font-face {
    font-family: 'roman';
    src: url(../fonts/JCBER___.woff2);
}

@font-face {
    font-family: 'romanCondensed';
    src: url(../fonts/JCBERC__.woff2);
}

@font-face {
    font-family: 'square';
    src: url(../fonts/Square721\ BdEx\ BT\ Bold.woff2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roman';
}

html,
body {
    width: 100%;
    height: 100%;
}

:root {
    --orange: #FCB025;
    --black: #000;
    --overlaybg: #00000082;
    --white: #ffffff;
    --lightgray: #F2F2F2;
}


/*----======== SIGNUP FORM START =========----*/

.form_bg {
    width: 100%;
    min-height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Prevent body scroll when form is open */
body.no-scroll {
    overflow: hidden;
    height: 100dvh;
}

.signup_btn {
    background-color: var(--orange);
    color: var(--black);
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.signup_btn:hover {
    opacity: 0.9;
}

.signup_btn:active {
    scale: 0.98;
}

.form-overlay {
    width: 100vw;
    height: 100dvh;
    min-height: 100dvh;
    position: fixed;
    z-index: 1050;
    top: 0;
    left: 0;
    background-color: var(--overlaybg);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-overlay.active {
    pointer-events: auto;
    opacity: 1;
}

.form-container {
    max-width: 60%;
    width: 94vw;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 16px 0 rgba(0, 0, 0, 0.18);
    /* scale: 0; */
    position: relative;
    margin: 32px auto;
    transition: all 0.5s cubic-bezier(.39, .18, .05, 1.04);
    transition-delay: 0.2s;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.form-overlay.active .form-container {
    scale: 1;
}

.form-header {
    background-color: var(--black);
    color: var(--white);
    padding: 22px 26px 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.form-header h1 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.close-btn {
    background: none;
    border: none;
    color: var(--black);
    font-size: 1.6rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3%;
    right: 3%;
    transition: opacity 0.3s;
    z-index: 10;
}

.close-btn:hover {
    opacity: 0.7;
}

.form-content {
    padding: 28px 22px 28px 22px;
}

.position-relative {
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 22px;
}

.form-group1 {
    display: flex;
    flex-direction: column;
}

.form-group1 label {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #111;
}

.form-group1 input,
.form-group1 select {
    width: 100%;
    min-width: 0;
    padding: 11px 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    color: #23292f;
    background-color: #fafafa;
    transition: border-color 0.3s;
    appearance: none;
}

.form-group1 input:focus,
.form-group1 select:focus {
    outline: none;
    border-color: var(--orange);
    background-color: #fff;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '⌄';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #9ca3af;
    font-size: 16px;
}

.select-wrapper select {
    width: 100%;
    cursor: pointer;
    padding-right: 38px;
}

.mobile-input-wrapper {
    position: relative;
}

.mobile-input-wrapper input {
    padding-left: 56px;
}

.country-code {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.submit_btn {
    width: 100%;
    padding: 0.7rem 0;
    color: var(--black);
    background-color: var(--orange);
    border-radius: 7px;
    border: none;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 17px;
    font-weight: 500;
    letter-spacing: .01em;
    margin-top: 6px;
}

.submit_btn:active {
    scale: 0.99;
}

/* Tablet Breakpoint */
@media (max-width: 900px) {
    .form-container {
        max-width: 98vw;
    }

    .form-content {
        padding: 20px 12px 20px 12px;
    }
}

/* Mobile and small tablet */
@media (max-width: 768px) {
    .form-container {
        width: 98vw;
        max-width: 98vw;
        min-width: 0;
        margin: 12px auto;
    }

    .form-header {
        padding: 16px 16px 13px 15px;
    }

    .form-header h1 {
        font-size: 1.1rem;
    }

    .form-content {
        padding: 18px 8px 18px 8px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 18px;
    }

    .close-btn {
        top: 3%;
        right: 3%;
        font-size: 1.5rem;
        width: 28px;
        height: 28px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .form-container {
        width: 99vw;
        max-width: 99vw;
        border-radius: 0px;
        min-height: 0;
        margin: 0 auto;
    }

    .form-content {
        padding: 10vw 3vw 8vw 3vw;
    }

    .form-row {
        margin-bottom: 14px;
        gap: 13px;
    }

    .form-group1 label {
        font-size: 12px;
    }

    .form-group1 input,
    .form-group1 select {
        font-size: 13px;
        padding: 10px 12px;
    }

    .submit_btn {
        font-size: 15px;
        padding: 0.65rem 0;
    }
}

/* Max heights handling for mobile landscape, safe areas */
@media (max-width: 600px) and (orientation: landscape) {

    .form-overlay,
    .form-overlay.active {
        min-height: 100dvh;
        height: 100dvh;
        align-items: flex-start;
    }

    .form-container {
        margin-top: 18px;
        margin-bottom: 18px;
    }
}

/*----======== SIGNUP FORM END =========----*/


/*----======== DOWNLOAD BROCHURE FORM START =========----*/

body.no-scroll {
    overflow: hidden;
}

.trigger-btn {
    background: #1a1a1a;
    color: white;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px;
}

.trigger-btn:hover {
    background: #333;
}

.form-overlay2 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.form-overlay2.active {
    display: flex;
    background: rgba(0, 0, 0, 0.7);
}

.form-container2 {
    background: var(--white);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: scale(0.7);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.form-overlay2.active .form-container2 {
    transform: scale(1);
    opacity: 1;
}

.form-header2 {
    background: #1a1a1a;
    color: white;
    padding: 20px 30px;
}

.form-header2 h1 {
    font-size: 24px;
    font-weight: bold;
}

.form-content2 {
    padding: 30px;
    position: relative;
}

.close-btn2 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.close-btn2:hover {
    background: #f0f0f0;
    color: #000;
}

.language-section {
    margin-bottom: 25px;
}

.language-section label {
    display: block;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.language-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.language-option {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.language-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #f5a623;
}

.language-option span {
    font-size: 16px;
    color: #333;
}

.form-row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group1 {
    display: flex;
    flex-direction: column;
}

.form-group1 label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group1 input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
}

.form-group1 input:focus {
    outline: none;
    border-color: #f5a623;
}


@media (max-width: 600px) {
    .form-row2 {
        grid-template-columns: 1fr;
    }

    .language-options {
        flex-direction: column;
    }

    .form-content2 {
        padding: 20px;
    }
}

/*----======== DOWNLOAD BROCHURE FORM END =========----*/


/*----======== NAVBAR START =========----*/


.links {
    text-transform: uppercase;
}

/* Top bar */
.top-bar {
    background-color: #2b2b2b;
    padding: 8px 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
}

.top-bar-item {
    color: #ffa500;
    text-decoration: none;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.2rem;
}

.main-nav {
    background-color: var(--orange);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 7%;
    transition: all ease 0.5s;
}

.nav-links1 {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links1 a {
    width: fit-content;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

.nav-links1 a:hover {
    color: #2b2b2b;
}

@media (min-width: 300px) and (max-width: 600px) {
    .logo {
        width: 30%;
        margin: 0.5rem 0;
    }
}

@media (min-width: 601px) and (max-width: 768px) {
    .logo {
        width: 30%;
        margin: 0.5rem 0;
    }
}

@media (min-width: 769px) and (max-width: 992px) {
    .logo {
        width: 20%;
        margin: 0.5rem 0;
    }
}

/*----========NAVBAR END=========----*/

/*----========BANNER START=========----*/

.banner_bg {
    width: 100%;
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 0 4rem 0;
    background-image: url('./images/banner_bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.signup_btn {
    color: var(--white);
    background-color: var(--black);
    padding: 0.5rem 2.5rem;
    font-size: 1.3rem;
    border: none;
    font-family: 'boldCondensed';
    text-transform: uppercase;
    transition: all ease 0.5s;
}

.signup_btn:active {
    scale: 0.9;
}


/*----========BANNER END=========----*/


/*----========SECTION SECOND START=========----*/

.excon_section h2 {
    font-family: 'boldCondensed';
}

.excon_section p {
    font-size: 1.01rem;
}

.highlights_container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    place-items: center;
}

@media (max-width: 991.98px) {
    .highlights_container {
        grid-template-columns: 1fr;
    }
}

.highlights_box {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--lightgray);
    padding: 2.5rem 2rem;
}

.highlights_box h3 {
    font-family: 'boldCondensed';
}

.highlights_box p {
    font-size: 1rem;
    margin-top: 1.3rem;
}

.highlights_box ol li {
    margin-top: 1.5rem;
}


/*----========SECTION SECOND END=========----*/


/*----========SECTION THIRD START=========----*/

.heading {
    font-family: 'boldCondensed';
    text-transform: uppercase;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider_img {
    width: 100%;
    height: 300px;
    /* border-radius: 2rem; */
    overflow: hidden;
    cursor: pointer;
}

.slider_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after,
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
    display: none;
}

.left_icon,
.right_icon {
    width: 80px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    padding: 0 1.4rem;
    background-color: var(--lightgray);
    transition: all ease 0.5s;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.left_icon::after,
.right_icon::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 300%;
    background-color: var(--blue);
    /* border-radius: 50%; */
    bottom: -300%;
    left: -50%;
    transition: all ease 0.5s;
    z-index: -1;
}

.left_icon:hover::after,
.right_icon:hover::after {
    bottom: -180%;
}

.right_icon img {
    transform: rotate(180deg);
}

.left_icon:active,
.right_icon:active {
    scale: 0.9;
}

.swiper_padding {
    padding-bottom: 3.5rem !important;
}

.slider_navigation {
    width: 5rem;
    height: 100px;
    position: absolute;
    left: 50%;
    bottom: 4%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
    top: 95% !important;
}

.swiper-button-prev {
    left: 0% !important;
    /* transform: translateX(-47%); */
}

.swiper-button-next {
    right: 0% !important;
    /* transform: translateX(-47%); */
}

/*----========SECTION THIRD END=========----*/

/*----========SECTION FOURTH START=========----*/

.slider_box {
    width: 98%;
    height: 500px;
}

.scheme_slider_img {
    width: 100%;
    height: 100%;
}

.slider_heading {
    background-color: var(--lightgray);
    color: var(--black);
    text-transform: uppercase;
    font-family: 'boldCondensed';
    padding: 0.5rem 1.7rem;
    position: absolute;
    top: 5%;
    right: 5%;
    z-index: 99;
}

/*----========SECTION FOURTH END=========----*/

/*----========SECTION FIFTH START=========----*/

.img_container {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.service_slider_img {
    width: 200px;
    height: 300px;
}

.slider_pagination {
    width: 100%;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--black);
    transition: all ease 0.5s;
}

.swiper-pagination-bullet-active {
    width: 25px !important;
    border-radius: 0.5rem !important;
}

/*----========SECTION FIFTH END=========----*/


/*----========SECTION SIXTH START=========----*/

.engage_grid_container {
    display: grid;
    width: 100%;
    margin: 2rem auto;
    /* Make box1 slightly bigger in width on big screens */
    grid-template-columns: 1.7fr 1fr 1fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 1.5rem;
    grid-template-areas:
        "box1 box1 box2 box2"
        "box1 box1 box3 box3";
    align-items: stretch;
    justify-items: stretch;
}

@media (max-width: 991.98px) {
    .engage_grid_container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 330px 330px;
        grid-template-areas:
            "box1 box1"
            "box2 box3"
            "box2 box3";
    }
}

@media (max-width: 991.98px) {
    .engage_grid_container {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 330px 330px;
        grid-template-areas:
            "box1 box1"
            "box2 box3";
        max-width: 100%;
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .engage_grid_container {
        grid-template-columns: 1fr;
        grid-template-rows: 350px 350px 350px;
        grid-template-areas:
            "box1"
            "box2"
            "box3";
        gap: 1rem;
    }
}

.box1 {
    grid-area: box1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: url('./images/prod.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    min-height: 300px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.box2 {
    grid-area: box2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.box3 {
    grid-area: box3;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.calculate_roi {
    display: inline-block;
    width: auto;
    background-color: var(--lightgray);
    color: var(--black);
    border: none;
    padding: 0.65rem 2.2rem;
    font-family: 'boldCondensed', Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.11s;
    cursor: pointer;
    letter-spacing: 1.5px;
}

.calculate_roi:hover,
.calculate_roi:focus {
    background-color: var(--black);
    color: var(--lightgray);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.13);
    transform: translateY(-2px) scale(1.02);
    outline: none;
}

/*----========SECTION SIXTH END=========----*/


/*----========VIDEO SECTION START=========----*/

.slider_img iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*----========VIDEO SECTION END=========----*/


/*----========PRODUCT DETAILS START=========----*/
body.no-scroll {
    overflow: hidden;
}

/* PRODUCT DETAILS MODAL STYLES - PERFECT RESPONSIVE */

.form-overlay3 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}

.form-overlay3.active {
    display: flex;
    background: rgba(0, 0, 0, 0.7);
}

.form-container2 {
    background: var(--white, #fff);
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    min-width: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.24);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
    margin: 0 10px;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.form-overlay3.active .form-container2 {
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 600px) {
    .form-container2 {
        border-radius: 7px;
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        margin: 0;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }
}

@media (max-width: 575.98px) {
    .form-container2 {
        border-radius: 0;
        width: 100vw;
        max-width: 100vw;
        min-width: 0;
        box-shadow: none;
        margin: 0;
    }
}

/* Product Details Content Section */
.product-details-section {
    width: 80%;
    margin: 0 auto;
    display: none;
    padding: 48px 32px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.072);
    position: relative;
    animation: slideDown 0.4s ease-out;
    box-sizing: border-box;
}

.product-details-section.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .product-details-section {
        width: 100%;
        padding: 24px 12px 32px 12px;
        border-radius: 8px;
        min-height: unset;
    }
}

@media (max-width: 575.98px) {
    .product-details-section {
        padding: 16px 4vw 24px 4vw;
        border-radius: 0;
        box-shadow: none;
    }
}

/* Close Button (for modal) */
.close-btn {
    position: absolute;
    top: 0%;
    right: 0%;
    width: 40px;
    height: 40px;
    color: var(--black);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
    line-height: 1;
}

.close-btn:hover,
.close-btn:focus {
    background-color: #4e4a4a36;
    /* transform: rotate(90deg); */
}

@media(max-width: 600px) {
    .close-btn {
        width: 32px;
        height: 32px;
        font-size: 19px;
        top: 9px;
        right: 9px;
    }
}

@media(max-width: 575.98px) {
    .close-btn {
        width: 28px;
        height: 28px;
        font-size: 16px;
        top: 7px;
        right: 7px;
    }
}

/* Heading */
.product-details-heading {
    font-size: 2.8rem;
    font-weight: bold;
    letter-spacing: 1.5px;
    color: var(--black);
    font-family: 'boldCondensed';
    margin-bottom: 22px;
    text-align: center;
    word-break: break-word;
}

@media (max-width: 992px) {
    .product-details-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .product-details-heading {
        font-size: 1.45rem;
        margin-bottom: 13px;
    }
}

@media (max-width: 575.98px) {
    .product-details-heading {
        font-size: 1.09rem;
        margin-bottom: 7px;
    }
}

/* Description */
.product-details-desc {
    width: 55%;
    margin: 0 auto 28px;
    text-align: center;
    padding: 0 2px;
    word-break: break-word;
}

.product-details-desc p {
    font-size: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--black);
    margin: 0;
}

@media (max-width: 992px) {
    .product-details-desc {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .product-details-desc {
        width: 80%;
        margin-bottom: 17px;
    }

    .product-details-desc p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .product-details-desc {
        margin-bottom: 9px;
    }

    .product-details-desc p {
        font-size: 0.77rem;
        line-height: 1.3;
    }
}

/* Table wrapper */
.product-details-table-wrapper {
    margin-top: 18px;
}

.product-details-table-wrapper h3 {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 14px;
    color: #000;
    word-break: break-word;
}

@media (max-width: 992px) {
    .product-details-table-wrapper h3 {
        font-size: 1.08rem;
    }
}

@media(max-width: 575.98px) {
    .product-details-table-wrapper h3 {
        font-size: 0.92rem;
        margin-bottom: 8px;
    }
}

/* Table Responsive wrapper, always enable scroll on mobile */
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #e8e8e8;
    min-width: 450px;
    max-width: 100%;
}

.product-specs-table thead {
    background: #d0d0d0;
}

.product-specs-table th,
.product-specs-table td {
    padding: 16px 9px;
    font-size: 1rem;
    border: 1px solid #b0b0b0;
    color: #000;
    text-align: center;
    word-break: break-word;
}

.product-specs-table th {
    font-weight: bold;
}

.product-specs-table sup {
    font-size: 0.77em;
}

/* Table: reduce for tablets and mobile */
@media(max-width: 992px) {

    .product-specs-table th,
    .product-specs-table td {
        padding: 12px 6px;
        font-size: 0.93rem;
    }

    .product-specs-table {
        min-width: 390px;
    }
}

@media(max-width: 768px) {

    .product-specs-table th,
    .product-specs-table td {
        padding: 8px 5px;
        font-size: 0.83rem;
    }

    .product-specs-table {
        min-width: 340px;
    }

    .product-details-table-wrapper {
        margin-top: 10px;
    }
}

@media(max-width: 575.98px) {
    .table-responsive {
        padding-bottom: 5px;
        margin-bottom: 0;
    }

    .product-specs-table th,
    .product-specs-table td {
        padding: 6px 3px;
        font-size: 0.7rem;
    }

    .product-specs-table {
        min-width: 280px;
    }

    /* Remove border radius on table with modal on mobile for snug fit */
    .product-specs-table,
    .product-specs-table thead,
    .product-specs-table tbody {
        border-radius: 0;
    }
}

/* Strong fix for very small screens */
@media (max-width: 400px) {
    .form-container2 {
        padding: 0;
    }

    .product-details-section {
        padding: 8px 1.5vw 12px 1.5vw;
    }

    .product-details-heading {
        font-size: 0.84rem;
    }

    .product-details-desc p {
        font-size: 0.6rem;
    }

    .close-btn {
        width: 24px;
        height: 24px;
        font-size: 13px;
        top: 2px;
        right: 2px;
    }

    .product-details-table-wrapper h3 {
        font-size: 0.82rem;
    }
}

::-webkit-scrollbar {
    width: 6px;
    background: #eee;
}

::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 8px;
}


/*----========PRODUCT DETAILS END=========----*/


/*----========CALCULATOR SECTION START=========----*/

.roi-calculator {
    max-width: 650px;
    margin: 40px auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.roi-header {
    /* background-color: #000; */
    color: var(--black);
    padding: 24px 28px;
}

.roi-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.roi-form {
    padding: 32px 28px;
}

/* .roi-form-group {
    margin-bottom: 28px;
} */

.roi-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 12px 0 5px 0;
}

.roi-input {
    width: 100%;
    padding: 16px 18px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: white;
    color: #000;
    outline: none;
    transition: border-color 0.2s;
}

.roi-input:focus {
    border-color: var(--orange) !important;
}

.roi-select-wrapper {
    position: relative;
}

.roi-select {
    width: 100%;
    padding: 16px 18px;
    padding-right: 45px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: white;
    color: #9ca3af;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s;
}

.roi-select:focus {
    border-color: var(--orange) !important;
    color: var(--black);
}

.roi-select option {
    color: var(--black);
}

.roi-select-wrapper::after {
    content: '\203A';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 24px;
    color: #9ca3af;
    pointer-events: none;
}

.roi-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.roi-calculate-btn {
    background-color: var(--orange);
    color: #000;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 16px 48px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.roi-calculate-btn:hover {
    background-color: #f59e0b;
}

.roi-calculate-btn:active {
    background-color: #d97706;
}

@media (max-width: 640px) {
    .roi-calculator {
        margin: 20px auto;
    }

    .roi-title {
        font-size: 20px;
    }

    .roi-form {
        padding: 24px 20px;
    }
}


.roi-thanks-modal {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    /* Changed from fixed to relative since overlay handles positioning */
    opacity: 0;
    scale: 0.3;
    transform: scale(0.3);
    transition: all ease 0.5s;
}

.show_modal {
    opacity: 1;
    scale: 1;
    transform: scale(1);
    /* Remove top: 50% since flexbox handles centering */
}

.message {
    font-size: 32px;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 40px;
    word-break: break-word;
}

.amount {
    color: var(--orange);
    font-weight: 600;
}

.button {
    background-color: var(--orange);
    color: var(--black);
    border: none;
    border-radius: 8px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.button:hover {
    background-color: #e09615;
}

.button:active {
    transform: translateY(1px);
}

/* Responsive styles for better left/right spacing and text for small screens */
@media (max-width: 600px) {
    .roi-thanks-modal {
        padding: 24px 5vw;
        /* responsive horizontal padding */
        max-width: 98vw;
        min-width: 0;
    }

    .message {
        font-size: 17px;
        margin-bottom: 24px;
    }

    .button {
        font-size: 14px;
        padding: 12px 8px;
        max-width: 100%;
    }
}

@media (max-width: 400px) {
    .roi-thanks-modal {
        padding: 12px 2vw;
    }

    .message {
        font-size: 15px;
    }
}

#getUserDetails,
#getUserDetails2 {
    display: none;
}


.exchange-main {
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    width: 500px;
    max-width: 95vw;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    overflow: hidden;
    transition: all ease 0.5s;
}

.exchange-title {
    padding: 1rem;
    background-color: var(--black);
}

.exchange-title h1 {
    font-size: 1.5rem;
    color: var(--white);
}

.exchange-lead {
    width: 100%;
    padding: 2rem;
}

/* welcome to excon-2025 or jcb pavilion */

.roi-exchange-value-form {
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.roi-exchange-value-form__header,
.exchange-lead__header {
    text-align: center;
    margin-bottom: 10px;
}

.roi-exchange-value-form__header h2,
.exchange-lead__header h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
    color: #333;
}

.roi-exchange-value-form__highlight,
.exchange-lead__highlight {
    color: #F5A623;
    font-weight: 600;
}

.roi-exchange-value-form__subtitle,
.exchange-lead__subtitle {
    font-size: 24px;
    font-weight: 400;
    color: #333;
}

.roi-exchange-value-form__subheading,
.exchange-lead__subheading {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.roi-exchange-value-form__group,
.exchange-lead__group {
    margin-bottom: 10px;
}

.roi-exchange-value-form__label,
.exchange-lead__label {
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 5px;
    color: #333;
}

.roi-exchange-value-form__input,
.exchange-lead__input,
.roi-exchange-value-form__select,
.exchange-lead__select {
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.3s;
    color: #333;
}

.roi-exchange-value-form__input::placeholder,
.exchange-lead__input::placeholder {
    color: #ccc;
}

.roi-exchange-value-form__input:focus,
.exchange-lead__input:focus,
.roi-exchange-value-form__select:focus,
.exchange-lead__select:focus {
    border-color: #F5A623;
}

.roi-exchange-value-form__select,
.exchange-lead__select {
    appearance: none;
    background: white url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    cursor: pointer;
    color: #ccc;
}

.roi-exchange-value-form__select option,
.exchange-lead__select option {
    color: var(--black);
}

.roi-exchange-value-form__submit,
.exchange-lead__submit {
    display: block;
    width: 220px;
    margin: 40px auto 0;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    background-color: var(--orange);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
}

.roi-exchange-value-form__submit:hover,
.exchange-lead__submit:hover {
    background-color: #E09612;
}

.roi-exchange-value-form__submit:active,
.exchange-lead__submit:active {
    transform: scale(0.98);
}

.error {
    color: rgb(231, 46, 46);
    margin-top: 1rem;
    display: none;
}

/*----========CALCULATOR SECTION END=========----*/

/*----========FOOTER START=========----*/

.footer_icons a:nth-child(1) {
    width: 6%;
}

.footer_icons a {
    width: 10%;
}

.footer_icons a img {
    width: 100%;
    height: 100%;
}

/*----========FOOTER END=========----*/

/*----========PLP (Product Listing Page) START=========----*/

.plp-main {
    background-color: var(--white);
    min-height: 100vh;
}

/* Filter Navigation Section */
.plp-filter-section {
    padding: 2rem 0;
    background-color: var(--white);
}

.plp-filter-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plp-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.plp-filter-row-second {
    margin-left: 0;
    padding-left: 0;
}

.plp-filter-btn {
    background-color: var(--white);
    color: var(--black);
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-family: 'boldCondensed', Arial, sans-serif;
    font-size: 0.95rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.plp-filter-btn:hover {
    background-color: var(--lightgray);
}

.plp-filter-btn.active {
    background-color: var(--orange);
    color: var(--black);
    font-weight: bold;
}

/* Products Section */
.plp-products-section {
    padding: 2rem 0 4rem 0;
    background-color: var(--white);
}

.plp-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

.plp-product-card {
    background-color: #f2f2f2;
    display: flex;
    flex-direction: column;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

.plp-product-card:hover {
    /* transform: translateY(-5px); */
    /* box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15); */
}

.plp-product-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background-color: var(--lightgray);
}

.plp-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.plp-product-card:hover .plp-product-image img {
    transform: scale(1.05);
}

.plp-product-name {
    padding: 1.25rem 1rem 0.75rem 1rem;
    font-family: 'boldCondensed', Arial, sans-serif;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--black);
    text-align: left;
}

.plp-product-actions {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    padding: 0 1rem 1.5rem 1rem;
}

.plp-action-btn {
    background-color: var(--orange);
    color: var(--black);
    border: none;
    padding: 0.65rem 0.75rem;
    font-family: 'boldCondensed', Arial, sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    flex: 1;
    white-space: nowrap;
}

.plp-action-btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.plp-action-btn:active {
    transform: translateY(0);
}

/* Responsive CSS for max-width: 991.98px */
@media (max-width: 991.98px) {
    .plp-filter-section {
        padding: 1.5rem 0;
    }

    .plp-filter-container {
        gap: 0.75rem;
    }

    .plp-filter-row {
        gap: 0.5rem;
        justify-content: flex-start;
    }

    .plp-filter-row-second {
        margin-left: 0;
        padding-left: 0;
    }

    .plp-filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .plp-products-section {
        padding: 1.5rem 0 3rem 0;
    }

    .plp-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .plp-product-image {
        height: 250px;
    }

    .plp-product-name {
        padding: 1rem 0.75rem 0.5rem 0.75rem;
        font-size: 1rem;
    }

    .plp-product-actions {
        padding: 0 0.75rem 1.25rem 0.75rem;
        gap: 0.4rem;
        flex-direction: column;
    }

    .plp-action-btn {
        padding: 0.55rem 0.85rem;
        font-size: 0.7rem;
        width: 100%;
    }

    .exchange-main {
        margin: 2rem auto;
    }
}

/* Additional responsive for smaller tablets and mobile */
@media (max-width: 767.98px) {

    .plp-filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .plp-products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .plp-product-image {
        height: 280px;
    }
}

/*----========PLP (Product Listing Page) END=========----*/

.roi-thanks-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.roi-thanks-modal-overlay.show_modal {
    opacity: 1;
    pointer-events: auto;
}

/* Update the modal positioning to work better with flexbox centering */
.roi-thanks-modal {
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    /* Changed from fixed to relative since overlay handles positioning */
    opacity: 0;
    scale: 0.3;
    transform: scale(0.3);
    transition: all ease 0.5s;
}

.show_modal {
    opacity: 1;
    scale: 1;
    transform: scale(1);
    /* Remove top: 50% since flexbox handles centering */
}