:root {
    --primary: #355EFC;
    --secondary: #E93C05;
    --tertiary: #636161;
    --light: #DFE4FD;
    --dark: #011A41;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

body, .btn, .navbar-nav .nav-link, h1, h2, h3, h4, h5, h6 {
    font-family: "Nunito Sans", sans-serif;
    font-optical-sizing: auto;
    color: #636161;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

    #spinner.show {
        transition: opacity .5s ease-out, visibility 0s linear 0s;
        visibility: visible;
        opacity: 1;
    }

/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
    z-index: 40;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(3, 7, 23, 0.07);
}


@keyframes bounce-on-hover {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 15px 15px;
    color: #636161;
    font-weight: 700;
    font-size: 18px;
    outline: none;
}

    .navbar .navbar-nav .nav-link:hover {
        color: var(--primary);
        font-weight: 700;
        animation: bounce-on-hover 0.4s ease-out;
    }

    .navbar .navbar-nav .nav-link.active {
        color: #636161;
        font-weight: 700;
    }

.navbar .btn {
    align-self: center;
}

/* --- Button Sheen Animation (for Navbar and Carousel) --- */
.navbar .btn-primary,
#header-carousel .btn-primary {
    position: relative;
    overflow: hidden;
}

    .navbar .btn-primary::before,
    #header-carousel .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.25) 50%, rgba(255, 255, 255, 0) 80% );
        transform: skewX(-25deg);
        transition: left 0.8s ease-in-out;
    }

    .navbar .btn-primary:hover::before,
    #header-carousel .btn-primary:hover::before {
        left: 150%;
    }

/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
    border-bottom: 2px solid #ffa704;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}

.my-5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

#header-carousel .carousel-item {
    position: relative;
    max-height: 350px;
}

.menuMobile {
    display: none;
}

.btn-lg-square {
    margin-bottom: unset;
}

.logo {
    width: 180px;
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/carousel/About_header.jpg) top left no-repeat;
    background-size: cover;
    border-bottom: 2px solid #ffa704;
    height: 350px;
}

    .page-header .breadcrumb-item,
    .page-header .breadcrumb-item a {
        font-weight: 500;
    }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: var(--tertiary);
        }

.facts {
    background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
}

.callback {
    position: relative;
}

    .callback::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 50%;
        top: 0;
        left: 0;
        background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);
        z-index: -1;
    }

/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

    .feature .feature-box:hover {
        background: var(--primary);
        border-color: var(--primary) !important;
    }

        .feature .feature-box:hover * {
            color: #FFFFFF !important;
        }

/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

    .service .nav .nav-link.active {
        border-color: var(--primary) !important;
        background: var(--primary);
    }

        .service .nav .nav-link.active h5 {
            color: #FFFFFF !important;
        }

            .service .nav .nav-link.active h5 i {
                color: #FFFFFF !important;
            }

/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

    .project-item .project-img a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(255, 255, 255, .5);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        opacity: 0;
        transition: .5s;
    }

    .project-item:hover .project-img a {
        opacity: 1;
    }

    .project-item .project-title {
        position: absolute;
        top: 3rem;
        right: 0;
        bottom: 0;
        left: 3rem;
        border: 1px solid var(--light);
        border-radius: 8px;
        display: flex;
        align-items: flex-end;
        padding: 18px;
        z-index: -1;
        transition: .5s;
    }

    .project-item:hover .project-title {
        background: var(--primary);
        border-color: var(--primary);
    }

    .project-item .project-title h4 {
        transition: .5s;
    }

    .project-item:hover .project-title h4 {
        color: #FFFFFF;
    }

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 12px;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        background: var(--light);
        border-radius: 45px;
        font-size: 22px;
        transition: .5s;
    }

        .project-carousel .owl-nav .owl-prev:hover,
        .project-carousel .owl-nav .owl-next:hover {
            background: var(--primary);
            color: var(--light);
        }

/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

    .team-item img {
        position: relative;
        z-index: 2;
    }

    .team-item .team-text {
        position: absolute;
        top: 0;
        right: 3rem;
        bottom: 0;
        left: 3rem;
        padding: 15px;
        border: 1px solid var(--light);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        transition: .5s;
        z-index: 1;
        text-align: center;
    }

    .team-item:hover .team-text {
        background: var(--primary);
        border-color: var(--primary);
    }

    .team-item .team-text h4 {
        transition: .5s;
    }

    .team-item:hover .team-text h4 {
        color: #FFFFFF;
    }

    .team-item .team-social .btn {
        background: var(--light);
        color: var(--primary);
    }

    .team-item:hover .team-social .btn {
        background: #FFFFFF;
    }

    .team-item .team-social .btn:hover {
        background: var(--primary);
        color: var(--light);
    }

/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

    .testimonial-item .testimonial-text {
        position: relative;
        text-align: center;
    }

        .testimonial-item .testimonial-text .btn-square {
            position: absolute;
            width: 60px;
            height: 60px;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
        }

        .testimonial-item .testimonial-text::before {
            position: absolute;
            content: "";
            bottom: -60px;
            left: 50%;
            transform: translateX(-50%);
            border: 30px solid;
            border-color: var(--light) transparent transparent transparent;
        }

        .testimonial-item .testimonial-text::after {
            position: absolute;
            content: "";
            bottom: -59px;
            left: 50%;
            transform: translateX(-50%);
            border: 30px solid;
            border-color: #FFFFFF transparent transparent transparent;
        }

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

    .testimonial-carousel .owl-dot::after {
        position: absolute;
        content: "";
        width: 16px;
        height: 16px;
        top: 6px;
        left: 6px;
        border-radius: 16px;
        background: var(--light);
        transition: .5s;
    }

    .testimonial-carousel .owl-dot.active {
        border-color: var(--primary);
    }

        .testimonial-carousel .owl-dot.active::after {
            background: var(--primary);
        }

/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

    .footer .btn.btn-link::before {
        position: relative;
        content: "\f105";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 10px;
    }

    .footer .btn.btn-link:hover {
        color: var(--primary);
        letter-spacing: 1px;
        box-shadow: none;
    }

.copyright {
    color: var(--light);
    background: #000B1C;
}

    .copyright a {
        color: var(--light);
    }

        .copyright a:hover {
            color: var(--primary);
        }

.text-primary {
    color: #e58a00 !important;
}

.bg-primary {
    background-color: #ffa704 !important;
}

.shadowyellow {
    box-shadow: 0 0.5rem 1rem rgba(255, 167, 4, 0.15) !important;
}

.loan-products-section {
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* The grid that holds the cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.full-width-wrapper {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

    .full-width-wrapper .product-card {
        max-width: 280px;
        width: 100%;
    }
/* General product card styling */
.product-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

/* ----- Styling for the Text-Based Card ----- */
.text-card {
    background-color: #f7a421;
    color: #636161;
}

    .text-card .card-content-full {
        padding: 30px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

    .text-card h3 {
        margin-top: 0;
        font-size: 1.8rem;
    }

    .text-card p {
        font-size: 1rem;
        flex-grow: 1;
    }

.enquire-btn {
    display: inline-block;
    border: 2px solid #636161;
    border-radius: 50px;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    color: #636161;
    font-weight: bold;
    margin-top: 20px;
    align-self: flex-start;
    transition: background-color 0.3s, color 0.3s;
}

.enquire-btn {
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.1s ease-in-out;
    border-color: var(--dark);
    color: var(--dark);
}

    .enquire-btn::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 150%;
        padding-top: 150%;
        border-radius: 50%;
        background-color: var(--dark);
        z-index: -1;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .enquire-btn:hover {
        color: #fff;
    }

/* ----- Styling for the Image-Based Cards ----- */
.image-card {
    background-color: #ffffff;
}

.card-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.card-content-bar {
    padding: 20px;
    text-align: center;
}

    .card-content-bar h4 {
        margin: 0;
        font-size: 1.1rem;
        color: #2e2e2e;
    }

/* Color utility classes for the bottom bar */
.color-orange {
    background-color: #dee2fb;
}

.color-lime {
    background-color: #bfcc84;
}

.color-yellow {
    background-color: #d5c085;
}

.color-green {
    background-color: #9cd2a9;
}

.color-blue {
    background-color: #b0e0e6;
}
.color-grey {
    background-color: #c9d2d9;
}
/* ----- Styling for Interactive Image Cards ----- */
.product-card.image-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.image-card .card-content-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--card-color, #f0f0f0);
    color: #636161;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    z-index: 2;
}

    .image-card .card-content-full h3 {
        margin-top: 0;
        font-size: 1.8rem;
    }

    .image-card .card-content-full p {
        font-size: 1rem;
        flex-grow: 1;
    }

    .image-card .card-content-full .enquire-btn {
        border-color: #636161;
        color: #636161;
    }

        .image-card .card-content-full .enquire-btn:hover {
            background-color: #636161;
            color: #fff;
        }

.image-card .card-content-bar {
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card.image-card.is-flipped .card-content-full {
    transform: translateY(0);
}

.product-card.image-card.is-flipped .card-content-bar {
    opacity: 0;
}

/* --- NEW Sidebar Theme & Layout--- */
.enquiry-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

    .enquiry-modal-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.enquiry-sidebar {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -800px;
    width: 800px;
    max-width: 95%;
    height: auto;
    max-height: 90vh;
    background-color: #fff;
    z-index: 1000;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease-in-out;
    overflow-y: auto;
    border-radius: 15px 0 0 15px;
}

    .enquiry-sidebar.active {
        right: 0;
    }

.sidebar-container {
    display: flex;
    height: 100%;
}

.sidebar-left {
    flex: 1.2;
    padding: 30px;
    text-align: center;
    background-color: #fff;
}

.sidebar-right {
    flex: 1;
    padding: 30px;
    border-left: 1px solid #dee2e6;
}

    .sidebar-left h2, .sidebar-right h3 {
        margin-top: 0;
        margin-bottom: 10px;
        color: var(--dark);
    }

.sidebar-left p {
    margin-bottom: 25px;
    color: var(--tertiary);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f1f1f1;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 24px;
    cursor: pointer;
    line-height: 35px;
    z-index: 10;
}

/* 5. Product Grid (Left Column) */
.product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    transition: justify-content 0.4s ease;
}

    .product-grid.single-item-mode {
        align-items: flex-start;
        min-height: 250px;
    }

.product-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 1 / 1;
    width: 130px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fff;
    padding: 15px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--tertiary);
    font-size: 14px;
    font-weight: 500;
    position: relative;
}

    .product-item.hide-item {
        transform: scale(0.5);
        opacity: 0;
        width: 0;
        height: 0;
        padding: 0;
        margin: 0;
        border-width: 0;
    }

    .product-item i {
        font-size: 28px;
        margin-bottom: 10px;
        color: var(--primary);
        display: block;
    }

    .product-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        border-color: var(--primary);
    }

    .product-item.selected {
        border-color: #28a745;
        background-color: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

        .product-item.selected::after {
            content: '✓';
            position: absolute;
            top: 8px;
            right: 8px;
            width: 22px;
            height: 22px;
            background-color: #28a745;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
        }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 13px;
        margin-bottom: 5px;
        font-weight: 600;
        color: var(--tertiary);
    }

    .form-group input {
        width: 100%;
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-sizing: border-box;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(53, 94, 252, 0.15);
        }

.phone-input {
    display: flex;
}

    .phone-input span {
        padding: 0 12px;
        background-color: #f7f7f7;
        border: 1px solid #ddd;
        border-right: none;
        border-radius: 8px 0 0 8px;
        display: flex;
        align-items: center;
    }

    .phone-input input {
        border-left: none;
        border-radius: 0 8px 8px 0;
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #e0e0e0;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: #888;
    cursor: not-allowed;
    transition: background-color 0.3s;
}

    .submit-btn.enabled {
        background-color: var(--primary);
        color: white;
        cursor: pointer;
    }

        .submit-btn.enabled:hover {
            background-color: #2c52d4;
        }

/*Glowing & Aligned Process Timeline CSS*/
@keyframes move-line {
    0% {
        width: 0%;
    }

    95%, 100% {
        width: calc(100% - (100% / 6));
    }
}

@keyframes move-line-vertical {
    0% {
        height: 0%;
    }

    95%, 100% {
        height: 100%;
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 8px #90EE90, 0 0 12px #90EE90;
    }

    50% {
        box-shadow: 0 0 16px #90EE90, 0 0 24px #90EE90;
    }
}

@keyframes pop-up-1 {
    0% {
        transform: scale(1.2);
        background-color: var(--primary);
        color: #fff;
    }

    8%, 100% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }
}

@keyframes pop-up-2 {
    0%, 18% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }

    19% {
        transform: scale(1.2);
        background-color: var(--primary);
        color: #fff;
    }

    21%, 100% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }
}

@keyframes pop-up-3 {
    0%, 37% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }

    38% {
        transform: scale(1.2);
        background-color: var(--primary);
        color: #fff;
    }

    40%, 100% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }
}

@keyframes pop-up-4 {
    0%, 56% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }

    57% {
        transform: scale(1.2);
        background-color: var(--primary);
        color: #fff;
    }

    59%, 100% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }
}

@keyframes pop-up-5 {
    0%, 75% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }

    76% {
        transform: scale(1.2);
        background-color: var(--primary);
        color: #fff;
    }

    78%, 100% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }
}

@keyframes pop-up-6 {
    0%, 94% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }

    95% {
        transform: scale(1.2);
        background-color: var(--primary);
        color: #fff;
    }

    97%, 100% {
        transform: scale(1);
        background-color: #fff;
        color: var(--primary);
    }
}

/* --- DESKTOP STYLES --- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

    .process-timeline::before {
        content: '';
        position: absolute;
        top: 95px;
        left: calc(100% / 12);
        width: calc(100% - (100% / 6));
        height: 4px;
        background-image: linear-gradient(to right, #ddd 50%, transparent 50%);
        background-size: 20px 4px;
        z-index: 1;
    }

    .process-timeline::after {
        content: '';
        position: absolute;
        top: 95px;
        left: calc(100% / 12);
        width: 0%;
        height: 4px;
        background-color: #90EE90;
        border-radius: 2px;
        z-index: 2;
    }

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 3;
    padding: 0 15px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 3px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    position: relative;
    z-index: 4;
}

.process-step h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 14px;
    color: #636161;
}

.process-timeline.animate-timeline .process-icon {
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.process-timeline.animate-timeline::after {
    animation: move-line 10s linear infinite, glow 1.5s ease-in-out infinite;
}

.process-step:nth-child(1) .process-icon {
    animation-name: pop-up-1;
}

.process-step:nth-child(2) .process-icon {
    animation-name: pop-up-2;
}

.process-step:nth-child(3) .process-icon {
    animation-name: pop-up-3;
}

.process-step:nth-child(4) .process-icon {
    animation-name: pop-up-4;
}

.process-step:nth-child(5) .process-icon {
    animation-name: pop-up-5;
}

.process-step:nth-child(6) .process-icon {
    animation-name: pop-up-6;
}

/* --- NEW Corner Ribbon Sticker --- */
.corner-sticker {
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    overflow: hidden;
    z-index: 5;
}

    .corner-sticker span {
        position: absolute;
        display: block;
        width: 175px;
        padding: 8px 0;
        background-color: var(--secondary);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
        color: #fff;
        font: bold 14px/1 'Nunito Sans', sans-serif;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        text-transform: uppercase;
        text-align: center;
        right: -40px;
        top: 25px;
        transform: rotate(45deg);
    }

    .corner-sticker::before,
    .corner-sticker::after {
        content: '';
        position: absolute;
        z-index: -1;
        display: block;
        border-top-color: transparent;
        border-right-color: transparent;
    }

    .corner-sticker::before {
        top: 0;
        left: 0;
    }

    .corner-sticker::after {
        bottom: 0;
        right: 0;
    }

/* ---Joined Sidebar --- */
.quick-links-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 998;
}

.quick-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    margin-bottom: 0;
    padding: 5px;
    text-decoration: none;
    text-align: center;
    background-color: #dee2fb;
    color: var(--tertiary);
    border-right: none;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border-radius: 0;
}

    .quick-link + .quick-link {
        border-top: none;
    }

    .quick-link:first-child {
        border-top-left-radius: 8px;
    }

    .quick-link:last-child {
        border-bottom-left-radius: 8px;
    }

    .quick-link:hover,
    .quick-link:focus {
        background-color: #355efc;
        color: #fff;
        outline: none;
    }

    .quick-link i {
        font-size: 20px;
        margin-bottom: 3px;
    }

    .quick-link span {
        font-weight: 600;
        font-size: 12px;
        line-height: 1.1;
    }

/* --- Loan Calculator Styles --- */
.emiContainer {
    width: 100%;
    height: auto;
    border-radius: 20px;
    padding: 30px;
    margin: 20px 0;
    border: 1px solid #dee2e6;
}

.sub-emiContainer {
    display: flex;
    width: 100%;
    gap: 50px;
    justify-content: space-evenly;
    align-items: center;
}

.view {
    width: 50%;
    max-width: 450px;
}

.breakup {
    width: 50%;
    max-width: 350px;
}

.details input {
    width: 100%;
}

.detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bold-text {
    font-weight: 600 !important;
}

.emifooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

/* Sliders Themed */
input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    margin: 10px 0;
    width: 100%;
    background: transparent;
}

    input[type="range"]:focus {
        outline: none;
    }

    input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 6px;
        cursor: pointer;
        background: var(--light);
        border-radius: 10px;
    }

    input[type="range"]::-webkit-slider-thumb {
        -webkit-appearance: none;
        box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
        border: 5px solid #ffffff;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
        margin-top: -7px;
    }

    input[type="range"]::-moz-range-track {
        width: 100%;
        height: 6px;
        cursor: pointer;
        background: var(--light);
        border-radius: 10px;
    }

    input[type="range"]::-moz-range-thumb {
        box-shadow: 2px 2px 5px #b3b3b3, -1px -1px 3px grey;
        border: 5px solid #ffffff;
        height: 20px;
        width: 20px;
        border-radius: 50%;
        background: var(--primary);
        cursor: pointer;
    }

#price {
    color: #636161;
    font-size: 25px;
}

.loan-details {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--light);
}

.chart-details {
    flex: 1;
    text-align: center;
}

    .chart-details .bold-text {
        margin-bottom: 5px;
        color: var(--primary);
    }

#price-container {
    color: var(--primary);
    font-weight: bold;
}

    #price-container::before {
        content: "Monthly Payable:";
        font-size: 12px;
        display: block;
        font-weight: bold;
        color: #555;
    }
/* Modal Popup Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    color: #636161;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: white;
    margin: 2% auto;
    border-radius: 10px;
    width: 80%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border: 2px solid #355EFC;
    box-shadow: 0 4px 15px rgba(53, 94, 252, 0.3), 0 0 0 5px rgba(53, 94, 252, 0.1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

    .modal-header h2 {
        margin: 0;
    }

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

    .close:hover,
    .close:focus {
        color: #636161;
        text-decoration: none;
    }

.modal-body {
    overflow-y: auto;
    padding-top: 0px;
}

#emiChartTable {
    width: 100%;
    border-collapse: collapse;
    color: #636161;
}

    #emiChartTable thead {
        background-color: var(--primary); /* Themed */
        color: white;
        position: sticky;
        top: 0;
    }

    #emiChartTable th,
    #emiChartTable td {
        padding: 12px 8px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    #emiChartTable tbody tr:nth-child(even) {
        background-color: #f9f9f9;
    }

.emi-input-field {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 5px 10px;
    font-weight: 600;
    color: #636161;
    text-align: center;
    max-width: 100px;
    font-size: 1rem;
}

    .emi-input-field:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 2px rgba(53, 94, 252, 0.15);
    }

    .emi-input-field::-webkit-outer-spin-button,
    .emi-input-field::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .emi-input-field[type=number] {
        -moz-appearance: textfield;
    }
/* ----- Partner Logo Slider ------ */
.partner {
    padding: 40px 0;
}

.partner__wrapper {
    position: relative;
    border-top: 2px solid #ff9b04;
    border-bottom: 2px solid #ff9b04;
}

.partner__item {
    padding: 15px;
}

.partner__item-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

    .partner__item-inner img {
        max-width: 150px;
        transition: all 0.3s ease;
    }

    .partner__item-inner:hover img {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

.swiper-slide {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Main section headings */
.container-xxl.py-5:has(.process-timeline) h1.display-5,
.feature h1.display-5,
.compare-section h1.display-5,
#loan-calculator-section h1.display-5,
.service h1.display-5,
.container-xxl:has(.testimonial-carousel) h1.display-5 {
    color: #636161;
}

#tab-pane-1 h3,
#tab-pane-2 h3,
#tab-pane-3 h3,
#tab-pane-4 h3 {
    color: #636161;
}

.hero-form-section .hero-title,
.easy-steps-section h1.display-5,
.why-choose-us h1.display-5,
.container-xxl:has(.faq-section) h1.display-5 {
    color: #636161;
}

.hero-form-section .hero-title,
.container-xxl:has(.info-card) .section-header h1,
.container-xxl:has(.advantage-item) .section-header h1,
h1.eligibility-section-title,
.container-xxl:has(.doc-item) .section-header h1 {
    color: #636161;
}

.hero-form-section .hero-title,
.container-xxl:has(.why-us-card) h1.display-5,
.ondc-partner-card h2.display-6,
.container-xxl:has(.gold-calculator-card) h1.display-5,
.container-xxl:has(.loan-scheme-card) h1.display-5,
.container-xxl:has(.security-card) h1.display-5 {
    color: #636161;
}

.hero-form-section .hero-title,
.advantage-section h1.display-5,
.purchase-section h2.display-5,
.container-xxl:has(.eligibility-box) h1.display-5,
.documents-section h1.display-5,
.container-xxl:has(.fees-card) h1.display-5 {
    color: #636161;
}

.container-xxl.py-5 p.d-inline-block + h1.display-5,
.container-xxl:has(.team-item) h1.display-5 {
    color: #636161;
}

#header-carousel .carousel-caption h1 {
    position: relative;
    color: #636161;
}

#header-carousel .carousel-caption p {
    position: relative;
    color: #636161;
}


.carousel-loan-tag {
    display: none;
}

/*Mobile Responsive Section Start*/
@media (max-width: 480px) {
    .fixed-top {
        position: fixed !important; 
        background: #FFFFFF !important;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    body {
        padding-top: 75px;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 480px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

@media (max-width: 480px) {

    .navbar-toggler {
        padding: 0.15rem 0.35rem;
    }

    .logo {
        width: 95px;
    }

    .navbar-toggler:focus {
        box-shadow: unset;
    }

    .btn-lg-square {
        margin-bottom: 50px;
    }

    .menuMobile {
        display: block;
    }

    #header-carousel .carousel-item {
        position: relative;
        min-height: 250px;
        overflow: hidden;
    }

    #header-carousel h1 {
        font-size: 20px;
    }

    #header-carousel .btn {
        padding: 5px !important;
    }

    #header-carousel .carousel-caption {
        padding-left: 43px !important;
        padding-right: 50px !important;
        padding-top: 60px !important;
        text-align: center !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    #header-carousel .carousel-caption .d-inline-block {
        display: none !important;
    }

    .appBottomMenu {
        min-height: 56px;
        position: fixed;
        z-index: 999;
        width: 100%;
        bottom: 0;
        left: 0;
        right: 0;
        background: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        border-top: 1px solid #DCDCE9;
        padding-left: 4px;
        padding-right: 4px;
        padding-bottom: env(safe-area-inset-bottom);
    }

        .appBottomMenu .item {
            font-size: 9px;
            letter-spacing: 0;
            text-align: center;
            width: 100%;
            height: 56px;
            line-height: 1.2em;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

            .appBottomMenu .item.active:before {
                background: #6236FF;
            }

            .appBottomMenu .item:before {
                content: '';
                display: block;
                height: 2px;
                border-radius: 0 0 10px 10px;
                background: transparent;
                position: absolute;
                left: 4px;
                right: 4px;
                top: 0;
            }

            .appBottomMenu .item .col {
                width: 100%;
                padding: 0 4px;
                text-align: center;
            }

            .appBottomMenu .item.active .icon, .appBottomMenu .item.active ion-icon, .appBottomMenu .item.active strong {
                color: #6236FF !important;
                font-weight: 500;
            }

    .icon-inner, .ionicon, svg {
        display: block;
        height: 100%;
        width: 100%;
    }

    .appBottomMenu .item strong {
        margin-top: 4px;
        display: block;
        color: #27173E;
        font-weight: 400;
    }
}

/* Main Sidebar Container */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .enquiry-sidebar {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        right: auto;
        width: 95%;
        max-width: 500px;
        height: auto;
        max-height: 95vh;
        border-radius: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .sidebar-container {
        flex-direction: column;
        padding-top: 30px;
    }

    .sidebar-left,
    .sidebar-right {
        flex: none;
        width: 100%;
        padding: 20px;
    }

    .sidebar-right {
        border-top: 1px solid #dee2e6;
        border-left: none;
    }

    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        display: grid;
    }

    .product-item {
        width: 100%;
        height: auto;
        padding: 15px 5px;
        aspect-ratio: 1 / 1;
    }

    .close-btn {
        top: 10px;
        right: 10px;
    }

    .enquiry-sidebar.active {
        opacity: 1;
        visibility: visible;
    }
}

@media screen and (max-width: 480px) {
    .emiContainer {
        padding: 20px 15px;
    }

    .sub-emiContainer {
        flex-direction: column;
        gap: 3px;
    }

    .view {
        width: 80%;
        max-width: 80%;
    }

    #pieChart {
        height: 230px !important;
    }

    .breakup {
        width: 80%;
        max-width: 180px;
        margin: 0 auto;
    }

    .loan-details {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 20px;
        row-gap: 20px;
        margin-top: 5px;
        padding-top: 0;
        border-top: none;
    }

        .loan-details .chart-details .bold-text {
            font-size: 14px;
            margin-bottom: 2px;
        }


        .loan-details .chart-details p[id] {
            font-size: 1rem !important;
        }

    .chart-details {
        flex-grow: 0;
        flex-shrink: 0;
        text-align: center;
        border-bottom: none;
        padding-bottom: 0;
    }

    .loan-details .chart-details:nth-child(1),
    .loan-details .chart-details:nth-child(2) {
        flex-basis: 40%;
    }

    .chart-details:last-child {
        flex-basis: 100%;
    }

    .emifooter {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .loan-details {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 20px;
        row-gap: 20px;
    }

    .chart-details {
        flex-grow: 0;
        flex-shrink: 0;
        text-align: center;
    }

    .loan-details .chart-details:nth-child(1),
    .loan-details .chart-details:nth-child(2) {
        flex-basis: 40%;
    }

    .chart-details:last-child {
        flex-basis: 100%;
    }

    .emifooter {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 992px) {
    .mobile-scroll-wrapper {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

        .mobile-scroll-wrapper::-webkit-scrollbar {
            display: none;
        }

    .products-grid {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding-bottom: 20px;
        width: max-content;
    }

    .product-card {
        width: 45vw;
        min-width: 250px;
        max-width: 280px;
        flex-shrink: 0;
    }

    .full-width-wrapper {
        display: block;
        width: auto;
        flex-shrink: 0;
    }

        .full-width-wrapper .product-card {
            width: 45vw;
            min-width: 250px;
            max-width: 280px;
        }
}

@media (max-width: 480px) {
    .product-card.image-card {
        flex-direction: column;
        justify-content: flex-start;
    }

    .product-card {
        height: 300px;
    }

    .image-card .card-content-full {
        position: static;
        transform: translateY(0);
        height: auto;
        padding: 15px;
        background-color: var(--card-color);
        border-radius: 0 0 20px 20px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .product-card:has(.corner-sticker) .enquire-btn {
        display: none !important;
    }

    .product-card:has(.corner-sticker) .card-content-full h4 {
        text-align: center;
        margin-top: auto;
        margin-bottom: auto;
    }

    .image-card .card-content-full h3 {
        text-align: center;
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .image-card .card-content-full p {
        display: none;
    }

    .image-card .card-content-full .enquire-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
        padding: 8px 15px;
        font-size: 17px;
        border-radius: 50px;
        background-color: white;
        border: 2px solid white;
        color: darkred;
    }

    .image-card .card-content-bar {
        display: none;
    }

    .product-card.image-card.is-flipped .card-content-full {
        transform: translateY(0);
    }

    .product-grid.single-item-mode {
        justify-content: center;
        align-items: center;
    }

    .product-item.hide-item {
        display: none;
    }
}

@media (max-width: 480px) {
    .quick-links-sidebar {
        display: none !important;
    }

    .process-timeline {
        flex-direction: column;
        position: relative;
        padding-top: 0;
        display: block;
    }

        .process-timeline::before {
            display: block;
            content: '';
            position: absolute;
            top: 0px;
            left: 20%;
            transform: translateX(-50%);
            height: calc(100% - 95px);
            width: 4px;
            background-image: linear-gradient(to bottom, #ddd 50%, transparent 50%);
            background-size: 4px 20px;
            z-index: 1;
        }

        .process-timeline::after {
            display: block;
            content: '';
            position: absolute;
            top: 0px;
            left: 20%;
            transform: translateX(-50%);
            height: 0;
            width: 4px;
            background-color: #90EE90;
            z-index: 2;
            border-radius: 2px;
        }

    @keyframes move-line-vertical {
        0% {
            height: 0%;
        }

        95%, 100% {
            height: 85%;
        }
    }

    .process-timeline.animate-timeline::after {
        animation: move-line-vertical 10s linear infinite, glow 1.5s ease-in-out infinite;
    }

    .process-step {
        display: block;
        position: relative;
        margin-bottom: 0px;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
    }

        .process-step .process-icon {
            position: absolute;
            top: 0;
            left: 10%;
            transform: translateX(-50%);
            z-index: 5;
            margin: 0;
            float: none;
            width: 70px;
            height: 70px;
        }

        .process-step h5,
        .process-step p {
            width: 50%;
            margin-left: calc(50% + 10px);
            text-align: left;
            box-sizing: border-box;
        }

        .process-step h5 {
            margin-top: 20px;
        }

        .process-step:first-child {
            padding-top: 0;
        }

        .process-step:last-child {
            margin-bottom: 0;
        }

        .process-step > h5:first-child {
            margin-bottom: 0;
        }
}

@media (max-width: 480px) {

    .facts .row {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-evenly;
        padding-bottom: 0;
    }

    .facts .col-sm-6,
    .facts .col-lg-3 {
        width: 25%;
        max-width: 25%;
        padding-left: 5px;
        padding-right: 5px;
        flex-shrink: 1;
        text-align: center !important;
        margin: 10px 0;
    }

    .facts i {
        font-size: 2em !important;
    }

    .facts .display-4 {
        font-size: 1.8rem !important;
    }

    .facts .fs-5 {
        font-size: 0.7rem !important;
        line-height: 1.1;
    }

    .facts .row .text-center.wow.fadeIn {
        width: 25%;
        max-width: 25%;
    }

    .facts .row hr {
        display: none;
    }

    .container-fluid.facts {
        padding-top: 30px !important;
    }

    .py-5 {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .p-4 {
        padding: 0.8rem !important;
    }

    .facts.my-5 {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .facts.py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .facts .container.py-1 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .facts .container .row {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .facts .col-sm-6,
    .facts .col-lg-3 {
        margin: 10px 0;
    }

    .feature .row.g-5 > .col-lg-6 {
        width: 100%;
        max-width: none;
    }

    .feature .row.g-4 {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .g-5, .gy-5 {
        --bs-gutter-y: 0rem;
    }

    .feature .col-md-6 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100%;
    }

    .feature .col-md-6 .row.g-4 {
        gap: 6px;
    }
    
    .feature .col-12,
    .feature .col-md-12 {
        width: 100% !important;
        max-width: 100% !important;
    }

    .feature .feature-box {
        padding: 15px;
        height: 100%;
    }

        .feature .feature-box .fa-3x {
            font-size: 1.5em !important;
            margin-bottom: 5px !important;
        }

        .feature .feature-box h4 {
            font-size: 1rem;
            line-height: 1.2;
        }


    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 90vh;
    }

    .modal-body {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    #emiChartTable {
        width: 100%;
        min-width: 600px;
    }

        #emiChartTable th,
        #emiChartTable td {
            white-space: nowrap;
            padding: 10px 5px;
            font-size: 0.8rem;
        }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }

    .sidebar-left,
    .sidebar-right {
        padding: 15px 10px;
    }

    .product-item {
        padding: 10px 5px;
        font-size: 13px;
    }

        .product-item i {
            font-size: 24px;
            margin-bottom: 8px;
        }
}

/* --- HIDE FOOTER SECTIONS ON MOBILE --- */
@media (max-width: 480px) {
    .footer .row .col-lg-3.col-md-6:first-child {
        display: none;
    }

    .footer .row .col-lg-3.col-md-6:last-child {
        display: none;
    }

    .footer .row .col-lg-3.col-md-6 {
        width: 50%;
    }

    .footer h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer .btn.btn-link {
        font-size: 13px;
        margin-bottom: 4px;
    }

        .footer .btn.btn-link::before {
            display: none;
        }
}

@media (max-width: 480px) {
    .horizontal-scroll-mobile {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

        .horizontal-scroll-mobile > .col-md-6 {
            flex: 0 0 75%;
            max-width: 300px;
        }

    .horizontal-scroll-mobile {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .horizon
    tal-scroll-mobile::-webkit-scrollbar {
        display: none;
    }
}


@media (max-width: 480px) {
    .fixed-top {
        position: static;
    }

    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    #header-carousel .carousel-item picture,
    #header-carousel .carousel-item img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-loan-tag {
        display: inline-block;
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 5;
        background-color: white;
        padding: 8px 15px;
        border-radius: 12px; /* Slightly less rounded for a better fit */
        text-align: left;
    }

        .carousel-loan-tag strong {
            display: block;
            color: #8b0000;
            font-size: 14px;
            font-weight: 700;
            line-height: 1.2;
        }

        .carousel-loan-tag span {
            display: block;
            color: #636161;
            font-size: 11px;
            font-weight: 500;
            margin-top: 2px;
        }

    .mobile-clickable-image {
        cursor: pointer;
    }

    #header-carousel .carousel-caption {
        display: none !important;
    }
}



.loginContainer {
    position: relative;
    background: #dee2fb;
    width: 80%;
    overflow: hidden;
    box-shadow: 0 0 5px 0 #e1e1e1;
    border-radius: 10px;
}

    .loginContainer .banner__content-heading span {
        color: #355efc!important;
    }

    .loginContainer .form-content h2, .loginContainer .form-content p{
        color: #355efc!important;
    }


.form-areaa {
    background-color: #ffffff;
    overflow: hidden;
    box-shadow: 0 0 5px 0 #e1e1e1;
    display: flex;
    align-items: center;
    height: 400px;
}

.incomplete-card {
    position: relative;
    background: #f4f5ff;
    border: 2px solid var(--service-item-border-color);
    box-shadow: 0 6px 20px rgba(108, 92, 231, 0.25);
    transition: all 0.3s ease;
    display: table;
    min-width: 685px;
    max-width: 800px;
    margin: 10px auto;
    cursor: pointer;
}



.loan-pill {
    background: #f3f5f9;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Segoe UI', Arial, sans-serif !important;
}

.form-control:focus {
    border: 1px solid #ccc;
    border-bottom: 2px solid #043583;
}

.modal-header .btn-close {
    padding: 5px !important;
    font-size: 10px;
    background-color: unset;
}

.info-section h6 {
    font-size: 18px;
    font-weight: 600;
    color: #004085;
    margin-bottom: 15px;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 5px;
}


.form-content p {
    color: #0054b5;
}

.account__header h4 {
    font-size: calc(1.3rem + 0.5142857143vw);
    color: #355efc;
}

.back-to-login {
    color: #0054b5;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    display: inline-block;
}

    .back-to-login:hover {
        color: #003d85;
    }

.blue-text {
    color: #0057af !important;
    font-weight: bold;
}
.text-muted {
    color: var(--text-muted) !important;
}

.box {
    position: relative;
    margin-bottom: 1.5rem;
    width: 100%;
    background-color: #ffffff0a;
    border: 1px solid #ffffff !important;
    border-radius: 10px;
    padding: 12px;
    -webkit-transition: .5s;
    transition: .5s;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
    box-shadow: 0 0 30px 0 rgba(82, 63, 105, 0.05);
}


.box-body {
    background-color: #ffffff;
    border-radius: 6px;
    padding: 10px;
}

.btnprocess {
    background-color: #ffffff;
}

.loanaccNumber {
    margin-bottom: 0;
    color: #008000;
}


/* Active Card */
.active-card {
    border-color: #e2e8f0;
    cursor: pointer;
}

/* Inactive Card Background & Restricted Cursor */
.inactive-card {
    background-color: #e2e8f0;
    cursor: not-allowed !important; /* Shows the cross/slash cursor */
}