
        body.reviews-page {
            padding-top: 80px !important;
            margin-top: 0 !important;
            background: #f4f7fa;
        }
        .reviews-hero {
            background: linear-gradient(135deg, var(--color-primary) 0%, #0f3c50 100%);
            color: #fff;
            padding: 56px 0 36px;
            margin-bottom: 0;
        }
        .reviews-hero .reviews-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #fff !important;
        }
        .reviews-hero .reviews-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            color: #fff !important;
        }
        .reviews-grid-wrap {
            padding: 50px 0 80px;
        }
        .reviews-grid {
            column-count: 4;
            column-gap: 20px;
        }
        .reviews-grid-sizer { display: none; }
        .review-card {
            break-inside: avoid;
            margin-bottom: 20px;
            padding: 28px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: box-shadow 0.25s ease;
            border: none;
            will-change: box-shadow;
        }
        .reviews-grid.masonry-active {
            position: relative;
            column-count: initial;
            column-gap: normal;
        }
        .reviews-grid.masonry-active .reviews-grid-sizer {
            display: block;
            float: left;
            width: calc((100% - 60px) / 4);
        }
        .reviews-grid.masonry-active .review-card {
            float: left;
            width: calc((100% - 60px) / 4);
            break-inside: auto;
        }
        .reviews-grid.masonry-active::after {
            content: "";
            display: block;
            clear: both;
        }
        .review-card .review-quote {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .review-card:hover {
            box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        }
        .review-card .review-author {
            font-weight: 700;
            font-size: 1rem;
            margin-bottom: 2px;
        }
        .review-card .review-role {
            font-size: 0.875rem;
        }
        /* Rectangles - different corner roundness + a few asymmetric (one corner different) */
        .review-card--shape-round { border-radius: 24px; }
        .review-card--shape-medium { border-radius: 16px; }
        .review-card--shape-soft { border-radius: 12px; }
        .review-card--shape-asym { border-radius: 0 48px 24px 48px; } /* top-left sharp, rest rounded - like Riya card */
        .review-card--shape-asym2 { border-radius: 48px 0 48px 24px; } /* top-right sharp */
        .review-card--shape-asym3 { border-radius: 24px 48px 0 48px; } /* bottom-right sharp */
        /* Brand colors - forced contrast: only dark bg + white text OR light bg + black text */
        .review-card--c1 { background: var(--color-primary) !important; color: #fff !important; }
        .review-card--c1 .review-quote,
        .review-card--c1 .review-author { color: #fff !important; }
        .review-card--c1 .review-role { color: rgba(255,255,255,0.92) !important; }
        .review-card--c2 { background: var(--color-secondary) !important; color: #fff !important; }
        .review-card--c2 .review-quote,
        .review-card--c2 .review-author { color: #fff !important; }
        .review-card--c2 .review-role { color: rgba(255,255,255,0.92) !important; }
        .review-card--c3 { background: var(--color-accent) !important; color: #fff !important; }
        .review-card--c3 .review-quote,
        .review-card--c3 .review-author { color: #fff !important; }
        .review-card--c3 .review-role { color: rgba(255,255,255,0.92) !important; }
        .review-card--c4 { background: var(--color-gold) !important; color: #0d0d0d !important; }
        .review-card--c4 .review-quote,
        .review-card--c4 .review-author { color: #0d0d0d !important; }
        .review-card--c4 .review-role { color: #2d2d2d !important; }
        .review-card--c5 { background: var(--color-accent-light) !important; color: #0d0d0d !important; }
        .review-card--c5 .review-quote,
        .review-card--c5 .review-author { color: #0d0d0d !important; }
        .review-card--c5 .review-role { color: #2d2d2d !important; }
        .review-card--c6 { background: var(--color-surface-light) !important; color: #0d0d0d !important; }
        .review-card--c6 .review-quote,
        .review-card--c6 .review-author { color: #0d0d0d !important; }
        .review-card--c6 .review-role { color: #2d2d2d !important; }
        .review-card--c7 { background: var(--color-gold-dark) !important; color: #fff !important; }
        .review-card--c7 .review-quote,
        .review-card--c7 .review-author { color: #fff !important; }
        .review-card--c7 .review-role { color: rgba(255,255,255,0.92) !important; }
        .review-card--c8 { background: #fff !important; color: #0d0d0d !important; border: 2px solid var(--color-primary) !important; }
        .review-card--c8 .review-quote,
        .review-card--c8 .review-author { color: #0d0d0d !important; }
        .review-card--c8 .review-role { color: #2d2d2d !important; }
        .review-card--c9 { background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%) !important; color: #fff !important; }
        .review-card--c9 .review-quote,
        .review-card--c9 .review-author { color: #fff !important; }
        .review-card--c9 .review-role { color: rgba(255,255,255,0.92) !important; }
        .review-card--c10 { background: var(--color-gold) !important; color: #0d0d0d !important; }
        .review-card--c10 .review-quote,
        .review-card--c10 .review-author { color: #0d0d0d !important; }
        .review-card--c10 .review-role { color: #2d2d2d !important; }
        @media (max-width: 991px) {
            .reviews-grid { column-count: 2; }
            .reviews-grid.masonry-active .reviews-grid-sizer,
            .reviews-grid.masonry-active .review-card { width: calc((100% - 20px) / 2); }
        }
        @media (max-width: 575px) {
            .reviews-grid { column-count: 1; }
            .reviews-grid.masonry-active .reviews-grid-sizer,
            .reviews-grid.masonry-active .review-card { width: 100%; }
        }
        .reviews-load-more {
            text-align: center;
            margin-top: 40px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 16px;
        }
        .reviews-load-more.only-explore {
            gap: 0;
        }
        .reviews-load-more .btn-view-more,
        .reviews-load-more .btn-explore {
            display: inline-block;
            padding: 14px 40px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 50px 50px 50px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        .reviews-load-more .btn-view-more {
            background: var(--color-primary);
            color: #fff;
            border: none;
        }
        .reviews-load-more .btn-view-more:hover {
            background: #0f3c50;
            transform: translateY(-2px);
        }
        .reviews-load-more .btn-view-more:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        .reviews-load-more .btn-explore {
            background: transparent;
            color: var(--color-primary);
            border: 2px solid var(--color-primary);
        }
        .reviews-load-more .btn-explore:hover {
            background: var(--color-primary);
            color: #fff;
            transform: translateY(-2px);
        }
        .reviews-page .footer-area { padding-top: 40px !important; margin-top: 0 !important; }
        .reviews-page .footer-area .widget-title { color: #fff !important; font-size: 20px; margin-bottom: 24px; }
        .reviews-page .footer-area .widget_about .details p { color: rgba(255,255,255,0.75) !important; font-size: 15px; line-height: 1.6; margin-bottom: 12px; }
        .reviews-page .footer-area .footer-linkedin { margin-top: 20px; }
        .reviews-page .footer-area .footer-linkedin-link { display: inline-flex; align-items: center; gap: 10px; color: #fff !important; text-decoration: none; font-size: 15px; padding: 8px 18px; border: 1px solid rgba(255,255,255,0.25); border-radius: 6px; transition: all 0.3s ease; }
        .reviews-page .footer-area .footer-linkedin-link:hover { background: #0077B5; border-color: #0077B5; }
        .reviews-page .footer-area .footer-linkedin-link i { font-size: 16px; color: #ffffff; transition: color 0.3s ease; }
        .reviews-page .footer-area .footer-linkedin-link:hover i { color: #fff; }
        .reviews-page .footer-area .widget_nav_menu ul { list-style: none !important; padding-left: 0 !important; }
        .reviews-page .footer-area .widget_nav_menu ul li { margin-bottom: 10px; }
        .reviews-page .footer-area .widget_nav_menu ul li a { color: rgba(255,255,255,0.75) !important; text-decoration: none; font-size: 15px; transition: color 0.3s ease; }
        .reviews-page .footer-area .widget_nav_menu ul li a:hover { color: #fff !important; }
        .reviews-page .footer-bottom { border-top: 1px solid rgba(255,255,255,0.12) !important; padding: 20px 0; }
        .reviews-page .footer-bottom p { color: rgba(255,255,255,0.6) !important; margin: 0; font-size: 14px; }
        /* Header: same glass effect as index.html, with clear contrast */
        .reviews-page .navbar-42 {
            background: rgba(255, 255, 255, 0.88) !important;
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(30, 54, 63, 0.12);
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }
        .reviews-page .navbar-42 .nav-menu li a {
            color: #1E363F !important;
            font-weight: 700;
        }
        .reviews-page .navbar-42 .nav-menu li a:hover {
            color: #196080 !important;
        }
    