    <style>
        /* --- RESET & CORE STYLES --- */
        :root {
            --brand-blue: #1A3E72;
            --brand-dark-blue: #0A192F;
            --brand-orange: #FF8C00;
            --brand-light-grey: #F5F5F5;
            --text-dark: #333333;

            /* Dimensions - Scaled Down */
            --panel-width: 260px;
            --panel-height: 340px;
            --panel-thickness: 20px;

            /* Review Panel Dimensions (30% smaller) */
            --review-panel-width: 182px; /* 70% of 260px */
            --review-panel-height: 238px; /* 70% of 340px */
        }

        body, html {
            margin: 0;
            padding: 0;
            font-family: 'Montserrat', sans-serif;
            background-color: #FFFFFF; /* White Background */
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* --- UTILITIES --- */
        .section-padding {
            padding: 60px 20px;
            min-height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        /* Reduce padding specifically for reviews section to close gap */
        #reviews.section-padding {
            padding-top: 20px;
        }

        .heading-group {
            text-align: center;
            margin-bottom: 50px;
            z-index: 10;
        }

        /* Reduce bottom margin for reviews heading */
        #reviews .heading-group {
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -1px;
            margin: 0;
            line-height: 1;
            color: var(--brand-blue); /* Dark Blue Text */
        }

        .text-accent {
            color: var(--brand-orange);
        }

        .section-subtitle {
            font-size: 1rem;
            color: #666666; /* Darker Grey for visibility on white */
            margin-top: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* --- 3D CAROUSEL CORE --- */
        .perspective-container {
            perspective: 1200px;
            position: relative;
            width: 100%;
            display: flex;
            justify-content: center;
            height: 400px;
            margin-top: 10px;
            margin-bottom: 40px;
        }

        .carousel-engine {
            position: absolute;
            transform-style: preserve-3d;
            transition: transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
            width: var(--panel-width);
            height: var(--panel-height);
        }

        /* Specific Engine Override for Reviews (Smaller Size & Position) */
        #reviews-carousel {
            width: var(--review-panel-width);
            height: var(--review-panel-height);
            /* Move up to reduce gap */
            top: 40px;
        }

        /* --- SINGLE PANEL (GLASS PANE) --- */
        .panel-assembly {
            position: absolute;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
        }

        /* The Front Face (Content) */
        .panel-face-front {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 20px; /* Rounded Corners */
            padding: 25px;
            box-sizing: border-box;
            backdrop-filter: blur(12px);
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Default center alignment */
            justify-content: center;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            /* See through for BOTH now */
            backface-visibility: visible;
            -webkit-backface-visibility: visible;
            z-index: 2;
            overflow: hidden;
        }

        /* Back Face removed entirely as requested for see-through effect */

        /* --- COLOR VARIANTS OVERRIDES --- */

        /* 1. Top Carousel - Blue Tint (Dark Blue) - SEE THROUGH */
        #services-carousel .panel-face-front {
            background: rgba(26, 62, 114, 0.95); /* Brand Blue Tint */
            border: 1px solid rgba(255, 255, 255, 0.15);
        }
        #services-carousel .panel-title { color: #FF8C00; }
        #services-carousel .panel-desc { color: rgba(255,255,255, 0.9); }
        #services-carousel .icon-large { color: #FF8C00; }
        #services-carousel .btn-action { background: #FF8C00; color: white; }
        #services-carousel .btn-action:hover { background: white; color: #1A3E72; }

        /* 2. Middle Section - Orange Panels */
        .service-panel {
            background: rgba(255, 140, 0, 0.95); /* Brand Orange */
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
            border-radius: 12px;
        }
        .service-panel h3 { color: white !important; }
        .service-panel p { color: rgba(255,255,255, 0.95) !important; }
        .service-panel .panel-image .material-symbols-outlined { color: white !important; }
        .service-panel:hover { border-color: white; box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5); transform: translateY(-3px); }

        /* 3. Bottom Carousel - Grey Tint (Review Panels) - SEE THROUGH */
        #reviews-carousel .panel-face-front {
            background: rgba(80, 80, 80, 0.95); /* Grey Tint */
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px; /* Reduced padding */
            border-radius: 15px;
            /* Flex layout for top/middle/bottom alignment */
            justify-content: flex-start; /* Start from top */
        }

        #reviews-carousel .panel-desc {
            color: white;
            font-style: italic;
            font-size: 0.55rem;
            line-height: 1.4;
            /* Flex growth to take up middle space */
            flex-grow: 1;
            display: flex;
            align-items: center; /* Center text vertically in its space */
            justify-content: center;
            margin: 0;

            /* Text overflow handling */
            display: -webkit-box;
            -webkit-line-clamp: 8;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        #reviews-carousel .icon-large {
            color: #FF8C00;
            font-size: 1.5rem;
            margin-bottom: 5px;
            /* Fixed at top */
            flex-shrink: 0;
        }

        /* Container for Name/Source to be pushed to bottom */
        #reviews-carousel .reviewer-info {
            margin-top: auto; /* Pushes to bottom */
            width: 100%;
            padding-top: 8px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        #reviews-carousel .reviewer-name { color: #FF8C00; font-weight: bold; text-transform: uppercase; font-size: 0.6rem; }
        #reviews-carousel .review-source { color: rgba(255,255,255,0.6); font-size: 0.45rem; margin-top: 2px; text-transform: uppercase; letter-spacing: 1px;}
        #reviews-carousel .review-score { color: white; font-weight: 900; font-size: 0.8rem; }


        /* --- HEXAGON POSITIONS (6 Sides) --- */
        .hex-1 { transform: rotateY(0deg) translateZ(300px); }
        .hex-2 { transform: rotateY(60deg) translateZ(300px); }
        .hex-3 { transform: rotateY(120deg) translateZ(300px); }
        .hex-4 { transform: rotateY(180deg) translateZ(300px); }
        .hex-5 { transform: rotateY(240deg) translateZ(300px); }
        .hex-6 { transform: rotateY(300deg) translateZ(300px); }

        /* --- OCTAGON POSITIONS (8 Sides) - REVIEWS (Smaller Radius) --- */
        .oct-1 { transform: rotateY(0deg) translateZ(260px); }
        .oct-2 { transform: rotateY(45deg) translateZ(260px); }
        .oct-3 { transform: rotateY(90deg) translateZ(260px); }
        .oct-4 { transform: rotateY(135deg) translateZ(260px); }
        .oct-5 { transform: rotateY(180deg) translateZ(260px); }
        .oct-6 { transform: rotateY(225deg) translateZ(260px); }
        .oct-7 { transform: rotateY(270deg) translateZ(260px); }
        .oct-8 { transform: rotateY(315deg) translateZ(260px); }

        /* --- CONTENT STYLES --- */
        .icon-large {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .panel-title {
            font-size: 1.1rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            line-height: 1.2;
        }

        .panel-desc {
            font-family: 'Roboto Serif', serif;
            font-size: 0.85rem;
            line-height: 1.4;
            margin-bottom: 20px;
        }

        .btn-action {
            border: none;
            padding: 8px 20px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.7rem;
        }

        /* --- NAVIGATION BUTTONS --- */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(26, 62, 114, 0.1); /* Dark Blue tint */
            border: 1px solid rgba(26, 62, 114, 0.2);
            color: var(--brand-blue);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
        }

        .nav-btn:hover {
            background: var(--brand-orange);
            border-color: var(--brand-orange);
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-prev { left: 10px; }
        .nav-next { right: 10px; }

        /* --- "WHY CHOOSE US" / STANDARD SERVICE PANELS --- */
        #why-choose-us {
            background-color: #F9F9F9; /* Very Light Grey for contrast */
            padding: 80px 20px;
            border-top: 1px solid #E5E5E5;
            border-bottom: 1px solid #E5E5E5;
        }

        .service-panels-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
        }

        .service-panel {
            /* Styles handled by override above */
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 30px;
            border-radius: 6px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .service-panel.reverse {
            flex-direction: row-reverse;
            text-align: right;
        }

        .panel-image {
            flex: 0 0 80px;
            display: flex;
            justify-content: center;
        }

        .panel-image .material-symbols-outlined {
            font-size: 50px !important;
        }

        .panel-text {
            flex: 1;
        }

        .panel-text h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .panel-text p {
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 300;
            margin: 0;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 1024px) {
            .perspective-container { transform: scale(0.9); height: 400px; }
        }

        @media (max-width: 768px) {
            .perspective-container { height: 350px; transform: scale(0.75); margin-top: -20px; }
            .nav-btn { width: 40px; height: 40px; }
            .section-title { font-size: 1.8rem; }
            .service-panel { flex-direction: column; text-align: center; padding: 20px; }
            .service-panel.reverse { flex-direction: column; text-align: center; }
            .panel-image { flex: 0 0 auto; margin-bottom: 10px; }
        }
        /* --- STANDARD SERVICE PANELS (Why Choose Us) --- */
        .service-panels-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
            max-width: 800px;
            margin: 0 auto;
        }

        .service-panel {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 30px;
            border-radius: 12px; /* Matches the rounded look */
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            /* Branding Colors extracted from test file */
            background: rgba(255, 140, 0, 0.95); /* Brand Orange */
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
        }

        .service-panel:hover {
            border-color: white;
            box-shadow: 0 10px 30px rgba(255, 140, 0, 0.5);
            transform: translateY(-3px);
        }

        .service-panel h3 {
            color: white !important;
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .service-panel p {
            color: rgba(255,255,255, 0.95) !important;
            line-height: 1.6;
            font-size: 0.95rem;
            font-weight: 300;
            margin: 0;
        }

        .service-panel .panel-image {
            flex: 0 0 80px;
            display: flex;
            justify-content: center;
        }

        .service-panel .panel-image .material-symbols-outlined {
            font-size: 50px !important;
            color: white !important;
        }

        .service-panel .panel-text {
            flex: 1;
        }

        /* Reverse layout for the middle panel */
        .service-panel.reverse {
            flex-direction: row-reverse;
            text-align: right;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .service-panel { flex-direction: column; text-align: center; padding: 20px; }
            .service-panel.reverse { flex-direction: column; text-align: center; }
            .panel-image { flex: 0 0 auto; margin-bottom: 10px; }
        }

        /* --- REVIEWS CAROUSEL (Octagon - 8 Sides) --- */
        /* Variables specific to reviews (Scaled down to 70%) */
        :root {
            --review-panel-width: 182px;
            --review-panel-height: 238px;
        }

        /* Specific Engine Override for Reviews */
        #reviews-carousel {
        width: var(--review-panel-width);
        height: var(--review-panel-height);
        top: 40px; /* Move up slightly to reduce gap */
        }

        /* Review Panel Styling - Grey Tint & Layout */
        #reviews-carousel .panel-face-front {
        background: rgba(80, 80, 80, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px;
        border-radius: 15px;
        justify-content: flex-start;
        }

        #reviews-carousel .panel-desc {
        color: white;
        font-style: italic;
        font-size: 0.55rem;
        line-height: 1.4;
        flex-grow: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        }

        #reviews-carousel .icon-large {
        color: #FF8C00;
        font-size: 1.5rem;
        margin-bottom: 5px;
        flex-shrink: 0;
        }

        /* Reviewer Info at bottom */
        #reviews-carousel .reviewer-info {
        margin-top: auto;
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid rgba(255,255,255,0.1);
        }

        #reviews-carousel .reviewer-name { color: #FF8C00; font-weight: bold; text-transform: uppercase; font-size: 0.6rem; }
        #reviews-carousel .review-source { color: rgba(255,255,255,0.6); font-size: 0.45rem; margin-top: 2px; text-transform: uppercase; letter-spacing: 1px;}

        /* Octagon Positions (8 Sides) */
        .oct-1 { transform: rotateY(0deg) translateZ(260px); }
        .oct-2 { transform: rotateY(45deg) translateZ(260px); }
        .oct-3 { transform: rotateY(90deg) translateZ(260px); }
        .oct-4 { transform: rotateY(135deg) translateZ(260px); }
        .oct-5 { transform: rotateY(180deg) translateZ(260px); }
        .oct-6 { transform: rotateY(225deg) translateZ(260px); }
        .oct-7 { transform: rotateY(270deg) translateZ(260px); }
        .oct-8 { transform: rotateY(315deg) translateZ(260px); }

    </style>
