:root {
    --moonbid-neon: #12f24a;
    --moonbid-dark: #000000;
    --moonbid-white: #ffffff;
    --moonbid-gray: #758590;
}

* {
    font-family: "Raleway", sans-serif !important;
}

/* Header Styles */
header {
    background: transparent !important;
    box-shadow: none !important;
    position: fixed !important;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar-bottom.active {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar-bottom-wrapper {
    background: transparent !important;
    padding: 15px 0 !important;
    border: none !important;
}

.navbar-bottom-wrapper .menu li a {
    color: var(--moonbid-white) !important;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 15px !important;
}

.navbar-bottom-wrapper .menu li a span {
    position: relative;
    display: inline-block;
}

.navbar-bottom-wrapper .menu li a.active span::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--moonbid-neon) !important;
    border-radius: 2px;
}

.navbar-bottom-wrapper .menu li a:hover {
    color: var(--moonbid-neon) !important;
}

.cmn--btn {
    border-radius: 50px !important;
    font-weight: 600 !important;
    transition: 0.3s all ease;
    padding: 15px 40px !important;
}

.cmn--btn.btn-neon {
    background: var(--moonbid-neon) !important;
    color: var(--moonbid-dark) !important;
    border: none !important;
}

.cmn--btn.btn-outline-white {
    background: transparent !important;
    color: var(--moonbid-white) !important;
    border: 1px solid var(--moonbid-white) !important;
}

.cmn--btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(18, 242, 74, 0.3);
}

/* Banner Section */
.banner-section {
    padding: 160px 0 100px !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    border-bottom-left-radius: 60px !important;
    border-bottom-right-radius: 60px !important;
}

.banner-section::before {
    content: "";
    /* position: absolute; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.banner-wrapper {
    position: relative;
    z-index: 2;
    background: none !important;
    width: 100%;
}

/* Custom Shape/overlay element */
.banner-overlay-shape {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Impact Section */
.impact-section {
    padding: 80px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--moonbid-dark);
}

.section-header .section-text {
    font-size: 16px;
    color: var(--moonbid-gray);
}

/* Scoped styling for Testimonial Section only */
.testimonial-section .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
}

.testimonial-section .section-title {
    font-size: 60px !important;
    font-weight: 700 !important;
    line-height: 72px !important;
    letter-spacing: -1px !important;
    color: var(--moonbid-dark);
    margin-bottom: 15px;
    white-space: nowrap !important;
    width: max-content !important;
    max-width: none !important;
    /* Allow title to exceed container for perfect centering */
}

.testimonial-section .section-text {
    font-size: 18px !important;
    color: var(--moonbid-gray) !important;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400 !important;
    text-align: center !important;
}

@media (max-width: 991px) {
    .testimonial-section .section-title {
        white-space: normal !important;
        font-size: clamp(32px, 8vw, 48px) !important;
        line-height: 1.2 !important;
        width: 100% !important;
        max-width: 100% !important;
        left: 0 !important;
        transform: none !important;
    }
}

.impact-wrapper {
    background: #ffffff;
    box-shadow: 0px 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    padding: 60px 40px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.impact-item {
    text-align: left;
}

.impact-item img {
    height: 48px;
    margin-bottom: 20px;
}

.impact-item h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 5px;
}

.impact-item p {
    color: var(--moonbid-gray);
    font-size: 16px;
}

/* Move Your Way (Solutions) */
.solution-section {
    padding: 80px 0;
}

.solution-card {
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    height: 450px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-10px);
}

.solution-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.solution-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.8) 0%,
            transparent 100%);
    color: #fff;
}

.solution-card .overlay h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.solution-card .overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

/* Earn Money Section */
.earn-section {
    background: var(--moonbid-neon);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.earn-section .title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.earn-section .txt {
    font-size: 18px;
    color: var(--moonbid-dark);
    margin-bottom: 35px;
}

.earn-section .btn-white {
    background: #fff !important;
    color: #000 !important;
    padding: 15px 40px !important;
}

.earn-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonial-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.testimonial-card .stars {
    color: #ffb800;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 30px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.user-info h6 {
    margin: 0;
    font-weight: 700;
}

.user-info p {
    margin: 0;
    font-size: 14px;
    color: var(--moonbid-gray);
}


/* Utility classes */
.pt-120 {
    padding-top: 120px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

/* Page Header refinement */
.page-header {
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    padding: 160px 0 80px !important;
    /* Increased padding for overlay navigation */
}

.page-header::before {
    border-radius: 0 !important;
}

.page-header .title {
    color: var(--moonbid-white) !important;
}

/* Footer & Footer CTA */
.footer-cta {
    border-radius: 60px 60px 0 0 !important;
    overflow: hidden;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
    text-align: center;
    background-color: #000;
}

.footer-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.footer-cta h2 {
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 35px;
    letter-spacing: -1px;
    white-space: nowrap !important;
    display: inline-block !important;
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
}

@media (max-width: 991px) {
    .footer-cta h2 {
        font-size: clamp(32px, 8vw, 48px) !important;
        white-space: normal !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        line-height: 1.2;
    }

    .footer-cta {
        padding: 60px 0;
    }
}

.footer-cta p {
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

footer {
    background: #000 !important;
    padding: 80px 0 40px !important;
    position: relative;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    color: #fff;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-column.logo-col {
    flex: 1.8;
}

.footer-column h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 12px;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--moonbid-neon) !important;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    flex-direction: row;
    /* Change to row for better horizontal layout */
    align-items: flex-start !important;
    text-align: left !important;
    gap: 15px;
}

.footer-contact-item .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover .icon-box {
    border-color: var(--moonbid-neon);
    color: var(--moonbid-neon);
}

.footer-contact-item h6 {
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-contact-item p,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 13px;
    margin-bottom: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
    color: #fff;
}

/* Mobile Navigation Improvements */
@media (max-width: 991px) {
    .navbar-bottom-wrapper .menu {
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        padding: 20px !important;
        top: 80px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-bottom-wrapper .menu li a {
        color: #fff !important;
        padding: 15px 0 !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .navbar-bottom-wrapper .menu li:last-child a {
        border-bottom: none;
    }

    .nav-toggle span {
        background: #fff !important;
    }
}

/* Banner Mobile Adjustments */
@media (max-width: 767px) {
    .banner-section {
        padding: 120px 0 60px !important;
        min-height: auto;
    }

    .app--btns {
        flex-direction: column;
        width: 100%;
    }

    .app--btns a {
        width: 100% !important;
        text-align: center;
    }
}