/* ==========================================================================
   PRODUCT LANDING PAGE STYLES (assets/css/product.css)
   Strictly using vw and % for all sizing, spacing, borders and radii.
   No px or rem units are used.
   ========================================================================== */

/* Product Section Wrapper */
.product-landing-wrapper {
    width: 100%;
}

.stripe-bg {
    background-image: url(../images/product/product-banner.png);
    background-size: contain !important;
    background-position: top !important;
    background-repeat: no-repeat !important;
    background-color: rgba(26, 43, 60, 0.1);
}

.product-hero-content h1 {
    max-width: 34vw;
    margin: 0;
}

.product-hero-content {
    padding: 3.5vw 0 0 0;
}

/* Product Cards Container */

.know-more-btn {
    color: var(--white);
    background: #B83445;
    border-radius: 30px;
    padding: 0 0.8vw 0 1.7vw;
    width: 11.8vw;
    font-size: 1vw;
    height: 3.1vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: none !important;
    font-weight: 700;
    text-decoration: none !important;
}

.product-card-details-box {
    flex: 1;
}

.product-cards-container {
    display: flex;
    flex-direction: column;
    padding: 2.5vw 0 10vw 0;
}

/* Premium Alternating Product Card */
.product-card {
    background-color: var(--white);
    border-radius: 2.5vw;
    box-shadow: 0 1.5vw 4vw rgba(26, 43, 60, 0.05);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    width: 100%;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/*.product-card:hover {
    transform: translateY(-0.5vw);
    box-shadow: 0 2vw 5vw rgba(26, 43, 60, 0.08);
}*/

/* Alternating Layout: Card 2 (MSME Rural Loans) */
.product-card.reverse {
    flex-direction: row-reverse;
}

/* Card Image Section */
.product-card-image-box {
    position: relative;
    width: 38.8vw;
    overflow: hidden;
}

.product-details-inner {
    width: 33vw;
}

.product-card-image-box img {
    height: auto;
    width: 38.8vw;
}

/*.product-card:hover .product-card-image-box img {
    transform: scale(1.03);
}*/

/* Customer Count Overlay */
.product-customer-overlay {
    position: absolute;
    bottom: 2vw;
    left: 2.5vw;
}

.product-customer-overlay p {
    color: var(--white);
}

/* Card Content Section */
.product-card-details-box {
    width: 30vw;
    padding: 2.5vw 4vw 2vw 3vw;
    display: flex;
    flex-direction: column;
}

.product-card-info h2 {
    margin-bottom: 1vw;
}

.product-card-info p {
    margin-bottom: 1.5vw;
    width: 28vw;
}

/* Orange Banner Details */
.product-orange-banner {
    background-color: var(--text-orange);
    display: flex;
    align-items: center;
    gap: 3vw;
    padding: 0.5vw 3vw;
    width: 100%;

    color: var(--para);
    transition: all 0.3s ease;
}

/* Make banner touch right border for normal card */
.product-card:not(.reverse) .product-orange-banner {
    margin-left: -4.5vw;
    align-self: flex-start;
    border-top-right-radius: 0vw;
    border-bottom-right-radius: 0vw;
    width: calc(100% + 4vw);
    padding-left: 4.5vw;
}

.product-card {
    margin: 0 0 1.5vw 0;
}

/* Make banner touch left border for reverse card */
.product-card.reverse .product-orange-banner {
    margin-left: -4vw;
    align-self: flex-start;
    border-top-right-radius: 0vw;
    border-bottom-right-radius: 0vw;
    width: calc(100% + 4.5vw);
    padding-left: 4vw;
}

.product-banner-item {
    display: flex;
    align-items: center;
    gap: 0.8vw;
}

.product-banner-item img {
    width: 1.6vw;
    height: 1.6vw;
}

.product-banner-item span {
    font-size: var(--text-20);
    font-weight: 700;
}

/* Key Benefits Section */
.product-benefits-box {
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    margin: 1.2vw 0 0 0;
}

.product-benefits-box h4 {
    color: var(--para);
    font-size: var(--text-25);
    font-weight: 700;
    margin: 0;
}

.product-benefits-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.product-customer-overlay p {
    margin: 0;
}

.product-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.4vw;
}

.product-benefit-item img {
    width: 1.3vw;
}

.product-benefit-item span {
    color: var(--para);
    font-size: var(--text-15);
    font-weight: 600;
}

/* Maroon Know More Button */
.product-action-box {
    margin-top: 2vw;
}


.product-btn-red:hover {
    background-color: #9a2b3a;
    transform: translateY(-0.2vw);
    box-shadow: 0 1vw 2.5vw rgba(184, 52, 69, 0.35);
    color: var(--white) !important;
}

.product-btn-red-circle {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-btn-red:hover .product-btn-red-circle {
    transform: translateX(0.3vw) rotate(360deg);
}

.product-btn-red-circle img {
    width: 1.6vw;
    height: auto;
}

/*****************Product Inner*************/
/* Hero Slider/Banner Section */

.product-hero-data-box {
    display: flex;
    gap: 0.8vw;
    padding: 0.5vw 0 5.2vw 0;
}

.product-data-col {
    display: flex;
    flex-direction: column;
    gap: 0.4vw;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);

    padding: 0.6vw 0.8vw;
}

.product-data-col span {
    color: #000;
    line-height: initial;
}

.product-banner-title {
    width: 30vw;
}

.btn-medium {
    width: auto !important;
    min-width: 12vw;
    padding: 0 0.8vw 0 1.2vw !important;
}

.why-choose-inner {
    padding: 4.5vw 0 0 0;
}

.why-choose-header {
    text-align: left;
    margin-bottom: 3.5vw;
    max-width: 45vw;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.why-choose-card {
    background-color: var(--white);
    border-radius: 0.5vw;
    padding: 1.6vw 1.5vw;
    display: flex;
    gap: 1vw;
    box-shadow: 0 10px 20px #0000001A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-0.4vw);
    box-shadow: 0 1.2vw 3.5vw rgba(0, 0, 0, 0.08);
}

.why-choose-icon-wrapper {
    background-color: #F89F32;
    border: none;
    border-radius: 5px;
    width: 2.65vw;
    height: 2.65vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-icon-wrapper img,
.why-choose-icon-wrapper svg {
    width: 1.7vw;
}

.emi-calc-banner-wrapper {
    border-radius: 1.5vw;
    padding: 5vw 5vw 5vw 5vw;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(114deg, #5E6A76 0%, #3E464E 100%);
    box-shadow: 0 10px 20px #0000001A;
    top: 8vw;
}

.btn-white {
    background: #fff;
    color: #1A2B3C;
    border-radius: 2vw;
    padding: 0 0.8vw 0 1.7vw;
    width: 15.5vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: width 0.4s ease;
    z-index: -1;
}

.emi-calc-btn a {
    color: #B83445;
}

.btn-white:hover::before {
    width: 100%;
}

.product-sticky-nav .sticky-nav-inner {
    justify-content: center;
    gap: 3.5vw;
    padding: 0.5vw 0;
}

.emi-calc-text-container {
    width: 23vw;
}

.emi-calc-btn {
    width: 22.5vw;
    display: flex;
    justify-content: center;
}

.emi-calc-img-container {
    position: absolute;
    right: 0;
    width: 30vw;
    top: 0;
    margin-top: -3.5vw;
}

.emi-calc-img-container img {
    width: 31vw;
}

.emi-calc-btn .btn-white {
    width: 12.5vw !important;
}

.emi-calc-text-container h2 {
    padding: 0 0 0.5vw 0;
}

.emi-calc-sec {
    margin-top: -9vw;
}

.why-choose-context h4 {
    padding: 0 0 0.3vw 0;
}

.why-choose-context {
    width: 18vw;
}

.eligibility-card p {
    width: 11.5vw;
}

.eligibility-tabs-container {
    display: flex;
    gap: 1.5vw;
    margin-bottom: 0;
    padding: 2vw 0 2.5vw 0;
}

.eligibility-tab-btn {
    border-radius: 2vw;
    padding: 0.6vw 2.5vw;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 18vw;
    text-align: center;
    font-size: var(--text-20);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.eligibility-tab-btn.active {
    background-color: var(--text-red);
    color: var(--white);
    box-shadow: 0 0.5vw 1.5vw rgba(184, 52, 69, 0.2);
}

.eligibility-tab-btn.inactive {
    background-color: #E9ECEF;
    color: #495057;
}

.eligibility-sub-title {
    width: 40vw;
    padding: 0 0 2.5vw 0;
}

.eligibility-card {
    background-color: var(--white);
    border-radius: 0.8vw;
    padding: 1.7vw 1.5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 20px #0000001A;
    border-bottom: 0.2vw solid transparent;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 6vw;
}

.eligibility-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.stripe-bg.white-stripe-bg {
    background: url(../../assets/images/product/inner/white-bg-strip.png) !important;
    background-color: rgba(243, 244, 245, 1) !important;
}

.eligibility-sec-inner {
    padding: 12vw 0 6vw 0;
}

.eligibility-card p {
    width: 15vw;
    line-height: 1.5vw;
    position: relative;
}

.apply-steps-inner {
    padding: 6vw 0;
}

.apply-steps-card {
    background: url(http://uat.veritasfin.in/wp-content/uploads/2026/06/orange-gradient.png) no-repeat;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: contain;
    width: 100%;
    height: 35vw;
    padding: 3vw 6vw;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.apply-steps-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 2vw;
    margin: 2vw 0;
}

.apply-steps-header {
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
    max-width: 45vw;
}

.apply-step-number-circle {
    width: 6.2vw;
    height: 6.2vw;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url(../images/product/inner/ellipse.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 2;
}

/* Inner white circle */
.apply-step-number-circle::before {
    content: "";
    width: 5vw;
    height: 5vw;
    background: #fff;
    border-radius: 4vw;
    position: absolute;
}

.apply-step-number-circle span {
    z-index: 1;
    position: relative;
}

.apply-steps-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: relative;
    gap: 2vw;
}

.apply-step-item::after {
    width: 11vw;
    content: "";
    position: absolute;
    top: 3vw;
    left: 10.5vw;
    right: 0;
    height: 0.12vw;
    border-top: 0.3vw dashed rgba(000, 000, 000, 0.5);
    z-index: 0;
}

.apply-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2vw;
    flex: 1;
    position: relative;
    z-index: 1;
}

.apply-step-item:last-child:after {
    display: none;
}

.apply-step-text-container span {
    line-height: 1.4vw;
    display: block;
}

.faq-inner {
    padding: 4.5vw 0 5.5vw 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 3vw;
    display: flex;
    flex-direction: column;
}

.faq-header h3 {
    padding: 0 0 1vw 0;
}

.faq-question-btn {
    background: none;
    border: none;
    padding: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-item {
    background-color: var(--white);
    border-radius: 0.5vw;
    padding: 0;
    box-shadow: 0 10px 20px #0000001A;
    display: flex;
    flex-direction: column;
    padding: 1.1vw 1.5vw 1.1vw 2.5vw;

}

.faq-accordion {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease;
}

.faq-icon-arrow {
    width: 1.5vw;
    height: 1.5vw;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding-top 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 20vw;
    padding: 0.5vw 0 0.5vw 0;
}

.bottom-loans-inner {
    padding: 3vw 0 6vw 0;
}

.bottom-loans-header h2 {
    padding: 0 0 0.5vw 0;
}

.bottom-loans-header {
    text-align: center;
    margin-bottom: 4vw;
}

.bottom-loans-inner {
    padding: 3vw 0 6vw 0;
}

.bottom-loan-card .product-card-details-box {
    padding: 1.5vw 1.5vw;
}

.bottom-loan-image-box {
    position: relative;
    height: 13.5vw;
    overflow: hidden;
    width: 100%;
}

.bottom-loans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5vw;
}

.bottom-loan-title-overlay {
    position: absolute;
    bottom: 1.5vw;
    left: 1.5vw;
    width: 15vw;
    z-index: 2;
}

.bottom-loan-details-box {
    padding: 1.5vw 1.5vw;
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
    flex: 1;
}

.bottom-loan-yellow-bar {
    background-color: #FFC558;
    padding: 0.5vw 0;
    display: flex;
    align-items: center;
    position: relative;
    flex-direction: row;
    gap: 1.5vw;
}

.bottom-loan-card {
    background-color: var(--white);
    border-radius: 1.5vw;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #707070;
}

.bottom-loan-yellow-bar:before,
.bottom-loan-yellow-bar:after {
    content: '';
    position: absolute;
    background: #FFC558;
    height: 100%;
    width: 100%;
    display: block;
    left: -100%;
    z-index: 0;
}

.bottom-loan-yellow-bar:after {
    left: auto;
    right: -100%;
}

.bottom-loan-card:hover {
    transform: translateY(-0.4vw);
    box-shadow: 0 1.5vw 4vw rgba(0, 0, 0, 0.1);
}

.bottom-loan-benefit-pill span {
    font-size: 0.7vw;
}

.bottom-loan-benefit-pill {
    background-color: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.4vw;
}

.bottom-loan-benefit-pill img {
    width: 1.1vw;
    height: auto;
}

.bottom-loan-benefits-list {
    display: flex;
    gap: 0.8vw 1vw;
    flex-wrap: wrap;
    flex-direction: column;
}

.bottom-loan-benefits p {
    padding: 0 0 0.8vw 0;
}

.bottom-loan-details-box .product-action-box {
    margin-top: 0.5vw;
}

.bottom-loan-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bottom-loan-image-box img {
    width: 25.5vw;
}

/* Document Grid Container */
.document-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5vw;
}

/* Document Card Styling */
.document-card {
    background-color: var(--white);
    border-radius: 0.8vw;
    padding: 1.5vw 1.3vw;
    box-shadow: 0 10px 20px #0000001A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.2vw;
    width: 100%;
    min-height: 10.2vw;
}

.document-card:hover {
    transform: translateY(-0.4vw);
    box-shadow: 0 1.2vw 3.5vw rgba(0, 0, 0, 0.08);
}

.document-card-title {
    margin: 0;
}

/* Document List Styling */
.document-list {
    list-style-type: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8vw;
}

.document-list li {
    display: flex;
    align-items: flex-start;
    line-height: 0.8vw;
    font-weight: 500;
}

.document-arrow {
    margin-right: 0.6vw;
    font-weight: 700;
    flex-shrink: 0;
}

section.prodct-hero-sec.top-slider .slick-dots {
    display: none;
}


.bottom-loan-bar-item img {
    display: inline-block;
    width: 1.8vw;
}

/****************Responsive*********************/
@media(min-width:768px) and (max-width:991px) {
    .product-hero-content h1 {
        max-width: 75%;
        margin: 0;
    }

    .document-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 15px;
    }

    .document-card {
        border-radius: 10px;
        padding: 20px;
        gap: 15px;
    }

    .document-list {
        gap: 10px;
    }

    .document-list li {
        line-height: 20px;
    }

    .document-arrow {
        margin-right: 8px;
    }

    .product-card {
        margin: 0 0 20px 0;
    }

    .product-card-image-box {
        order: 1;
        width: 55%;
    }

    .product-card-image-box img {
        height: 100%;
        width: 100%;
        display: flex;
        object-fit: cover;
    }

    .product-cards-container {
        padding: 20px 0 50px 0;
    }

    .product-customer-overlay {
        bottom: 20px;
        left: 20px;
    }

    .product-details-inner {
        width: 100%;
    }

    .product-card-details-box {
        width: 100%;
        padding: 20px 20px;
    }

    .product-card-info h2 {
        margin-bottom: 10px;
    }

    .product-card-info p {
        margin-bottom: 12px;
        width: auto;
    }

    .product-card.reverse .product-orange-banner {
        margin-left: -25px;
        width: calc(100% + 45px);
        padding-left: 20px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .product-card-info p {
        font-size: var(--text-20);
    }

    .product-benefits-box h4 {
        font-size: var(--text-20);
    }

    .product-hero-content {
        padding: 30px 0 0 0;
    }

    .product-hero-content span {
        font-size: var(--text-20);
    }

    .know-more-btn {
        width: fit-content;
        min-width: 150px;
        display: flex;
        font-size: var(--text-20);
        height: auto;
        padding: 6px 10px 6px 15px;
    }

    .know-more-btn img {
        width: 20px;
    }

    .product-benefits-box {
        gap: 10px;
        margin: 10px 0;
    }

    .product-benefit-item img {
        width: 16px;
    }

    .product-benefit-item span {
        font-size: 12px;
    }

    .product-benefit-item {
        gap: 5px;
        padding-bottom: 10px;
    }

    .product-benefits-list {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bottom-loans-grid {
        display: flex;
        gap: 10px;
    }

    .bottom-loan-image-box img {
        width: 100%;
    }

    .bottom-loan-title-overlay h2 {
        font-size: 16px !important;
    }

    .bottom-loan-title-overlay {
        bottom: 10px;
        left: 10px;
    }

    .bottom-loan-card {
        border-radius: 20px;
    }

    .bottom-loan-details-box {
        padding: 15px;
        gap: 15px;
    }

    .bottom-loan-bar-item img {
        width: 17px;
    }

    .bottom-loan-bar-item span {
        font-size: 11px;
    }

    .bottom-loan-desc p {
        font-size: 12px;
        line-height: 18px;
    }

    .bottom-loan-yellow-bar {
        padding: 8px 0;
        gap: 10px;
    }

    .bottom-loan-benefits-list {
        gap: inherit;
        display: flex;
        flex-wrap: wrap;
    }


    .bottom-loan-benefit-pill {
        border-radius: inherit;
        gap: 5px;
        background: transparent;
    }

    .bottom-loan-benefit-pill img {
        width: auto;
        height: auto;
    }

    .bottom-loan-benefit-pill span {
        font-size: 12px;
    }

    .bottom-loan-benefits p {
        padding: 0px 0 5px 0;
        font-size: 16px;
    }

    .bottom-loan-details-box .product-action-box {
        margin: 10px 0;
    }

    .bottom-loans-header h2 {
        padding: 0 0 10px 0;
    }

    .bottom-loans-inner {
        padding: 50px 0;
    }

    .bottom-loans-header {
        margin-bottom: 20px;
    }

    .faq-inner {
        padding: 50px 0;
    }

    .faq-header {
        margin-bottom: 20px;
    }

    .faq-item {
        border-radius: 5px;
        padding: 15px 20px;
        margin: 0 0 10px 0;
    }

    .faq-question-btn span {
        font-size: 15px;
        line-height: 20px;
    }

    .faq-answer p {
        padding: 10px 0;
    }

    .faq-icon-arrow {
        width: 20px;
        height: auto;
    }

    .eligibility-tab-btn {
        border-radius: 30px;
        padding: 0px 20px;
        min-width: 160px;
        font-size: var(--text-20);
        line-height: 18px;
        height: 40px;
    }

    .eligibility-sub-title {
        width: auto;
        padding: 30px 0;
        line-height: 25px;
    }

    .eligibility-tabs-container {
        gap: 15px;
        padding: 20px 0 00;
    }

    .eligibility-grid {
        display: grid;
        gap: 10px;
    }

    .eligibility-card-icon.why-choose-icon-wrapper img {
        width: auto;
    }

    .eligibility-card {
        border-radius: 10px;
        padding: 15px;
        width: 100%;
        min-height: 130px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .why-choose-icon-wrapper {

        border-radius: 10px;
        width: 50px;
        height: 50px;

    }

    .eligibility-card p {
        width: auto;
        line-height: 20px;
        position: relative;
        top: 0;
        order: 1;
        padding: 10px 0 0 0;
    }

    .emi-calc-banner-wrapper {
        border-radius: 10px;
        padding: 30px 20px 30px 20px;
        height: 200px;
    }

    .emi-calc-text-container {
        width: auto;
    }

    .emi-calc-text-container p {
        padding: 10px 0;
        line-height: 22px;
    }

    .emi-calc-btn {
        padding: 25px 0 10px 0;
    }

    .btn-white.btn-medium {
        min-width: 180px;
        height: 35px;
        border-radius: 30px;
        padding: 0 10px 0 20px !important;
        color: #B83445;
    }

    .emi-calc-img-container {
        position: static;
        right: 0;
        width: auto;
        top: 0;
        margin-top: 0;
    }

    .emi-calc-btn {
        width: auto;
        display: flex;
        justify-content: center;
    }

    .emi-calc-img-container img {
        width: auto;
    }

    .eligibility-sec-inner {
        padding: 100px 0 50px 0;
    }

    .emi-calc-img-container {
        position: static;
        right: 0;
        width: auto;
        top: 0;
        margin-top: 100px;
    }

    .why-choose-inner {
        padding: 50px 0 0 0;
    }

    .why-choose-header {
        margin-bottom: 20px;
        max-width: 100%;
        gap: 10px;
    }

    .why-choose-context {
        width: 85%;
        padding: 0 0 0 10px;
    }

    .why-choose-icon-wrapper {
        border-radius: 10px;
        width: 50px;
        height: 50px;
    }

    .why-choose-icon-wrapper img,
    .why-choose-icon-wrapper svg {
        width: auto;
    }

    .why-choose-card {
        border-radius: 10px;
        padding: 15px 15px;
        gap: 10px;
        flex: 0 0 49%;
    }

    .why-choose-grid {
        gap: 10px;
        flex-wrap: wrap;
        display: flex;
    }

    .why-choose-context p {
        line-height: 20px;
    }

    .product-banner-title {
        width: 100%;
    }

    .slider-inner1 span img {
        width: 22px;
        margin: 0;
    }

    .slider-inner1 span {
        padding: 7px 10px;
    }

    .product-hero-data-box {
        gap: 10px;
        padding: 0 0 10px 0;
    }

    .product-data-col span.text-15 {
        font-size: 10px;
    }

    .product-data-col span.text-20 {
        font-size: 12px;
        line-height: 14px;
    }

    .product-data-col {

        gap: 3px;
        border-radius: 10px;
        padding: 10px;
        min-height: 60px;
        text-align: center;
    }

    .slider-text-parent .slider-inner2 {
        width: auto;
        justify-content: flex-start;
        padding: 12px 0 00;
    }

    .product-page-inner h1 {
        font-size: 40px;
        line-height: 40px;
        padding: 5px 0;
    }

    .prodct-hero-sec.top-slider a.btn-medium {
        min-width: 125px;
        font-size: 15px;
        width: inherit !important;
        padding: 0 10px 0 15px !important;
        height: 40px;
        border-radius: 100px;
    }

    .slider-text1 p {
        line-height: 25px;
    }

    .apply-steps-inner {
        padding: 50px 0;
    }

    .apply-steps-card {
        overflow: hidden;
        background-size: contain;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        display: flex;
        background-color: #F69E32;
    }

    .apply-steps-header {
        gap: 10px;
        max-width: 100%;
    }

    .apply-steps-row {
        width: 100%;
        gap: 10px;
        padding: 30px 0 0 0;
        flex-wrap: wrap;
    }

    .apply-step-item {
        display: flex;
        flex-direction: inherit;
        gap: 10px;
        flex: inherit;
        position: relative;
        z-index: 1;
        width: 100%;
        flex-wrap: wrap;
        padding: 0 0 50px 0;
    }

    .apply-step-number-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        z-index: 2;
    }

    .apply-step-number-circle::before {
        width: 60px;
        height: 60px;
        border-radius: 100%;
    }

    .apply-step-text-container {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-direction: column;
    }

    .apply-step-text-container span {
        line-height: 20px;
        display: block;
        text-align: left;
        padding: 0 30px;
    }

    .btn-red {
        min-width: 220px;
        height: 40px;
        padding: 0 5px 0 15px;
    }

    .apply-step-item::after {
        width: 60px;
        content: "";
        position: absolute;
        top: 110px;
        left: 10px;
        right: 0;
        border-top: 0.3vw dashed rgba(000, 000, 000, 0.5);
        z-index: 0;
        transform: rotate(90deg);
    }

    .bottom-loan-image-box {
        height: 17vw;
    }
}

@media(max-width:767px) {
    .product-hero-content h1 {
        max-width: 100%;
    }

    .bottom-loan-image-box {
        height: auto;
    }

    .stripe-bg {
        background-size: cover !important;
    }

    .document-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 15px;
    }

    .document-card {
        border-radius: 10px;
        padding: 20px;
        gap: 15px;
    }

    .document-list {
        gap: 10px;
    }

    .document-list li {
        line-height: 20px;
    }

    .document-arrow {
        margin-right: 8px;
    }

    .product-card {
        display: block;
        margin: 0 0 20px 0;
    }

    .product-card-image-box {
        order: 1;
        width: 100%;
    }

    .product-card-image-box img {
        height: auto;
        width: 100%;
    }

    .product-cards-container {
        padding: 20px 0 50px 0;
    }

    .product-customer-overlay {
        bottom: 20px;
        left: 20px;
    }

    .product-details-inner {
        width: 100%;
    }

    .product-card-details-box {
        width: 100%;
        padding: 20px 20px;
    }

    .product-card-info h2 {
        margin-bottom: 10px;
    }

    .product-card-info p {
        margin-bottom: 12px;
        width: auto;
    }

    .product-card.reverse .product-orange-banner {
        margin-left: -25px;
        width: calc(100% + 45px);
        padding-left: 20px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .product-card-info p {
        font-size: var(--text-20);
    }

    .product-benefits-box h4 {
        font-size: var(--text-20);
    }

    .product-hero-content {
        padding: 30px 0 0 0;
    }

    .product-hero-content span {
        font-size: var(--text-20);
    }

    .know-more-btn {
        width: fit-content;
        min-width: 150px;
        display: flex;
        font-size: var(--text-20);
        height: auto;
        padding: 6px 10px 6px 15px;
    }

    .know-more-btn img {
        width: 20px;
    }

    .product-benefits-box {
        gap: 10px;
        margin: 10px 0;
    }

    .product-benefit-item img {
        width: 16px;
    }

    .product-benefit-item span {
        font-size: 12px;
    }

    .product-benefit-item {
        gap: 5px;
        padding-bottom: 10px;
    }

    .product-benefits-list {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .bottom-loans-grid {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .bottom-loan-image-box img {
        width: 100%;
    }

    .bottom-loan-title-overlay {
        bottom: 20px;
        left: 20px;
        width: 100%;
    }

    .bottom-loan-card {
        border-radius: 20px;
    }

    .bottom-loan-details-box {
        padding: 20px;
        gap: 15px;
    }

    .bottom-loan-yellow-bar {
        padding: 8px 0;
        gap: 20px;
    }

    .bottom-loan-benefits-list {
        gap: inherit;
    }

    .bottom-loan-benefit-pill {
        border-radius: inherit;
        gap: 5px;
        background: transparent;
    }

    .bottom-loan-benefit-pill img {
        width: 17px;
        height: auto;
    }

    .bottom-loan-benefit-pill span {
        font-size: 12px;
    }

    .bottom-loan-benefits p {
        padding: 5px 0 10px 0;
    }

    .bottom-loan-details-box .product-action-box {
        margin: 10px 0;
    }

    .bottom-loans-header h2 {
        padding: 0 0 10px 0;
    }

    .bottom-loans-inner {
        padding: 50px 0;
    }

    .bottom-loans-header {
        margin-bottom: 20px;
    }

    .faq-inner {
        padding: 50px 0;
    }

    .faq-header {
        margin-bottom: 20px;
    }

    .faq-item {
        border-radius: 5px;
        padding: 15px 20px;
        margin: 0 0 10px 0;
    }

    .faq-question-btn span {
        font-size: 15px;
        line-height: 20px;
    }

    .faq-answer p {
        padding: 10px 0;
    }

    .faq-icon-arrow {
        width: 20px;
        height: auto;
    }

    .eligibility-tab-btn {
        border-radius: 30px;
        padding: 0px 20px;
        min-width: 160px;
        font-size: var(--text-20);
        line-height: 18px;
        height: 60px;
    }

    .eligibility-sub-title {
        width: auto;
        padding: 30px 0;
        line-height: 25px;
    }

    .eligibility-tabs-container {
        gap: 15px;
        padding: 20px 0 00;
    }

    .eligibility-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .eligibility-card-icon.why-choose-icon-wrapper img {
        width: auto;
    }

    .eligibility-card {
        border-radius: 10px;
        padding: 15px;
        width: 100%;
        min-height: 130px;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .why-choose-icon-wrapper {

        border-radius: 10px;
        width: 50px;
        height: 50px;

    }

    .eligibility-card p {
        width: auto;
        line-height: 20px;
        position: relative;
        top: 0;
        order: 1;
        padding: 10px 0 0 0;
    }

    .emi-calc-banner-wrapper {
        border-radius: 10px;
        padding: 30px 20px 30px 20px;
        flex-wrap: wrap;
        height: 370px;
    }

    .emi-calc-text-container {
        width: auto;
    }

    .emi-calc-text-container p {
        padding: 10px 0;
    }

    .emi-calc-btn {
        padding: 25px 0 10px 0;
    }

    .btn-white.btn-medium {
        min-width: 180px;
        height: 35px;
        border-radius: 30px;
        padding: 0 10px 0 20px !important;
        color: #B83445;
    }

    .emi-calc-img-container {
        position: static;
        right: 0;
        width: auto;
        top: 0;
        margin-top: 0;
    }

    .emi-calc-btn {
        width: auto;
        display: flex;
        justify-content: center;
    }

    .emi-calc-img-container img {
        width: auto;
    }

    .eligibility-sec-inner {
        padding: 100px 0 50px 0;
    }

    .emi-calc-img-container {
        position: static;
        right: 0;
        width: auto;
        top: 0;
        margin-top: 0;
    }

    .why-choose-inner {
        padding: 50px 0;
    }

    .why-choose-header {
        margin-bottom: 20px;
        max-width: 100%;
        gap: 10px;
    }

    .why-choose-context {
        width: 85%;
        padding: 0 0 0 10px;
    }

    .why-choose-icon-wrapper {
        border-radius: 10px;
        width: 50px;
        height: 50px;
    }

    .why-choose-icon-wrapper img,
    .why-choose-icon-wrapper svg {
        width: auto;
    }

    .why-choose-card {
        border-radius: 10px;
        padding: 15px 15px;
        gap: 10px;
    }

    .why-choose-grid {
        gap: 10px;
        flex-wrap: wrap;
        display: flex;
    }

    .product-banner-title {
        width: 100%;
    }

    .slider-inner1 span img {
        width: 22px;
    }

    .slider-inner1 span {
        padding: 7px 10px;
    }

    .product-hero-data-box {
        gap: 10px;
    }

    .product-data-col span.text-15 {
        font-size: 10px;
    }

    .product-data-col span.text-20 {
        font-size: 12px;
        line-height: 14px;
    }

    .product-data-col {

        gap: 3px;
        border-radius: 10px;
        padding: 10px;
        min-height: 60px;
        text-align: center;
    }

    .slider-text-parent .slider-inner2 {
        width: auto;
        justify-content: flex-start;
        padding: 30px 0 00;
    }

    .product-page-inner h1 {
        font-size: 40px;
        line-height: 40px;
        padding: 10px 0;
    }

    .prodct-hero-sec.top-slider a.btn-medium {
        min-width: 125px;
        font-size: 15px;
        width: inherit !important;
        padding: 0 10px 0 15px !important;
    }

    .slider-text1 p {
        line-height: 25px;
    }

    .apply-steps-inner {
        padding: 50px 0;
    }

    .apply-steps-card {
        overflow: hidden;
        background-size: contain;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        display: flex;
        background-color: #F69E32;
    }

    .apply-steps-header {
        gap: 10px;
        max-width: 100%;
    }

    .apply-steps-row {
        width: 100%;
        gap: 10px;
        padding: 30px 0 0 0;
        flex-wrap: wrap;
    }

    .apply-step-item {
        display: flex;
        flex-direction: inherit;
        gap: 10px;
        flex: inherit;
        position: relative;
        z-index: 1;
        width: 100%;
        flex-wrap: wrap;
        padding: 0 0 50px 0;
    }

    .apply-step-number-circle {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        z-index: 2;
    }

    .apply-step-number-circle::before {
        width: 60px;
        height: 60px;
        border-radius: 100%;
    }

    .apply-step-text-container {
        width: 70%;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex-direction: column;
    }

    .apply-step-text-container span {
        line-height: 20px;
        display: block;
        text-align: left;
        padding: 0 30px;
    }

    .btn-red {
        min-width: 220px;
        height: 40px;
        padding: 0 5px 0 15px;
    }

    .apply-step-item::after {
        width: 60px;
        content: "";
        position: absolute;
        top: 110px;
        left: 10px;
        right: 0;
        border-top: 0.8vw dashed rgba(000, 000, 000, 0.5);
        z-index: 0;
        transform: rotate(90deg);
    }
}
