html,
body {
    overflow-x: hidden !important;
    max-width: 100%;
}


/* laptop view navbar */

.custom-navbar {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.navbar-logo {
    height: 100px;
}


.nav-center {
    gap: 40px;
    font-weight: 500;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;
    color: #364153;
}

.nav-link:hover {
    color: #244EF5;
}

.resource-dropdown {
    width: 340px;
    height: 236px;

    padding: 1px;

    background: #FFFFFFF2;

    border-radius: 14px;
    border-top: 1px solid #F3F4F6;
    border-left: none;
    border-right: none;
    border-bottom: none;

    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.10),
        0px 20px 25px -5px rgba(0, 0, 0, 0.10);
}

.dropdown-item-custom {
    width: 322px;
    height: 73px;

    padding: 16px 16px 1px 16px;

    display: flex;
    flex-direction: column;
    gap: 4px;

    text-decoration: none;

    border-radius: 10px;
    border-bottom: 1px solid #F9FAFB;
}


.dropdown-item-custom:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}


.drop-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
}


.drop-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #6b7280;
}

.dropdown-item-custom:hover {
    background: #ffffff;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.apply-btn {
    width: 123.74px;
    height: 40px;

    padding: 10px 24px;

    background: #244EF5;
    color: #fff;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;

    border-radius: 10px;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.10),
        0px 1px 3px rgba(0, 0, 0, 0.10);

    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.apply-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);

    transform: skewX(-25deg);
}

.apply-btn:hover::before {
    animation: shineMove 1.2s linear infinite;
}

@keyframes shineMove {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}

.partner-btn {
    width: 175.11px;
    height: 40px;

    padding: 10px 24px;

    background: #F6C85F;
    color: #101828;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;

    border-radius: 10px;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.10),
        0px 1px 3px rgba(0, 0, 0, 0.10);

    position: relative;
    overflow: hidden;
    text-decoration: none;
}


.partner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.7) 50%,
            transparent 100%);

    transform: skewX(-25deg);
}


.partner-btn:hover::before {
    animation: shineMove 1.2s linear infinite;
}


@keyframes shineMove {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}

/* end laptop view */


/* Mobile view navbar */

@media (max-width:991px) {

    .desktop-nav1 {
        display: none;
    }
}


.mobile-navbar {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;

    background: #ffffff;

    box-shadow:
        0px 1px 2px -1px rgba(0, 0, 0, 0.10),
        0px 1px 3px rgba(0, 0, 0, 0.10);

    position: fixed;
    z-index: 1000;
    width: 100%;
}




.mobile-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
}



.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #244EF5;
    display: block;
}



.mobile-menu {

    display: none;

    position: fixed;
    top: 64px;
    left: 0;

    width: 100%;
    max-width: 410px;
    height: 450px;

    background: #ffffff;

    border-top: 1px solid #F3F4F6;

    box-shadow:
        0px 8px 10px -6px rgba(0, 0, 0, 0.10),
        0px 20px 25px -5px rgba(0, 0, 0, 0.10);

    padding: 10px 16px;

    overflow-y: auto;

    z-index: 999;
}



.mobile-menu.active {
    display: block;
}



.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav li {
    padding: 16px 0;
    border-bottom: 1px solid #eee;
}

.mobile-nav a {
    display: block;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #364153;

    text-decoration: none;
}

.active-menu {
    background: linear-gradient(90deg,
            rgba(36, 78, 245, 0.05) 0%,
            rgba(246, 200, 95, 0.05) 100%);

    padding: 16px;
    border-radius: 6px;
}



.mobile-drop-items {

    width: 440.55px;
    height: 135.97px;

    padding-top: 7.99px;

    background: linear-gradient(90deg,
            #F9FAFB 0%,
            rgba(246, 200, 95, 0.05) 100%);

    border-radius: 10px;

    margin-top: 10px;

    display: none;
}

.mobile-drop-items a {

    display: block;

    padding: 8px 0 8px 25px;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;

    color: #4A5565;

    text-decoration: none;

}

.mobile-drop-title {

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;

    color: #364153;

    cursor: pointer;

}

.mobile-drop-title::after {

    content: "";

    width: 8px;
    height: 8px;

    border-right: 2px solid #364153;
    border-bottom: 2px solid #364153;

    transform: rotate(45deg);

    transition: 0.3s;

    margin-left: auto;

}



.mobile-dropdown.active .mobile-drop-title::after {

    transform: rotate(-135deg);

}


.mobile-partner {
    margin-top: 20px;
}

.partner-btnm {

    display: block;

    width: 100%;
    height: 47.98px;

    background: linear-gradient(180deg,
            #F6C85F 0%,
            #F5C34A 100%);

    border-radius: 10px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;

    color: #101828;

    text-align: center;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width:992px) {

    .mobile-navbar {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

}

/* end mobile view */


/* Mortgage Buddy Knowledge Hub */

.kb-hero {
    padding: 155px 20px 90px;
    text-align: center;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFF7 100%);
}

.kb-container {
    max-width: 900px;
    margin: auto;
}

.kb-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 60px;
    letter-spacing: 0px;
    text-align: center;
    color: #101828;
    margin: 0;
}

.kb-hero h1 span {
    color: #3B5BFF;
}

.kb-hero p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #4A5565;

    max-width: 766px;
    margin: 18px auto 0;
}

.kb-search {
    margin-top: 35px;
}

.kb-search input {
    width: 100%;
    max-width: 768px;
    height: 68px;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;

    padding: 20px 24px 20px 56px;


    border-radius: 14px;
    border: 2px solid #E5E7EB;

    background-image: url("blog_img/Search.png");
    background-repeat: no-repeat;
    background-position: 20px center;
    background-size: 20px;

    outline: none;

    box-shadow:
        0px 1px 2px -1px rgba(0, 0, 0, 0.1),
        0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.kb-search input:focus {
    border-color: #3B5BFF;
    box-shadow: 0 0 0 3px rgba(59, 91, 255, 0.15);
}

.kb-tags {
    margin-top: 28px;
}


.kb-tags-row {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


.kb-tags-row-center {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.kb-tags a {

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;

    height: 46px;
    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 999px;
    border: 1px solid #E5E7EB;

    background: #FFFFFF;
    color: #374151;

    text-decoration: none;

    box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1),
        0px 1px 3px 0px rgba(0, 0, 0, 0.1);

    transition: all .25s ease;
}

.kb-tags a:hover {
    border-color: #3B5BFF;
    color: #3B5BFF;
}

/* desktop / laptop hide */

.kb-tags-row .mobile-doc {
    display: none !important;
}

@media (max-width:768px) {



    .kb-tags-row .mobile-doc {
        display: flex !important;
    }



    .kb-hero {
        padding: 120px 16px 70px;
    }



    .kb-hero h1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-size: 48px;
        line-height: 48px;
        letter-spacing: 0;
        text-align: center;

        max-width: 277px;
        margin: 0 auto;
    }

    .kb-hero p {
        font-size: 20px;
        line-height: 28px;
    }



    .kb-search input {
        height: 56px;
        padding: 16px 20px 16px 46px;
        font-size: 15px;
    }



    .kb-tags-row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 12px;
        padding-bottom: 6px;

        scroll-behavior: smooth;

        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .kb-tags-row::-webkit-scrollbar {
        display: none;
    }



    .kb-tags-row-center {
        display: none;
    }



    .kb-tags a {
        font-size: 14px;
        height: 40px;
        padding: 10px 18px;
        white-space: nowrap;
    }

}


/* Explore by Topic */

.topic-section {
    background: #FFFFF7;
    padding: 80px 20px;
}

/* .topic-container {
    max-width: 1200px;
    margin: auto;
} */


@media (min-width:1024px) {

    .topic-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}



.topic-heading {
    text-align: center;
    margin-bottom: 50px;
}

.topic-heading h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    text-align: center;
    color: #101828;
    margin: 0;
}

.topic-heading p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;
    text-align: center;
    color: #4A5565;

    margin-top: 10px;
    margin-bottom: 0;
}


.topic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    justify-content: center;
}


.topic-card {
    height: 202px;

    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 14px;

    padding: 30px;

    transition: all .25s ease;
}

.topic-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.topic-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;
    transition: transform 0.3s ease;
}

.topic-icon:hover {
    transform: rotate(8deg) scale(1.08);
}




.blue {
    background: linear-gradient(135deg, #2B7FFF 0%, #155DFC 100%);

}

.indigo {
    background: linear-gradient(180deg, #244EF5 0%, #2B54F6 100%);

}

.green {
    background: linear-gradient(135deg, #00BC7D 0%, #009966 100%);

}

.purple {
    background: linear-gradient(135deg, #8E51FF 0%, #7F22FE 100%);

}

.orange {
    background: linear-gradient(135deg, #FF6900 0%, #F54900 100%);

}

.yellow {
    background: linear-gradient(180deg, #F6C85F 0%, #F5C34A 100%);

}

.topic-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;
    color: #101828;

    margin: 0 0 6px 0;
}


.topic-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0px;
    color: #4A5565;

    margin: 0;
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .topic-section {
        padding: 60px 16px;
    }



    .topic-heading {
        margin-bottom: 35px;
    }

    .topic-heading h2 {
        font-size: 36px;
        line-height: 34px;
    }

    .topic-heading p {
        font-size: 18px;
        line-height: 24px;
    }



    .topic-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    .topic-card {
        height: auto;
        padding: 22px;
    }



    .topic-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 14px;
    }



    .topic-card h3 {
        font-size: 20px;
        line-height: 26px;
    }



    .topic-card p {
        font-size: 16px;
        line-height: 22px;
    }

}

/* Featured Guide */

.featured-guide {
    background: #FFFFFF;
    padding: 80px 20px;
}

/* .featured-container {
    max-width: 1200px;
    margin: auto;
} */


@media (min-width:1024px) {

    .featured-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}


.featured-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0px;
    color: #101828;

    margin-bottom: 28px;
}



.featured-card {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: linear-gradient(135deg, rgba(36, 78, 245, 0.05) 0%, rgba(246, 200, 95, 0.05) 100%);

    border: 1px solid #F3F4F6;
    border-radius: 16px;
    overflow: hidden;
}



.featured-image {
    position: relative;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



.featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    background: #244EF5;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
}



.featured-content {
    padding: 40px;
}

.featured-meta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 12px;
}

.guide-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #F5C34A;

    padding: 4px 12px;

    background: #F6C85F33;
    border-radius: 999px;
}

.guide-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;

    color: #6A7282;
}

.featured-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;

    color: #101828;

    margin: 0 0 14px 0;
}

.featured-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 29.25px;
    letter-spacing: 0;

    color: #4A5565;

    max-width: 448px;
    margin: 0 0 22px 0;
}


.guide-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 216.13px;
    height: 56px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;

    color: #FFFFFF;
    background: #3B5BFF;

    border-radius: 14px;
    text-decoration: none;

    box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    transition: all .25s ease;

    position: relative;
    overflow: hidden;
}


.guide-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.7) 50%,
            transparent 100%);

    transform: skewX(-25deg);
}


.guide-btn:hover::before {
    animation: guideShine 1.3s linear infinite;
}

@keyframes guideShine {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}

.guide-btn:hover {
    background: #2F4EEA;
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .featured-guide {
        padding: 60px 16px;
    }



    .featured-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 24px;
    }



    .featured-card {
        grid-template-columns: 1fr;
    }



    .featured-image img {
        height: 220px;
    }



    .featured-content {
        padding: 24px;
    }



    .featured-meta {
        gap: 10px;
        margin-bottom: 10px;
    }



    .featured-content h3 {
        font-size: 24px;
        line-height: 30px;
    }


    .featured-content p {
        font-size: 18px;
        line-height: 24px;
        max-width: 100%;
    }



    .guide-btn {
        width: 100%;
        max-width: 240px;
    }

}


/* Home Loan Guides */

.loan-guides {
    background: #FFFFF7;
    padding: 80px 20px;
}

/* .guides-container {
    max-width: 1200px;
    margin: auto;
} */

@media (min-width:1024px) {

    .guides-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}




.guides-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;

    color: #101828;

    margin: 0 0 40px 0;
}



.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



.guide-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 14px;
    overflow: hidden;

    transition: .25s;
}

.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.guide-image {
    position: relative;
}

.guide-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.guide-badge {
    position: absolute;
    top: 17px;
    left: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #244EF5;
    background: #FFFFFFE5;

    padding: 4px 12px;

    border-radius: 999px;
}

.guide-content {
    padding: 20px;
}

.guide-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;

    color: #101828;

    margin: 0 0 10px 0;
}

.guide-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #4A5565;
    margin: 0 0 14px 0;

}



.guide-read {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;

    color: #6A7282;
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .loan-guides {
        padding: 60px 16px;
    }


    .guides-title {
        font-size: 36px;
        line-height: 34px;
        margin-bottom: 30px;
    }


    .guides-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .guide-card {
        border-radius: 12px;
    }



    .guide-image img {
        height: 180px;
    }


    .guide-content {
        padding: 18px;
    }

    .guide-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .guide-content p {
        font-size: 16px;
        line-height: 22px;
    }


    .guide-read {
        font-size: 14px;
    }

}


/* Interest Rates & EMI */

.emi-section {
    background: #FFFFF7;
    padding: 80px 20px;
}

/* .emi-container {
    max-width: 1200px;
    margin: auto;
} */
@media (min-width:1024px) {

    .emi-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}



.emi-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;

    color: #101828;

    margin: 0 0 40px 0;
}



.emi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



.emi-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 14px;
    overflow: hidden;

    transition: .25s;
}

.emi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.emi-image {
    position: relative;
}

.emi-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.emi-badge {
    position: absolute;
    top: 17px;
    left: 16px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #244EF5;
    background: #FFFFFFE5;

    padding: 4px 12px;

    border-radius: 999px;
}



.emi-badge.tool {
    color: #7F56D9;
}



.emi-content {
    padding: 20px;
}

.emi-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;

    color: #101828;

    margin: 0 0 10px 0;
}

.emi-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #4A5565;

    margin: 0 0 14px 0;
}


.emi-read {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #6A7282;
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .emi-section {
        padding: 60px 16px;
    }



    .emi-title {
        font-size: 36px;
        line-height: 34px;
        margin-bottom: 30px;
    }



    .emi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    .emi-card {
        border-radius: 12px;
    }


    .emi-image img {
        height: 180px;
    }



    .emi-content {
        padding: 18px;
    }

    .emi-content h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .emi-content p {
        font-size: 16px;
        line-height: 24px;
    }



    .emi-read {
        font-size: 14px;
    }

}

/* Balance Transfer */

.balance-section {
    background: #FFFFF7;
    padding: 80px 20px;
}

/* .balance-container {
    max-width: 1200px;
    margin: auto;
} */
@media (min-width:1024px) {

    .balance-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}



.balance-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    color: #101828;

    margin-bottom: 40px;
}



.balance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



.balance-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 14px;
    overflow: hidden;

    transition: .25s;
}

.balance-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.balance-image {
    position: relative;
}

.balance-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}


.balance-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;

    background: #FFFFFFE5;
    color: #244EF5;

    padding: 4px 12px;
    border-radius: 999px;
}



.balance-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}



.balance-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #101828;

    margin-bottom: 10px;
}



.balance-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 24px;
    color: #4A5565;

    margin-bottom: 14px;
}



.balance-read {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #6A7282;

    margin-top: auto;
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .balance-section {
        padding: 60px 16px;
    }



    .balance-title {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 30px;
        text-align: center;
    }


    .balance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    .balance-card {
        border-radius: 12px;
    }



    .balance-image img {
        height: 180px;
    }



    .balance-content {
        padding: 18px;
    }

    .balance-content h3 {
        font-size: 20px;
        line-height: 26px;
    }

    .balance-content p {
        font-size: 16px;
        line-height: 22px;
    }



    .balance-read {
        font-size: 14px;
    }

}

/* Home Loan Tools */

.tools-section {
    background: #FFFFFF;
    padding: 80px 20px;
}

/* .tools-container {
    max-width: 1200px;
    margin: auto;
} */
@media (min-width:1024px) {

    .tools-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}


.tools-header {
    text-align: center;
    margin-bottom: 50px;
}

.tools-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;
    text-align: center;

    color: #101828;

    margin: 0;
}

.tools-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;

    color: #4A5565;

    max-width: 498px;
    margin: 10px auto 0;
}



.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}



.tool-card {
    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);

    border: 1px solid #F3F4F6;
    border-radius: 14px;

    padding: 32px;

    transition: .25s;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.tool-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;
    font-size: 22px;
    color: #fff;

    margin-bottom: 20px;
}

.tool-icon.blue {
    background: linear-gradient(180deg, #244EF5 0%, #2B54F6 100%);

}

.tool-icon.green {
    background: linear-gradient(135deg, #00BC7D 0%, #009966 100%);

}

.tool-icon.yellow {
    background: linear-gradient(180deg, #F6C85F 0%, #F5C34A 100%);

}


.tool-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;

    color: #101828;

    margin: 0 0 10px 0;
}



.tool-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #4A5565;

    max-width: 274px;
    margin: 0 0 18px 0;
}



.tool-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;

    color: #244EF5;
    text-decoration: none;
}

.tool-link:hover {
    text-decoration: underline;
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .tools-section {
        padding: 60px 16px;
    }



    .tools-header {
        margin-bottom: 35px;
    }

    .tools-title {
        font-size: 36px;
        line-height: 40px;
    }

    .tools-subtitle {
        font-size: 18px;
        line-height: 28px;
        max-width: 100%;
    }



    .tools-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }



    .tool-card {
        padding: 24px;
    }



    .tool-icon {
        width: 54px;
        height: 54px;
        font-size: 20px;
        margin-bottom: 16px;
    }



    .tool-card h3 {
        font-size: 24px;
        line-height: 28px;
    }



    .tool-card p {
        max-width: 100%;
        font-size: 16px;
        line-height: 22px;
    }



    .tool-link {
        font-size: 16px;
    }

}

/* Latest Articles */

.articles-section {
    background: #FFFFF7;
    padding: 80px 20px;
}

/* .articles-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
} */
@media (min-width:1024px) {

    .articles-container {
        width: 100%;
        padding: 0 90px;
        margin: auto;
    }

}



.articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.articles-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 40px;
    letter-spacing: 0;

    color: #101828;

    margin: 0;
}

.articles-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;

    color: #4A5565;

    max-width: 445px;
    margin: 8px 0 0 0;
}


.articles-nav {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 2px solid #E5E7EB;

    background: #FFFFFF;
    color: #244EF5;

    font-size: 18px;
    cursor: pointer;

    transition: all .25s ease;
}


.nav-btn:hover {
    border-color: #244EF5;
}


.nav-btn.active {
    border-color: #244EF5;
}



.articles-grid {
    display: flex;
    gap: 28px;
    transition: transform .4s ease;
}



.article-card {
    background: #FFFFFF;
    border: 1px solid #F3F4F6;
    border-radius: 14px;
    overflow: hidden;

    transition: .25s;
    min-width: calc((100% - 56px) / 3);
    overflow: hidden;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}



.article-image {
    position: relative;
}

.article-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}



.article-badge {
    position: absolute;
    top: 16px;
    left: 16px;

    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;

    background: #FFFFFFE5;
    color: #244EF5;

    padding: 4px 12px;
    border-radius: 999px;
}



.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;

    color: #101828;

    max-width: 268px;
    margin: 0 0 10px 0;
}

.article-content p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #4A5565;

    max-width: 310px;
    margin: 0 0 14px 0;
}



.article-read {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 20px;
    color: #6A7282;

    margin-top: auto;
}

/* ===== MOBILE VIEW ===== */
.articles-bottom-nav {
    display: none;
}

@media (max-width:768px) {

    .articles-section {
        padding: 60px 16px;
    }



    .articles-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }



    .articles-title {
        font-size: 36px;
        line-height: 40px;
    }

    .articles-subtitle {
        font-size: 18px;
        line-height: 28px;
    }


    .articles-header .articles-nav {
        display: none;
    }



    .articles-bottom-nav {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 25px;
    }



    .article-card {
        min-width: 100%;
    }

    .article-image img {
        height: 180px;
    }

    .article-content {
        padding: 18px;
    }

    .article-content h3 {
        font-size: 20px;
        line-height: 26px;
        max-width: 100%;
    }

    .article-content p {
        font-size: 16px;
        line-height: 22px;
        max-width: 100%;
    }

}

/* Ready to find the right home loan? */


.cta-section {
    background: linear-gradient(180deg, #244EF5 0%, #2B54F6 100%);

    padding: 100px 20px;
}

.cta-container {
    max-width: 900px;
    margin: auto;
    text-align: center;
}


.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;

    color: #FFFFFF;

    max-width: 698px;
    margin: 0 auto 12px;
}



.cta-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0;
    text-align: center;

    color: #FFFFFFE5;

    max-width: 768px;
    margin: 0 auto 30px;
}



.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}



.cta-btn.secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 220px;
    height: 56px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-align: center;

    background: #FFFFFF;
    color: #244EF5;

    border-radius: 14px;
    text-decoration: none;

    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    transition: all .25s ease;
}



.cta-btn.primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 178.56px;
    height: 56px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;

    background: #F6C85F;
    color: #101828;

    border-radius: 14px;
    text-decoration: none;

    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    transition: all .25s ease;

    position: relative;
    overflow: hidden;
}

/* Shine layer */
.cta-btn.primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;

    background: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.7) 50%,
            transparent 100%);

    transform: skewX(-25deg);
}

/* Hover shine */
.cta-btn.primary:hover::before {
    animation: primaryShine 1.3s linear infinite;
}

@keyframes primaryShine {
    0% {
        left: -120%;
    }

    100% {
        left: 120%;
    }
}


.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* ===== MOBILE VIEW ===== */

@media (max-width:768px) {

    .cta-section {
        padding: 70px 16px;
    }



    .cta-title {
        font-size: 36px;
        line-height: 40px;

    }


    .cta-subtitle {
        font-size: 20px;
        line-height: 28px;

    }



    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }



    .cta-btn.secondary,
    .cta-btn.primary {
        width: 328px;
    }

}


/* footer laptop view */

.mb-footer {
    background: linear-gradient(180deg, #2D5BFF 0%, #244EF5 50%, #132A8A 100%);
    color: #fff;
    padding: 80px 6%;
    font-family: sans-serif;
}

.mb-footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
}



.mb-footer-left h2 {
    width: 412px;
    height: 110px;

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 55px;
    letter-spacing: 0;

    color: #FFFFFF;
    margin-bottom: 20px;
}

.mb-footer-left p {
    max-width: 421px;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;

    color: #FFFFFFCC;

    margin-bottom: 30px;
}



.mb-footer-buttons {
    display: flex;
    gap: 15px;
}

.btn-primaryy {
    display: inline-block;

    width: 150.56px;
    height: 44px;
    line-height: 44px;
    text-align: center;

    background: #244EF5;
    color: #fff;
    text-decoration: none;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;

    border-radius: 10px;
    border: 2px solid #FFFFFF;
    box-shadow:
        0px 4px 6px -4px #0000001A,
        0px 10px 15px -3px #0000001A;
}

.btn-outlinee {
    display: inline-block;

    width: 196.3px;
    height: 44px;
    line-height: 40px;
    text-align: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;

    color: #FFFFFF;
    text-decoration: none;

    border: 2px solid #FFFFFF;
    border-radius: 10px;

    padding-left: 32px;
    padding-right: 32px;
}



.mb-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
}

.footer-col h4 {
    margin-bottom: 18px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #FFFFFF;
}

.footer-col a {
    display: block;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    letter-spacing: 0;

    color: #FFFFFFBF;
    text-decoration: none;

    margin-bottom: 10px;
}


.mb-footer-features {
    margin-top: 70px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;

}



.feature-card {

    /* width: 270px; */
    height: 161px;

    padding: 24px;

    border-radius: 14px;

    background: #FFFFFF0D;

    border: 1px solid #FFFFFF1A;

}



.feature-icon {
    margin-bottom: 14px;
}

.feature-icon img {
    width: 32px;
}



.feature-card h5 {

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;

    color: #FFFFFF;

    margin-bottom: 8px;
}



.feature-card p {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.5px;

    color: #FFFFFFB2;

}

.mb-footer-address {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.address-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.address-card h4 {

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #F6C85F;

    margin-bottom: 10px;
}

.address-card p {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: 0;

    color: #FFFFFFBF;

}



.mb-footer-divider {
    margin: 50px 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
}



.mb-footer-text {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.5px;
    letter-spacing: 0;

    color: #FFFFFF99;

    margin-bottom: 25px;
}

.mb-footer-office {
    margin-bottom: 25px;
}

.mb-footer-office p {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #FFFFFF80;

    margin: 4px 0;
}


.mb-footer-bottom-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.mb-footer-copy {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #FFFFFF80;
}

.mb-footer-links-bottom a {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #FFFFFF80;

    text-decoration: none;

    margin-left: 20px;
}

.mb-footer-links-bottom a:not(:last-child)::after {

    content: "|";

    margin-left: 10px;

    color: #FFFFFF4D;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
}



/* footer view mobile */

.mb-footer-mobile {

    background: linear-gradient(180deg, #2D5BFF 0%, #244EF5 50%, #132A8A 100%);
    padding: 40px 20px;
    color: #fff;
    font-family: Poppins;

}

.mbf-top h2 {

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 29px;
    line-height: 37.5px;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 10px;
    white-space: nowrap;

}

.mbf-top p {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;

    color: #FFFFFFCC;

    margin-bottom: 20px;

}


.mbf-btn-primary {

    display: block;
    width: 100%;
    height: 48px;

    text-align: center;
    line-height: 48px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;

    color: #FFFFFF;
    text-decoration: none;

    background: #244EF5;

    border-radius: 10px;

    margin-bottom: 10px;
    border: 1.65px solid #FFFFFF;
    box-shadow:
        0px 4px 6px -4px #0000001A,
        0px 10px 15px -3px #0000001A;

}

.mbf-btn-outline {

    display: block;
    width: 100%;
    height: 48px;

    text-align: center;
    line-height: 48px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;


    color: #FFFFFF;
    text-decoration: none;

    border: 1.65px solid #FFFFFF;
    border-radius: 10px;

}


.mbf-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 0;
}

.mbf-title {

    display: flex;
    justify-content: space-between;
    align-items: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;

    color: #FFFFFF;

    cursor: pointer;

}

.mbf-title::after {

    content: "";

    width: 8px;
    height: 8px;

    border-right: 2px solid #FFFFFF;
    border-bottom: 2px solid #FFFFFF;

    transform: rotate(45deg);

    margin-right: 4px;

    transition: 0.3s;

}

.mbf-item.active .mbf-title::after {

    transform: rotate(-135deg);

}

.mbf-links {
    display: none;
    margin-top: 10px;
}



.mbf-item.active .mbf-links {
    display: block;
}

.mbf-links a {

    display: block;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;

    color: #FFFFFFBF;

    text-decoration: none;

    margin: 8px 0;

}


.mbf-features {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;

}

.mbf-card {

    background: #ffffff0d;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #ffffff1a;

}

.mbf-card img {
    width: 28px;
    margin-bottom: 10px;
}

.mbf-card h5 {

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #FFFFFF;

    margin-bottom: 4px;


}

.mbf-card p {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 11px;
    line-height: 17.88px;
    letter-spacing: 0;

    color: #FFFFFFB2;

}



.mbf-bottom {
    margin-top: 30px;
}

.mbf-bottom p {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 19.5px;
    letter-spacing: 0;

    color: #FFFFFF99;

    margin-bottom: 10px;

}

.mbf-copy {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0;

    color: #FFFFFF80;

    margin-bottom: 10px;

}

.mbf-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mbf-bottom-links a {

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;

    color: #FFFFFF80;

    text-decoration: none;

}

.mbf-bottom-links a:not(:last-child)::after {

    content: "|";
    margin-left: 10px;

    color: #FFFFFF4D;

}

@media (min-width:769px) {

    .mb-footer-mobile {
        display: none;
    }

}

@media (max-width:768px) {

    .mb-footer {
        display: none;
    }

}

.mbf-fixed-buttons {

    position: fixed;

    bottom: 0;
    left: 0;

    width: 100%;

    background: #ffffff;

    padding: 12px 16px;

    display: flex;
    gap: 12px;

    z-index: 999;

    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.08);
    border-top: 1px solid #000;

}



.mbf-fixed-outline {

    flex: 1;

    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;

    color: #244EF5;

    border: 1.65px solid #244EF5;
    border-radius: 10px;

    text-decoration: none;

}

.mbf-fixed-primary {

    flex: 1;

    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;

    color: #FFFFFF;

    background: linear-gradient(180deg, #244EF5 0%, #2B54F6 100%);

    border-radius: 10px;

    text-decoration: none;

}

@media (min-width:769px) {

    .mbf-fixed-buttons {
        display: none;
    }

}

#whatsappBtn {
    position: fixed;
    right: 20px;
    bottom: 90px;

    width: 56px;
    height: 56px;

    background: #25D366;
    border-radius: 9999px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;

    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    z-index: 999;

    transition: transform 0.3s ease;
}


#whatsappBtn img {
    width: 28px;
    transition: transform 0.3s ease;
}


#whatsappBtn:hover img {
    transform: scale(1.15);
}


#whatsappBtn::before {
    content: "";
    position: absolute;

    width: 86px;
    height: 86px;

    background: #25D366;
    border-radius: 50%;

    top: -15px;
    left: -15px;

    z-index: -1;

    animation: wave 2s infinite;
}


@keyframes wave {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}


#whatsappBtn:hover {
    transform: scale(1.05);
}


.wa-text {
    position: absolute;
    right: 70px;

    background: #2B54F6;
    color: #ffffff;

    padding: 10px 14px;
    border-radius: 10px;

    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;

    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}


#whatsappBtn:hover .wa-text {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    #whatsappBtn {
        right: 16px;
        bottom: 80px;
    }
}