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 */


/* Let's Talk. We're Actually Good at Listening. */



.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #1A3DD9 0%, #244EF5 30%, #2C00E5 100%);
    display: flex;
    align-items: center;
    padding: 60px 5%;
    position: relative;
}

.hero-container {
    width: 95%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.bigcir {
    width: 633px;
    height: 633px;
    position: absolute;
    top: -37%;
    left: -4%;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 100%);
    border: 2px solid #FFFFFF33;

    animation: bgFloat 20s ease-in-out infinite;
}

.bigcir {
    pointer-events: none;
}


@keyframes bgFloat {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, 30px) rotate(180deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}



.hero-left {
    max-width: 600px;
    color: #fff;
}

.badge {
    display: inline-flex;
    align-items: center;

    width: 214px;
    height: 36px;

    padding: 8px 16px;

    background: #FFFFFF1A;

    border-radius: 16777200px;

    font-size: 14px;
    color: #ffffff;
    opacity: 1;
    margin-bottom: 30px;
}


.hero-left h1 {
    width: 513px;
    height: 225px;

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 60px;
    line-height: 75px;
    letter-spacing: 0px;

    color: #FFFFFF;

    margin-bottom: 20px;
}


.hero-left p {
    width: 576px;
    height: 117px;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 24px;
    line-height: 39px;
    letter-spacing: 0px;

    color: #FFFFFFE5;

    margin-bottom: 30px;
}


.hero-buttons .btn {
    width: 217.25px;
    height: 72px;

    border-radius: 16px;

    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;

    text-decoration: none;
    cursor: pointer;
}


.btn {
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    margin-right: 16px;
    margin-top: 1%;
}

.btn.primary {
    width: 217.25px;
    height: 72px;
    font-size: 18px;
    background: #F6C85F;
    border-radius: 16px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #244EF5;
    text-decoration: none;

    position: relative;
    /* IMPORTANT */
    overflow: hidden;
    /* IMPORTANT */
    transition: transform 0.3s ease;
}

/* Shine layer */
.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.6) 50%,
            transparent 100%);

    transform: skewX(-25deg);
}

/* Hover effect */
.btn.primary:hover::before {
    animation: shineMove 1.2s linear infinite;
}

/* Optional small hover lift */
.btn.primary:hover {
    transform: translateY(-3px);
}

@keyframes shineMove {
    0% {
        left: -120%;
    }

    100% {
        left: 130%;
    }
}


.btn.secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-size: 17px;
}

.btn:hover {
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 44px;
}

.stat-item {


    display: inline-flex;
    align-items: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;

    color: #FFFFFFCC;

    opacity: 1;
}


.hero-right {
    position: relative;
    flex: 1;
    min-height: 300px;
}



.icon.big {
    width: 112px;
    height: 112px;
    padding: 24px;
    background: #FFFFFF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #244EF5;
    position: absolute;
    top: 90px;
    left: 300px;
    box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    opacity: 1;

    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0% {
        transform: translateY(0);
        box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    }

    50% {
        transform: translateY(-15px);
        box-shadow: 0px 35px 60px -10px rgba(36, 78, 245, 0.4);
    }

    100% {
        transform: translateY(0);
        box-shadow: 0px 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
}



.icon.small {
    width: 64px;
    height: 64px;
    padding: 16px;
    background: #F6C85F;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #244EF5;
    position: absolute;
    top: -70px;
    left: 500px;
    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 1;

    animation: breathe 4s ease-in-out infinite;
}




.icon.tiny {
    width: 64px;
    height: 64px;
    padding: 16px;
    background: #FFFFFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #244EF5;
    position: absolute;
    top: 280px;
    left: 90px;
    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    opacity: 1;

    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.cir1 {
    width: 48px;
    height: 48px;

    background: #FFFFFF4D;

    border-radius: 16777200px;

    position: absolute;
    top: -20px;
    left: 200px;

    opacity: 1;
    animation: breathe 4s ease-in-out infinite;
}

.cir2 {
    width: 40px;
    height: 40px;

    background: #F6C85F4D;
    border-radius: 16777200px;

    position: absolute;
    top: 310.53px;
    left: 580px;

    opacity: 1;
    animation: breathe 4s ease-in-out infinite;
}

@media (max-width: 576px) {


    .hero {
        padding: 40px 16px;
        min-height: 80vh;
        text-align: center;
    }

    .hero-container {
        flex-direction: column;
        gap: 30px;
    }


    .hero-left {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }


    .badge {
        width: auto;
        height: 32px;
        font-size: 13px;
        margin-bottom: 20px;
    }

    .hero-left h1 {
        width: 308px;
        height: 135px;

        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-style: normal;

        font-size: 32px;
        line-height: 40px;
        letter-spacing: 0px;

        color: #FFFFFF;

        text-align: center;
        margin: 0 auto 16px;

        opacity: 1;
    }


    .hero-left p {
        width: 300px;
        height: 130px;

        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-style: normal;

        font-size: 20px;
        line-height: 32.5px;
        letter-spacing: 0px;

        color: #FFFFFFE5;

        text-align: center;
        margin: 0 auto 24px;

        opacity: 1;
    }


    .hero-buttons {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 14px;
        margin-top: 20px;

    }

    .hero-buttons .btn,
    .btn.primary,
    .btn.secondary {
        width: 100%;
        height: 56px;
        font-size: 15px;
        margin-right: 0;
    }


    .hero-stats {
        flex-direction: column;
        gap: 10px;
        margin-top: 32px;
        align-items: center;
    }

    .stat-item {
        font-size: 13px;
    }


    .hero-right {
        display: none;
    }

    .bigcir {
        display: none;
    }

}



/* What Can We Help You With Today? */

.help-section {
    background: #FFFFFF;
    padding: 80px 5%;
}



.section-title {


    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;

    color: #244EF5;

    text-align: center;
    margin: 0 auto 10px;
    opacity: 1;
}

.section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #4A5565;

    text-align: center;
    margin: 0 auto 50px;

    opacity: 1;
}


.help-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.help-card {
    width: 289.75px;
    height: 280.75px;

    background: linear-gradient(135deg, #F9FAFB 0%, #FFFFFF 100%);
    border-radius: 16px;

    border-top: 1px solid #F3F4F6;

    padding: 28px 22px;
    text-align: left;

    box-shadow:
        0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);

    opacity: 1;
    transition: 0.3s ease;
}


.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}

.help-card h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #101828;

    margin: 18px 0 10px;
    opacity: 1;
}

.help-card p {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 14px;
    line-height: 22.75px;
    letter-spacing: 0px;

    color: #4A5565;

    margin-bottom: 16px;
    opacity: 1;
}


.help-card a {


    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;

    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;

    color: #244EF5;

    text-decoration: none;
    display: inline-block;

    opacity: 1;
}


.icon {
    width: 56px;
    height: 56px;

    background: linear-gradient(180deg, #244EF5 0%, #2B54F6 100%);
    border-radius: 14px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    color: #FFFFFF;

    position: relative;

    opacity: 1;
}


.help-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}


@media (max-width: 768px) {
    .help-slider {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .help-slider::-webkit-scrollbar {
        display: none;

    }

    .help-card {
        min-width: 260px;

        flex-shrink: 0;
        scroll-snap-align: center;
    }

    .section-title {
        width: 287px;
        height: 72px;

        font-size: 30px;
        line-height: 36px;

        margin: 0 auto 10px;
    }

    .section-subtitle {
        width: 300px;
        height: 56px;

        font-size: 18px;
        line-height: 28px;

        margin: 0 auto 40px;
    }
}


/* Choose How to Connect */

.connect-section {
    background: linear-gradient(135deg,
            #F9FAFB 0%,
            #FFFFFF 50%,
            rgba(239, 246, 255, 0.3) 100%);
    padding: 90px 5%;
}

.connect-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}


.connect-title {


    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;

    color: #101828;

    text-align: center;
    margin: 0 auto 10px;

    opacity: 1;
}


.connect-title span {


    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;

    color: #244EF5;

    text-align: center;
    display: inline-block;

    opacity: 1;
}


.connect-subtitle {


    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #4A5565;

    text-align: center;
    margin: 0 auto 50px;

    opacity: 1;
}



.connect-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.connect-card {
    width: 384px;
    height: 338px;

    padding: 33px 33px 1px 33px;

    border-radius: 24px;

    border-top: 1px solid #FFFFFF80;

    background: transparent;


    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    text-align: left;
    transition: 0.3s ease;

    opacity: 1;
}

.connect-card:hover {
    transform: translateY(-6px);
}


.connect-card.green {
    background: linear-gradient(135deg,
            rgba(37, 211, 102, 0.1) 0%,
            rgba(37, 211, 102, 0.05) 100%);
}


.connect-card.blue {
    background: linear-gradient(135deg,
            rgba(36, 78, 245, 0.1) 0%,
            rgba(43, 84, 246, 0.05) 100%);
}


.connect-card.yellow {
    background: linear-gradient(135deg,
            rgba(246, 200, 95, 0.2) 0%,
            rgba(246, 200, 95, 0.1) 100%);
}



.connect-icon {
    width: 64px;
    height: 64px;

    border-radius: 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;

    box-shadow:
        0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);

    margin-bottom: 18px;
    opacity: 1;
}


.connect-icon.green {
    background: #25D366;
    color: #fff;
}

.connect-icon.blue {
    background: #244EF5;
    color: #fff;
}

.connect-icon.yellow {
    background: #F6C85F;
    color: #fff;
}

.connect-card h4 {
    width: 167px;
    height: 32px;

    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 22px;
    line-height: 32px;
    letter-spacing: 0px;

    color: #101828;

    margin-bottom: 8px;
    opacity: 1;
}


.connect-card p {
    width: 282px;
    height: 52px;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;

    color: #4A5565;

    margin-bottom: 22px;
    opacity: 1;
}



/* .btn {
    width: 318px;
    height: 56px;

    border-radius: 14px;
    border: none;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);

    opacity: 1;
} */
.btn {
    width: 318px;
    height: 56px;

    border-radius: 14px;
    border: none;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: normal;

    cursor: pointer;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);

    transition: 0.3s ease;

    position: relative;
    /* REQUIRED */
    overflow: hidden;
    /* REQUIRED */
}

/* Shine Layer */
.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);
}

/* Shine on Hover */
.btn:hover::before {
    animation: shineMove 1.2s linear infinite;

}

/* Slight Lift Effect */
.btn:hover {
    transform: translateY(-2px);
}

/* Animation */
@keyframes shineMove {
    0% {
        left: -120%;
    }

    100% {
        left: 130%;
    }
}

.btn.green {
    background: #25D366;
    color: #fff;
}

.btn.blue {
    background: #244EF5;
    color: #fff;
}

.btn.yellow {
    background: #F6C85F;

    color: #fff;
}

.connect-footer {
    width: 448px;
    height: 74px;

    margin: 40px auto 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 0 20px;

    background: #FFFFFF99;
    border-radius: 16px;

    border: 1px solid #E5E7EB80;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #475467;

    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.04);
}

.footer-icon {
    width: 40px;
    height: 40px;

    border-radius: 16777200px;

    background: #244EF51A;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    color: #244EF5;

    opacity: 1;
}

.footer-text {

    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-style: normal;

    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;

    color: #364153;

    opacity: 1;
    display: inline-block;
}

.footer-text strong {
    width: 99px;
    height: 20px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;

    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;

    color: #244EF5;

    opacity: 1;
    display: inline-block;
}

@media (max-width: 576px) {


    .connect-section {
        padding: 60px 16px;
    }


    .connect-title,
    .connect-title span {
        font-size: 30px;
        line-height: 36px;
        width: 100%;
    }

    .connect-subtitle {
        width: 285px;
        height: 56px;

        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-style: normal;

        font-size: 20px;
        line-height: 28px;
        letter-spacing: 0px;

        color: #4A5565;

        text-align: center;
        margin: 0 auto 40px;

        opacity: 1;
    }

    .connect-cards {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .connect-card {
        width: 100%;
        height: auto;
        padding: 24px;
    }


    .connect-card h4 {
        width: 100%;
        height: auto;
        font-size: 20px;
        line-height: 28px;
    }

    .connect-card p {
        width: 100%;
        height: auto;
        font-size: 15px;
        line-height: 24px;
    }


    .connect-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .btn {
        width: 100%;
        height: 52px;
        font-size: 14px;
    }


    .connect-footer {
        width: 100%;
        height: auto;
        padding: 12px;
        flex-wrap: wrap;
        text-align: center;
    }

    .footer-text {
        width: 100%;
        text-align: center;
    }

}


/* Send Us a Message */

.message-section {
    background: #FFFFF7;
    padding: 90px 5%;
}

.message-container {
    max-width: 760px;
    margin: auto;
    text-align: center;
}


.message-title {


    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;

    color: #244EF5;

    text-align: center;
    margin: 0 auto 8px;

    opacity: 1;
}


.message-subtitle {


    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #4A5565;

    text-align: center;
    margin: 0 auto 40px;

    opacity: 1;
}


.message-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}


.message-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: span 2;
}

label {


    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;

    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;

    color: #364153;

    margin-bottom: 6px;
    opacity: 1;

    display: inline-block;
}


input,
textarea {
    height: 44px;
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #E5E7EB;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

textarea {
    height: 120px;
    resize: none;
}

input::placeholder,
textarea::placeholder {
    color: #98A2B3;
}


.submit-btn {
    grid-column: span 2;

    height: 52px;

    background: #244EF5;
    border-radius: 16px;
    border: none;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: normal;

    color: #FFFFFF;
    cursor: pointer;

    margin-top: 10px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    opacity: 1;
}



.form-note {
    grid-column: span 2;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0px;

    color: #6A7282;

    text-align: center;
    margin: 14px auto 0;

    opacity: 1;
}


.container8 {
    width: 100%;
    height: 8px;

    background: linear-gradient(180deg,
            #F6C85F 0%,
            #FCEAA5 100%);

    border-radius: 24px 24px 0 0;

    position: absolute;
    top: 0;
    left: 0;
}

@media (max-width: 576px) {


    .message-section {
        padding: 60px 16px;
    }

    .message-container {
        max-width: 100%;
    }

    .message-title {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 6px;
    }


    .message-subtitle {
        width: 300px;
        height: 56px;

        font-family: 'Poppins', sans-serif;
        font-weight: 400;
        font-style: normal;

        font-size: 18px;
        line-height: 28px;
        letter-spacing: 0px;

        color: #4A5565;

        text-align: center;
        margin: 0 auto 32px;

        opacity: 1;
    }


    .message-card {
        padding: 20px;
        border-radius: 16px;
    }

    .message-form {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .form-group.full {
        grid-column: span 1;
    }


    label {
        font-size: 13px;
        line-height: 18px;
    }


    input,
    textarea {
        width: 100%;
        height: 44px;
        font-size: 14px;
    }

    textarea {
        height: 100px;
    }


    .submit-btn {
        grid-column: span 1;
        width: 100%;
        height: 52px;
        font-size: 14px;
        margin-top: 6px;
    }


    .form-note {
        grid-column: span 1;
        width: 100%;
        font-size: 13px;
        line-height: 18px;
        margin-top: 10px;
    }


    .container8 {
        height: 6px;
        border-radius: 16px 16px 0 0;
    }
}



/* What Happens After You Contact Us */

.process-section {
    background: #FFFFF7;
    padding: 90px 5%;
}

.process-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.process-title {


    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;

    color: #244EF5;

    text-align: center;
    margin: 0 auto 8px;

    opacity: 1;
}


.process-subtitle {


    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #4A5565;

    text-align: center;
    margin: 0 auto 60px;

    opacity: 1;
}



.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
    position: relative;
}


.process-step {
    position: relative;

    width: 384px;
    height: 284px;

    opacity: 1;
}



.step-icon {
    width: 64px;
    height: 64px;

    border-radius: 16777200px;

    background: linear-gradient(180deg,
            #244EF5 0%,
            #2B54F6 100%);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    color: #FFFFFF;

    margin: 0 auto -32px;
    position: relative;

    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    opacity: 1;
    animation: pulseGlow 2s infinite;

}


/* Second ripple using pseudo element */
.step-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: pulseGlow2 2s infinite;
}

/* First Ripple */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 78, 245, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(36, 78, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(36, 78, 245, 0);
    }
}

/* Second Ripple (delay for wave effect) */
@keyframes pulseGlow2 {
    0% {
        box-shadow: 0 0 0 0 rgba(36, 78, 245, 0.4);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(36, 78, 245, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(36, 78, 245, 0);
    }
}

.step-icon::after {
    animation-delay: 1s;
    /* second ripple start late */
}


.process-step {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

/* Visible state */
.process-step.show {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 32px;
    height: 32px;

    position: absolute;
    top: -8px;
    left: 40px;

    border-radius: 16777200px;

    background: #F6C85F;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 12px;
    line-height: normal;

    color: #244EF5;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);

    opacity: 1;
}



.step-card {
    width: 384px;
    height: 196px;

    background: #FFFFFF;
    margin-top: 15%;
    padding: 25px 25px 1px 25px;

    border-radius: 16px;

    border-top: 1px solid #F3F4F6;

    box-shadow:
        0px 2px 4px -2px rgba(0, 0, 0, 0.1),
        0px 4px 6px -1px rgba(0, 0, 0, 0.1);

    opacity: 1;
    transition: all 0.3s ease;
}

.step-card:hover {
    border: 1px solid #244EF5;


    box-shadow: 0 14px 22px -6px rgba(36, 78, 245, 0.55);

    transform: translateY(-4px);
}

.sline {
    width: 810.84375px;
    height: 4px;

    background: linear-gradient(180deg,
            #244EF5 0%,
            #2C00E5 100%);

    opacity: 0.2;

    position: absolute;
    top: 80px;
    left: 202.58px;
}

.step-card h4 {
    width: 211px;
    height: 56px;

    font-family: 'Poppins', sans-serif;
    font-weight: 700;

    font-style: normal;

    font-size: 19px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #101828;

    text-align: center;

    margin: 0 auto 10px;

    opacity: 1;
}

.step-card p {
    width: 281px;
    height: 78px;

    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0px;

    color: #4A5565;

    text-align: center;

    margin: 0 auto;

    opacity: 1;
}



.process-footer {
    width: 382.93px;
    height: 60px;

    background: linear-gradient(180deg,
            #FCEAA5 0%,
            #FEFDE2 100%);

    border-radius: 16777200px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;

    color: #244EF5;

    margin: 50px auto 0;

    opacity: 1;
}

.process-footer-text {

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-style: normal;

    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0px;

    color: #244EF5;

    text-align: center;
    display: inline-block;

    opacity: 1;
}

@media (max-width: 576px) {


    .process-section {
        padding: 60px 16px;
    }

    .process-container {
        max-width: 100%;
    }


    .process-title {
        width: 100%;
        font-size: 30px;
        line-height: 36px;
        margin-bottom: 6px;
    }


    .process-subtitle {
        max-width: 334px;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 40px;
    }


    .process-steps {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .process-step {
        width: 100%;
        height: auto;
    }


    .sline {
        display: none;
    }


    .step-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: -28px;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 11px;
        left: 36px;
        top: -6px;
    }


    .step-card {
        width: 100%;
        height: auto;
        margin-top: 14%;
        padding: 20px;
    }


    .step-card h4 {
        width: 100%;
        height: auto;
        font-size: 18px;
        line-height: 26px;
    }

    .step-card p {
        width: 100%;
        height: auto;
        font-size: 15px;
        line-height: 24px;
    }

    .process-footer {
        width: 300px;
        height: 88px;

        background: linear-gradient(180deg,
                #FCEAA5 0%,
                #FEFDE2 100%);

        border-radius: 18478100px;

        margin: 40px auto 0;

        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 16px;
    }

    .process-footer-text {
        width: 319px;
        height: 28px;

        font-size: 18px;
        line-height: 28px;

        text-align: center;
    }
}



/* Still Not Sure What You Need? That's Okay. */

.cta-section {
    background: linear-gradient(180deg,
            #FFFFF7 0%,
            #FEFDE2 100%);
    padding: 100px 5%;
    display: flex;
    justify-content: center;
}

.cta-card {
    width: 100%;
    max-width: 960px;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0px 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
}


.cta-line {
    width: 100%;
    height: 6px;

    background: linear-gradient(180deg,
            #244EF5 0%,
            #2B54F6 50%,
            #2C00E5 100%);

    border-radius: 24px 24px 0 0;

    position: absolute;
    top: 0;
    left: 0;
}



.cta-title {


    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-style: normal;

    font-size: 48px;
    line-height: 48px;
    letter-spacing: 0px;

    color: #244EF5;

    text-align: center;
    margin: 0 auto 16px;

    opacity: 1;
}


.cta-subtitle {


    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 20px;
    line-height: 32.5px;
    letter-spacing: 0px;

    color: #4A5565;

    text-align: center;
    margin: 0 auto 40px;

    opacity: 1;
}



.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

/* .cta-btn {
    width: 217.25px;
    height: 68px;

    border-radius: 16px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;

    line-height: normal;
    font-size: 18px;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    opacity: 1;
    transition: 0.3s ease;
} */
.cta-btn {
    width: 217.25px;
    height: 68px;
    border-radius: 16px;

    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    text-decoration: none;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    box-shadow:
        0px 4px 6px -4px rgba(0, 0, 0, 0.1),
        0px 10px 15px -3px rgba(0, 0, 0, 0.1);

    transition: 0.3s ease;

    position: relative;
    /* IMPORTANT */
    overflow: hidden;
    /* IMPORTANT */
}

/* Shine Layer */
.cta-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);
}

/* Hover Effect */
.cta-btn:hover::before {
    animation: shineMove 1.2s linear infinite;
}

/* Optional Lift Effect */
.cta-btn:hover {
    transform: translateY(-3px);
}

/* Animation */
@keyframes shineMove {
    0% {
        left: -120%;
    }

    100% {
        left: 130%;
    }
}


.cta-btn.blue {
    background: #244EF5;
    color: #FFFFFF;
}

.cta-btn.green {
    background: #25D366;
    color: #FFFFFF;
}

.cta-btn:hover {
    transform: translateY(-3px);
}


.cta-footer {
    width: 339.06px;
    height: 44px;

    background: linear-gradient(90deg,
            rgba(246, 200, 95, 0.2) 0%,
            rgba(252, 234, 165, 0.2) 100%);

    border-radius: 16777200px;


    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;

    color: #364153;

    margin: 0 auto;
    opacity: 1;
}

@media (max-width: 576px) {


    .cta-section {
        padding: 70px 16px;
    }


    .cta-card {
        padding: 40px 20px;
        border-radius: 20px;
    }


    .cta-line {
        height: 5px;
        border-radius: 20px 20px 0 0;
    }


    .cta-title {
        width: 253px;
        height: 108px;

        font-family: 'Poppins', sans-serif;
        font-weight: 700;
        font-style: normal;

        font-size: 30px;
        line-height: 36px;
        letter-spacing: 0px;

        color: #244EF5;

        text-align: center;
        margin: 0 auto 12px;

        opacity: 1;
    }


    .cta-subtitle {
        max-width: 334px;
        width: 100%;
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 32px;
    }


    .cta-buttons {
        flex-direction: column;
        gap: 14px;
        margin-bottom: 32px;
    }

    .cta-btn {
        width: 100%;
        height: 56px;
        font-size: 14px;
    }


    .cta-footer {
        width: 100%;
        max-width: 339px;
        height: 44px;
        font-size: 13px;
    }
}


/* 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;
    }
}