@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Light.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Medium.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-SemiBold.otf') format('opentype');
    font-weight: 600;
}

@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Bold.otf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Vastago Grotesk';
    src: url('../fonts/VastagoGrotesk-Black.otf') format('opentype');
    font-weight: 900;
}

html,
body {
    margin: 0;
    background: #080808;
    font-family: 'Vastago Grotesk', Arial, sans-serif;
    color: white;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

.trusted_by_section,
.start_badge,
.about_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 6px 16px;
    /* 👈 reduced vertical padding */
    border-radius: 999px;

    /* background: #000; */
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.4);

    box-shadow:
        0 -1px 4px rgba(255, 255, 255, 0.08),
        0 8px 18px rgba(255, 255, 255, 0.18),
        0 10px 22px rgba(0, 0, 0, 0.55);
}

body:has(.privacy_policy_main_wrapper) {
    overflow-x: unset;
}

/* Preloader Styles */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: preloader-fade-in 1s ease-out;
}

@keyframes preloader-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preloader-logo {
    width: 100px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 15px rgba(151, 66, 255, 0.3));
}

.modern-loader-line {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.modern-loader-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    height: 100%;
    width: 50%;
    background: linear-gradient(90deg, transparent, #9742FF, transparent);
    border-radius: 4px;
    animation: loaderLineSweep 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loaderLineSweep {
    0% {
        left: -50%;
    }

    100% {
        left: 100%;
    }
}

.site-preloader.loaded {
    transform: translateY(-100%);
}


.mobile_btn {
    display: none;
}

.desktop_btn {
    display: block;
}

/*images section*/

/*1. header secion*/
.header-images-container {
    position: relative;
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}

.header_main_mobile {
    width: 42%;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.4));
}

.header_mobile_left {
    position: absolute;
    z-index: 1;
    width: 50%;
    top: 50%;
    left: 18%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.3));
}

.header_mobile_right {
    position: absolute;
    z-index: 1;
    width: 50%;
    top: 50%;
    right: 18%;
    transform: translate(50%, -50%);
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.3));
}

/*About section*/
.about-images-container {
    position: relative;
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.about_mobile_screen {
    width: 75%;
    position: relative;
    z-index: 1;
    transform: translateX(-5%);
    filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.3));
}

.about_sub_image {
    position: absolute;
    width: 50%;
    z-index: 2;
    top: 38%;
    left: 85%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 15px 25px rgba(0, 0, 0, 0.35));
}

.about_weall_logo {
    position: absolute;
    width: 50px;
    top: 70%;
    left: 95%;
    transform: translate(-50%, -50%);
}

.about-images-container::before,
.about-images-container::after {
    content: "";
    position: absolute;
    width: 390px;
    height: 410px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.55;
    z-index: 0;
    transform: translateX(-50%);
    left: 50%;
    pointer-events: none;
}

/* TOP GLOW */
.about-images-container::before {
    top: -120px;
    background: radial-gradient(circle,
            rgba(168, 85, 247, 0.9) 0%,
            rgba(236, 72, 153, 0.55) 40%,
            rgba(59, 130, 246, 0.25) 70%,
            transparent 100%);
    mix-blend-mode: screen;
}

/* BOTTOM GLOW */
.about-images-container::after {
    bottom: -80px;
    background: radial-gradient(circle,
            rgba(59, 130, 246, 0.9) 0%,
            rgba(168, 85, 247, 0.55) 40%,
            rgba(236, 72, 153, 0.25) 70%,
            transparent 100%);
    mix-blend-mode: screen;
}

/* Feature Card 1 Section */
.feature-card1-images-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-top: 15px;
}

#about-sub-img,
#about-logo {
    opacity: 0;
}


.feature_mobile_screen1 {
    width: 63%;
    position: relative;
    z-index: 1;
}

.feature_subimage1_card1 {
    position: absolute;
    width: 75%;
    z-index: 2;
    top: 22%;
    left: 50%;
    transform: translateX(-50%);
}

.feature_subimage2_card1 {
    position: absolute;
    width: 15%;
    z-index: 2;
    top: 54%;
    right: 19%;
    transform: translate(50%, -50%);
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.2));
}



/* Feature Card 2 Section */
.feature-card2-images-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    /* margin-bottom: 30px; */
}

.feature_mobile_screen2 {
    width: 95%;
    position: relative;
    z-index: 1;
}

.feature_subimage1_card2 {
    position: absolute;
    width: 30%;
    z-index: 3;
    top: 13%;
    left: 51%;
    transform: translateX(-125%);
}

.feature_subimage2_card2 {
    position: absolute;
    width: 30%;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translateX(-160%);
}

.feature_subimage3_card2 {
    position: absolute;
    width: 30%;
    z-index: 3;
    bottom: 25%;
    right: 50%;
    transform: translateX(145%);
}

.feature_menu_card2 {
    position: absolute;
    width: 75%;
    z-index: 4;
    bottom: -10%;
    left: 50%;
    transform: translateX(-50%);
}

/* Feature Card 3 Section */
.feature-card3-images-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

.feature_mobile_screen3 {
    width: 95%;
    position: relative;
    z-index: 1;
}

.feature_subimage1_card3 {
    position: absolute;
    width: 25%;
    z-index: 3;
    top: 45%;
    left: 60%;
    transform: translate(50%, -50%);
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
}

.feature_subimage2_card3 {
    position: absolute;
    width: 25%;
    z-index: 3;
    top: 58%;
    left: 17%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
}

.feature_subimage3_card3 {
    position: absolute;
    width: 25%;
    z-index: 3;
    top: 71%;
    left: 15%;
    transform: translate(-50%, -50%);
    filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.15));
}

.feature_subimage4_card3 {
    position: absolute;
    width: 70%;
    z-index: 2;
    top: 28%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Feature Card 4 Section */
.feature-card4-images-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    /* margin-bottom: 20px; */
    /* max-width: 400px; */
}

.feature_mobile_screen4 {
    width: 100%;
    position: relative;
    z-index: 1;
}

.feature_subimage1_card4 {
    position: absolute;
    width: 15%;
    z-index: 3;
    top: 45%;
    left: 10%;
    transform: translate(-50%, 50%);
}

.feature_subimage2_card4 {
    position: absolute;
    width: 70%;
    z-index: 3;
    top: 60px;
    right: 50%;
    transform: translate(50%, 50%);
}

/* Feature Card 5 Section */
.feature-card5-images-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.feature_mobile_screen5 {
    width: 55%;
    position: relative;
    z-index: 1;
}

.feature_subimage1_card5 {
    position: absolute;
    width: 65%;
    z-index: 2;
    top: 66%;
    left: 50%;
    transform: translate(-50%, -380%);
}

.feature_subimage2_card5 {
    position: absolute;
    width: 17%;
    z-index: 2;
    top: 65%;
    right: 67%;
    transform: translate(-50%, -50%);
}

.header_section {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%) !important;
    width: min(95%, 800px);
    z-index: 1000;

    background-color: white;
    border-radius: 16px;
    padding: 10px 8px 10px 15px;
    overflow: visible;
}

.header_section.header-ready {
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        left 0.6s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #333;
    padding: 0;
    width: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.5s ease, opacity 0.4s ease, padding 0.5s ease;
}

.header-expand-btn:focus {
    outline: none;
}

@media (min-width: 992px) {
    .about_Section {
        padding: 80px 0;
    }

    .about_sub_image {
        top: 40%;
        left: 85%;
    }

    .header_section.header-scrolled:not(.header-force-expand) {
        width: 140px !important;
        left: 98% !important;
        transform: translateX(-100%) !important;
    }

    .header_section .navbar-collapse {
        transition: opacity 0.3s ease;
    }

    .header_section.header-scrolled:not(.header-force-expand) .navbar-collapse {
        display: flex !important;
        position: absolute;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        right: 150px;
    }

    .header_section.header-scrolled:not(.header-force-expand) .header-expand-btn {
        width: 40px;
        opacity: 1;
        padding: 0.25rem 0.5rem;
    }
}

.highlight_text {
    background: linear-gradient(135deg, #9742FF, #1E22FE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-nav .nav-link {
    color: #666 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 8px !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #000 !important;
}

.navbar-nav .nav-link.highlight_text {
    /* font-weight: 700; */
}

button img {
    height: 40px;
    width: auto;
}

.store-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #A6A6A6;
    border-radius: 8px;
    padding: 6px 16px 6px 12px;
    height: 50px;
    width: fit-content;
    max-width: 200px;
    text-decoration: none;
}

/* text */
.store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.small-text {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 2px;
    text-transform: none;
    color: #fff !important;
}

.big-text {
    font-size: 16px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    letter-spacing: -0.2px;
    color: #fff !important;
}

/* icon */
.store-btn img {
    height: 28px !important;
    width: auto !important;
    margin-right: 12px;
}

.apple_google_button {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.2;
}

.navbar-collapse {
    text-align: center;
}

.header_section .navbar-collapse {
    justify-content: space-between;
}

img {
    max-width: 100%;
    height: auto;
}

.steps_cards_section {
    position: relative;
}

.steps_cards_section::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 51%;
    transform: translate(-50%, -50%);
    background: url(https://weall-website.fra1.digitaloceanspaces.com/wp-content/uploads/2026/04/25094438/dotted_line.webp) no-repeat center;
    width: 100%;
    height: 180px;
    z-index: -1;
    background-size: contain;
    --steps-line-progress: 0;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.5s ease-in-out;
}

.steps_cards_section.animate-dotted-line::after {
    clip-path: inset(0 0 0 0);
}

.steps_cards_section .card {
    position: relative;
    z-index: 1;
    max-width: 100%;
    margin: 0 auto;
    background: transparent;
    border: none;
    box-shadow: none;
}

.start_section_container {
    perspective: 1500px;
}

.start_section {
    background: linear-gradient(#9742FF, #1E22FE);
    box-shadow: 0 4px white;
    transform-origin: top center;
    backface-visibility: hidden;
}

.footer_section {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 400px;
    overflow: hidden;
    z-index: -1;
}

.footer-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* FIX */
    object-position: center center;
    z-index: 0;
    padding: 40px;
}

.footer_links {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 30px;
    padding: 0;
}

.footer_links a {
    color: white;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(0, 0, 0, 0.9),
            /* DARK CENTER */
            rgba(0, 0, 0, 0.4),
            /* mid */
            rgba(0, 0, 0, 0.1)
            /* LIGHT OUTER */
        );
    z-index: 1;
}

.footer-content {
    position: relative;
    z-index: 2;

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

    height: 100%;
    padding: 60px 20px;
}

.social_media_icons {
    background-color: #7E3CFF;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.languages_dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
}


.languages_dropdown {
    border: 1px solid #BDBDBD;
    border-radius: 30px;
    padding: 6px 14px;
    /* better spacing */
    width: auto;
    display: flex;
    align-items: center;
    color: #1C1B1B;
}

.languages_dropdown .dropdown-menu {
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.download_button {
    border: none;
    border-radius: 30px;
    background: linear-gradient(#9742FF, #1E22FE);
    color: white;
    padding: 5px 25px;
}


.main_banner {
    position: relative;
    min-height: 38vh;
    width: 100%;
    overflow: hidden;
}


.bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}


.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}


.hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    padding: 120px 20px 40px;
}


.hero_content h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    max-width: 900px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.privacy_policy_main_content .card-title {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.hero_content p {
    font-size: clamp(14px, 2vw, 18px);
    max-width: 600px;
    min-height: 37px;
    /* Reserves space for the typing animation to prevent layout shifts */
}

.hero_content p.privacy_policy_badge {
    min-height: unset;
    /* Reserves space for the typing animation to prevent layout shifts */
}


/* image */
.hero_img {
    max-width: 100%;
    height: auto;
}

.about_Section {
    background: linear-gradient(#FFFFFF00, #FFFFFF12);
    /* overflow: visible; Removed to allow large scaling images to breathe */
    position: relative;
    padding: 100px 0;
    /* Ensures space from top and bottom during scaling */
    min-height: 100vh;
    /* Ensures a full-screen feel during pinning */
    display: flex;
    align-items: center;
}

.about_Section.how_we_all_works_section_bg {
    background: #1d1d1d;
    /* Solid background to cover pinned section */
    position: relative;
    z-index: 10;
    margin-top: 80px !important;
}



.second_banner {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.second_banner::before {
    content: "";
    position: absolute;
    top: 35%;
    left: 0;
    right: 0;

    height: 1px;
    background: linear-gradient(to right, transparent, #aaa, transparent);

    z-index: 0;
    opacity: var(--line-opacity, 0);
    /* Animated via GSAP */
}


.trusted_by_section {
    width: fit-content;
    border: 1px solid white;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    font-weight: 500;
    background-color: black;
}

.start_badge {
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    font-weight: 500;
    color: #fff;

    /* glass effect */
    background: linear;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    padding: 6px 14px;
    display: inline-block;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.what_is_weall_points li {
    list-style: none;
    border: 2px solid grey;
    margin-top: 10px;
    padding: 10px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    text-align: left;
}

.features_section {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.what_is_weall_points img {
    width: 20px;
    height: 20px;
}

.card {
    background-color: #1C1B1B;
    color: white;
    border: 1px solid #FFFFFF33;
    border-radius: 20px;
    height: 100%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.feature_cards {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0px;
}

.feature_card_icon {
    width: 40px;
}

.privacy_first {
    background: linear-gradient(135deg, #9742FF, #1E22FE);
    color: white;
    border: 1px solid #FFFFFF33;
    border-radius: 20px;
    overflow: hidden;
}


.small-img {
    height: auto;
    display: block;
    margin: 0 auto;
    max-width: 60%;
}

.developed_by_technource_subtext {
    font-size: 10px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;

}

.developed_by_technource_title {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

.developed_by_technource_title:hover+.developed_by_technource_subtext {
    opacity: 1;
    visibility: visible;
}

.technource_title:hover {
    color: #7E3CFF;
}


.developed_by_technource {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
}

.start_section_mobile_image {
    max-height: 350px;
}

.footer-content p {
    font-size: 18px;
}

@media (max-width: 1024px) and (min-width: 768px) {

    .header_section {
        width: 75%;
        padding: 10px;
    }

    .navbar-nav {
        gap: 8px;
        font-size: 14px;
    }

    .download_button {
        padding: 8px 18px;
        font-size: 14px;
    }

    .feature_mobile_screen4 {
        width: 367px;
    }

    .feature_subimage2_card4 {
        width: 260px;
        top: 45px;
    }
}

@media screen and (max-width: 992px) {
    .steps_cards_section::after {
        width: 70%;
    }

    .feature_mobile_screen4 {
        width: 257px;
    }

    .feature_subimage2_card4 {
        width: 180px;
        top: 30px;
    }

    .mobile_btn {
        display: block;
        padding: 8px 25px;
    }

    .desktop_btn {
        display: none !important;
    }

    .card-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .about_sub_image {
        top: 22%;
        left: 60%;
    }

    h2 {
        font-size: 44px;
    }

    h3 {
        font-size: 40px;
    }

    .hero_content h1 {
        font-size: 38px;
    }

    p {
        font-size: 14px;
        font-weight: bold;
    }

    .card-title {
        font-size: 18px;
    }

    .card-text {
        font-weight: normal;
    }

    .mobile_btn {
        display: block;
    }

    .desktop_btn {
        display: none;
    }

    .header_section {
        width: 92%;
        padding: 8px 10px;
    }

    .compass_heading_icon {
        height: 30px !important;
        width: 30px !important;
    }

    .hero_content {
        padding-top: 130px;
    }

    .hero_content p {
        font-weight: 500;
        font-size: 15px;
    }

    .navbar-nav {
        text-align: center;
        align-items: center;
    }

    .card-text {
        font-size: 0.9rem;
    }

    .steps_cards_section {
        background: none;
    }

    .footer_links {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .footer-overlay {
        background: radial-gradient(circle at center,
                rgba(0, 0, 0, 0.05),
                rgba(0, 0, 0, 0.03),
                rgba(0, 0, 0, 0.01));
    }

    .footer-bg {
        position: absolute;
        top: 40%;
        /* adjust this instead of margin */
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;

    }

    .social_media_icons {
        height: 35px;
        width: 35px;
    }

    .social_media_icons img {
        width: 16px;
        height: 16px;
    }

    .footer-content h2 {
        font-size: 1.5rem;
    }

    .footer-content p {
        font-size: 18px;
        text-align: center;
    }

    .footer-content {
        padding: 40px 15px;
    }

    .store-btn {
        padding: 6px 10px;
    }

    .big-text {
        font-size: 13px;
    }

    .small-text {
        font-size: 9px;
    }

    .about-images-container {
        width: 70%;
    }

    .feature_mobile_screen4 {
        width: 287px;
    }

    .feature_subimage2_card4 {
        width: 200px;
        top: 35px;
    }

    .feature_subimage1_card4 {
        left: 15%;
    }

    .steps_cards_section::after {
        display: none;
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 44px;
    }

    p {
        font-size: 14px;
    }

    .hero_content {
        padding-top: 130px;
    }

    .header_section {
        border-radius: 10px;
    }

    .about_badge {
        margin: auto;
    }

    .what_is_weall_points li {
        justify-content: center;
        align-items: center;
    }

    .nav-card {
        max-width: 100%;
        border-radius: 14px;
        padding: 16px;
    }

    .nav-title {
        font-size: 24px;
    }


    .steps_cards_section::after {
        display: none;
    }
}

/*Privacy Policy Page*/
.privacy_policy_header_image {
    width: 100px;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.nav-card {
    position: sticky;
    top: 115px;
    z-index: 990;
    width: 100%;
    max-width: 420px;
    background: #1b1b1b;
    border-radius: 18px;
    padding: 20px;
}

.nav-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.nav-item-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    margin-bottom: 10px;
    text-decoration: none;
}

.nav-item-custom i {
    font-size: 20px;
}

.nav-item-custom img {
    width: 24px;
    height: auto;
}


.active-item {
    background: linear-gradient(90deg, #9742FF, #1E22FE);
}

.icon-box {
    width: 28px;
    display: flex;
    justify-content: center;
}

.privacy_policy_main_content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 20px;
}

@media (max-width: 991px) {
    .privacy_policy_main_content {
        flex-direction: column;
        align-items: center;
        padding: 20px 10px;
    }

    .nav-card {
        top: 5px;
        max-width: 100%;
        margin: 0 0 30px 0 !important;
    }

    .privacy_policy_main_content>div:last-child {
        margin: 0 !important;
        width: 100%;
    }

    .privacy_policy_main_content .card {
        margin: 15px 0 !important;
    }

    .hero_content {
        min-height: auto;
        padding: 150px 15px 60px;
    }

    .main_banner {
        min-height: auto;
    }

    .hero_content p {
        max-width: 100%;
        min-height: auto;
    }

    .nav-card {
        top: 5px;
        position: relative;
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .nav-card {
        top: 5px;
        position: static;
        max-width: 100%;
        margin-bottom: 20px;
    }
}


.compass_heading_icon {
    height: 60px;
    width: 60px;
    object-fit: contain;
}

.language-flag {
    height: 20px;
    width: 20px;
    object-fit: contain;
}