@keyframes scrollMarquee {
                0% { transform: translateX(0); }
                100% { transform: translateX(-50%); }
            }
            .brand-marquee {
                display: flex;
                white-space: nowrap;
                overflow: hidden;
                width: 100%;
            }
            .brand-marquee-inner {
                display: flex;
                animation: scrollMarquee 20s linear infinite;
            }
            .brand-item {
                padding: 0 40px;
                display: flex;
                align-items: center;
                justify-content: center;
                min-width: max-content;
            }
            .brand-text {
                font-size: 1.8rem;
                font-weight: 800;
                color: #b0b0b0;
                text-transform: uppercase;
                letter-spacing: 1px;
                transition: color 0.3s ease;
            }
            .brand-text:hover {
                color: #d1a842;
            }

.trust-card {
    position: relative;
    overflow: hidden;
    border: 2px solid #f2f2f2;
    background: #fff;
    padding: 3.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 123, 0, 0.08);
    border-color: #ff7b00;
}
.trust-bg-num {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 8rem;
    font-weight: 900;
    color: #f8f9fa; /* Very light grey */
    z-index: 0;
    line-height: 1;
    user-select: none;
    transition: color 0.3s ease;
}
.trust-card:hover .trust-bg-num {
    color: #fff0e6; /* Light peach/orange tint */
}
.trust-icon-box {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    background-color: #111;
    color: #fff;
    font-size: 1.5rem;
    border-radius: 14px;
    box-shadow: 8px 8px 0px #ff7b00; /* Orange offset shadow */
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.trust-card:hover .trust-icon-box {
    background-color: #ff7b00;
    box-shadow: 8px 8px 0px #fff0e6; /* Light peach shadow on hover */
    transform: rotate(-10deg) scale(1.05);
}
.trust-title {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 1rem;
}
.trust-desc {
    position: relative;
    z-index: 1;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.testimonial-section {
    background-color: #fff;
    /* Dotted background pattern */
    background-image: radial-gradient(#ffe0cc 1.5px, transparent 1.5px);
    background-size: 25px 25px;
}
.testimonial-card {
    position: relative;
    background: #fff;
    border: 2px solid #111;
    border-radius: 24px 0px 24px 0px;
    padding: 3rem 2.5rem 2rem 2.5rem;
    box-shadow: 8px 8px 0px #111;
    height: 100%;
}
.quote-icon {
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 6rem;
    color: #ffeadd;
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    user-select: none;
}
.testimonial-content {
    position: relative;
    z-index: 1;
}
.testi-stars {
    color: #ffb703;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}
.testi-text {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}
.testi-avatar {
    width: 45px;
    height: 45px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}
.testi-name {
    font-weight: 800;
    color: #111;
    margin: 0;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
}
.testi-verified {
    color: #888;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.review-btn {
    background: #111;
    color: #fff;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.2s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
.review-btn:hover {
    transform: scale(1.05);
    color: #fff;
}

.cta-section {
    position: relative;
    background-image: url('../assets/images/footer.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 460px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}
.cta-glass-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    max-width: 750px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.cta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.cta-title span {
    color: #ff7b00;
}
.cta-desc {
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}
.cta-btn {
    background: #ff7b00;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 1rem 3rem;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 123, 0, 0.4);
}
.cta-btn:hover {
    background: #e66a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 123, 0, 0.6);
}