* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

body {
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

.navbar {
    width: 100%;
    background-color: #ffffff;
    padding: clamp(14px, 1.8vw, 20px) clamp(20px, 4.5vw, 60px);
}

.nav-container {
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo-img {
    height: clamp(32px, 3vw, 42px);
    width: auto;
    display: block;
}

.nav-menu {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 40px);
    list-style: none;
    flex-wrap: wrap;
}

.nav-link {
    text-decoration: none;
    color: #2d3748;
    font-size: clamp(13px, 1vw, 15px);
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-link.active {
    background-color: #3b37d4;
    color: #ffffff;
    padding: clamp(7px, 0.8vw, 9px) clamp(16px, 2vw, 24px);
    border-radius: 8px;
}

.arrow-down {
    font-size: 12px;
    margin-left: 2px;
}

.auth-btn {
    background-color: #1e1b8c;
    color: #ffffff;
    padding: clamp(8px, 1vw, 10px) clamp(16px, 2vw, 22px);
    border-radius: 8px;
    text-decoration: none;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.auth-btn:hover {
    background: #302dcc;
}


/* =========================================================
   MAIN
   ========================================================= */

.services-main-container {
    width: 100%;
   
}


/* =========================================================
   CREDIT CARD PROMO BANNER
   ========================================================= */

.service-promo-card {
    position: relative;

    width: 100%;
    max-width: 1335px;
    height: 430px;

    margin: 0 auto 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 35px 55px 35px 56px;

    overflow: hidden;

    color: #ffffff;

    background: linear-gradient(
        110deg,
        #17149e 0%,
        #2824c8 54%,
        #3d39dc 100%
    );

    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(37, 34, 190, 0.10);
}


/* =========================================================
   LEFT CONTENT
   ========================================================= */

.promo-content {
    position: relative;
    z-index: 5;

    width: 48%;
    max-width: 520px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 5px 13px 5px 7px;

    margin-bottom: 18px;

    background: #ffffff;

    border-radius: 30px;
}

.badge-icon {
    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    background: #f58219;
    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;
    font-weight: 700;
}

.badge-text {
    color: #3935d2;

    font-size: 11px;
    font-weight: 600;

    line-height: 1;
}


/* =========================================================
   HEADING
   ========================================================= */

.promo-heading {
    margin: 0 0 15px;

    color: #ffffff;

    font-size: 48px;
    font-weight: 600;
    line-height: 1.12;

    letter-spacing: -1.2px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.promo-description {
    max-width: 500px;

    margin: 0 0 20px;

    color: rgba(255, 255, 255, 0.88);

    font-size: 11px;
    font-weight: 400;

    line-height: 1.65;
}


/* =========================================================
   APPLY BUTTON
   ========================================================= */

.promo-btn {
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 0 10px 0 27px;

    background: #ffffff;
    color: #302dcc;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.14);
}

.btn-arrow {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #3531d3;
    color: #ffffff;

    border-radius: 6px;

    font-size: 17px;
    line-height: 1;
}


/* =========================================================
   IMAGE
   ========================================================= */

.promo-image-wrapper {
    position: relative;
    z-index: 4;

   
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-img {
    position: relative;
    z-index: 5;

    display: block;

    width: 100%;
    max-width: 355px;
    max-height: 365px;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   WHITE CURVED RIGHT SIDE
   ========================================================= */

.service-promo-card::after {
    content: "";

    position: absolute;

    z-index: 2;

    top: -42%;
    right: -1%;

    width: 49%;
    height: 184%;

    background: #f8f8ff;

    border-radius: 55% 0 0 55%;
}


/* =========================================================
   SOFT INNER CURVE
   ========================================================= */

.service-promo-card::before {
    content: "";

    position: absolute;

    z-index: 1;

    top: -45%;
    right: 30%;

    width: 25%;
    height: 190%;

    background: rgba(255, 255, 255, 0.12);

    border-radius: 50%;
}


/* =========================================================
   TRUSTED PARTNERS
   ========================================================= */

.partners-carousel-section {
    width: 100%;
    max-width: 1235px;

    margin: 0 auto;

    padding: 10px 20px 60px;

    background: #ffffff;

    overflow: hidden;
}

.partners-container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    text-align: center;
}

.partners-title {
    margin-bottom: 30px;

    color: #1a1a1a;

    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.partners-title .highlight-blue {
    color: #3b37d4;
}

.marquee-wrapper {
    position: relative;

    width: 100%;

    overflow: hidden;

    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );

    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.marquee-track {
    display: flex;
    align-items: center;

    gap: 60px;

    width: max-content;

    animation: marquee-scroll 20s linear infinite;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.partner-item {
    flex-shrink: 0;

    width: 120px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    width: auto;
    height: auto;

    max-width: 110px;
    max-height: 50px;

    object-fit: contain;

    transition: transform 0.3s ease;
}

.partner-item:hover img {
    transform: scale(1.05);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .service-promo-card {
        padding-left: 75px;
        padding-right: 35px;
    }

    .promo-heading {
        font-size: 43px;
    }

    .promo-description {
        font-size: 11px;
    }

    .promo-img {
        max-width: 330px;
    }
}


@media (max-width: 992px) {

    .navbar {
        padding: 14px 20px;
    }

    .nav-list {
        gap: 5px;
    }

    .nav-link {
        padding: 8px 9px;
        font-size: 13px;
    }

    .auth-btn {
        padding: 9px 12px;
        font-size: 12px;
    }

    .service-promo-card {
        height: 400px;

        padding-left: 50px;
        padding-right: 25px;
    }

    .promo-content {
        width: 51%;
    }

    .promo-heading {
        font-size: 36px;
        letter-spacing: -0.7px;
    }

    .promo-img {
        max-width: 290px;
    }

    .service-promo-card::after {
        width: 50%;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .navbar {
        padding: 14px 16px;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .logo-img {
        height: 34px;
    }

    .nav-menu {
        order: 3;

        width: 100%;

        overflow-x: auto;

        justify-content: flex-start;

        padding-top: 8px;
    }

    .nav-list {
        width: max-content;

        justify-content: flex-start;

        gap: 4px;
    }

    .nav-link {
        padding: 7px 9px;
        font-size: 12px;
    }

    .auth-btn {
        padding: 8px 11px;
        font-size: 11px;
    }

    .services-main-container {
        padding: 16px 12px 40px;
    }

    .service-promo-card {
        min-height: 650px;
        height: auto;

        flex-direction: column;

        padding: 32px 22px 0;

        gap: 20px;

        border-radius: 16px;

        text-align: center;
    }

    .promo-content {
        width: 100%;
        max-width: 100%;

        align-items: center;
    }

    .promo-badge {
        margin-bottom: 17px;
    }

    .promo-heading {
        margin-bottom: 15px;

        font-size: 31px;
        line-height: 1.18;

        letter-spacing: -0.5px;
    }

    .promo-description {
        max-width: 100%;

        margin-bottom: 21px;

        font-size: 11px;
        line-height: 1.65;
    }

    .promo-image-wrapper {
        width: 100%;
        height: 300px;

        margin-top: auto;
    }

    .promo-img {
        width: 100%;
        max-width: 300px;
        max-height: 290px;
    }

    .service-promo-card::after {
        top: auto;
        left: -10%;
        right: auto;
        bottom: 0;

        width: 120%;
        height: 45%;

        border-radius: 50% 50% 0 0 / 18% 18% 0 0;
    }

    .service-promo-card::before {
        display: none;
    }

    .partners-carousel-section {
        padding: 20px 10px 50px;
    }

    .partners-title {
        margin-bottom: 25px;
        font-size: 25px;
    }

    .marquee-track {
        gap: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .navbar {
        padding: 12px;
    }

    .logo-img {
        height: 31px;
    }

    .auth-btn span {
        display: none;
    }

    .auth-btn {
        width: 35px;
        height: 35px;
        padding: 0;
    }

    .service-promo-card {
        min-height: 610px;

        padding: 28px 17px 0;
    }

    .promo-heading {
        font-size: 27px;
    }

    .promo-description {
        font-size: 10.5px;
    }

    .promo-image-wrapper {
        height: 270px;
    }

    .promo-img {
        max-width: 270px;
        max-height: 265px;
    }

    .partners-title {
        font-size: 23px;
    }
}
/* =========================================================
   WHY CHOOSE US SECTION
   ========================================================= */

.why-choose-section {
    position: relative;

    width: 100%;

    padding: 70px 20px 80px;

    background-color: #ffffff;

    overflow: hidden;
}


/* ---------------------------------------------------------
   SUBTLE DOT BACKGROUND
   --------------------------------------------------------- */

.why-choose-section::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image: radial-gradient(
        rgba(45, 43, 210, 0.18) 0.8px,
        transparent 0.8px
    );

    background-size: 16px 16px;

    opacity: 0.55;
}


/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.why-choose-container {
    position: relative;

    z-index: 1;

    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
}


/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.why-choose-header {
    width: 100%;

    max-width: 1000px;

    margin: 0 auto 48px;

    text-align: center;
}

.why-choose-header h2 {
    margin: 0 0 18px;

    color: #202020;

    font-size: 46px;
    font-weight: 600;

    line-height: 1.15;

    letter-spacing: -1.2px;
}

.why-choose-header h2 span {
    color: #3834d5;
}

.why-choose-header p {
    max-width: 1000px;

    margin: 0 auto;

    color: #444444;

    font-size: 15px;
    font-weight: 400;

    line-height: 1.65;
}


/* ---------------------------------------------------------
   CARDS WRAPPER
   --------------------------------------------------------- */

.why-choose-cards-wrapper {
    width: 100%;
}

.why-choose-cards {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}


/* ---------------------------------------------------------
   CARD
   --------------------------------------------------------- */

.why-card {
    min-height: 250px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding: 30px 45px;

    text-align: center;

    background: #ffffff;

    border-radius: 12px;

    box-shadow:
        0 8px 30px rgba(35, 35, 120, 0.06);

    border: 1px solid rgba(240, 240, 250, 0.9);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.why-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(35, 35, 120, 0.10);
}


/* ---------------------------------------------------------
   ACTIVE CARD
   --------------------------------------------------------- */

.why-card-active {
    color: #ffffff;

    background: linear-gradient(
        135deg,
        #211db4 0%,
        #3935d8 100%
    );

    border-color: transparent;

    box-shadow:
        0 12px 30px rgba(48, 45, 204, 0.18);
}

.why-card-active:hover {
    box-shadow:
        0 16px 38px rgba(48, 45, 204, 0.24);
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

.why-card-icon {
    width: 59px;
    height: 59px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 24px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #403cdf 0%,
        #2925c4 100%
    );

    border-radius: 15px;

    box-shadow:
        0 5px 14px rgba(45, 42, 205, 0.15);
}

.why-card-active .why-card-icon {
    color: #3935d8;

    background: #ffffff;

    box-shadow: none;
}


/* ---------------------------------------------------------
   CARD TITLE
   --------------------------------------------------------- */

.why-card h3 {
    margin: 0 0 12px;

    color: #171717;

    font-size: 22px;
    font-weight: 500;

    line-height: 1.3;
}

.why-card-active h3 {
    color: #ffffff;
}


/* ---------------------------------------------------------
   CARD DESCRIPTION
   --------------------------------------------------------- */

.why-card p {
    max-width: 320px;

    margin: 0;

    color: #5d5d5d;

    font-size: 14px;
    font-weight: 400;

    line-height: 1.65;
}

.why-card-active p {
    color: rgba(255, 255, 255, 0.92);
}


/* ---------------------------------------------------------
   MOBILE DOTS
   --------------------------------------------------------- */

.why-choose-dots {
    display: none;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 22px;
}

.why-dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: #cccccc;

    cursor: pointer;
}

.why-dot.active {
    position: relative;

    width: 19px;
    height: 19px;

    background: #ffffff;

    border: 1px solid #3b37d4;
}

.why-dot.active::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 7px;
    height: 7px;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    background: #3b37d4;
}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .why-choose-section {
        padding: 60px 20px 70px;
    }

    .why-choose-header h2 {
        font-size: 42px;
    }

    .why-choose-header p {
        font-size: 14px;
    }

    .why-card {
        padding: 28px 25px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 13px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .why-choose-section {
        padding: 45px 10px 48px;
    }


    /* Header */

    .why-choose-header {
        max-width: 390px;

        margin-bottom: 35px;

        padding: 0 8px;
    }

    .why-choose-header h2 {
        margin-bottom: 18px;

        font-size: 25px;

        line-height: 1.25;

        letter-spacing: -0.5px;
    }

    .why-choose-header p {
        font-size: 12px;

        line-height: 1.7;

        color: #555555;
    }


    /* Cards become horizontal slider */

    .why-choose-cards-wrapper {
        width: 100%;

        overflow: hidden;
    }

    .why-choose-cards {
        display: flex;

        width: 100%;

        gap: 0;

        overflow-x: auto;

        scroll-snap-type: x mandatory;

        scroll-behavior: smooth;

        scrollbar-width: none;

        -ms-overflow-style: none;
    }

    .why-choose-cards::-webkit-scrollbar {
        display: none;
    }


    /* Individual mobile card */

    .why-card {
        flex: 0 0 100%;

        width: 100%;

        min-height: 228px;

        padding: 27px 35px;

        border-radius: 12px;

        scroll-snap-align: start;

        box-shadow:
            0 8px 28px rgba(35, 35, 120, 0.05);
    }


    .why-card:hover {
        transform: none;
    }


    /* Mobile icon */

    .why-card-icon {
        width: 54px;
        height: 54px;

        margin-bottom: 25px;

        border-radius: 14px;
    }


    /* Mobile title */

    .why-card h3 {
        margin-bottom: 10px;

        font-size: 20px;

        line-height: 1.3;
    }


    /* Mobile text */

    .why-card p {
        max-width: 290px;

        font-size: 12px;

        line-height: 1.65;
    }


    /* Show dots */

    .why-choose-dots {
        display: flex;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .why-choose-section {
        padding: 38px 9px 42px;
    }

    .why-choose-header {
        margin-bottom: 32px;
    }

    .why-choose-header h2 {
        font-size: 24px;
    }

    .why-choose-header p {
        font-size: 11.5px;
        line-height: 1.72;
    }

    .why-card {
        min-height: 228px;

        padding: 26px 25px;
    }

    .why-card-icon {
        width: 53px;
        height: 53px;

        margin-bottom: 24px;
    }

    .why-card h3 {
        font-size: 19px;
    }

    .why-card p {
        max-width: 285px;

        font-size: 11.5px;
    }
}
/* =========================================================
   APPLY YOUR CARD SECTION
   ========================================================= */

.apply-card-section {
    width: 100%;
    box-sizing: border-box;
    padding: 65px 20px 80px;

    background:
        radial-gradient(
            circle at 0% 15%,
            rgba(76, 72, 220, 0.14) 0%,
            rgba(76, 72, 220, 0.06) 18%,
            transparent 42%
        ),
        radial-gradient(
            circle at 100% 15%,
            rgba(76, 72, 220, 0.14) 0%,
            rgba(76, 72, 220, 0.06) 18%,
            transparent 42%
        ),
        linear-gradient(
            180deg,
            #fafaff 0%,
            #ffffff 38%,
            #ffffff 100%
        );

    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.apply-card-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.apply-card-header {
    text-align: center;
    margin-bottom: 35px;
}

.apply-card-header h2 {
    margin: 0 0 10px;
    color: #202020;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.8px;
}

.apply-card-header h2 span {
    color: #3935d5;
}

.apply-card-header p {
    margin: 0;
    color: #303030;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   SCORE / FILTER BOX
   ========================================================= */

.card-filter-box {
    width: 100%;
    box-sizing: border-box;

    padding: 20px;
    margin-bottom: 28px;

    background: #ffffff;
    border-radius: 10px;

    box-shadow:
        0 8px 30px rgba(40, 40, 100, 0.06);
}


/* =========================================================
   SCORE SLIDER
   ========================================================= */

.score-slider-wrapper {
    position: relative;
    width: 100%;
    padding-top: 27px;
}

.score-value {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    padding: 6px 13px;

    background: #ffffff;
    border-radius: 5px;

    box-shadow:
        0 4px 14px rgba(0, 0, 0, 0.10);

    color: #222222;
    font-size: 10px;
    white-space: nowrap;
    z-index: 2;
}

.score-value strong {
    margin-left: 4px;
    color: #3935d5;
    font-size: 12px;
}

.credit-score-slider {
    width: 100%;
    height: 13px;

    appearance: none;
    -webkit-appearance: none;

    background: linear-gradient(
        to right,
        #3935d5 0%,
        #3935d5 50%,
        #eeeeff 50%,
        #eeeeff 100%
    );

    border-radius: 20px;
    outline: none;
    cursor: pointer;
}

.credit-score-slider::-webkit-slider-thumb {
    appearance: none;
    -webkit-appearance: none;

    width: 14px;
    height: 14px;

    background: #3935d5;
    border: 3px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.credit-score-slider::-moz-range-thumb {
    width: 14px;
    height: 14px;

    background: #3935d5;
    border: 3px solid #ffffff;
    border-radius: 50%;

    box-shadow:
        0 2px 6px rgba(0, 0, 0, 0.15);
}

.score-labels {
    display: flex;
    justify-content: space-between;

    margin-top: 7px;

    color: #444444;
    font-size: 9px;
}


/* =========================================================
   FILTER BUTTONS
   ========================================================= */

.card-filters {
    display: flex;
    align-items: center;

    gap: 7px;
    margin-top: 14px;

    overflow-x: auto;
    scrollbar-width: none;
}

.card-filters::-webkit-scrollbar {
    display: none;
}

.filter-label {
    flex-shrink: 0;
    margin-right: 5px;

    color: #555555;
    font-size: 10px;
}

.filter-btn {
    flex-shrink: 0;

    padding: 5px 12px;

    background: #ffffff;
    color: #555555;

    border: 1px solid #e3e3e8;
    border-radius: 5px;

    font-size: 9px;
    white-space: nowrap;
    cursor: pointer;
}

.filter-btn.active {
    color: #3935d5;
    border-color: #3935d5;
    background: #ffffff;
}


/* =========================================================
   CARD LIST
   ========================================================= */

.credit-card-list {
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 28px;
}


/* =========================================================
   RESULT CARD
   ========================================================= */

.credit-result-card {
    position: relative;

    width: 100%;
    min-height: 280px;

    display: grid;
    grid-template-columns: 290px 1fr;

    gap: 23px;
    padding: 18px;

    box-sizing: border-box;
    overflow: hidden;

    background: #ffffff;
    border-radius: 10px;

    box-shadow:
        0 8px 25px rgba(35, 35, 100, 0.06);
}


/* =========================================================
   IMAGE COLUMN
   ========================================================= */

.credit-card-image-column {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.credit-card-image {
    width: 282px;
    height: 178px;

    display: block;

    object-fit: cover;
    border-radius: 10px;
}


/* =========================================================
   COMPARE
   ========================================================= */

.compare-check {
    display: flex;
    align-items: center;

    gap: 4px;
    margin-top: 12px;

    color: #333333;
    font-size: 9px;
    cursor: pointer;
}

.compare-check input {
    width: 12px;
    height: 12px;

    accent-color: #2999ef;
    margin: 0;
}


/* =========================================================
   RATING
   ========================================================= */

.card-rating {
    display: flex;
    align-items: center;

    gap: 8px;
    margin-top: 8px;

    color: #333333;
    font-size: 10px;
}

.stars {
    color: #f58219;
    font-size: 15px;
    letter-spacing: 1px;
}


/* =========================================================
   DETAILS
   ========================================================= */

.credit-card-details {
    position: relative;
    z-index: 2;

    padding: 3px 15px 3px 0;
}

.credit-card-details h3 {
    margin: 0 0 8px;

    color: #292929;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.2;
}

.card-category {
    display: inline-flex;

    padding: 4px 11px;
    margin-bottom: 15px;

    color: #3b37d4;
    background: #eeeeff;

    border-radius: 20px;
    font-size: 9px;
}


/* =========================================================
   CARD STATS
   ========================================================= */

.card-stats {
    display: flex;
    align-items: stretch;

    margin-bottom: 12px;
}

.card-stat {
    min-width: 100px;

    padding-right: 25px;
    margin-right: 25px;

    border-right: 1px solid #e6e6e6;
}

.card-stat:last-child {
    border-right: 0;
    margin-right: 0;
}

.card-stat span {
    display: block;

    margin-bottom: 4px;

    color: #555555;
    font-size: 9px;
}

.card-stat strong {
    display: block;

    color: #202020;
    font-size: 23px;
    font-weight: 500;
    line-height: 1.1;
}


/* =========================================================
   BENEFITS
   ========================================================= */

.card-benefits {
    margin-bottom: 15px;
}

.benefits-title {
    display: block;

    margin-bottom: 7px;

    color: #555555;
    font-size: 9px;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;

    gap: 16px;
}

.benefit-list span {
    display: inline-flex;
    align-items: center;

    gap: 5px;

    color: #333333;
    font-size: 10px;
}

.benefit-list i {
    width: 13px;
    height: 13px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    color: #ffffff;
    background: #2fc45a;

    border-radius: 50%;

    font-size: 8px;
    font-style: normal;
}


/* =========================================================
   ACTIONS
   ========================================================= */

.card-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.apply-now-btn,
.learn-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 35px;

    text-decoration: none;
    font-size: 10px;

    border-radius: 4px;
}

.apply-now-btn {
    gap: 9px;

    padding: 0 7px 0 16px;

    color: #ffffff;
    background: #302bc9;
}

.apply-now-btn span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #3935d5;
    background: #ffffff;

    border-radius: 4px;
    font-size: 15px;
}

.learn-more-btn {
    padding: 0 20px;

    color: #3935d5;
    background: #ffffff;

    border: 1px solid #3935d5;
}


/* =========================================================
   RUPEE DECORATION
   ========================================================= */

.card-decoration {
    position: absolute;

    top: 0;
    right: -5px;

    width: 180px;
    height: 150px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: rgba(55, 51, 207, 0.08);
    background: rgba(55, 51, 207, 0.035);

    border-radius: 90px 0 0 90px;

    font-size: 100px;
    font-weight: 300;

    z-index: -1;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .apply-card-container {
        max-width: 850px;
    }

    .credit-result-card {
        grid-template-columns: 250px 1fr;
        gap: 18px;
    }

    .credit-card-image {
        width: 240px;
        height: 150px;
    }

    .credit-card-details h3 {
        font-size: 22px;
    }

    .card-stat {
        min-width: 80px;
        padding-right: 15px;
        margin-right: 15px;
    }

    .card-stat strong {
        font-size: 20px;
    }
}


/* =========================================================
   MOBILE - EXACT COMPACT DESIGN
   ========================================================= */

@media (max-width: 768px) {

    .apply-card-section {
        width: 100%;
        max-width: 100%;

        box-sizing: border-box;

        padding: 38px 10px 50px;

        /*
         * IMPORTANT:
         * Keep the background soft and continuous.
         * Do not create a large lavender rounded panel.
         */
        background:
            radial-gradient(
                circle at 0% 4%,
                rgba(76, 72, 220, 0.15) 0%,
                rgba(76, 72, 220, 0.07) 18%,
                transparent 43%
            ),
            radial-gradient(
                circle at 100% 4%,
                rgba(76, 72, 220, 0.15) 0%,
                rgba(76, 72, 220, 0.07) 18%,
                transparent 43%
            ),
            linear-gradient(
                180deg,
                #fafaff 0%,
                #ffffff 30%,
                #ffffff 100%
            );

        border-radius: 30px 30px 0 0;
        box-shadow: none !important;

        overflow: hidden;
    }


    .apply-card-container {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }


    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .apply-card-header {
        width: 100%;
        margin-bottom: 24px;
        text-align: center;
    }

    .apply-card-header h2 {
        margin: 0 0 8px;

        font-size: 24px;
        font-weight: 500;
        line-height: 1.2;

        letter-spacing: -0.5px;
    }

    .apply-card-header p {
        width: 100%;
        max-width: 280px;

        margin: 0 auto;
        padding: 0;

        font-size: 9px;
        line-height: 1.5;
    }


    /* -----------------------------------------------------
       FILTER BOX
       ----------------------------------------------------- */

    .card-filter-box {
        width: 100%;
        box-sizing: border-box;

        padding: 17px 13px;

        margin-bottom: 12px;

        background: #ffffff;

        border-radius: 11px;

        box-shadow:
            0 7px 24px rgba(40, 40, 100, 0.06);

        overflow: hidden;
    }


    /* -----------------------------------------------------
       SCORE
       ----------------------------------------------------- */

    .score-slider-wrapper {
        width: 100%;
        padding-top: 26px;
    }

    .score-value {
        padding: 5px 11px;

        font-size: 8px;

        border-radius: 5px;
    }

    .score-value strong {
        margin-left: 4px;
        font-size: 10px;
    }

    .credit-score-slider {
        width: 100%;
        height: 11px;
    }

    .credit-score-slider::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }

    .credit-score-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
    }

    .score-labels {
        margin-top: 7px;
        font-size: 8px;
    }


    /* -----------------------------------------------------
       FILTERS
       ----------------------------------------------------- */

    .card-filters {
        width: 100%;

        display: flex;
        align-items: center;

        gap: 5px;
        margin-top: 13px;

        overflow-x: auto;
        overflow-y: hidden;

        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .card-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-label {
        flex-shrink: 0;

        margin-right: 5px;

        font-size: 9px;
    }

    .filter-btn {
        flex-shrink: 0;

        padding: 5px 10px;

        font-size: 8px;

        border-radius: 5px;
    }


    /* -----------------------------------------------------
       CARD LIST
       ----------------------------------------------------- */

    .credit-card-list {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 16px;
    }


    /* -----------------------------------------------------
       RESULT CARD
       ----------------------------------------------------- */

    .credit-result-card {
        position: relative;

        width: 100%;
        max-width: 100%;

        min-height: auto;

        display: flex;
        flex-direction: column;

        gap: 0;

        box-sizing: border-box;

        padding: 10px 11px 13px;

        background: #ffffff;

        border-radius: 10px;

        box-shadow:
            0 7px 22px rgba(35, 35, 100, 0.07);

        overflow: hidden;
    }


    /* -----------------------------------------------------
       IMAGE
       ----------------------------------------------------- */

    .credit-card-image-column {
        position: relative;

        width: 100%;

        display: flex;
        flex-direction: column;
        align-items: flex-start;

        z-index: 2;
    }

    .credit-card-image {
        display: block;

        width: 100%;
        height: auto;

        aspect-ratio: 1.58 / 1;

        object-fit: cover;

        border-radius: 8px;
    }


    /* -----------------------------------------------------
       COMPARE
       ----------------------------------------------------- */

    .compare-check {
        width: auto;

        display: flex;
        align-items: center;

        gap: 4px;

        margin-top: 7px;

        font-size: 8px;
        line-height: 1;
    }

    .compare-check input {
        width: 11px;
        height: 11px;

        margin: 0;
    }


    /* -----------------------------------------------------
       RATING
       ----------------------------------------------------- */

    .card-rating {
        position: absolute;

        /*
         * Keep rating on the lower-right of the card image.
         * calc() makes it responsive at different phone widths.
         */
        top: calc((100vw - 40px) / 1.58 + 17px);
        right: 13px;

        display: flex;
        align-items: center;

        gap: 4px;
        margin: 0;

        font-size: 8px;

        z-index: 5;
    }

    .stars {
        font-size: 13px;
        line-height: 1;
        letter-spacing: 0;
    }


    /* -----------------------------------------------------
       DETAILS
       ----------------------------------------------------- */

    .credit-card-details {
        position: relative;

        width: 100%;
        box-sizing: border-box;

        padding: 5px 2px 0;

        z-index: 2;
    }

    .credit-card-details h3 {
        margin: 7px 0 3px;

        font-size: 12px;
        font-weight: 500;
        line-height: 1.2;
    }


    /* -----------------------------------------------------
       CATEGORY
       ----------------------------------------------------- */

    .card-category {
        display: inline-flex;

        padding: 2px 7px;

        margin-bottom: 8px;

        font-size: 6px;
        line-height: 1.2;

        border-radius: 20px;
    }


    /* -----------------------------------------------------
       STATS
       ----------------------------------------------------- */

    .card-stats {
        width: 100%;

        display: flex;
        align-items: stretch;

        margin-bottom: 8px;
    }

    .card-stat {
        flex: 1;

        min-width: 0;

        padding-right: 7px;
        margin-right: 7px;

        border-right: 1px solid #e6e6e6;
    }

    .card-stat:last-child {
        padding-right: 0;
        margin-right: 0;
        border-right: 0;
    }

    .card-stat span {
        display: block;

        margin-bottom: 3px;

        font-size: 6px;

        line-height: 1.2;

        white-space: nowrap;
    }

    .card-stat strong {
        display: block;

        font-size: 12px;
        font-weight: 500;

        line-height: 1.1;

        white-space: nowrap;
    }


    /* -----------------------------------------------------
       BENEFITS
       ----------------------------------------------------- */

    .card-benefits {
        margin-bottom: 10px;
    }

    .benefits-title {
        display: block;

        margin-bottom: 4px;

        font-size: 6px;
        line-height: 1.2;
    }

    .benefit-list {
        display: flex;
        flex-wrap: wrap;

        gap: 7px;
    }

    .benefit-list span {
        display: inline-flex;
        align-items: center;

        gap: 3px;

        font-size: 6.5px;
        line-height: 1.2;

        white-space: nowrap;
    }

    .benefit-list i {
        width: 9px;
        height: 9px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;

        font-size: 5px;
    }


    /* -----------------------------------------------------
       BUTTONS
       ----------------------------------------------------- */

    .card-actions {
        display: flex;
        align-items: center;

        gap: 7px;
        width: 100%;
    }

    .apply-now-btn,
    .learn-more-btn {
        min-height: 25px;

        font-size: 7px;

        line-height: 1;

        border-radius: 4px;

        white-space: nowrap;
    }

    .apply-now-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 5px;

        padding: 0 4px 0 10px;
    }

    .apply-now-btn span {
        width: 19px;
        height: 19px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 11px;

        border-radius: 4px;
    }

    .learn-more-btn {
        padding: 0 12px;
    }


    /* -----------------------------------------------------
       RUPEE DECORATION
       ----------------------------------------------------- */

    .card-decoration {
        position: absolute;

        width: 70px;
        height: 70px;

        top: 168px;
        right: -3px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 48px;

        border-radius: 50px 0 0 50px;

        z-index: 1;
    }
}

@media (max-width: 480px) {

    .apply-card-section {
        width: 100%;
        padding: 32px 9px 45px;

        background:
            radial-gradient(
                circle at 0% 3%,
                rgba(76, 72, 220, 0.14) 0%,
                rgba(76, 72, 220, 0.06) 18%,
                transparent 43%
            ),
            radial-gradient(
                circle at 100% 3%,
                rgba(76, 72, 220, 0.14) 0%,
                rgba(76, 72, 220, 0.06) 18%,
                transparent 43%
            ),
            linear-gradient(
                180deg,
                #fafaff 0%,
                #ffffff 30%,
                #ffffff 100%
            );

         border-radius: 20px 20px 0 0;
    }

    .apply-card-header {
        margin-bottom: 22px;
    }

    .apply-card-header h2 {
        font-size: 23px;
    }

    .apply-card-header p {
        max-width: 270px;
        font-size: 8.5px;
    }

    .card-filter-box {
        padding: 16px 12px 17px;
    }

    .credit-result-card {
        padding: 9px 10px 12px;
    }

    .card-rating {
        top: calc((100vw - 38px) / 1.58 + 16px);
        right: 12px;
    }

    .card-decoration {
        top: 158px;
        width: 66px;
        height: 66px;
        font-size: 45px;
    }
}

/* =========================================================
   FAQ SECTION
   ========================================================= */

.faq-section {
    width: 100%;

    padding: 75px 20px 90px;

    background: #ffffff;
}

.faq-container {
    width: 100%;
    max-width: 1200px;

    margin: 0 auto;
}


/* =========================================================
   FAQ HEADER
   ========================================================= */

.faq-header {
    text-align: center;

    margin-bottom: 48px;
}

.faq-header h2 {
    margin: 0 0 15px;

    color: #202020;

    font-size: 44px;
    font-weight: 500;

    line-height: 1.2;

    letter-spacing: -1.2px;
}

.faq-header h2 span {
    color: #3935d5;
}

.faq-header p {
    margin: 0;

    color: #303030;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================================
   FAQ LIST
   ========================================================= */

.faq-list {
    width: 100%;
}


/* =========================================================
   FAQ ITEM
   ========================================================= */

.faq-item {
    width: 100%;

    border-bottom: 1px solid #e5e5e5;
}


/* =========================================================
   QUESTION
   ========================================================= */

.faq-question {
    width: 100%;

    min-height: 94px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 0;

    border: none;

    background: transparent;

    color: #292929;

    text-align: left;

    font-family: inherit;

    font-size: 22px;
    font-weight: 500;

    cursor: pointer;
}

.faq-question:hover {
    color: #3935d5;
}


/* =========================================================
   FAQ ICON
   ========================================================= */

.faq-icon {
    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-arrow {
    width: 12px;
    height: 12px;

    display: block;

    border-right: 3px solid #123652;
    border-bottom: 3px solid #123652;

    transform: rotate(45deg);

    transition: transform 0.3s ease;
}


/* =========================================================
   OPEN STATE
   ========================================================= */

.faq-item.active .faq-arrow {
    transform: rotate(225deg);
}

.faq-item.active .faq-question {
    color: #292929;
}


/* =========================================================
   ANSWER
   ========================================================= */

.faq-answer {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    transition:
        grid-template-rows 0.3s ease,
        opacity 0.25s ease;
}

.faq-answer p {
    min-height: 0;

    overflow: hidden;

    margin: 0;

    color: #555555;

    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;

    opacity: 1;
}

.faq-item.active .faq-answer p {
    padding-bottom: 20px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 992px) {

    .faq-section {
        padding: 60px 25px 70px;
    }

    .faq-header {
        margin-bottom: 35px;
    }

    .faq-header h2 {
        font-size: 38px;
    }

    .faq-header p {
        font-size: 13px;
    }

    .faq-question {
        min-height: 80px;

        font-size: 19px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .faq-section {
        padding: 45px 20px 55px;
    }

    .faq-container {
        max-width: 100%;
    }


    /* Header */

    .faq-header {
        margin-bottom: 25px;
    }

    .faq-header h2 {
        margin-bottom: 10px;

        font-size: 27px;

        letter-spacing: -0.7px;
    }

    .faq-header p {
        padding: 0 5px;

        font-size: 10px;

        line-height: 1.6;
    }

    .faq-desktop-break {
        display: none;
    }


    /* Questions */

    .faq-question {
        min-height: 65px;

        gap: 15px;

        font-size: 14px;
        font-weight: 500;
    }


    /* Arrow */

    .faq-icon {
        width: 25px;
        height: 25px;
    }

    .faq-arrow {
        width: 9px;
        height: 9px;

        border-right-width: 2px;
        border-bottom-width: 2px;
    }


    /* Answer */

    .faq-answer p {
        padding-right: 25px;

        font-size: 10px;

        line-height: 1.65;
    }

    .faq-item.active .faq-answer p {
        padding-bottom: 15px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .faq-section {
        padding: 38px 15px 45px;
    }

    .faq-header {
        margin-bottom: 20px;
    }

    .faq-header h2 {
        font-size: 23px;
    }

    .faq-header p {
        font-size: 9px;
    }

    .faq-question {
        min-height: 58px;

        font-size: 12px;
    }

    .faq-icon {
        width: 22px;
        height: 22px;
    }

    .faq-arrow {
        width: 8px;
        height: 8px;
    }

    .faq-answer p {
        padding-right: 20px;

        font-size: 9px;
    }
}
/* Financial Advisor Banner Section */
.banner-promo-section {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 60px 40px;
    background-color: #f9fafe;
    background-image: linear-gradient(to bottom, #ffffff 50%, #f9fafe 50%);
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.banner-promo-container {
    width: 100%;
    max-width: 1080px;
    background: linear-gradient(180deg, #f7f9ff 0%, #edf1fd 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    box-shadow: 0 10px 30px rgba(59, 55, 212, 0.05);
    border: 1px solid #e2e8f8;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-promo-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        rgba(59, 55, 212, 0.03),
        rgba(59, 55, 212, 0.03) 1px,
        transparent 1px,
        transparent 60px
    );
    pointer-events: none;
}

.banner-asset {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.banner-asset-left {
    justify-content: flex-start;
}

.banner-asset-right {
    justify-content: flex-end;
}

.promo-img {
    
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.08));
}

.banner-content {
    flex: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.banner-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.banner-title .highlight-blue {
    color: #3b37d4;
}

.banner-title .highlight-dark {
    color: #111827;
}

.banner-description {
    font-size: 14px;
    color: #555555;
    max-width: 500px;
    line-height: 1.5;
    margin: 0 0 28px 0;
}

.btn-apply-now {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #2722b8;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(39, 34, 184, 0.25);
    transition: all 0.2s ease;
}

.btn-apply-now:hover {
    background-color: #1f1a9c;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(39, 34, 184, 0.35);
}

.btn-apply-now svg {
    transition: transform 0.2s ease;
}

.btn-apply-now:hover svg {
    transform: translateX(3px);
}
/* Footer Styles */
.site-footer {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #f9fafe;
    box-sizing: border-box;
}

.footer-top {
    width: 100%;
    padding: 60px 40px 40px;
    border-bottom: 1px solid #eef2fa;
    display: flex;
    justify-content: center;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 60px;
    position: relative;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand Column */
.footer-brand-col {
    width: 250px;
    flex-shrink: 0;
}

.footer-logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

.brand-logo-img {
    width: 200px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.footer-brand-desc {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.footer-app-download {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.download-label {
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
}

.playstore-badge {
    height: 38px;
    width: auto;
    display: block;
}

/* Links Columns */
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #2722b8;
    margin: 0 0 16px 0;
}

.footer-links,
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links li a,
.footer-contact-info li,
.footer-contact-info li a {
    font-size: 13px;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover,
.footer-contact-info li a:hover {
    color: #2722b8;
}

/* Back To Top Button */
.footer-back-to-top {
    position: absolute;
    right: 0;
    top: 0;
}

.btn-scroll-top {
    width: 40px;
    height: 40px;
    background-color: #2722b8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.btn-scroll-top:hover {
    background-color: #1f1a9c;
}

/* Footer Bottom */
.footer-bottom {
    width: 100%;
    padding: 20px 40px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
}

.footer-bottom-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-text {
    font-size: 12px;
    color: #a0aec0;
    margin: 0;
}

.footer-legal-social {
    display: flex;
    align-items: center;
    gap: 32px;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 24px;
}

.legal-links a {
    font-size: 12px;
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.legal-links a:hover {
    color: #2722b8;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #f0f2fe;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.social-links a:hover {
    background-color: #e2e6fe;
}
/* ==========================================
   MOBILE & TABLET RESPONSIVE OVERRIDES
   ========================================== */

/* Tablet & Smaller Screens (max-width: 1024px) */
@media (max-width: 1024px) {
    /* Stage & Know Where You Stand Section */
    .standing-section {
        padding: 40px 20px 0;
    }
    
    .standing-stage {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .purple-circle-bg {
        width: 320px;
        height: 320px;
        bottom: -60px;
    }

    .hero-woman-wrapper {
        order: 1;
        height: auto;
    }

    .img-woman {
        height: 320px;
    }

    .feature-card {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 380px;
    }

    .card-left { order: 2; }
    .card-right { order: 3; }

    /* Loan Analysis & Growth Sections */
    .analysis-container,
    .growth-container,
    .advisor-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .analysis-content,
    .growth-content,
    .advisor-content {
        max-width: 100%;
    }

    .analysis-list {
        align-items: flex-start;
        text-align: left;
    }

    .growth-cards-wrapper {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
    }

    .card-customer-served {
        width: 100%;
    }

    .growth-stat-stack {
        width: 100%;
    }

    /* Blogs Grid */
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
    /* Header & Navigation */
    .navbar {
        padding: 12px 16px;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .nav-menu {
        display: none; /* Hide default inline menu on small mobile screens */
    }

    /* Section Headings */
    .standing-title,
    .analysis-title,
    .growth-title,
    .advisor-title,
    .blogs-title,
    .banner-title {
        font-size: 26px;
        line-height: 1.3;
    }

    /* Advisor Feature Grid */
    .advisor-grid {
        grid-template-columns: 1fr;
    }

    .advisor-bottom-row {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .app-download-wrap {
        align-items: center;
    }

    /* Floating elements on Phone Mockup */
    .floating-hdfc-card,
    .badge-approval,
    .badge-rate {
        position: static;
        margin: 10px auto;
    }

    .phone-mockup-wrapper {
        flex-direction: column;
        align-items: center;
    }

    /* Blogs Grid */
    .blogs-grid {
        grid-template-columns: 1fr;
    }

    .blogs-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    /* Promo Banner */
    .banner-promo-container {
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
    }

    .banner-asset {
        display: none; /* Hide heavy side images on tiny screens */
    }

    /* Footer Layout */
    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

    .footer-brand-col {
        width: 100%;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal-social {
        flex-direction: column;
        gap: 16px;
    }
}
   
@media (max-width: 768px) {

    .navbar {
        position: relative;
        z-index: 1000;
        padding: 12px 16px;
        background-color: #ffffff;
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-container {
        width: 100%;
        max-width: none;
        min-height: 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    /* Hamburger button */
    .mobile-menu-btn {
        display: flex;
        width: 46px;
        height: 46px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: #ffffff;
        border: 1px solid #eeeeee;
        border-radius: 12px;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        flex-shrink: 0;
        z-index: 1002;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 3px;
        background: #0d2927;
        border-radius: 10px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    /* Hamburger -> X */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* Center logo */
    .brand-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        display: flex;
        align-items: center;
        z-index: 1001;
    }

    .logo-img {
        width: auto;
        height: 42px;
        max-width: 190px;
        object-fit: contain;
    }

    /* Login icon on mobile */
    .auth-btn {
        margin-left: auto;
        width: 46px;
        height: 46px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        flex-shrink: 0;
        z-index: 1002;
    }

    .auth-btn span {
        display: none;
    }

    .auth-btn .user-icon {
        width: 25px;
        height: 25px;
    }

    /* Mobile dropdown */
    .navbar .nav-menu {
        display: block;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        border-radius: 16px;
        padding: 10px;
        box-shadow:
            0 15px 40px rgba(20, 20, 43, 0.12),
            0 4px 12px rgba(20, 20, 43, 0.05);
        border: 1px solid #eeeeee;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
        z-index: 1000;
    }

    /* Open menu */
    .navbar .nav-menu.mobile-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        border-radius: 10px;
        color: #2d3748;
        font-size: 15px;
        font-weight: 500;
        text-decoration: none;
        white-space: nowrap;
        transition: background-color 0.2s ease, color 0.2s ease;
    }

    .nav-link:hover {
        background-color: #f3f4ff;
        color: #3b37d4;
    }

    /* Current page */
    .nav-link.active {
        background: #3b37d4;
        color: #ffffff;
        padding: 14px 16px;
        border-radius: 10px;
        box-shadow: 0 5px 12px rgba(59, 55, 212, 0.18);
    }

    .nav-link.active:hover {
        background: #302bc2;
        color: #ffffff;
    }

    .arrow-down {
        font-size: 12px;
        margin-left: auto;
    }
}

/* =========================================================
   SMALL PHONES - 480px and below
   ========================================================= */
@media (max-width: 480px) {

    .navbar {
        padding: 10px 12px;
    }

    .nav-container {
        min-height: 60px;
    }

    .mobile-menu-btn,
    .auth-btn {
        width: 44px;
        height: 44px;
        border-radius: 11px;
    }

    .mobile-menu-btn span {
        width: 22px;
    }

    .logo-img {
        height: 38px;
        max-width: 175px;
    }

    .navbar .nav-menu {
        top: calc(100% + 8px);
    }

    .nav-link,
    .nav-link.active {
        padding: 13px 14px;
        font-size: 14px;
    }
}
/* Footer: 2-col links row + full-width Contact + floating back-to-top */
@media (max-width: 640px) {
    .footer-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px 20px;
    }

    /* Brand block spans both columns */
    .footer-brand-col {
        grid-column: 1 / -1;
    }

    /* Contact Us is the 4th direct child
       (brand, Products, Company, Contact Us, back-to-top) */
    .footer-container > *:nth-child(4) {
        grid-column: 1 / -1;
    }

    .footer-heading {
        margin-bottom: 14px;
    }

    /* Floating back-to-top button, bottom-right of the screen */
    .footer-back-to-top {
        position: fixed;
        top: auto;
        right: 20px;
        bottom: 20px;
        z-index: 999;
    }

    .btn-scroll-top {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        box-shadow: 0 8px 20px rgba(39, 34, 184, 0.35);
    }
}  
.banner-promo-container {
    background-image:
        url('../images/pattern-panels-1.png'),
        url('../images/pattern-panels-2.png');
    background-position: left top, right top;
    background-size: 50% 100%, 50% 100%;
    background-repeat: no-repeat, no-repeat;
}
@media (max-width: 768px) {
    .banner-promo-section {
        padding: 30px 16px;
    }

    .banner-promo-container {
        flex-direction: row;
        align-items: center;
        padding: 20px 12px;
        gap: 8px;
        border-radius: 16px;
    }

    .banner-asset {
        display: flex;
        flex: 0 0 auto;
    }

    .promo-img {
        max-width: 70px;
    }

    .banner-content {
        flex: 1;
        min-width: 0;
    }

    .banner-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .banner-description {
        font-size: 11px;
        margin-bottom: 16px;
    }

    .btn-apply-now {
        padding: 9px 18px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .promo-img {
        max-width: 54px;
    }

    .banner-title {
        font-size: 15px;
    }

    .banner-description {
        font-size: 10px;
    }

    .btn-apply-now {
        padding: 8px 14px;
        font-size: 11px;
    }
}
