@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

:root {
    --font-primary: "Space Grotesk", sans-serif;
}

body {
    font-family: var(--font-primary) !important;
    overflow-x: hidden;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

.green-color {
    color: #00bf63 !important;
}

.top-button {
    font-size: 20px;
    font-weight: 500;
    color: rgb(255, 255, 255);
    border: 1px solid #00bf63;
    padding: 10px 30px;
    border-radius: 10px;
    background: #fff;
    line-height: 28px;
    transition: all 0.4s ease-in;
    width: fit-content;
    background-color: #00bf63;
}

.top-button:hover {
    color: rgb(0 0 0);
    border: 1px solid #00bf63;
    background: #fff;
    transition: all 0.4s ease-in;
}

.download-button {
    font-size: 20px;
    font-weight: 500;
    color: rgb(0 0 0);
    border: 1px solid #00bf63;
    padding: 10px 30px;
    border-radius: 10px;
    background: #fff;
    line-height: 28px;
    transition: all 0.4s ease-in;
    width: fit-content;
}

.download-button:hover {
    background: #00bf63;
    color: #fff;
    border: 1px solid #00bf63;
}

/* header */
.header {
    display: block;
    width: 100%;
    position: relative;
    z-index: 99;
    padding: 20px 0px;
    background: #fff;
    border-bottom: 1px solid #dfdfdf;
}

.header-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header a.logo img {
    max-width: 200px;
}

.header .menu .menu-top-blog {
    display: flex;
    gap: 35px;
}

.header .menu>ul>li {
    display: inline-block;
}

.header .menu>ul>li>a {
    font-size: 20px;
    font-weight: 500;
    color: #000;
    position: relative;
    text-transform: capitalize;
    transition: color 0.3s ease;
    font-family: var(--font-primary);
}

.header .menu>ul>li>a:hover {
    color: #00bf63;
}

.mobile-menu-head {
    display: none;
}

.contact {
    display: grid;
    width: fit-content;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.contact span {
    border-bottom: 1px solid rgba(0, 0, 0, 0.8);
    width: fit-content;
    margin: auto;
}

.contact a {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.header-item.item-right {
    display: flex;
    gap: 40px;
}

.mobile-menu-trigger {
    display: none;
}

.header {
    transition: all 0.3s ease;
    top: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 6px transparent;

}

.header.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}


.menu-main {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* responsive */
@media (max-width: 991px) {
    .header .item-center {
        order: 3;
        flex: 0 0 auto;
        position: absolute;
    }

    /* .mobile-menu-head .logo {
        background: #fff;
        padding: 10px;
    } */

    .header .item-left,
    .header .item-right {
        flex: 0 0 auto;
    }

    .header .menu>ul>li>a {
        color: #000000;
    }

    .header .mobile-menu-trigger {
        display: flex;
        height: 40px;
        width: 40px;
        margin-left: 0px;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        border: 1px solid #00bf63;
        background: #fff;
        border-radius: 5px;
    }

    .header .mobile-menu-trigger span {
        display: block;
        height: 2px;
        background-color: #00bf63;
        width: 24px;
        position: relative;
    }

    .header .mobile-menu-trigger span:before,
    .header .mobile-menu-trigger span:after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #00bf63;
    }

    .header .mobile-menu-trigger span:before {
        top: -6px;
    }

    .header .mobile-menu-trigger span:after {
        top: 6px;
    }

    .header .item-right {
        align-items: center;
    }

    .header .menu {
        position: fixed;
        width: 320px;
        background-color: #ffffff;
        left: 0;
        top: 0;
        height: 100%;
        overflow: hidden;
        transform: translate(-100%);
        transition: all 0.5s ease;
        z-index: 1099;
        color: #fff;
    }

    .header .menu.active {
        transform: translate(0%);
    }

    .header .menu>ul>li {
        line-height: 1;
        margin: 0;
        display: block;
    }

    .header .menu>ul>li>a {
        line-height: 50px;
        height: 50px;
        padding: 0 50px 0 15px;
        display: block;
        border-bottom: 1px solid rgb(0 0 0 / 25%);
    }

    .header .menu .mobile-menu-head {
        display: block;
    }

    .header .menu .mobile-menu-head {
        display: flex;
        height: 50px;
        border-bottom: 1px solid rgb(0 0 0 / 58%);
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 501;
        position: sticky;
        background-color: #fcfffe;
        top: 0;
    }

    .header .menu .mobile-menu-head .go-back {
        height: 50px;
        width: 50px;
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 16px;
        display: none;
    }

    .header .menu .mobile-menu-head.active .go-back {
        display: block;
    }

    .header .menu .mobile-menu-head .current-menu-title {
        font-size: 15px;
        font-weight: 500;
        color: #000000;
    }

    .header .menu .mobile-menu-head .mobile-menu-close {
        height: 50px;
        width: 50px;
        border-left: 1px solid rgb(0 0 0 / 58%);
        cursor: pointer;
        line-height: 50px;
        text-align: center;
        color: #000000;
        font-size: 25px;
        margin: 0 0 auto auto;
    }

    .mobile-menu-trigger {
        display: block;
    }

    .header .menu .menu-top-blog {
        /* height: 100%; */
        overflow-x: hidden;
        /* overflow-y: auto; */
        display: grid;
        gap: 0;
    }

    .header .menu>ul>li .sub-menu.mega-menu,
    .header .menu>ul>li .sub-menu {
        visibility: visible;
        opacity: 1;
        position: absolute;
        box-shadow: none;
        margin: 0;
        padding: 15px;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding-top: 65px;
        max-width: none;
        min-width: auto;
        display: none;
        transform: translateX(0%);
        overflow-y: auto;
    }

    .header .menu>ul>li .sub-menu.active {
        display: block;
    }

    @keyframes slideLeft {
        0% {
            opacity: 0;
            transform: translateX(100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    @keyframes slideRight {
        0% {
            opacity: 0;
            transform: translateX(-100%);
        }

        100% {
            opacity: 1;
            transform: translateX(0%);
        }
    }

    .header .menu>ul>li .sub-menu.mega-menu .list-item {
        float: none;
        width: 100%;
    }

    .header .menu>ul>li .sub-menu .menu-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .menu>ul>li .sub-menu .menu-head>a {
        color: #000000;
    }

    .header .menu>ul>li .sub-menu .menu-head .back-menu {
        cursor: pointer;
        font-size: 20px;
        color: #000000;
    }

    .header .menu .menu-top-blog>li .sub-menu>li {
        border-bottom: none;
    }

    .menu-main {
        display: grid;
        align-items: center;
        gap: 0px;
        flex-direction: column;
        padding-left: 0;
    }
}

/* hero-section  */
.hero-section {
    background: #ffffff;
    padding: 75px 0px 85px;
}

.hero-section h1 {
    font-size: 57px;
    font-weight: 700;
    line-height: 70px;
    margin-bottom: 13px;
    font-family: var(--font-primary);
    color: #000;
}

.hero-section p {
    font-size: 16px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
    font-family: var(--font-primary);
    color: #000000;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-heading * {
    font-size: 50px;
    font-weight: 600;
    max-width: 700px;
    margin: auto;
    margin-bottom: 20px;
    color: #000;
    text-align: center;
}

.sub-heading * {
    font-size: 18px;
    line-height: 25px;
    color: #000;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

/*key-ideas-section */

.key-ideas-section {
    background: #ffffff;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 27%,
            rgba(241, 246, 244, 1) 58%);
    padding: 80px 0px 80px;
}

.key-ideas-section .trusted-logos {
    margin-bottom: 40px;
}

.key-ideas-section .cards {
    background-color: #fff;
    border: 1px solid #a7a7a7;
    border-radius: 14px;
    padding: 25px;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    gap: 24px;
}

.feature-box {
    display: grid;
    gap: 24px;
}

.key-ideas-section .feature-box .heading * {
    font-size: 20px;
    font-weight: 600;
    min-height: 60px;
}

.key-ideas-section .feature-box .paragraph * {
    font-size: 16px;
    font-weight: 400;
    color: #4e4e4e;
    line-height: 20px;
    min-height: 60px;
    margin-bottom: 0;
}

.key-ideas-section button {
    margin-top: 40px;
}

/*categories-section */

.categories-section {
    padding: 80px 0px;
    background-color: #fff;
}

.tabs-bar {
    margin-top: 20px;
}

.tabs-scroll {
    overflow-x: scroll;
    overflow-y: hidden;
}

.tabs-scroll::-webkit-scrollbar {
    display: none;
}

.tab-btns {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 1800px;
    padding-top: 10px;
    padding-bottom: 30px;
}

.tabs-bar .tab-btn {
    padding: 10px 14px;
    cursor: pointer;
    display: inline-block;
    background: #fff;
    transition: all 0.3s;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid #cacaca;
    font-weight: 500;
    box-shadow: 0px 0px 5px #aeaeaebd;
    color: #033049;
    display: flex;
    gap: 5px;
    align-items: center;
}

.tabs-bar .tab-btn img {
    max-width: 20px;
    object-fit: contain;
}

.tabs-bar .tab-btn svg {
    width: 24px;
}

.tabs-bar .tab-btn.active {
    background: #00bf63;
    color: #fff;
    border-radius: 10px;
    border: 1px solid #ffffff;
}

.tabs-bar .tab-content {
    display: none;
    margin-top: 0px;
}

.tabs-bar .tab-content.active {
    display: block;
}

.categories-section .swiper {
    width: 1200px;
    max-width: 98vw;
    padding-top: 30px;
    padding-bottom: 30px;
}

.categories-section .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    filter: blur(0.5px) grayscale(20%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s, z-index 0.3s;
    z-index: 1;
}

.categories-section .swiper-slide img {
    width: 220px;
    height: 320px;
    border-radius: 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    object-fit: cover;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    border: 2px solid transparent;
}

.categories-section .swiper-slide.swiper-slide-active {
    filter: none;
    opacity: 1;
    z-index: 2;
}

.categories-section .swiper-slide.swiper-slide-active img {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
    border: 2px solid #00e497;
    transform: scale(1.08);
}

.categories-section .swiper-pagination {
    bottom: 10px !important;
}

.pricing-section {
    background-color: #f8fafa;
    padding: 80px 0px;
}

.tab-container {
    margin: 5% 10%;
    background-color: #c1e3d9;
    padding: 3%;
    border-radius: 4px;
}

.tab-menu {
    margin: 30px 0px;
    justify-content: center;
    display: flex;
}

.tab-menu .nav.nav-tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0px;
}

.tab-menu .nav.nav-tabs .nav-link {
    background-color: #fff;
    padding: 13px 30px;
    border-radius: 10px;
    color: #033049;
    font-size: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #a7a7a7;
    font-weight: 500;
}

.tab-menu .nav.nav-tabs .nav-link svg {
    width: 24px;
}

.tab-menu .nav.nav-tabs .nav-link.active {
    background-color: #00bf63;
    border: 1px solid #00bf63;
    color: #fff;
}

.pricing-cards {
    justify-content: center;
}

.pricing-card {
    background-color: white;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #a7a7a7;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #000000;
}

.price {
    margin-bottom: 15px;
    margin-top: 15px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #00c853;
}

.period {
    font-size: 1rem;
    color: #000000;
}

.trial {
    font-size: 16px;
    margin-bottom: 10px;
    color: #000;
}

.features {
    list-style-type: none;
    margin-bottom: 20px;
    padding-left: 10px;
}

.features li {
    margin-bottom: 5px;
    position: relative;
    padding-left: 20px;
}

.features li:before {
    content: "•";
    color: #00c853;
    position: absolute;
    left: 0;
}

.benefit {
    font-size: 16px;
    margin-bottom: 15px;
    color: #000000;
}

/* Grow Wherever Section */
.grow-wherever-section {
    background: #ffffff;
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 1) 27%,
            rgba(241, 246, 244, 1) 58%);
    padding: 80px 0px;
}

.scenario-cards {
    margin-top: 50px !important;
}

.scenario-card {
    position: relative;
    border-radius: 10px;
    overflow: visible;
}

.scenario-card:nth-child(1) {
    margin-top: 50px;
}

.scenario-card:nth-child(3) {
    margin-top: 50px;
}

.scenario-img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scenario-label {
    position: absolute;
    top: 0px;
    left: 50%;
    background-color: #ebe5ff;
    padding: 8px 10px;
    border-radius: 5px;
    font-size: 15px;
    z-index: 1;
    font-weight: bold;
    right: 50%;
    transform: translate(-50%, -50%);
    width: fit-content;
    word-wrap: normal;
    white-space: nowrap;
    color: #000;
    opacity: 1;
    line-height: 15px;
}

/* Download App Section */
.download-app-section {
    background-color: white;
    padding: 60px 0;
}

.download-app-section .container {
    background: #f3f3f3;
    border-radius: 30px;
    padding: 0px 60px;
}

.download-content {
    padding: 46px 0px;
    display: grid;
    justify-content: left;
    gap: 26px;
}

.download-content p {
    text-align: left;
    margin-bottom: 0;
}

.faq {
    background-color: #f2f2f7;
    padding: 80px 0px;
}

.faq .accordion {
    margin-top: 40px;
    display: grid;
    gap: 30px;
}

.accordion .accordion-item {
    border-bottom: 0px !important;
    padding: 26px 39px;
    border-radius: 10px;
    border: 0px !important;
}

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 0px;
    color: #000 !important;
    font-size: 25px;
    font-weight: 500;
    border: none;
    background: none;
    outline: none;
}

.accordion .accordion-title span {
    font-size: 39px;
    font-weight: bold;
    line-height: 39px;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    color: #03b5d2;
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    color: #03b5d2;
    border: 1px solid #03b5d2;
}

.accordion button .accordion-title {
    padding: 0px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 26px;
    height: 26px;
    border: 1px solid #191a23;
    border-radius: 22px;
    transform: translateY(-50%);
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 11px;
    left: 7px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 7px;
    left: 11px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

.accordion button[aria-expanded="true"] {
    color: #03b5d2;
}

.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 9em;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 16px;
    font-weight: 300;
    margin: 12px 0 0px;
    padding-top: 20px;
    border-top: 2px dashed #8f8f8f;
    color: #000;
    font-weight: 400;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer {
    background-color: #eff5f3;
    padding: 50px 0px 0px;
}

.footer .logo-footer {
    max-width: 216px;
    height: auto;
    object-fit: cover;
}

.social-icons a {
    width: 30px;
    height: 30px;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icons a svg {
    fill: #fff;
    width: 15px;
}

.social-icons {
    display: flex;
    justify-content: start;
    gap: 15px;
    margin: 0px 0px;
}

.call {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #000;
    font-size: 16px;
    margin-top: 70px;
    margin-bottom: 0px;
}

.call-price {
    /* display: flex; */
    align-items: center;
    gap: 20px;
    color: #000;
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 25px;
}

.call a img {
    max-width: 120px;
}

.footer-menu {
    display: flex;
    align-items: baseline;
    justify-content: space-around;
    margin-bottom: 0px;
    gap: 40px;
}

.footer-menu li h2 {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    color: #000;
}

.footer-menu li a {
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
    text-align: left;
    margin-bottom: 0px;
    display: block;
    color: #3b474a;
    max-width: 300px;
}

.footer-menu li a span {
    color: #3b474a;
    font-size: 16px;
    font-weight: 500;
}

.copyright {
    background-color: #eff5f3;
    color: #000000;
    text-align: end;
    font-size: 16px;
    margin-bottom: 0;
    margin-top: 30px;
}

.copyright .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #c9cecc;
    padding: 15px 0px 15px;
}

.testimonial {
    padding: 0px 0px 80px;
    background-color: #fff;
}

.testimonial-carousel {
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    border: 2px solid #00bf63;
    border-radius: 45px;
    padding: 35px;
    max-width: 100%;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}

.testimonial-card img {
    max-width: 50px;
}

/* Speech bubble tail for active card */
/* .testimonial-card::after {
    content: "";
    position: absolute;
    left: 7%;
    bottom: -20px;
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 20px solid #00bf63;
} */

.author-text {
    padding-left: 35px;
    padding-top: 20px;
}

.testimonial-stars {
    margin-top: 18px;
    margin-bottom: 20px;
    z-index: 2;
    position: relative;
}

.testimonial-stars span svg {
    width: 30px;
    fill: #fdbe21;
    color: #fdbe21;
}

.testimonial-text {
    font-size: 18px;
    color: #000000;
    line-height: 25px;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.testimonial-author {
    font-weight: 700;
    color: #222;
    margin-bottom: 2px;
    margin-top: 10px;
}

.testimonial-role {
    color: #888;
    font-size: 0.98rem;
    font-weight: 400;
}

.owl-item .item {
    transform: translate3d(0, 0, 0);
    margin: 30px 0;
    /* overflow: hidden; */
    border-radius: 19px;
}

.screenshot_slider .owl-stage-outer .owl-stage {
    margin: auto;
    padding: 0PX 20PX;
    display: flex;
}

.screenshot_slider .owl-item .item img {
    box-shadow: 0 0px 10px 0 rgb(0 0 0 / 8%);
    transition: 0.3s ease-in-out;
    border-radius: 19px;
    border: 2px solid transparent;
    min-height: 355px;
    object-fit: cover;
}

.screenshot_slider .owl-item .item:hover img {
    transform: scale(1.10);
    border-radius: 19px;
    border: 2px solid #00bf63;
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
}

.screenshot_slider .owl-item.center {
    z-index: 999;
}

/*
.screenshot_slider .owl-item.center .item img {
    transform: scale(1.15);
    border: 2px solid #00bf63;
    border-radius: 19px;
    box-shadow: 0 0px 10px 0 #00bf63;
} */

.screenshot_slider .owl-nav {
    text-align: center;
}

/*.owl-dots (dots) */
.owl-dots {
    position: static;
    margin-top: 24px;
    text-align: center;
    margin-bottom: 30px;
}

.owl-dots .owl-dot {
    background: #b7b7b7 !important;
    border: 1px solid #b7b7b7 !important;
    opacity: 1;
    width: 12px;
    height: 12px;
    margin: 0 5px !important;
    transition: background 0.2s, width 0.2s;
    border-radius: 100% !important;
}

.owl-dots .owl-dot.active {
    background: #00bf63 !important;
    width: 30px;
    border-radius: 7px !important;
    border: 1px solid #00bf63 !important;
}

.brands {
    background: #eff5f3;
    padding: 50px 0px;
}

section.hero-section.inner-section {
    background: #eff5f3;
}

.terms-header {
    padding: 20px 0px;
}

.terms-header h2 {
    font-size: 24px;
    margin-top: 40px;
    color: #222;
    font-weight: 600;
}

.terms-header p {
    margin-bottom: 15px;
    font-size: 17px;
    font-weight: 400;
    color: #525252;
    line-height: 25px;
}

.terms-header ul {
    margin: 0px;
    list-style-type: disc;
    line-height: 30px;
}

.popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #f8f8f8;
    margin: 1% auto;
    border-radius: 20px;
    width: 90%;
    max-width: 650px;
    position: relative;
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
}

.popup-form h5 {
    font-size: 17px;
    font-weight: 400;
}

/* Animation (optional) */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    background: #e3e3e3;
    padding: 10px 20px;
}

.popup-title {
    font-size: 25px;
    font-weight: 600;
    color: #00bf63;
}

.popup-close {
    font-size: 27px;
    color: #718096;
    cursor: pointer;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(113, 128, 150, 0.5);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #f3f3f3;
    padding: 30px;
    max-width: 80%;
    margin: 30px auto 50px;
    border-radius: 20px;
}

.main-popup {
    width: 100%;
}

.social-btn {
    width: 100%;
    padding: 11px 25px;
    border: none;
    border-radius: 10px;
    margin-bottom: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s;
    background: #e1e1e1;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 80px;
}

.social-btn span .social-img {
    max-width: 24px;
}

.popup-form input {
    width: 100%;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    background: #e1e1e1;
    font-size: 14px;
    margin-bottom: 4px;
    transition: border 0.2s;
    color: #000000;
}

.popup-form input:focus {
    border: 1.5px solid #00bf63;
    outline: none;
}

#thankyou-popup .popup-content {
    padding: 50px 30px;
    text-align: center;
}

#thankyou-popup .popup-content h2 {
    font-size: 40px;
    font-weight: 700;
}

#thankyou-popup .popup-content .call {
    margin-top: 10px;
    justify-content: center;
}

#thankyou-popup .popup-content .call a img {
    max-width: 150px;
    object-fit: cover;
}

.terms {
    font-size: 16px;
    color: #525252;
    margin-bottom: 8px;
}

.terms a {
    color: #00bf63;
    font-weight: 500;
}

.create-account-btn {
    background: #00bf63;
    color: #fff;
    border: none;
    border-radius: 7px;
    padding: 12px;
    font-size: 1.07rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 6px;
    transition: background 0.2s;
}

.create-account-btn:hover {
    background: #009e64;
}

.login-link {
    text-align: center;
    font-size: 0.97rem;
    color: #444;
}

.login-link a {
    color: #00bf63;
    text-decoration: none;
    font-weight: 600;
}

/* Show Popup */
.popup-overlay.active {
    display: flex;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider .line {
    flex-grow: 1;
    height: 1px;
    background-color: #4f4f4f !important;
    border: none;
    color: #4f4f4f !important;
    opacity: 1;
}

.divider .text {
    margin: 0 16px;
    color: #939999;
    font-size: 20px;
}

.login-link .top-button {
    background: none;
    padding: 0;
    border: 0;
    font-size: 16px;
}

#togglePassword {
    font-size: 20px;
    color: #626666;
}

.header .menu>ul>li.destop-none {
    display: none;
}

.testimonial-card p {
    margin-bottom: 0px !important;
}

.download-content h2 {
    text-align: left !important;
    margin-bottom: 0;
}

.spinner {
    border: 6px solid #f3f3f3;
    /* Light grey background */
    border-top: 6px solid #3498db;
    /* Blue spinner color */
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.category-list-section {
    padding: 50px 0px;
    background-color: #f8fafa;
}


.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 900px;
    margin: 40px auto 40px;
    justify-content: center;
}

.category-card {
    display: flex;
    align-items: center;
    background: #F2F2F7;
    color: #222;
    border-radius: 10px;
    padding: 10px 11px 10px 11px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0px 0px 5px rgba(2, 2, 2, 0.1);
    line-height: 25px;
    border: 1px solid #E4E4E4;
}



.category-card.selected {
    background: #00BF63;
    color: #fff;
    border: 1px solid #fff;
}

.category-card .category-icon svg {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    object-fit: cover;
    fill: #000;
}

.category-card.selected .category-icon svg {
    fill: #fff;
}

.category-icon img {
    width: 24px;
    height: 24px;
    margin-right: 5px;
    object-fit: cover;
}

.accordion .accordion-item button span.accordion-title,
.accordion button .accordion-title {
    width: calc(100% - 30px);
}


.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 100%;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}