  @keyframes footerFadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }

    body {
        font-family: 'Manrope', 'Open Sans', sans-serif;
    }

    .mskib-brand-logo:hover img {
        transform: scale(1.05);
        transition: 0.2s ease-in-out;
    }

    /* Unique & Simple Branded Footer Style */
    .wraxelo-footer {
        background: #1a1d23; /* Deep Dark Professional Background */
        color: #ffffff;
        padding: 50px 20px 30px;
        margin-top: 50px;
        font-family: 'Manrope', sans-serif;
        border-top: 4px solid #FF5722; /* Brand Orange Top Border */
        position: relative;
        overflow: hidden;
        animation: footerFadeIn 0.8s ease-out forwards;
    }

    /* Subtle background element for uniqueness */
    .wraxelo-footer::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 87, 34, 0.1) 0%, transparent 70%);
        pointer-events: none;
    }

    /* --- Auto Scrolling Trusted Brands Section --- */
    .footer-top-brands {
        max-width: 1300px;
        margin: 0 auto 50px auto;
        padding: 25px 0; /* Removed side padding for edge-to-edge scroll inside box */
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 87, 34, 0.15);
        position: relative;
        z-index: 2;
        overflow: hidden;
    }

    .footer-top-brands h3 {
        color: #fff;
        text-align: center;
        margin-top: 0;
        margin-bottom: 25px;
        font-size: 18px;
        font-weight: 800;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 0 20px;
    }

    .brands-marquee-container {
        width: 100%;
        overflow: hidden;
        position: relative;
        white-space: nowrap;
        /* Fade effect on left and right edges */
        mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
        -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    }

    .brands-marquee-track {
        display: inline-block;
        animation: scrollMarquee 35s linear infinite;
    }

    .brands-marquee-track:hover {
        animation-play-state: paused;
    }

    @keyframes scrollMarquee {
        from { transform: translateX(0); }
        to { transform: translateX(-50%); }
    }

    .brand-marquee-card {
        background: rgba(35, 39, 47, 0.9);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 50px; /* Unique Pill Shape */
        padding: 8px 25px 8px 8px;
        display: inline-flex;
        align-items: center;
        gap: 12px;
        text-decoration: none !important;
        transition: all 0.3s ease;
        margin: 0 10px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }

    .brand-marquee-card:hover {
        background: #2a2f38;
        border-color: #FF5722;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 5px 15px rgba(255, 87, 34, 0.2);
    }

    .brand-logo-img {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: contain;
        background: #fff;
        padding: 5px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .brand-logo-text {
        background: #fff;
        color: #111;
        font-weight: 900;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 20px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

    .brand-info {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .brand-info .b-name {
        color: #ffffff;
        font-weight: 800;
        font-size: 15px;
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .brand-info .b-offer {
        color: #4CAF50;
        font-size: 12px;
        font-weight: 700;
        background: rgba(76, 175, 80, 0.1);
        padding: 2px 6px;
        border-radius: 4px;
        display: inline-block;
        width: max-content;
    }

    .brand-info .b-cat {
        font-size: 10px;
        color: #aaa;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 3px;
    }

    /* --- Footer Content Grid --- */
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; /* Fixed for 5 columns */
        gap: 30px;
        position: relative;
        z-index: 2;
    }

    .wraxelo-footer a {
        color: #cbd5e0;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .wraxelo-footer a:hover {
        color: #FF5722;
    }

    .wraxelo-footer h4 {
        color: #FF5722;
        font-weight: 800;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-brand h2 {
        color: #1a73e8;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .footer-brand p {
        color: #aaaaaa;
        line-height: 1.6;
        font-size: 14px;
        margin-bottom: 20px;
    }

    .footer-section h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: #FF5722;
    }

    .footer-links-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-links-list li {
        margin-bottom: 12px;
    }

    .footer-links-list a {
        color: #cccccc;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s;
    }

    .footer-links-list a:hover {
        color: #FF5722;
    }

    .footer-contact p {
        font-size: 14px;
        color: #cccccc;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Category Tag Styling */
    .footer-category-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .footer-category-tags a {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        color: #cbd5e0;
        transition: all 0.3s ease;
        text-transform: capitalize;
    }

    .footer-category-tags a:hover {
        background: #FF5722;
        color: #fff;
        border-color: #FF5722;
        transform: translateY(-2px);
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 50px auto 0;
        padding-top: 25px;
        border-top: 1px solid #333;
        text-align: center;
        font-size: 13px;
        color: #888;
        position: relative;
        z-index: 2;
        width: 100%;
        bottom: 2px;
    }

    /* Mobile Responsive Adjustments */
    @media (max-width: 992px) {
        .footer-content {
            grid-template-columns: 1fr 1fr;
        }
        .categories-container {
            grid-column: 1 / -1 !important;
        }
    }

    @media (max-width: 768px) {
        .wraxelo-footer {
            padding: 40px 15px 20px;
            text-align: center;
        }
        .footer-content {
            grid-template-columns: 1fr;
        }
        .footer-section h4::after {
            left: 50%;
            transform: translateX(-50%);
        }
        .social-icons-list, .footer-category-tags {
            justify-content: center;
        }
    }

    /* Trustpilot Interactive 5-Star Review Box */
    .tp-interactive-review-box {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        background: rgba(25, 29, 35, 0.95);
        border: 1px solid rgba(0, 182, 122, 0.4);
        padding: 15px 25px;
        border-radius: 12px;
        text-decoration: none;
        margin-top: 15px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }

    /* Shine effect moving across the box */
    .tp-interactive-review-box::before {
        content: '';
        position: absolute;
        top: 0; 
        left: -100%; 
        width: 50%; 
        height: 100%;
        background: linear-gradient(to right, transparent, rgba(0, 182, 122, 0.2), transparent);
        transform: skewX(-25deg);
        animation: tpShine 3.5s infinite;
    }

    .tp-interactive-review-box:hover {
        transform: translateY(-5px) scale(1.02);
        border-color: #00b67a; /* Trustpilot Green */
        box-shadow: 0 8px 25px rgba(0, 182, 122, 0.3);
        background: rgba(20, 24, 30, 1);
    }

    .tp-text {
        color: #ffffff;
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 10px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        position: relative;
        z-index: 2;
    }

    .tp-text span {
        color: #00b67a;
    }

    .tp-stars {
        display: flex;
        gap: 8px;
        position: relative;
        z-index: 2;
    }

    .tp-stars i {
        color: #FFD700; /* Gold Stars */
        font-size: 24px;
        text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
        animation: starWave 2.5s infinite ease-in-out;
    }

    /* Staggered animation delays for the wave effect */
    .tp-stars i:nth-child(1) { animation-delay: 0.0s; }
    .tp-stars i:nth-child(2) { animation-delay: 0.15s; }
    .tp-stars i:nth-child(3) { animation-delay: 0.3s; }
    .tp-stars i:nth-child(4) { animation-delay: 0.45s; }
    .tp-stars i:nth-child(5) { animation-delay: 0.6s; }

    @keyframes starWave {
        0%, 40%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
        20% { transform: translateY(-5px) scale(1.2); opacity: 1; text-shadow: 0 4px 10px rgba(255, 215, 0, 0.7); }
    }

    @keyframes tpShine {
        0% { left: -100%; }
        20%, 100% { left: 200%; }
    }